Tech
2026.08.19

[Apple Mac] 커널 패닉 당시 로그 분석

#macOS#Apple Silicon#NVMe#SSD#Kernel Panic#IOKit#IOReturn#eccWidgetLLTShadow#Log Analysis#Troubleshooting

문서 개요

이 문서는 [Apple Mac] NVMe 컨트롤러 패닉 및 복구 모드 진입 트러블슈팅의 상세 로그 분석 문서입니다. 사건 전체의 타임라인과 원인 분석 결론은 해당 문서를 참고해 주세요.

잠자기 모드(Sleep)에서 깨어나지 못하고 복구 모드(Recovery)로 강제 진입하는 현상이 발생되고 패닉 로그가 남지 않아 원인 분석을 위해 시스템 커널 로그를 분석했습니다. 확인 결과, 단순 OS 충돌이 아닌 하드웨어 레벨의 NVMe SSD 컨트롤러 전원 제어 실패와 잠자기 중 백그라운드 OS 업데이트(대량 스냅샷 I/O) 시도가 맞물린 복합 장애가 커널 패닉의 주원인으로 파악되었습니다.

이 글은 디스크 I/O 에러 로그를 추출하여 로그에서 유효한 정보를 찾아내는 과정의 일부 문서입니다.

[분석 대상 하드웨어 정보]

  • 대상 모델: APPLE SSD AP0512Z
  • 펌웨어 버전: 561.100
  • 주요 증상: 잠자기 복귀 실패, 무한 로딩 및 Recovery 모드 강제 진입

실행 명령어

macOS가 24시간 동안 시스템 커널이 기록한 디스크 및 저장장치 관련 오류를 찾아보는 명령어입니다.

log show --predicate 'process == "kernel" AND (eventMessage contains[c] "disk" OR eventMessage contains[c] "nvme" OR eventMessage contains[c] "io error")' --last 24h
  • --predicate : 선택문
  • process == "kernel" : 로그를 남긴 주체(process)가 kernel 인것만 확인 (하드웨어/시스템 레벨의 기록만 확인)
  • eventMessage : 로그의 '메시지' 부분을 출력
  • contains[c] : 메시지 내용에 특정 단어가 포함되어 있는지(contains) 확인, [c]는 대소문자를 구분하지 않겠다(Case-insensitive)
  • "disk" OR "nvme" OR "io error" : 찾고자 하는 핵심 키워드 (disk: 일반적인 디스크, nvme: 맥에 탑재되는 초고속 SSD(저장장치)의 규격, io error: Input/Output error(입출력 오류)의 약자로, 데이터를 읽거나 쓸 때 발생하는 물리적/논리적 오류)
  • --last 24h : 최근 24시간 동안의 기록

핵심 로그 내용

01 - NVMe 컨트롤러 전원 제어 실패 및 Assert 에러

NVMe가 Sleep(절전) 상태로 전환을 시도하는 시점에 eccWidgetLLTShadow 관련 Assert가 발생하며 실패하는 증상이 최소 12초에서 최대 105분까지 불규칙한 간격(중앙값 약 15분)으로 하루 종일 반복되고 있습니다. 24시간 동안 79회 반복되는 것으로 보아 일시적인 문제가 아닌 지속적인 문제라는 것이 확인되었습니다.

kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow

kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)

kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9

kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow

  • AppleNVMe : Apple이 설계한 NVMe 드라이버/펌웨어 계층
  • Assert failed : 프로그래머가 '반드시 정상 작동해야 한다'고 설정해 둔 조건이 깨졌을 때(실패했을 때) 나타나는 메시지
  • eccWidgetLLTShadow : 공식 근거 없음(비공개 자료), 엔지니어링 관점에서 명명 규칙을 바탕으로 유추한 내용입니다.
    • ECC (Error Correction Code) : 낸드 플래시 메모리나 컨트롤러 내부 캐시(RAM)에서 발생하는 데이터의 오류를 감지하고 정정하는 기능으로 추정
    • Widget : Apple의 펌웨어나 SoC(System on Chip) 설계에서 특정 기능을 수행하는 '개별 하드웨어 논리 블록(Hardware IP)' 또는 서브 모듈을 지칭할 때 종종 사용되는 내부적인 관용 표현으로 추정
    • LLT (Logical Location Table) : SSD의 핵심 시스템인 FTL(Flash Translation Layer)에서 운영체제의 논리적 주소와 실제 낸드의 물리적 주소를 매핑해 주는 '논리-물리 주소 변환 테이블(L2P Table)로 추정
    • Shadow : 낸드에 저장된 원본 테이블 데이터를 빠른 처리 속도를 위해 컨트롤러 내부의 캐시 메모리(SRAM 또는 DRAM)에 복사해 둔 '섀도우 카피(Shadow Copy)'로 추정
    • 추정 정리 : SSD 내부 메모리에 임시로 올라와 있는 주소 매핑 테이블(LLT Shadow)의 무결성을 검사하고 오류를 정정(ECC)하는 담당 모듈로 예상해 볼수 있다.

kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)

  • AppleNVMe Assert failed: kIOReturnSuccess == (status) : 작업 결과(status)가 정상(Success)이어야 하는데, 모종의 이유로 오류 상태를 반환했다는 뜻입니다. 첫 번째 줄의 문제 때문에 연쇄적으로 발생하는 로그입니다.

kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9

  • AppleANS2NVMeController : Mac(Apple Silicon(M시리즈) 또는 T2 칩 탑재 모델)의 내부 저장장치 컨트롤러 이름
  • PowerStateAction : 주요지점 SSD가 절전 모드로 진입하거나 깨어나는 등 전원 상태를 변경하는 과정에서 문제가 발생
  • status - 0xe00002c9 : IOKit 프레임워크의 내부 일반 오류(kIOReturnInternalError) 코드로, 드라이버/컨트롤러 내부에서 처리 불능 상태가 발생했음을 의미 (상세 비트 분석은 하단 참고 자료 참조)

02 - NVMe 커맨드 응답 에러 (Generic Command Status Error)

디스크 I/O 처리 과정에서 NVMe 컨트롤러가 비정상 상태 코드(0x2, 0xC0)를 반환하는 내역이 확인되었습니다.

kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest _, uint32_t)::5948:Status Code: 0x2

kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest _, uint32_t)::5948:Status Code: 0xC0

kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0x2

kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0

  • IONVMeController : SSD(NVMe) 장치를 제어하는 시스템 소프트웨어
  • PrintCompletionErrorDetail : SSD가 지시받은 작업을 끝마치는 데 실패(Completion Error)했을 때, 그 실패의 구체적인 내역(Detail)을 시스템 로그에 출력하는 함수
  • AppleNVMeRequest * : 운영체제가 SSD에 전달한 특정한 '작업 요청'(데이터 읽기, 쓰기, 상태 확인 등)을 의미
  • uint32_t 및 ::5948: : 메모리에 할당된 데이터의 크기 형식(uint32_t)과, 이 오류 메시지를 출력하도록 작성된 커널 코드의 특정 줄 번호(5948)를 뜻
  • Status Code: 0x2 / 0xC0 : SSD 하드웨어가 시스템에 "작업을 실패"로 돌려보낸 고유 에러 코드
    • 0x2 : 보통 SSD에 전달된 명령어 자체에 문제가 있거나, 현재 SSD 상태에서 처리할 수 없는 잘못된 명령일 때(Invalid Field) 반환
    • 0xC0 : 정확한 의미는 Apple 비공개 벤더 코드라 확인 불가하나, 발생 맥락상 컨트롤러 레벨 오류로 추정

03 - 잠자기 중 백그라운드 업데이트 시도와 디스크 부하 (장애 유발 트리거)

사용자가 기기를 사용하지 않고 상판을 덮어둔 시간대(새벽/오전)에도 시스템이 완전히 유휴 상태(Idle)에 머무르지 않고, 백그라운드 OS 업데이트 프로세스를 지속적으로 구동하고 있었던 정황이 확인되었습니다.

kernel: (MobileSoftwareUpdate) ...
kernel: (apfs) authapfs_seal_break: disk3s1 integrity protection will be disabled
kernel: (backupd) ... com.apple.TimeMachine.2026-08-...

잠자기(DarkWake/Power Nap) 중 반복된 MobileSoftwareUpdate 호출

  • 시스템이 주기적으로 저전력 깨어남(DarkWake) 상태로 진입하여 백그라운드 OS 업데이트 데몬(com.apple.MobileSoftwareUpdate)을 실행했습니다.
  • 전원 관리(PowerStateAction)에 이미 결함이 발생하고 있던 NVMe 컨트롤러에 반복적인 절전 진입/복귀 명령이 가해지며 스트레스가 가중되었습니다.

SSV(Signed System Volume) 봉인 해제 및 롤백 반복

  • 업데이트 패치 준비를 위해 시스템 볼륨의 무결성 보호 봉인을 일시 해제(authapfs_seal_break: disk3s1 integrity protection will be disabled)하고, 업데이트용 APFS 스냅샷 마운트 및 롤백(revert_to_snapshot)을 반복적으로 수행했습니다.
  • 컨트롤러 응답 에러가 발생하는 불안정한 SSD 상태에서 시스템 핵심 파티션에 대한 반복적인 마운트/수정이 시도되었습니다.

Time Machine 로컬 스냅샷(backupd) 생성에 따른 대량 I/O 발생

  • 업데이트 전 안전한 롤백 지점을 확보하기 위해 백그라운드 백업 데몬(backupd)이 시간 단위로 기가바이트(GB) 단위의 APFS 로컬 스냅샷(com.apple.TimeMachine...)을 지속적으로 생성했습니다.
  • 쓰기/읽기 작업 실패(Status Code 0x2, 0xC0)가 간헐적으로 발생하던 디스크에 고부하 I/O가 집중적으로 유입되면서, 결국 16:17:56 시점의 시스템 입출력 완전 중단(Panic/Unresponsive)으로 이어지는 직접적인 원인으로 추정하고 있습니다.

04 - 타임라인 및 시스템 단절 구간 분석

Recovery(복구 모드) 진입 및 OS 재설치 시도가 있었던 구간의 로그 흐름 분석입니다.

2026-08-18 16:17:56.975985+0900 ... kernel: (apfs) tx_flush:1344: disk3 xid 4064342 tx stats: ...

2026-08-18 11:45:24.451623+0000 ... kernel: (AppleDiskImages2) ... AppleDiskImagesController::start ...

2026-08-18 20:45:39.189590+0900 ... kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-...' w/snap xid 3094032

(참고: 11:45+0000 UTC 기록은 한국 시간 기준 20:45+0900 KST와 동일 시점입니다.)

단절 및 복구 과정

  • 16:17:56 로그 기록 단절 : 해당 시점을 마지막으로 시스템 로그 기록이 완전히 끊겼습니다. 앞선 백그라운드 업데이트 및 타임머신 스냅샷 생성 부하를 견디지 못하고 컨트롤러가 응답 불능 상태에 빠졌고, 정상적인 macOS 환경이 구동되지 못해 통합 로그(unified log) 시스템이 완전히 중단되었음을 유추할 수 있었습니다.
  • 복구 모드 체류 (약 4시간 공백) : 로그가 기록되지 않는 이 시간 동안 Recovery 환경에서 수차례의 재설치 시도(용량 부족, personalize 실패 등)를 진행하였습니다.
  • 20:45 시스템 정상화 : 마침내 APFS 볼륨 스냅샷 되돌리기(revert_to_snapshot)가 트리거되어 정상적인 macOS 환경으로 부팅하는 데 성공하였으며, 이때부터 시스템 로깅이 다시 정상적으로 기록되었습니다.

05 - 재부팅 시 재확인된 동일한 컨트롤러 에러

부팅 직후 운영체제가 SSD를 인식하는 초기 단계에서도, 겉보기와 달리 백그라운드에서는 컨트롤러 레벨의 에러(NVMeStatus=0xc0)가 이미 발생하고 있음을 보여주는 로그 흐름입니다.

NVMe 컨트롤러 초기화

2026-08-18 11:45:25.340915+0000 0x88a Default 0x0 0 0 kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::816:Successfully initialized NVMe drive 0x100000650

  • 설명: 운영체제(macOS)가 부팅되면서 하드웨어적으로 NVMe 장치를 성공적으로 인식하고, 통신을 위한 드라이버 초기화(Start)를 마쳤음을 나타냅니다.

첫 번째 컨트롤러 명령 실패 (Identify 단계 오류)

2026-08-18 11:45:25.342254+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cd00c2 DWORD10=0x00000000 NVMeStatus=0xc0

2026-08-18 11:45:25.342256+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CD

2026-08-18 11:45:25.342258+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)

2026-08-18 11:45:25.342259+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0

  • 설명: 초기화 완료 후 불과 0.001초 뒤, macOS가 논리적 구조를 파악하기 위해 SSD에 초기 식별 명령(Identify Controller)을 보냅니다. SSD 컨트롤러가 이를 처리하지 못하고 **제조사 독자 정의 오류(Status Code 0xC0)**를 즉각 반환합니다.

에러 세부 정보 확인 및 동일 에러 반복 (재시도 실패)

2026-08-18 11:45:25.342261+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0

2026-08-18 11:45:25.342477+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cd00c2 DWORD10=0x00000000 NVMeStatus=0xc0

2026-08-18 11:45:25.342478+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CD

2026-08-18 11:45:25.342480+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)

2026-08-18 11:45:25.342481+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0

2026-08-18 11:45:25.342482+0000 0x981 Default 0x0 0 0 kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0

  • 설명: 첫 번째 에러에서 반환된 DNR: 0x0은 "재시도 금지(Do Not Retry)" 플래그가 비활성화되어 있다는 뜻입니다. 이에 따라 커널 드라이버가 동일한 명령을 재시도했지만, 0.0002초 만에 완전히 동일한 0xC0 에러가 연달아 발생했습니다. 이는 일시적인 딜레이가 아니라, 컨트롤러가 해당 명령을 거부하거나 처리 불능 상태에 빠졌음을 보여줍니다.

참고 자료

NVMe 상태 코드 (0x2, 0xC0)

NVM Express Base Specification (Revision 2.2): https://nvmexpress.org/wp-content/uploads/NVM-Express-Base-Specification-Revision-2.2-2025.03.11-Ratified.pdf

공식 문서 상태 코드 일부 발췌(138p) 138p 일부 발췌

  • 0h : Generic Command Status - 모든 명령어 공통 일반 상태
  • 1h : Command Specific Status - 특정 관리/컨트롤러 명령어 전용 상태
  • 2h : Media and Data Integrity Errors - NVM 미디어 및 데이터 무결성 오류
  • 3h : Path Related Status - NVMe-oF 및 다중 경로/패브릭 관련 상태
  • 7h : Vendor Specific - 제조사 독자 정의 유형

동일 섹션의 Status Code (SC) 정의 항목을 보면 아래와 같이 범위가 규정되어 있습니다:

  • 00h ~ 7Fh: 표준 일반 상태 코드

  • 80h ~ BFh: I/O Command Set별 상태 코드

  • C0h ~ FFh: Vendor Specific (제조사 전용)

  • Status Code Type (SCT) 0x0: Generic Command Status (모든 명령어 공통 일반 상태)

  • Status Code (SC) 범위 및 해석:

    • 0x02 (00h~7Fh 표준 범위): Invalid Field in Command (컨트롤러에 전달된 파라미터 필드 오류)
    • 0xC0 (C0h~FFh 제조사 범위): Vendor Specific (Apple NVMe 컨트롤러 독자 정의 에러)

로그에 출력된 'Status Code Type: 0x0'과 결합하여 보면, 표준 규격 상의 파라미터 필드 오류(0x02)와 Apple 독자 정의 컨트롤러 내부 에러(0xC0)가 순차적으로 반환되었음을 확인할 수 있습니다.

IOReturn / IOKit 에러 코드 체계

IOReturn.h 발췌:

#define kIOReturnInternalError   iokit_common_err(0x2c9) // internal error

[0x2c9가 0xe00002c9로 표현되는 이유]

macOS 커널(Mach Error 체계)은 32비트 정수 공간을 분할하여 시스템, 서브시스템, 에러 코드를 비트 연산으로 결합합니다.

필드비트 위치비트 크기설명
System (sys)Bits 31 ~ 266 bits에러가 발생한 상위 시스템 식별자
Subsystem (sub)Bits 25 ~ 1412 bits시스템 내부 세부 하위 모듈 식별자
Error Code (code)Bits 13 ~ 014 bits실제 고유 에러 번호 (0x2c9)

최종 에러 코드 0xe00002c9는 IOKit 프레임워크(0xe0000000) 내에서 발생한 하드웨어 컨트롤러 내부 일반 실패(0x2c9)를 정의합니다.

SSV / 스냅샷 되돌리기

로그 수정 사항

개인정보 및 보안을 위해 민감한 정보는 제거한 자료입니다.

[REDACTED] 로 변경한 내역

  • 사용자명
  • 호스트명
  • SSD 시리얼 넘버
  • 개인 파일명

전체 로그

(base) [REDACTED]@[REDACTED] ~ % log show --predicate 'process == "kernel" AND (eventMessage contains[c] "disk" OR eventMessage contains[c] "nvme" OR eventMessage contains[c] "io error")' --last 24h
Filtering the log data using "process == "kernel" AND (composedMessage CONTAINS[c] "disk" OR composedMessage CONTAINS[c] "nvme" OR composedMessage CONTAINS[c] "io error")"
Skipping info and debug messages, pass --info and/or --debug to include.
Timestamp                       Thread     Type        Activity             PID    TTL
2026-08-17 21:55:08.117170+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042442 tx stats: # 22920 owait 973 3481us finish 23110 bar2 22798 f 11042 enter 205 fq 36 43 574us close 3us prep 301us flush 2029us
2026-08-17 21:55:23.826979+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042462 tx stats: # 22940 owait 973 3481us finish 23130 bar2 22818 f 11061 enter 10 fq 17 18 140us close 0us prep 152us flush 2646us
2026-08-17 21:55:59.418309+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042482 tx stats: # 22960 owait 975 3476us finish 23154 bar2 22838 f 11080 enter 15 fq 23 27 340us close 0us prep 167us flush 1561us
2026-08-17 21:56:14.332455+0900 0x6a3a3    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 21:56:17.615244+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042502 tx stats: # 22980 owait 975 3476us finish 23174 bar2 22858 f 11094 enter 31 fq 28 33 470us close 0us prep 277us flush 2440us
2026-08-17 21:56:41.996617+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042522 tx stats: # 23000 owait 975 3476us finish 23194 bar2 22878 f 11107 enter 78 fq 78 93 1243us close 0us prep 949us flush 1361us
2026-08-17 21:56:57.349889+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042542 tx stats: # 23020 owait 976 3473us finish 23217 bar2 22898 f 11123 enter 193 fq 33 40 655us close 0us prep 815us flush 3371us
2026-08-17 21:57:13.701972+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042562 tx stats: # 23040 owait 977 3471us finish 23239 bar2 22918 f 11140 enter 57 fq 30 44 314us close 0us prep 1039us flush 1610us
2026-08-17 21:57:25.561655+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042582 tx stats: # 23060 owait 978 3468us finish 23261 bar2 22938 f 11154 enter 99 fq 14 17 403us close 0us prep 344us flush 3097us
2026-08-17 21:57:44.912464+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042602 tx stats: # 23080 owait 979 3465us finish 23283 bar2 22958 f 11169 enter 415 fq 40 550 2827us close 0us prep 1404us flush 2826us
2026-08-17 21:58:00.519200+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042622 tx stats: # 23100 owait 979 3465us finish 23302 bar2 22978 f 11182 enter 187 fq 24 27 197us close 0us prep 1577us flush 1571us
2026-08-17 21:58:17.680899+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042642 tx stats: # 23120 owait 979 3465us finish 23322 bar2 22998 f 11197 enter 3 fq 24 32 603us close 0us prep 236us flush 2893us
2026-08-17 21:58:55.490735+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042662 tx stats: # 23140 owait 979 3465us finish 23342 bar2 23018 f 11209 enter 123 fq 117 132 1915us close 0us prep 1775us flush 1713us
2026-08-17 21:59:17.773210+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042682 tx stats: # 23160 owait 979 3465us finish 23362 bar2 23038 f 11224 enter 21 fq 27 35 344us close 0us prep 280us flush 2169us
2026-08-17 21:59:52.515809+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042702 tx stats: # 23180 owait 979 3465us finish 23385 bar2 23058 f 11232 enter 40 fq 24 33 451us close 0us prep 335us flush 1261us
2026-08-17 22:00:14.649541+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042722 tx stats: # 23200 owait 980 3462us finish 23406 bar2 23078 f 11245 enter 22 fq 42 48 409us close 0us prep 687us flush 690us
2026-08-17 22:00:30.746340+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042742 tx stats: # 23220 owait 980 3462us finish 23427 bar2 23098 f 11261 enter 7 fq 37 41 609us close 0us prep 207us flush 2486us
2026-08-17 22:01:14.645901+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042762 tx stats: # 23240 owait 980 3462us finish 23447 bar2 23118 f 11277 enter 76 fq 80 94 1520us close 0us prep 1805us flush 1346us
2026-08-17 22:01:26.820170+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042782 tx stats: # 23260 owait 981 3459us finish 23468 bar2 23138 f 11295 enter 36 fq 26 65 699us close 0us prep 310us flush 3206us
2026-08-17 22:01:57.460535+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042802 tx stats: # 23280 owait 981 3459us finish 23488 bar2 23158 f 11306 enter 12 fq 65 324 1653us close 0us prep 260us flush 2975us
2026-08-17 22:02:30.648616+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042822 tx stats: # 23300 owait 981 3459us finish 23508 bar2 23178 f 11320 enter 69 fq 51 60 783us close 0us prep 1135us flush 1560us
2026-08-17 22:02:38.490761+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042842 tx stats: # 23320 owait 982 3457us finish 23530 bar2 23198 f 11336 enter 58 fq 21 30 302us close 0us prep 422us flush 1793us
2026-08-17 22:03:02.483584+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042862 tx stats: # 23340 owait 983 3457us finish 23551 bar2 23218 f 11349 enter 47 fq 12 17 121us close 0us prep 682us flush 1162us
2026-08-17 22:03:11.796606+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042882 tx stats: # 23360 owait 984 3456us finish 23572 bar2 23238 f 11369 enter 471 fq 39 42 451us close 0us prep 1500us flush 3418us
2026-08-17 22:03:18.924151+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042902 tx stats: # 23380 owait 986 3451us finish 23594 bar2 23258 f 11389 enter 203 fq 24 27 257us close 0us prep 221us flush 2138us
2026-08-17 22:03:30.113555+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042922 tx stats: # 23400 owait 987 3448us finish 23615 bar2 23278 f 11408 enter 14 fq 35 169 902us close 0us prep 365us flush 3264us
2026-08-17 22:03:38.813778+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042942 tx stats: # 23420 owait 988 3449us finish 23638 bar2 23298 f 11426 enter 43 fq 32 47 483us close 0us prep 534us flush 1872us
2026-08-17 22:03:45.628315+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042962 tx stats: # 23440 owait 990 3445us finish 23661 bar2 23318 f 11443 enter 250 fq 50 57 1071us close 4us prep 548us flush 2961us
2026-08-17 22:03:55.830075+0900 0x6d337    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 22:04:03.552114+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4042982 tx stats: # 23460 owait 993 3443us finish 23681 bar2 23338 f 11452 enter 4 fq 40 48 1239us close 0us prep 279us flush 2557us
2026-08-17 22:04:29.919098+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043002 tx stats: # 23480 owait 994 3440us finish 23704 bar2 23358 f 11467 enter 20 fq 91 108 1176us close 0us prep 326us flush 1981us
2026-08-17 22:05:06.990386+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043022 tx stats: # 23500 owait 994 3440us finish 23726 bar2 23378 f 11478 enter 59 fq 25 33 585us close 0us prep 927us flush 1881us
2026-08-17 22:05:29.207881+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043042 tx stats: # 23520 owait 994 3440us finish 23748 bar2 23398 f 11493 enter 22 fq 111 627 2432us close 0us prep 457us flush 1859us
2026-08-17 22:06:01.779647+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043062 tx stats: # 23540 owait 994 3440us finish 23770 bar2 23418 f 11510 enter 419 fq 52 66 520us close 0us prep 944us flush 3477us
2026-08-17 22:06:13.856218+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043082 tx stats: # 23560 owait 994 3440us finish 23792 bar2 23438 f 11523 enter 14 fq 29 35 536us close 0us prep 306us flush 2648us
2026-08-17 22:06:38.779519+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043102 tx stats: # 23580 owait 994 3440us finish 23816 bar2 23458 f 11539 enter 134 fq 29 155 594us close 0us prep 1310us flush 2696us
2026-08-17 22:07:18.486438+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043122 tx stats: # 23600 owait 994 3440us finish 23836 bar2 23478 f 11552 enter 13 fq 54 102 1048us close 0us prep 273us flush 2931us
2026-08-17 22:07:46.214144+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043142 tx stats: # 23620 owait 994 3440us finish 23856 bar2 23498 f 11567 enter 4 fq 29 38 459us close 0us prep 151us flush 2535us
2026-08-17 22:08:18.545268+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043162 tx stats: # 23640 owait 994 3440us finish 23876 bar2 23518 f 11582 enter 8 fq 20 24 325us close 0us prep 223us flush 2824us
2026-08-17 22:08:49.092060+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043182 tx stats: # 23660 owait 994 3440us finish 23896 bar2 23538 f 11595 enter 317 fq 34 58 484us close 0us prep 5381us flush 2316us
2026-08-17 22:08:49.497964+0900 0x6f238    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-17 22:09:18.614590+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043202 tx stats: # 23680 owait 994 3440us finish 23916 bar2 23558 f 11609 enter 173 fq 21 26 556us close 0us prep 2446us flush 2437us
2026-08-17 22:09:52.806980+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043222 tx stats: # 23700 owait 994 3440us finish 23936 bar2 23578 f 11621 enter 118 fq 21 32 705us close 0us prep 1547us flush 2942us
2026-08-17 22:10:13.864634+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043242 tx stats: # 23720 owait 995 3437us finish 23958 bar2 23598 f 11638 enter 46 fq 102 113 1887us close 1us prep 597us flush 1937us
2026-08-17 22:10:26.119161+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043262 tx stats: # 23740 owait 996 3434us finish 23981 bar2 23618 f 11655 enter 350 fq 21 24 414us close 0us prep 1935us flush 2914us
2026-08-17 22:10:45.453603+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043282 tx stats: # 23760 owait 997 3431us finish 24004 bar2 23638 f 11674 enter 28 fq 120 1282 2667us close 0us prep 517us flush 2814us
2026-08-17 22:11:18.819508+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043302 tx stats: # 23780 owait 997 3431us finish 24024 bar2 23658 f 11690 enter 10 fq 70 88 2216us close 0us prep 456us flush 1740us
2026-08-17 22:11:41.209814+0900 0x704d2    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 22:11:42.136878+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043322 tx stats: # 23800 owait 997 3431us finish 24044 bar2 23678 f 11702 enter 156 fq 98 159 3490us close 0us prep 2763us flush 1567us
2026-08-17 22:12:14.591228+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043342 tx stats: # 23820 owait 997 3431us finish 24066 bar2 23698 f 11719 enter 185 fq 22 29 619us close 0us prep 2977us flush 2608us
2026-08-17 22:12:26.828739+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043362 tx stats: # 23840 owait 997 3431us finish 24086 bar2 23718 f 11735 enter 8 fq 42 67 534us close 0us prep 230us flush 2680us
2026-08-17 22:12:59.824633+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043382 tx stats: # 23860 owait 997 3431us finish 24107 bar2 23738 f 11750 enter 43 fq 29 38 776us close 0us prep 396us flush 2616us
2026-08-17 22:13:30.134170+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043402 tx stats: # 23880 owait 997 3431us finish 24127 bar2 23758 f 11765 enter 12 fq 56 560 1027us close 0us prep 338us flush 2646us
2026-08-17 22:14:11.050341+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043422 tx stats: # 23900 owait 997 3431us finish 24147 bar2 23778 f 11779 enter 50 fq 21 29 292us close 0us prep 423us flush 1144us
2026-08-17 22:14:24.729311+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043442 tx stats: # 23920 owait 998 3430us finish 24170 bar2 23798 f 11796 enter 298 fq 15 17 161us close 0us prep 669us flush 3167us
2026-08-17 22:14:44.683349+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043462 tx stats: # 23940 owait 1000 3428us finish 24192 bar2 23818 f 11812 enter 34 fq 31 37 230us close 5us prep 800us flush 2525us
2026-08-17 22:15:08.800295+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043482 tx stats: # 23960 owait 1001 3426us finish 24215 bar2 23838 f 11829 enter 178 fq 18 24 373us close 0us prep 891us flush 3103us
2026-08-17 22:15:44.821596+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043502 tx stats: # 23980 owait 1001 3426us finish 24235 bar2 23858 f 11844 enter 48 fq 65 81 842us close 0us prep 909us flush 2761us
2026-08-17 22:16:24.105131+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043522 tx stats: # 24000 owait 1001 3426us finish 24255 bar2 23878 f 11861 enter 8 fq 54 306 1733us close 0us prep 294us flush 3259us
2026-08-17 22:17:19.279733+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043542 tx stats: # 24020 owait 1001 3426us finish 24275 bar2 23898 f 11876 enter 68 fq 87 345 1757us close 0us prep 571us flush 2646us
2026-08-17 22:17:56.832497+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043562 tx stats: # 24040 owait 1001 3426us finish 24295 bar2 23918 f 11894 enter 5 fq 41 59 1108us close 0us prep 246us flush 2713us
2026-08-17 22:18:06.687122+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043582 tx stats: # 24060 owait 1003 3420us finish 24317 bar2 23938 f 11910 enter 16 fq 19 20 149us close 0us prep 184us flush 1541us
2026-08-17 22:18:17.605648+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043602 tx stats: # 24080 owait 1005 3414us finish 24339 bar2 23958 f 11924 enter 9 fq 28 34 287us close 0us prep 161us flush 2358us
2026-08-17 22:18:29.188738+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043622 tx stats: # 24100 owait 1006 3411us finish 24361 bar2 23978 f 11940 enter 8 fq 26 31 293us close 0us prep 169us flush 2908us
2026-08-17 22:18:44.592761+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043642 tx stats: # 24120 owait 1007 3411us finish 24383 bar2 23998 f 11957 enter 294 fq 12 13 147us close 0us prep 2454us flush 1907us
2026-08-17 22:18:52.680905+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:18:52.680906+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:18:52.683147+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:18:52.683148+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:18:54.825177+0900 0x72f60    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-17 22:18:54.825191+0900 0x72f60    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 47499); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:54.825207+0900 0x72f60    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4043662)
2026-08-17 22:18:54.836129+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043662 tx stats: # 24140 owait 1009 3411us finish 24405 bar2 24018 f 11967 enter 834 fq 82 116 883us close 5us prep 3616us flush 2821us
2026-08-17 22:18:54.836391+0900 0x72f60    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-17 22:18:54.836864+0900 0x72f60    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-17 22:18:54.837169+0900 0x72f60    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-17 22:18:54.837258+0900 0x72f60    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 47499); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:54.867408+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-17 22:18:54.867424+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-17 22:18:54.867464+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-17 22:18:54.867474+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-17 22:18:54.869146+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 47498); parent: launchd (pid 1)
2026-08-17 22:18:54.869193+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-17 22:18:54.871902+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-17 22:18:54.873263+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-17 22:18:54.932590+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-17 22:18:54.932606+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 47503); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:54.932613+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4043665)
2026-08-17 22:18:54.938400+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-17 22:18:54.938462+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-17 22:18:54.938516+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 772169
2026-08-17 22:18:54.938539+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-17 22:18:55.433044+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 772725 -> 771466
2026-08-17 22:18:55.457536+0900 0x72f8d    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4043666-4043666
2026-08-17 22:18:55.527618+0900 0x72f8d    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4043666, om_snap_count 1 om_most_recent_snap 4043666
2026-08-17 22:18:55.527625+0900 0x72f8d    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4043666
2026-08-17 22:18:55.527932+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-17 22:18:55.528360+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4043669)
2026-08-17 22:18:55.536382+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-17 22:18:55.536480+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-17 22:18:55.536549+0900 0x72f81    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 47503); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:55.572449+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 47498); parent: launchd (pid 1)
2026-08-17 22:18:55.572482+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-17 22:18:55.573853+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-17 22:18:55.576694+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-17 22:18:55.881026+0900 0x72fd6    Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-17 22:18:55.881041+0900 0x72fd6    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mounting volume Recovery, requested by: mount_apfs (pid 47513); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:55.881205+0900 0x72fd6    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-17 22:18:55.881309+0900 0x72fd6    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-17 22:18:55.881316+0900 0x72fd6    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-17 22:18:55.881365+0900 0x72fd6    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mount-complete volume Recovery, requested by: mount_apfs (pid 47513); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:55.927660+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: com.apple.MobileSoftwareUpdate. (pid 47498); parent: launchd (pid 1)
2026-08-17 22:18:55.927686+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s3 waiting for purgatory cleaner to finish
2026-08-17 22:18:55.928992+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-17 22:18:55.930184+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-17 22:18:56.118809+0900 0x72fe2    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-17 22:18:56.118834+0900 0x72fe2    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 47515); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:56.118863+0900 0x72fe2    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4043678)
2026-08-17 22:18:56.132361+0900 0x72fe2    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-17 22:18:56.132464+0900 0x72fe2    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-17 22:18:56.132559+0900 0x72fe2    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-17 22:18:56.132654+0900 0x72fe2    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 47515); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:56.169364+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-17 22:18:56.169393+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-17 22:18:56.169453+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-17 22:18:56.169469+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-17 22:18:56.170534+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 47498); parent: launchd (pid 1)
2026-08-17 22:18:56.170556+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-17 22:18:56.171775+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-17 22:18:56.174678+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-17 22:18:56.270553+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-17 22:18:56.270571+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 47517); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:56.270578+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4043680)
2026-08-17 22:18:56.275622+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-17 22:18:56.275682+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-17 22:18:56.275787+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 770439
2026-08-17 22:18:56.275813+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-17 22:18:56.348654+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 771466 -> 790029
2026-08-17 22:18:56.371295+0900 0x72ff7    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4043681-4043681
2026-08-17 22:18:56.406560+0900 0x72ff7    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4043681, om_snap_count 1 om_most_recent_snap 4043681
2026-08-17 22:18:56.406572+0900 0x72ff7    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4043681
2026-08-17 22:18:56.406987+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-17 22:18:56.412324+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4043682)
2026-08-17 22:18:56.414622+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043682 tx stats: # 24160 owait 1014 3408us finish 24425 bar2 24038 f 11981 enter 45 fq 48 94 1464us close 13us prep 1674us flush 7064us
2026-08-17 22:18:56.417418+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-17 22:18:56.417517+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-17 22:18:56.417605+0900 0x72fef    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 47517); parent: com.apple.Mobile (pid 47498)
2026-08-17 22:18:56.436079+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 47498); parent: launchd (pid 1)
2026-08-17 22:18:56.436101+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-17 22:18:56.436185+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-17 22:18:56.441861+0900 0x72f4e    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-17 22:18:58.934097+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemWillSleep[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:18:58.934099+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000280
2026-08-17 22:18:58.934271+0900 0x72f4d    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:18:58.935055+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[81] to com.apple.iokit.IONVMeFamily
2026-08-17 22:18:58.935057+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:18:59.013928+0900 0x72f4d    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:18:59.164752+0900 0x72f4c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:18:59.165056+0900 0x73071    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:18:59.186491+0900 0x73071    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:18:59.186598+0900 0x73071    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:18:59.186602+0900 0x73071    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:18:59.186604+0900 0x73071    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:18:59.186672+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:18:59.205500+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:18:59.205502+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:31.120161+0900 0x72d1c    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:31.120166+0900 0x72d1c    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:31.126480+0900 0x72e4b    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:21:31.126491+0900 0x72e4b    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:21:31.126501+0900 0x72e4b    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:21:31.126507+0900 0x72e4b    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:21:31.126516+0900 0x72e4b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:21:31.132020+0900 0x72e4b    Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6525: disk3s5 apfs is being LOCKED!
2026-08-17 22:21:31.132033+0900 0x72e4b    Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6664: disk3s5 apfs is now LOCKED (flags 0x441000d6)!
2026-08-17 22:21:31.238713+0900 0x730ac    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:21:31.238722+0900 0x730ac    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:21:31.238734+0900 0x730ac    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:21:31.238739+0900 0x730ac    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:21:31.242784+0900 0x730ac    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:21:31.285297+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_lock_notification:6949: disk3s5 done processing lock keybag notification, err 0, (flags 0x441000c6)
2026-08-17 22:21:31.366624+0900 0x730a7    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:21:31.366654+0900 0x730a7    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:21:31.366781+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:31.366782+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:32.391253+0900 0x6fda8    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:completeReport fLogAfterWatchDog:1 fEnableCoreCapture:1 needCaptureLog:1 needsWatchdog:0 dumpFaultReportToDisk:1 needsBlockingFaultReporter:0 doCapture=1
2026-08-17 22:21:32.433640+0900 0x73165    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29540785
2026-08-17 22:21:32.433656+0900 0x73165    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 2752512:7737344,6 for inode 29540785
2026-08-17 22:21:32.435028+0900 0x73165    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29540889
2026-08-17 22:21:32.435042+0900 0x73165    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 2768896:1429504,6 for inode 29540889
2026-08-17 22:21:32.440272+0900 0x73165    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29540776
2026-08-17 22:21:32.440283+0900 0x73165    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 2736128:14045184,6 for inode 29540776
2026-08-17 22:21:32.594052+0900 0x72049    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:32.787621+0900 0x72049    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:32.835250+0900 0x72049    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:32.897371+0900 0x7233f    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:33.588804+0900 0x73160    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:33.597148+0900 0x73160    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:33.604000+0900 0x73160    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:33.610722+0900 0x73160    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:33.617697+0900 0x73160    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:33.624896+0900 0x73160    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:33.631659+0900 0x73160    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:21:35.445505+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043702 tx stats: # 24180 owait 1018 3404us finish 24445 bar2 24058 f 11989 enter 29 fq 82 497 941us close 0us prep 160us flush 2531us
2026-08-17 22:21:44.492086+0900 0x731e0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:21:44.493107+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:44.493111+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:44.578353+0900 0x731e0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:21:44.601311+0900 0x732ca    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:21:44.601461+0900 0x732c0    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:21:44.618279+0900 0x732c0    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:21:44.618336+0900 0x732c0    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:21:44.618338+0900 0x732c0    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:21:44.618340+0900 0x732c0    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:21:44.618378+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:21:44.634827+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:44.634828+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:47.255131+0900 0x73327    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:47.255136+0900 0x73327    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:47.260134+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:21:47.260149+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:21:47.260165+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:21:47.260173+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:21:47.260186+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:21:47.385075+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:21:47.385089+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:21:47.385104+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:21:47.385111+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:21:47.389050+0900 0x732ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:21:47.389208+0900 0x732fc    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:21:47.389260+0900 0x732fc    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:21:47.389457+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:47.389459+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:54.078132+0900 0x732f9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:21:54.079521+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:54.079525+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:54.159364+0900 0x732f9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:21:54.182372+0900 0x73374    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:21:54.182539+0900 0x733e4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:21:54.199592+0900 0x733e4    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:21:54.199654+0900 0x733e4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:21:54.199656+0900 0x733e4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:21:54.199658+0900 0x733e4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:21:54.199708+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:21:54.216374+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:54.216375+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:59.405368+0900 0x7340b    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:59.405372+0900 0x7340b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:21:59.410120+0900 0x7341f    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:21:59.410128+0900 0x7341f    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:21:59.410137+0900 0x7341f    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:21:59.410141+0900 0x7341f    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:21:59.410152+0900 0x7341f    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:21:59.533621+0900 0x7341b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:21:59.533641+0900 0x7341b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:21:59.533657+0900 0x7341b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:21:59.533664+0900 0x7341b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:21:59.537790+0900 0x7341b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:21:59.537888+0900 0x73418    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:21:59.537913+0900 0x73418    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:21:59.538036+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:21:59.538036+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:09.052628+0900 0x73436    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:22:09.053635+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:09.053638+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:09.133540+0900 0x73436    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:22:09.156619+0900 0x734fb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:22:09.156809+0900 0x73470    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:22:09.174663+0900 0x73470    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:22:09.174737+0900 0x73470    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:22:09.174739+0900 0x73470    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:22:09.174740+0900 0x73470    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:22:09.174804+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:22:09.207483+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:09.207484+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:11.902527+0900 0x73560    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:11.902531+0900 0x73560    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:11.907597+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:22:11.907614+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:22:11.907630+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:22:11.907638+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:22:11.907656+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:22:12.033190+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:22:12.033201+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:22:12.033213+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:22:12.033219+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:22:12.037292+0900 0x73543    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:22:12.037387+0900 0x73503    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:22:12.037413+0900 0x73503    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:22:12.037569+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:12.037570+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:14.610586+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043722 tx stats: # 24200 owait 1018 3404us finish 24465 bar2 24078 f 12000 enter 179 fq 40 58 32992us close 0us prep 519us flush 571us
2026-08-17 22:22:18.748813+0900 0x7355f    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:22:18.749798+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:18.749801+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:18.833566+0900 0x7355f    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:22:18.856466+0900 0x73664    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:22:18.856520+0900 0x7367b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:22:18.874231+0900 0x7367b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:22:18.874339+0900 0x7367b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:22:18.874341+0900 0x7367b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:22:18.874343+0900 0x7367b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:22:18.874385+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:22:18.893224+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:18.893225+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:24.396685+0900 0x736a2    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:24.396690+0900 0x736a2    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:24.401604+0900 0x7369e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:22:24.401613+0900 0x7369e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:22:24.401625+0900 0x7369e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:22:24.401633+0900 0x7369e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:22:24.401643+0900 0x7369e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:22:24.526283+0900 0x736ad    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:22:24.526295+0900 0x736ad    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:22:24.526310+0900 0x736ad    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:22:24.526316+0900 0x736ad    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:22:24.530372+0900 0x736ad    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:22:24.530466+0900 0x7369c    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:22:24.530491+0900 0x7369c    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:22:24.530660+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:24.530661+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:31.235827+0900 0x7370b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:22:31.236878+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:31.236880+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:31.320117+0900 0x7370b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:22:31.343813+0900 0x7370d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:22:31.343843+0900 0x7377d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:22:31.361208+0900 0x7377d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:22:31.361253+0900 0x7377d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:22:31.361256+0900 0x7377d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:22:31.361257+0900 0x7377d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:22:31.361293+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:22:31.389994+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:31.389996+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:36.914373+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:36.914378+0900 0x7377a    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:36.919149+0900 0x734f1    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:22:36.919159+0900 0x734f1    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:22:36.919173+0900 0x734f1    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:22:36.919177+0900 0x734f1    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:22:36.919186+0900 0x734f1    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:22:37.043326+0900 0x737af    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:22:37.043340+0900 0x737af    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:22:37.043354+0900 0x737af    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:22:37.043360+0900 0x737af    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:22:37.047424+0900 0x737af    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:22:37.047516+0900 0x7377a    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:22:37.047537+0900 0x7377a    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:22:37.047702+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:37.047703+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:37.979280+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043742 tx stats: # 24220 owait 1020 3398us finish 24485 bar2 24098 f 12009 enter 233 fq 78 91 33744us close 0us prep 1404us flush 1780us
2026-08-17 22:22:43.758840+0900 0x7381c    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:22:43.759901+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:43.759904+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:43.840418+0900 0x7381c    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:22:43.865956+0900 0x7381a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:22:43.866118+0900 0x73895    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:22:43.883329+0900 0x73895    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:22:43.883391+0900 0x73895    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:22:43.883393+0900 0x73895    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:22:43.883395+0900 0x73895    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:22:43.883433+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:22:43.900748+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:43.900749+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:49.403584+0900 0x7389f    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:49.403589+0900 0x7389f    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:49.408216+0900 0x738cc    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:22:49.408232+0900 0x738cc    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:22:49.408244+0900 0x738cc    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:22:49.408249+0900 0x738cc    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:22:49.408258+0900 0x738cc    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:22:49.532745+0900 0x738bb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:22:49.532751+0900 0x738bb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:22:49.532762+0900 0x738bb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:22:49.532766+0900 0x738bb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:22:49.536723+0900 0x738bb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:22:49.536786+0900 0x738bb    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:22:49.536813+0900 0x738bb    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:22:49.536925+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:49.536930+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:56.247891+0900 0x73929    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:22:56.249512+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:56.249517+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:22:56.333288+0900 0x73929    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:22:56.356326+0900 0x739c7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:22:56.356411+0900 0x739ad    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:22:56.373665+0900 0x739ad    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:22:56.373732+0900 0x739ad    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:22:56.373734+0900 0x739ad    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:22:56.373735+0900 0x739ad    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:22:56.373791+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:22:56.400054+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:22:56.400055+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:24:34.099929+0900 0x73a34    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:24:34.099934+0900 0x73a34    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:24:34.105425+0900 0x7312c    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:24:34.105440+0900 0x7312c    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:24:34.105450+0900 0x7312c    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:24:34.105455+0900 0x7312c    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:24:34.105468+0900 0x7312c    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:24:34.229917+0900 0x739fe    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:24:34.229924+0900 0x739fe    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:24:34.229936+0900 0x739fe    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:24:34.229940+0900 0x739fe    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:24:34.233877+0900 0x739fe    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:24:34.233980+0900 0x739fe    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:24:34.234006+0900 0x739fe    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:24:34.234118+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:24:34.234119+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:24:37.030622+0900 0x73ab9    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29550544
2026-08-17 22:24:37.030644+0900 0x73ab9    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 2736128:7753728,6 for inode 29550544
2026-08-17 22:24:37.031752+0900 0x73ab9    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29550676
2026-08-17 22:24:37.031767+0900 0x73ab9    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 2752512:1445888,6 for inode 29550676
2026-08-17 22:24:37.036089+0900 0x73ab9    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29550536
2026-08-17 22:24:37.036104+0900 0x73ab9    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 14991360:1789952,6 for inode 29550536
2026-08-17 22:24:44.953907+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043762 tx stats: # 24240 owait 1021 3395us finish 24505 bar2 24118 f 12017 enter 56 fq 55 88 2013us close 0us prep 357us flush 701us
2026-08-17 22:24:49.777107+0900 0x73a1d    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:24:49.778193+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:24:49.778197+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:24:49.861395+0900 0x73a1d    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:24:50.024159+0900 0x73d19    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:24:50.024517+0900 0x73d0e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:24:50.044443+0900 0x73d0e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:24:50.044864+0900 0x73d0e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:24:50.044870+0900 0x73d0e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:24:50.044873+0900 0x73d0e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:24:50.044939+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:24:50.064601+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:24:50.064607+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:34:24.841026+0900 0x73154    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:34:24.841032+0900 0x73154    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:34:24.846021+0900 0x73154    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:34:24.846030+0900 0x73154    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:34:24.846039+0900 0x73154    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:34:24.846044+0900 0x73154    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:34:24.846051+0900 0x73154    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:34:24.970390+0900 0x73d16    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:34:24.970447+0900 0x73d16    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:34:24.970465+0900 0x73d16    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:34:24.970471+0900 0x73d16    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:34:24.974470+0900 0x73d16    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:34:24.974597+0900 0x73d34    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:34:24.974624+0900 0x73d34    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:34:24.974728+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:34:24.974730+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:34:25.006041+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043782 tx stats: # 24260 owait 1022 3396us finish 24525 bar2 24138 f 12020 enter 43 fq 71 130 482us close 0us prep 259us flush 2417us
2026-08-17 22:34:25.911830+0900 0x73154    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:completeReport fLogAfterWatchDog:1 fEnableCoreCapture:1 needCaptureLog:1 needsWatchdog:0 dumpFaultReportToDisk:1 needsBlockingFaultReporter:0 doCapture=1
2026-08-17 22:34:25.924748+0900 0x73d9e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:25.962816+0900 0x734f7    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:26.048251+0900 0x734f7    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:26.071485+0900 0x734f1    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:26.087741+0900 0x7315c    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:26.097934+0900 0x7315c    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:26.108652+0900 0x7315c    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:26.117866+0900 0x7315c    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:26.132392+0900 0x734f7    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:26.147297+0900 0x7315c    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:26.170207+0900 0x7315c    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-17 22:34:34.795082+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043802 tx stats: # 24280 owait 1024 3393us finish 24545 bar2 24158 f 12030 enter 150 fq 32 46 392us close 0us prep 1502us flush 706us
2026-08-17 22:34:56.708016+0900 0x73e55    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-17 22:34:56.709527+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:34:56.709531+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:34:56.791408+0900 0x73e55    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:34:56.946541+0900 0x74282    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:34:56.946781+0900 0x74283    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-17 22:34:56.965492+0900 0x74283    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-17 22:34:56.965874+0900 0x74283    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-17 22:34:56.965884+0900 0x74283    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-17 22:34:56.965887+0900 0x74283    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-17 22:34:56.965961+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-17 22:34:56.988865+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:34:56.988868+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:46:16.416957+0900 0x73d9e    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:46:16.416963+0900 0x73d9e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:46:16.421564+0900 0x7405e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-17 22:46:16.421573+0900 0x7405e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:46:16.421587+0900 0x7405e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-17 22:46:16.421595+0900 0x7405e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-17 22:46:16.421609+0900 0x7405e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-17 22:46:16.431953+0900 0x734f1    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemWillPowerOn to com.apple.iokit.IONVMeFamily
2026-08-17 22:46:16.431956+0900 0x734f1    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000320
2026-08-17 22:46:16.546245+0900 0x742c8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-17 22:46:16.546256+0900 0x742c8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-17 22:46:16.546271+0900 0x742c8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-17 22:46:16.546277+0900 0x742c8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-17 22:46:16.550329+0900 0x742c8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-17 22:46:16.550453+0900 0x742c8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-17 22:46:16.550482+0900 0x742c8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-17 22:46:16.550657+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-17 22:46:16.550657+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-17 22:46:16.587449+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemHasPoweredOn to com.apple.iokit.IONVMeFamily
2026-08-17 22:46:16.587450+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000300
2026-08-17 22:46:16.661314+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043822 tx stats: # 24300 owait 1025 3393us finish 24565 bar2 24178 f 12038 enter 253 fq 180 235 1191us close 0us prep 1110us flush 624us
2026-08-17 22:46:18.803183+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6682: disk3s5 apfs is being UN-locked!
2026-08-17 22:46:18.803199+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6815: disk3s5 apfs is now UN-locked! (flags 0x441001c2)
2026-08-17 22:46:18.898620+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_unlock_notification:6995: disk3s5 done processing un-lock keybag notification, err 0, (flags 0x441000c2)
2026-08-17 22:46:21.166296+0900 0x745e1    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-17 22:46:24.953521+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043842 tx stats: # 24320 owait 1025 3393us finish 24585 bar2 24198 f 12051 enter 13 fq 55 63 653us close 0us prep 148us flush 2866us
2026-08-17 22:46:27.616585+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043862 tx stats: # 24340 owait 1026 3392us finish 24606 bar2 24218 f 12063 enter 32 fq 142 220 2781us close 0us prep 1076us flush 1195us
2026-08-17 22:46:31.255737+0900 0x7479d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29551112
2026-08-17 22:46:31.255758+0900 0x7479d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 2752512:7737344,6 for inode 29551112
2026-08-17 22:46:31.256304+0900 0x7479d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29551092
2026-08-17 22:46:31.256314+0900 0x7479d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 2736128:1462272,6 for inode 29551092
2026-08-17 22:46:31.258693+0900 0x7479d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29551060
2026-08-17 22:46:31.258715+0900 0x7479d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 10809344:5971968,6 for inode 29551060
2026-08-17 22:46:31.312474+0900 0x7446a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 22:46:42.353457+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043882 tx stats: # 24360 owait 1027 3389us finish 24626 bar2 24238 f 12073 enter 38 fq 23 39 300us close 0us prep 445us flush 1751us
2026-08-17 22:46:47.193085+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-17 22:46:47.193116+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-17 22:46:47.193142+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_remove:1106: disk3s5 proc backupd: deleting snapshot name (com.apple.TimeMachine.2026-08-16-204134.local) w/xid 4025179
2026-08-17 22:46:47.193270+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.apfs.purgatory.3d6b5b' snap_xid 4025179 extentref oid 772326 sblock oid 774923
2026-08-17 22:46:47.193320+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-17 22:46:47.193400+0900 0x26da     Default     0x0                  0      0    kernel: (apfs) cleanup_snapshot_purgatory:1819: disk3s5 processing snap xid 4025179...
2026-08-17 22:46:47.194130+0900 0x26da     Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4030142, dest_snap_xid 4025179, cur_tree_count 3180085, next_tree_count 27089
2026-08-17 22:46:47.711022+0900 0x26da     Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4030142, dest_snap_xid 4025179, cur_tree_count 3183454, next_tree_count 4178
2026-08-17 22:46:47.711418+0900 0x26da     Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4030142, dest_snap_xid 4025179, cur_tree_count 3183453, next_tree_count 4174
2026-08-17 22:46:47.711425+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-17 22:46:47.711446+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-17 22:46:47.711926+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-17 22:46:48.005269+0900 0x26da     Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-17-114103.local' snap_xid 4030142 extentref oid 771235 sblock oid 809926
2026-08-17 22:46:48.005321+0900 0x26da     Default     0x0                  0      0    kernel: (apfs) cleanup_snapshot_purgatory:1844: disk3s5 done processing snap xid 4025179
2026-08-17 22:46:48.005349+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-17 22:46:48.005350+0900 0x74938    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s5 started cleaning snapshots 4025179-4025179
2026-08-17 22:46:48.321713+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-17-224647.local' snap_xid 4043902 extentref oid 772674 sblock oid 775500
2026-08-17 22:46:48.390137+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043902 tx stats: # 24380 owait 1031 3497us finish 24642 bar2 24253 f 12081 enter 27 fq 2602 42940 41694us close 16466us prep 147us flush 953us
2026-08-17 22:46:48.390214+0900 0x7462b    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-17 22:46:48.864512+0900 0x74938    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s5 completed cleaning snapshot 4025179, om_snap_count 4 om_most_recent_snap 4043902
2026-08-17 22:46:50.232519+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043922 tx stats: # 24400 owait 1039 3472us finish 24662 bar2 24273 f 12085 enter 15 fq 161 181 3497us close 13us prep 397us flush 2127us
2026-08-17 22:47:07.297885+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043942 tx stats: # 24420 owait 1039 3472us finish 24682 bar2 24293 f 12101 enter 23 fq 23 28 873us close 0us prep 633us flush 2918us
2026-08-17 22:47:21.874355+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043962 tx stats: # 24440 owait 1039 3472us finish 24703 bar2 24313 f 12113 enter 68 fq 77 88 1962us close 2us prep 1216us flush 2284us
2026-08-17 22:47:44.531273+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4043982 tx stats: # 24460 owait 1039 3472us finish 24723 bar2 24333 f 12131 enter 53 fq 67 137 645us close 0us prep 446us flush 2957us
2026-08-17 22:47:51.616886+0900 0x75501    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_pageout : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-17 22:47:52.641086+0900 0x754f0    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_pageout : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-17 22:47:53.133079+0900 0x754f0    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-17 22:48:02.373795+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044002 tx stats: # 24480 owait 1039 3472us finish 24743 bar2 24353 f 12143 enter 48 fq 69 87 867us close 0us prep 556us flush 792us
2026-08-17 22:48:03.900440+0900 0x756d4    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-17 22:48:04.147162+0900 0x756da    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-17 22:48:16.038584+0900 0x7589f    Default     0x0                  0      0    kernel: (apfs) set_dir_stats:3204: disk3s5 setting dir-stats for ino 29552356 (dir-stats key 0 -> 29552415), set_flags 0x1
2026-08-17 22:48:26.818164+0900 0x74609    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-17 22:48:28.412095+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044022 tx stats: # 24500 owait 1039 3472us finish 24763 bar2 24373 f 12154 enter 293 fq 31 112 486us close 0us prep 992us flush 1464us
2026-08-17 22:48:40.613577+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044042 tx stats: # 24520 owait 1039 3472us finish 24783 bar2 24393 f 12155 enter 41 fq 35 42 340us close 0us prep 286us flush 435us
2026-08-17 22:48:50.360593+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044062 tx stats: # 24540 owait 1039 3472us finish 24803 bar2 24413 f 12164 enter 6 fq 21 40 266us close 0us prep 228us flush 2450us
2026-08-17 22:49:03.567228+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044082 tx stats: # 24560 owait 1041 3466us finish 24823 bar2 24433 f 12175 enter 63 fq 47 64 671us close 0us prep 347us flush 2250us
2026-08-17 22:49:17.042972+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044102 tx stats: # 24580 owait 1041 3466us finish 24843 bar2 24453 f 12177 enter 518 fq 17 32 254us close 0us prep 1392us flush 1441us
2026-08-17 22:49:24.529158+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044122 tx stats: # 24600 owait 1041 3466us finish 24863 bar2 24473 f 12181 enter 11 fq 19 45 205us close 0us prep 116us flush 335us
2026-08-17 22:49:39.872253+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044142 tx stats: # 24620 owait 1041 3466us finish 24883 bar2 24493 f 12185 enter 1401 fq 61 82 1039us close 0us prep 1143us flush 2142us
2026-08-17 22:49:57.676652+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044162 tx stats: # 24640 owait 1041 3466us finish 24903 bar2 24513 f 12199 enter 13 fq 26 32 421us close 0us prep 167us flush 2996us
2026-08-17 22:50:03.637621+0900 0x76274    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-17 22:50:06.028377+0900 0x75df6    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-17 22:50:12.398279+0900 0x7632f    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: Preview(49475) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-17 22:50:12.398280+0900 0x7632f    Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 49475, Preview
2026-08-17 22:50:13.202662+0900 0x7644f    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-17 22:50:25.976707+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044182 tx stats: # 24660 owait 1043 3460us finish 24923 bar2 24533 f 12206 enter 267 fq 31 35 420us close 0us prep 663us flush 1107us
2026-08-17 22:50:30.352378+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044202 tx stats: # 24680 owait 1043 3460us finish 24945 bar2 24553 f 12217 enter 18 fq 38 42 658us close 0us prep 202us flush 2007us
2026-08-17 22:50:54.308199+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044222 tx stats: # 24700 owait 1044 3458us finish 24965 bar2 24573 f 12228 enter 191 fq 45 51 956us close 0us prep 903us flush 1050us
2026-08-17 22:51:36.359978+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044242 tx stats: # 24720 owait 1046 3456us finish 24985 bar2 24593 f 12241 enter 60 fq 51 60 633us close 0us prep 504us flush 2005us
2026-08-17 22:52:09.353174+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044262 tx stats: # 24740 owait 1046 3456us finish 25005 bar2 24613 f 12253 enter 66 fq 34 41 732us close 0us prep 1221us flush 2492us
2026-08-17 22:52:35.432591+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044282 tx stats: # 24760 owait 1046 3456us finish 25025 bar2 24633 f 12270 enter 29 fq 13 16 134us close 0us prep 422us flush 2176us
2026-08-17 22:53:00.655444+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044302 tx stats: # 24780 owait 1046 3456us finish 25045 bar2 24653 f 12285 enter 86 fq 31 35 572us close 0us prep 771us flush 1686us
2026-08-17 22:53:20.340515+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044322 tx stats: # 24800 owait 1046 3456us finish 25066 bar2 24673 f 12302 enter 39 fq 20 23 349us close 0us prep 569us flush 3139us
2026-08-17 22:53:37.545272+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044342 tx stats: # 24820 owait 1047 3460us finish 25088 bar2 24693 f 12320 enter 22 fq 52 62 367us close 4us prep 379us flush 2634us
2026-08-17 22:53:53.640418+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044362 tx stats: # 24840 owait 1047 3460us finish 25108 bar2 24713 f 12335 enter 17 fq 15 17 293us close 0us prep 443us flush 654us
2026-08-17 22:54:18.372851+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044382 tx stats: # 24860 owait 1048 3458us finish 25128 bar2 24733 f 12343 enter 27 fq 57 67 465us close 0us prep 225us flush 1959us
2026-08-17 22:54:27.208510+0900 0x77c48    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 22:54:51.197460+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044402 tx stats: # 24880 owait 1048 3458us finish 25148 bar2 24753 f 12358 enter 6 fq 26 32 523us close 0us prep 248us flush 2945us
2026-08-17 22:55:13.721995+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044422 tx stats: # 24900 owait 1049 3455us finish 25169 bar2 24773 f 12372 enter 53 fq 57 81 1181us close 0us prep 328us flush 2240us
2026-08-17 22:55:27.268146+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044442 tx stats: # 24920 owait 1051 3452us finish 25192 bar2 24793 f 12391 enter 230 fq 26 36 232us close 0us prep 483us flush 3145us
2026-08-17 22:55:44.227786+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044462 tx stats: # 24940 owait 1051 3452us finish 25214 bar2 24813 f 12408 enter 92 fq 16 19 290us close 0us prep 1611us flush 2084us
2026-08-17 22:56:01.117082+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044482 tx stats: # 24960 owait 1051 3452us finish 25234 bar2 24833 f 12423 enter 15 fq 23 29 242us close 0us prep 320us flush 2760us
2026-08-17 22:56:30.205200+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044502 tx stats: # 24980 owait 1051 3452us finish 25255 bar2 24853 f 12438 enter 42 fq 40 55 358us close 0us prep 481us flush 1691us
2026-08-17 22:56:50.817783+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044522 tx stats: # 25000 owait 1051 3452us finish 25278 bar2 24873 f 12452 enter 10 fq 73 207 2120us close 0us prep 573us flush 2607us
2026-08-17 22:57:36.204189+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044542 tx stats: # 25020 owait 1051 3452us finish 25298 bar2 24893 f 12468 enter 173 fq 67 90 746us close 0us prep 2734us flush 3877us
2026-08-17 22:58:18.377833+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044562 tx stats: # 25040 owait 1051 3452us finish 25318 bar2 24913 f 12485 enter 311 fq 26 35 302us close 0us prep 2743us flush 2911us
2026-08-17 22:58:50.952940+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044582 tx stats: # 25060 owait 1051 3452us finish 25338 bar2 24933 f 12498 enter 30 fq 70 74 933us close 0us prep 944us flush 2756us
2026-08-17 22:59:44.235813+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044602 tx stats: # 25080 owait 1052 3454us finish 25358 bar2 24953 f 12513 enter 95 fq 126 393 1010us close 0us prep 863us flush 3311us
2026-08-17 23:00:07.686554+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044622 tx stats: # 25100 owait 1052 3454us finish 25378 bar2 24973 f 12529 enter 35 fq 23 31 206us close 0us prep 489us flush 933us
2026-08-17 23:00:22.701924+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044642 tx stats: # 25120 owait 1054 3453us finish 25399 bar2 24993 f 12540 enter 12 fq 19 22 487us close 0us prep 725us flush 1854us
2026-08-17 23:00:51.031541+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044662 tx stats: # 25140 owait 1054 3453us finish 25420 bar2 25013 f 12558 enter 105 fq 17 18 176us close 0us prep 1295us flush 2512us
2026-08-17 23:00:55.653912+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044682 tx stats: # 25160 owait 1055 3451us finish 25441 bar2 25033 f 12571 enter 2 fq 19 22 238us close 0us prep 148us flush 1704us
2026-08-17 23:01:50.873412+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044702 tx stats: # 25180 owait 1055 3451us finish 25461 bar2 25053 f 12584 enter 176 fq 18 26 284us close 0us prep 1613us flush 1509us
2026-08-17 23:01:53.835791+0900 0x7a5ed    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-17 23:01:57.639820+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044722 tx stats: # 25200 owait 1055 3451us finish 25481 bar2 25073 f 12594 enter 7 fq 47 59 475us close 0us prep 246us flush 2763us
2026-08-17 23:02:40.309472+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044742 tx stats: # 25220 owait 1055 3451us finish 25501 bar2 25093 f 12608 enter 6 fq 42 296 753us close 0us prep 278us flush 2287us
2026-08-17 23:03:00.342858+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044762 tx stats: # 25240 owait 1055 3451us finish 25521 bar2 25113 f 12623 enter 7 fq 43 541 1174us close 0us prep 302us flush 2621us
2026-08-17 23:03:33.694135+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044782 tx stats: # 25260 owait 1056 3448us finish 25541 bar2 25133 f 12640 enter 29 fq 60 313 1624us close 0us prep 870us flush 2820us
2026-08-17 23:03:57.683943+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044802 tx stats: # 25280 owait 1056 3448us finish 25562 bar2 25153 f 12655 enter 39 fq 22 55 333us close 0us prep 1524us flush 1274us
2026-08-17 23:04:44.433572+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044822 tx stats: # 25300 owait 1057 3446us finish 25582 bar2 25173 f 12669 enter 39 fq 33 44 670us close 0us prep 574us flush 3635us
2026-08-17 23:05:00.077684+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044842 tx stats: # 25320 owait 1057 3446us finish 25602 bar2 25193 f 12686 enter 459 fq 46 53 405us close 35us prep 6820us flush 4234us
2026-08-17 23:05:03.956092+0900 0x7a4ed    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 23:05:29.230440+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044862 tx stats: # 25340 owait 1057 3446us finish 25622 bar2 25213 f 12693 enter 69 fq 32 39 543us close 0us prep 1110us flush 3381us
2026-08-17 23:05:51.714976+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044882 tx stats: # 25360 owait 1057 3446us finish 25642 bar2 25233 f 12709 enter 3 fq 32 38 506us close 25us prep 280us flush 3024us
2026-08-17 23:06:51.802961+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044902 tx stats: # 25380 owait 1057 3446us finish 25662 bar2 25253 f 12723 enter 141 fq 100 117 2038us close 0us prep 2337us flush 2271us
2026-08-17 23:07:30.424728+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044922 tx stats: # 25400 owait 1057 3446us finish 25682 bar2 25273 f 12740 enter 87 fq 77 109 1787us close 0us prep 582us flush 3020us
2026-08-17 23:08:03.419782+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044942 tx stats: # 25420 owait 1057 3446us finish 25702 bar2 25293 f 12757 enter 46 fq 34 295 732us close 0us prep 483us flush 3164us
2026-08-17 23:08:52.022510+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044962 tx stats: # 25440 owait 1057 3446us finish 25722 bar2 25313 f 12772 enter 47 fq 69 95 1267us close 0us prep 1078us flush 2618us
2026-08-17 23:09:17.982039+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4044982 tx stats: # 25460 owait 1057 3446us finish 25743 bar2 25333 f 12781 enter 114 fq 35 82 709us close 0us prep 1482us flush 2595us
2026-08-17 23:09:52.068110+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045002 tx stats: # 25480 owait 1057 3446us finish 25763 bar2 25353 f 12800 enter 10 fq 56 68 1113us close 0us prep 454us flush 2277us
2026-08-17 23:10:15.436882+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045022 tx stats: # 25500 owait 1057 3446us finish 25780 bar2 25370 f 12806 enter 25 fq 154 176 3901us close 0us prep 1220us flush 2761us
2026-08-17 23:10:19.828963+0900 0x7d357    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-17 23:10:19.828986+0900 0x7d357    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 54177); parent: com.apple.Mobile (pid 54173)
2026-08-17 23:10:19.829010+0900 0x7d357    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4045027)
2026-08-17 23:10:19.834070+0900 0x7d357    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-17 23:10:19.834482+0900 0x7d357    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-17 23:10:19.834569+0900 0x7d357    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-17 23:10:19.834651+0900 0x7d357    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 54177); parent: com.apple.Mobile (pid 54173)
2026-08-17 23:10:19.884018+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-17 23:10:19.884043+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-17 23:10:19.884112+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-17 23:10:19.884182+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-17 23:10:19.885616+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 54173); parent: launchd (pid 1)
2026-08-17 23:10:19.885645+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-17 23:10:19.886753+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-17 23:10:19.888268+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-17 23:10:20.009230+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-17 23:10:20.009248+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 54182); parent: com.apple.Mobile (pid 54173)
2026-08-17 23:10:20.009258+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4045029)
2026-08-17 23:10:20.014464+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-17 23:10:20.014535+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-17 23:10:20.014599+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 789762
2026-08-17 23:10:20.014621+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-17 23:10:20.674244+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 790029 -> 772972
2026-08-17 23:10:20.704472+0900 0x7d3ce    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4045030-4045030
2026-08-17 23:10:20.793483+0900 0x7d3ce    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4045030, om_snap_count 1 om_most_recent_snap 4045030
2026-08-17 23:10:20.793490+0900 0x7d3ce    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4045030
2026-08-17 23:10:20.794254+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-17 23:10:20.794530+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4045031)
2026-08-17 23:10:20.803359+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-17 23:10:20.803422+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-17 23:10:20.803498+0900 0x7d38b    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 54182); parent: com.apple.Mobile (pid 54173)
2026-08-17 23:10:20.817990+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 54173); parent: launchd (pid 1)
2026-08-17 23:10:20.818012+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-17 23:10:20.818081+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-17 23:10:20.820668+0900 0x7d334    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-17 23:10:21.021005+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:21.021046+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:21.021354+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:21.027489+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:21.027525+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:21.097416+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00b300c5 DWORD10=0x00000000 NVMeStatus=0x2
2026-08-17 23:10:21.097440+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x000500B3
2026-08-17 23:10:21.097450+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-17 23:10:21.097459+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0x2
2026-08-17 23:10:21.097466+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-17 23:10:21.097649+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00b300c5 DWORD10=0x00000000 NVMeStatus=0x2
2026-08-17 23:10:21.097667+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x000500B3
2026-08-17 23:10:21.097676+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-17 23:10:21.097685+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0x2
2026-08-17 23:10:21.097693+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-17 23:10:21.151323+0900 0x7d2b7    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: ( isKeyUsed == true )
2026-08-17 23:10:21.151350+0900 0x7d2b7    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleNVMeEAN.cpp
2026-08-17 23:10:21.153281+0900 0x7d2b7    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: ( isKeyUsed == true )
2026-08-17 23:10:21.153309+0900 0x7d2b7    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleNVMeEAN.cpp
2026-08-17 23:10:21.155382+0900 0x7d2b7    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: ( isKeyUsed == true )
2026-08-17 23:10:21.155407+0900 0x7d2b7    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleNVMeEAN.cpp
2026-08-17 23:10:21.247721+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6525: disk3s5 apfs is being LOCKED!
2026-08-17 23:10:21.247741+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6664: disk3s5 apfs is now LOCKED (flags 0x441000d6)!
2026-08-17 23:10:21.331489+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_lock_notification:6949: disk3s5 done processing lock keybag notification, err 0, (flags 0x441000c6)
2026-08-17 23:10:21.359434+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:21.359445+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:21.359653+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:21.365996+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:21.366051+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:21.568732+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:21.568747+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:21.568905+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:21.575552+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:21.575585+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:21.800736+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:21.800765+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:21.801020+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:21.809617+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:21.809655+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:22.000543+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:22.000574+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:22.000861+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:22.010244+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:22.010293+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:22.251648+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:22.251677+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:22.251944+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:22.259195+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:22.259238+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:22.389547+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:22.389573+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:22.389779+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:22.396422+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:22.396468+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:22.468968+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:22.468986+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:22.469111+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:22.472973+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:22.473001+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:22.532970+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:22.532993+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:22.533245+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:22.540011+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:22.540045+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:22.608041+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:22.608056+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:22.608348+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:22.616067+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:22.616091+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:22.687375+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:22.687401+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:22.687604+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:22.693887+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:22.693925+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:22.816123+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:22.816150+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:22.816525+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:22.824465+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:22.824506+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:22.943439+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:22.943466+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:22.943762+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:22.950679+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:22.950718+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:23.063732+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:23.063760+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:23.064145+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:23.070528+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:23.070563+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:23.182513+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:23.182558+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:23.182834+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:23.188920+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:23.188957+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:23.296322+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:23.296350+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:23.296604+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:23.302405+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:23.302439+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:23.407976+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:23.407997+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:23.408207+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:23.414888+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:23.414917+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:23.525988+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:23.526014+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:23.526270+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:23.532344+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:23.532382+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:23.647361+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-17 23:10:23.647388+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-17 23:10:23.647652+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-17 23:10:23.653600+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 70, best xid 70 @ 35
2026-08-17 23:10:23.653639+0900 0x7d2b7    Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 34 data 280
2026-08-17 23:10:23.739957+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x004e00c5 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-17 23:10:23.739986+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x0181004E
2026-08-17 23:10:23.739997+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-17 23:10:23.740007+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-17 23:10:23.740014+0900 0x482      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-17 23:10:45.355228+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045042 tx stats: # 25520 owait 1059 3666us finish 25799 bar2 25390 f 12815 enter 122 fq 39 53 586us close 29us prep 4950us flush 3074us
2026-08-17 23:11:15.320389+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045062 tx stats: # 25540 owait 1059 3666us finish 25819 bar2 25410 f 12830 enter 24 fq 41 178 967us close 0us prep 837us flush 3304us
2026-08-17 23:11:53.567044+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045082 tx stats: # 25560 owait 1061 3659us finish 25839 bar2 25430 f 12844 enter 29 fq 21 24 286us close 0us prep 353us flush 1276us
2026-08-17 23:12:32.400563+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045102 tx stats: # 25580 owait 1061 3659us finish 25859 bar2 25450 f 12856 enter 34 fq 16 22 242us close 0us prep 866us flush 1389us
2026-08-17 23:13:00.101858+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045122 tx stats: # 25600 owait 1065 3647us finish 25879 bar2 25470 f 12871 enter 24 fq 26 29 298us close 0us prep 928us flush 2651us
2026-08-17 23:13:45.341227+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045142 tx stats: # 25620 owait 1065 3647us finish 25899 bar2 25490 f 12889 enter 81 fq 13 18 256us close 0us prep 2260us flush 3075us
2026-08-17 23:14:11.757795+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6682: disk3s5 apfs is being UN-locked!
2026-08-17 23:14:11.757814+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6815: disk3s5 apfs is now UN-locked! (flags 0x441001c2)
2026-08-17 23:14:11.835357+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_unlock_notification:6995: disk3s5 done processing un-lock keybag notification, err 0, (flags 0x441000c2)
2026-08-17 23:14:12.184573+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045162 tx stats: # 25640 owait 1065 3647us finish 25919 bar2 25510 f 12902 enter 57 fq 47 49 841us close 0us prep 674us flush 2524us
2026-08-17 23:14:25.162957+0900 0x7dcd5    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 23:14:27.490093+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045182 tx stats: # 25660 owait 1065 3647us finish 25939 bar2 25530 f 12915 enter 26 fq 23 29 472us close 0us prep 194us flush 2181us
2026-08-17 23:14:42.173030+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045202 tx stats: # 25680 owait 1065 3647us finish 25959 bar2 25550 f 12924 enter 69 fq 88 492 3016us close 0us prep 531us flush 2876us
2026-08-17 23:15:02.951277+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045222 tx stats: # 25700 owait 1066 3649us finish 25980 bar2 25570 f 12934 enter 714 fq 17 20 222us close 0us prep 3667us flush 2106us
2026-08-17 23:15:24.816288+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045242 tx stats: # 25720 owait 1068 3643us finish 26000 bar2 25590 f 12944 enter 25 fq 126 341 3455us close 0us prep 548us flush 650us
2026-08-17 23:15:45.279704+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045262 tx stats: # 25740 owait 1068 3643us finish 26020 bar2 25610 f 12948 enter 325 fq 78 147 1316us close 0us prep 2736us flush 2361us
2026-08-17 23:15:53.971111+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045282 tx stats: # 25760 owait 1068 3643us finish 26040 bar2 25630 f 12958 enter 83 fq 37 44 326us close 0us prep 689us flush 513us
2026-08-17 23:16:18.419761+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045302 tx stats: # 25780 owait 1069 3643us finish 26060 bar2 25650 f 12964 enter 112 fq 35 77 499us close 0us prep 654us flush 2844us
2026-08-17 23:16:51.429395+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045322 tx stats: # 25800 owait 1070 3640us finish 26081 bar2 25670 f 12980 enter 9 fq 66 114 646us close 0us prep 210us flush 2296us
2026-08-17 23:17:24.419196+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045342 tx stats: # 25820 owait 1070 3640us finish 26101 bar2 25690 f 12992 enter 97 fq 95 139 1958us close 0us prep 1000us flush 1899us
2026-08-17 23:17:53.978904+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045362 tx stats: # 25840 owait 1070 3640us finish 26121 bar2 25710 f 13009 enter 29 fq 32 44 287us close 0us prep 483us flush 1546us
2026-08-17 23:18:30.426875+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045382 tx stats: # 25860 owait 1070 3640us finish 26141 bar2 25730 f 13025 enter 27 fq 118 646 2460us close 0us prep 658us flush 2882us
2026-08-17 23:18:51.400158+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045402 tx stats: # 25880 owait 1071 3637us finish 26162 bar2 25750 f 13044 enter 193 fq 53 182 464us close 0us prep 224us flush 3099us
2026-08-17 23:19:09.415025+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045422 tx stats: # 25900 owait 1071 3637us finish 26183 bar2 25770 f 13058 enter 25 fq 19 26 246us close 0us prep 408us flush 1313us
2026-08-17 23:19:36.423447+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045442 tx stats: # 25920 owait 1071 3637us finish 26203 bar2 25790 f 13072 enter 44 fq 22 32 299us close 0us prep 414us flush 2106us
2026-08-17 23:20:15.196167+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045462 tx stats: # 25940 owait 1071 3637us finish 26223 bar2 25810 f 13089 enter 130 fq 24 31 304us close 0us prep 2393us flush 2473us
2026-08-17 23:20:53.246161+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045482 tx stats: # 25960 owait 1072 3634us finish 26243 bar2 25830 f 13100 enter 180 fq 26 32 468us close 0us prep 1706us flush 2855us
2026-08-17 23:21:06.990674+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045502 tx stats: # 25980 owait 1073 3633us finish 26264 bar2 25850 f 13116 enter 3 fq 30 34 246us close 0us prep 155us flush 2014us
2026-08-17 23:21:18.799991+0900 0x81317    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(57627) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-17 23:21:18.812493+0900 0x81691    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: ctkd(57627) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-17 23:21:26.562552+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045522 tx stats: # 26000 owait 1075 3632us finish 26284 bar2 25868 f 13125 enter 618 fq 56 347 558us close 0us prep 1149us flush 2638us
2026-08-17 23:21:37.190112+0900 0x818e6    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-17 23:21:46.540846+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045542 tx stats: # 26020 owait 1075 3632us finish 26304 bar2 25888 f 13133 enter 218 fq 54 205 846us close 0us prep 1730us flush 2300us
2026-08-17 23:22:11.832718+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045562 tx stats: # 26040 owait 1076 3629us finish 26326 bar2 25908 f 13149 enter 27 fq 34 59 535us close 3us prep 160us flush 1418us
2026-08-17 23:22:36.229290+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045582 tx stats: # 26060 owait 1076 3629us finish 26348 bar2 25928 f 13164 enter 100 fq 15 18 102us close 0us prep 1566us flush 1038us
2026-08-17 23:23:02.440218+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045602 tx stats: # 26080 owait 1076 3629us finish 26368 bar2 25948 f 13179 enter 79 fq 38 123 507us close 0us prep 892us flush 1738us
2026-08-17 23:23:05.842056+0900 0x82034    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 23:23:31.518672+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045622 tx stats: # 26100 owait 1077 3627us finish 26391 bar2 25968 f 13193 enter 45 fq 93 106 2205us close 0us prep 628us flush 2550us
2026-08-17 23:23:44.462650+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045642 tx stats: # 26120 owait 1078 3625us finish 26412 bar2 25988 f 13210 enter 58 fq 125 158 1177us close 0us prep 831us flush 3233us
2026-08-17 23:23:53.916157+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045662 tx stats: # 26140 owait 1079 3623us finish 26433 bar2 26008 f 13229 enter 35 fq 16 19 156us close 0us prep 357us flush 2474us
2026-08-17 23:24:00.558573+0900 0x8266d    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-17 23:24:24.489021+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045682 tx stats: # 26160 owait 1082 3619us finish 26454 bar2 26028 f 13238 enter 1072 fq 42 53 629us close 0us prep 2263us flush 2723us
2026-08-17 23:24:31.438712+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045702 tx stats: # 26180 owait 1083 3616us finish 26474 bar2 26048 f 13246 enter 238 fq 186 251 2045us close 83us prep 760us flush 884us
2026-08-17 23:24:46.578911+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045722 tx stats: # 26200 owait 1084 3613us finish 26494 bar2 26068 f 13247 enter 19 fq 38 82 777us close 0us prep 216us flush 328us
2026-08-17 23:24:58.119463+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045742 tx stats: # 26220 owait 1084 3613us finish 26514 bar2 26088 f 13259 enter 63 fq 18 19 268us close 0us prep 681us flush 1540us
2026-08-17 23:25:13.798633+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045762 tx stats: # 26240 owait 1085 3611us finish 26535 bar2 26108 f 13275 enter 141 fq 36 40 710us close 0us prep 691us flush 1987us
2026-08-17 23:25:29.446990+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045782 tx stats: # 26260 owait 1087 3610us finish 26556 bar2 26128 f 13283 enter 143 fq 104 182 1809us close 0us prep 871us flush 3009us
2026-08-17 23:25:41.441220+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045802 tx stats: # 26280 owait 1088 3609us finish 26577 bar2 26148 f 13297 enter 21 fq 43 62 944us close 0us prep 277us flush 2877us
2026-08-17 23:25:53.720590+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045822 tx stats: # 26300 owait 1091 3607us finish 26599 bar2 26168 f 13310 enter 11 fq 30 36 471us close 5us prep 453us flush 3031us
2026-08-17 23:26:13.807174+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045842 tx stats: # 26320 owait 1093 3602us finish 26619 bar2 26188 f 13325 enter 323 fq 44 49 825us close 0us prep 1334us flush 3301us
2026-08-17 23:26:37.422967+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045862 tx stats: # 26340 owait 1095 3597us finish 26641 bar2 26208 f 13343 enter 50 fq 55 70 449us close 0us prep 234us flush 2015us
2026-08-17 23:26:40.963303+0900 0x83dfa    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-17 23:26:54.144407+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045882 tx stats: # 26360 owait 1095 3597us finish 26661 bar2 26228 f 13357 enter 12 fq 30 39 553us close 0us prep 381us flush 1398us
2026-08-17 23:27:29.839813+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045902 tx stats: # 26380 owait 1095 3597us finish 26681 bar2 26248 f 13373 enter 416 fq 32 55 524us close 0us prep 1532us flush 3214us
2026-08-17 23:27:53.862677+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045922 tx stats: # 26400 owait 1095 3597us finish 26701 bar2 26268 f 13386 enter 37 fq 132 162 3456us close 0us prep 1392us flush 2585us
2026-08-17 23:28:02.343079+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045942 tx stats: # 26420 owait 1095 3597us finish 26721 bar2 26288 f 13394 enter 139 fq 38 51 525us close 0us prep 654us flush 825us
2026-08-17 23:28:04.471139+0900 0x84985    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-17 23:28:04.471166+0900 0x84985    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 59646); parent: com.apple.Mobile (pid 59645)
2026-08-17 23:28:04.471191+0900 0x84985    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4045950)
2026-08-17 23:28:04.486427+0900 0x84985    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-17 23:28:04.486914+0900 0x84985    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-17 23:28:04.487000+0900 0x84985    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-17 23:28:04.487073+0900 0x84985    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 59646); parent: com.apple.Mobile (pid 59645)
2026-08-17 23:28:04.523928+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-17 23:28:04.523945+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-17 23:28:04.523985+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-17 23:28:04.523993+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-17 23:28:04.524788+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 59645); parent: launchd (pid 1)
2026-08-17 23:28:04.524808+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-17 23:28:04.526215+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-17 23:28:04.528249+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-17 23:28:04.614301+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-17 23:28:04.614318+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 59648); parent: com.apple.Mobile (pid 59645)
2026-08-17 23:28:04.614327+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4045952)
2026-08-17 23:28:04.620580+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-17 23:28:04.620669+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-17 23:28:04.620751+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 771951
2026-08-17 23:28:04.620778+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-17 23:28:04.990757+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 772972 -> 773966
2026-08-17 23:28:05.011857+0900 0x849a7    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4045953-4045953
2026-08-17 23:28:05.076969+0900 0x849a7    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4045953, om_snap_count 1 om_most_recent_snap 4045953
2026-08-17 23:28:05.076978+0900 0x849a7    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4045953
2026-08-17 23:28:05.077688+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-17 23:28:05.104155+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4045958)
2026-08-17 23:28:05.107280+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-17 23:28:05.107340+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-17 23:28:05.107397+0900 0x84997    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 59648); parent: com.apple.Mobile (pid 59645)
2026-08-17 23:28:05.126700+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 59645); parent: launchd (pid 1)
2026-08-17 23:28:05.126725+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-17 23:28:05.127787+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-17 23:28:05.130451+0900 0x84980    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-17 23:28:07.681298+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045962 tx stats: # 26440 owait 1101 3776us finish 26741 bar2 26308 f 13398 enter 327 fq 65 82 935us close 194us prep 6513us flush 1395us
2026-08-17 23:28:16.492619+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4045982 tx stats: # 26460 owait 1103 3780us finish 26761 bar2 26328 f 13403 enter 256 fq 116 128 2258us close 1us prep 2248us flush 794us
2026-08-17 23:28:46.046020+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046002 tx stats: # 26480 owait 1103 3780us finish 26781 bar2 26348 f 13418 enter 12 fq 63 69 1216us close 5us prep 408us flush 729us
2026-08-17 23:29:13.834930+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046022 tx stats: # 26500 owait 1103 3780us finish 26801 bar2 26368 f 13425 enter 36 fq 43 87 693us close 0us prep 745us flush 2417us
2026-08-17 23:29:27.509555+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046042 tx stats: # 26520 owait 1104 3777us finish 26821 bar2 26388 f 13439 enter 3 fq 27 33 635us close 0us prep 284us flush 2706us
2026-08-17 23:30:10.789864+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046062 tx stats: # 26540 owait 1104 3777us finish 26841 bar2 26408 f 13450 enter 81 fq 133 180 2134us close 0us prep 1087us flush 1115us
2026-08-17 23:30:45.170335+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046082 tx stats: # 26560 owait 1104 3777us finish 26861 bar2 26428 f 13461 enter 52 fq 38 55 1493us close 0us prep 1321us flush 1861us
2026-08-17 23:31:26.422616+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046102 tx stats: # 26580 owait 1104 3777us finish 26881 bar2 26448 f 13476 enter 47 fq 58 103 581us close 0us prep 482us flush 2442us
2026-08-17 23:32:13.846769+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046122 tx stats: # 26600 owait 1104 3777us finish 26901 bar2 26468 f 13493 enter 161 fq 15 22 147us close 0us prep 1757us flush 3205us
2026-08-17 23:32:25.609385+0900 0x86348    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 23:32:26.451545+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046142 tx stats: # 26620 owait 1104 3777us finish 26921 bar2 26488 f 13500 enter 57 fq 105 149 974us close 0us prep 577us flush 826us
2026-08-17 23:32:26.629209+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046162 tx stats: # 26640 owait 1104 3777us finish 26941 bar2 26508 f 13500 enter 1 fq 10 12 80us close 0us prep 65us flush 128us
2026-08-17 23:32:26.725180+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046182 tx stats: # 26660 owait 1104 3777us finish 26961 bar2 26528 f 13500 enter 1 fq 9 11 88us close 0us prep 67us flush 149us
2026-08-17 23:32:26.744236+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046202 tx stats: # 26680 owait 1104 3777us finish 26981 bar2 26548 f 13500 enter 1 fq 10 11 39us close 0us prep 44us flush 128us
2026-08-17 23:32:30.604415+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046222 tx stats: # 26700 owait 1105 3774us finish 27001 bar2 26568 f 13503 enter 78 fq 79 88 810us close 0us prep 609us flush 826us
2026-08-17 23:32:39.511106+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046242 tx stats: # 26720 owait 1105 3774us finish 27021 bar2 26588 f 13507 enter 174 fq 79 198 1264us close 0us prep 909us flush 905us
2026-08-17 23:32:54.325312+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046262 tx stats: # 26740 owait 1105 3774us finish 27041 bar2 26608 f 13524 enter 3 fq 15 16 392us close 0us prep 270us flush 2640us
2026-08-17 23:33:04.884249+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046282 tx stats: # 26760 owait 1105 3774us finish 27061 bar2 26628 f 13528 enter 7 fq 11 12 148us close 0us prep 181us flush 463us
2026-08-17 23:33:04.992593+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046302 tx stats: # 26780 owait 1105 3774us finish 27081 bar2 26648 f 13528 enter 2 fq 14 16 298us close 0us prep 250us flush 423us
2026-08-17 23:33:05.419419+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046322 tx stats: # 26800 owait 1105 3774us finish 27101 bar2 26668 f 13529 enter 166 fq 11 12 151us close 0us prep 548us flush 1968us
2026-08-17 23:33:06.213855+0900 0x8608e    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(60841) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-17 23:33:06.972480+0900 0x8695a    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(60841) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-17 23:33:12.259677+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046342 tx stats: # 26820 owait 1107 3768us finish 27121 bar2 26688 f 13532 enter 6221 fq 112 5457 2992us close 0us prep 2344us flush 2017us
2026-08-17 23:33:15.040445+0900 0x86944    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 23:33:16.961260+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046362 tx stats: # 26840 owait 1110 3763us finish 27141 bar2 26708 f 13534 enter 7 fq 39 65 343us close 24us prep 98us flush 227us
2026-08-17 23:33:20.872148+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046382 tx stats: # 26860 owait 1116 3754us finish 27161 bar2 26728 f 13534 enter 48 fq 74 242 1181us close 10us prep 847us flush 818us
2026-08-17 23:33:43.241757+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046402 tx stats: # 26880 owait 1117 3751us finish 27181 bar2 26748 f 13544 enter 32 fq 32 48 441us close 0us prep 303us flush 632us
2026-08-17 23:33:54.387177+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046422 tx stats: # 26900 owait 1117 3751us finish 27203 bar2 26768 f 13560 enter 6 fq 24 28 472us close 0us prep 388us flush 2935us
2026-08-17 23:34:09.422129+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046442 tx stats: # 26920 owait 1117 3751us finish 27223 bar2 26788 f 13561 enter 13 fq 19 29 170us close 0us prep 281us flush 511us
2026-08-17 23:34:16.042859+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046462 tx stats: # 26940 owait 1117 3751us finish 27243 bar2 26808 f 13567 enter 52 fq 33 38 641us close 0us prep 2976us flush 1502us
2026-08-17 23:34:31.697125+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046482 tx stats: # 26960 owait 1118 3751us finish 27267 bar2 26828 f 13585 enter 211 fq 63 75 745us close 31us prep 307us flush 2050us
2026-08-17 23:34:47.300202+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046502 tx stats: # 26980 owait 1119 3749us finish 27288 bar2 26848 f 13600 enter 74 fq 80 96 983us close 0us prep 331us flush 3417us
2026-08-17 23:34:55.730826+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046522 tx stats: # 27000 owait 1119 3749us finish 27310 bar2 26868 f 13617 enter 127 fq 40 44 738us close 7us prep 258us flush 2799us
2026-08-17 23:35:26.184939+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046542 tx stats: # 27020 owait 1119 3749us finish 27331 bar2 26888 f 13627 enter 154 fq 32 43 584us close 0us prep 1906us flush 2297us
2026-08-17 23:35:49.083029+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046562 tx stats: # 27040 owait 1121 3750us finish 27355 bar2 26908 f 13645 enter 370 fq 21 28 419us close 0us prep 2044us flush 2379us
2026-08-17 23:35:59.649783+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046582 tx stats: # 27060 owait 1121 3750us finish 27375 bar2 26928 f 13660 enter 190 fq 28 34 388us close 0us prep 1562us flush 1690us
2026-08-17 23:36:25.942832+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046602 tx stats: # 27080 owait 1123 3749us finish 27398 bar2 26948 f 13676 enter 26 fq 64 78 1412us close 0us prep 385us flush 2170us
2026-08-17 23:36:54.562474+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046622 tx stats: # 27100 owait 1123 3749us finish 27418 bar2 26968 f 13692 enter 7 fq 52 96 1578us close 0us prep 399us flush 3115us
2026-08-17 23:37:22.909435+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046642 tx stats: # 27120 owait 1124 3748us finish 27439 bar2 26988 f 13708 enter 28 fq 43 70 1096us close 0us prep 273us flush 2621us
2026-08-17 23:37:54.639643+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046662 tx stats: # 27140 owait 1125 3747us finish 27460 bar2 27008 f 13722 enter 42 fq 74 86 543us close 0us prep 979us flush 2480us
2026-08-17 23:38:15.241905+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046682 tx stats: # 27160 owait 1126 3745us finish 27481 bar2 27028 f 13740 enter 51 fq 18 21 191us close 0us prep 1452us flush 2138us
2026-08-17 23:38:35.418548+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046702 tx stats: # 27180 owait 1129 3748us finish 27502 bar2 27048 f 13754 enter 33 fq 29 39 712us close 0us prep 448us flush 3232us
2026-08-17 23:38:39.028948+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046722 tx stats: # 27200 owait 1132 3741us finish 27524 bar2 27068 f 13773 enter 788 fq 74 78 1355us close 0us prep 333us flush 2547us
2026-08-17 23:39:01.412498+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046742 tx stats: # 27220 owait 1132 3741us finish 27544 bar2 27088 f 13789 enter 93 fq 27 35 528us close 0us prep 1075us flush 2442us
2026-08-17 23:39:25.073723+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046762 tx stats: # 27240 owait 1132 3741us finish 27564 bar2 27108 f 13804 enter 40 fq 72 79 519us close 0us prep 325us flush 2904us
2026-08-17 23:39:43.332481+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046782 tx stats: # 27260 owait 1132 3741us finish 27584 bar2 27128 f 13816 enter 104 fq 21 27 273us close 0us prep 1393us flush 1481us
2026-08-17 23:39:45.242052+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046802 tx stats: # 27280 owait 1132 3741us finish 27604 bar2 27148 f 13825 enter 429 fq 29 36 204us close 1us prep 1715us flush 1471us
2026-08-17 23:39:48.448096+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046822 tx stats: # 27300 owait 1133 3739us finish 27624 bar2 27168 f 13837 enter 104 fq 74 101 841us close 0us prep 840us flush 1186us
2026-08-17 23:40:07.255173+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046842 tx stats: # 27320 owait 1134 3738us finish 27646 bar2 27188 f 13853 enter 442 fq 49 58 1460us close 0us prep 623us flush 2958us
2026-08-17 23:40:15.840127+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046862 tx stats: # 27340 owait 1134 3738us finish 27666 bar2 27208 f 13868 enter 13 fq 86 108 2275us close 19us prep 670us flush 2021us
2026-08-17 23:40:48.689092+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046882 tx stats: # 27360 owait 1137 3755us finish 27684 bar2 27226 f 13877 enter 23862 fq 291 309 4303us close 0us prep 16574us flush 3224us
2026-08-17 23:41:02.166932+0900 0x8a85b    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 23:41:02.632623+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046902 tx stats: # 27380 owait 1138 3753us finish 27702 bar2 27244 f 13889 enter 104 fq 120 163 4988us close 0us prep 3171us flush 2261us
2026-08-17 23:41:50.428368+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046922 tx stats: # 27400 owait 1138 3753us finish 27722 bar2 27264 f 13906 enter 45 fq 112 161 1041us close 0us prep 781us flush 2497us
2026-08-17 23:42:23.419591+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046942 tx stats: # 27420 owait 1139 3750us finish 27743 bar2 27284 f 13925 enter 119 fq 12 15 214us close 0us prep 1836us flush 2346us
2026-08-17 23:42:55.028328+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046962 tx stats: # 27440 owait 1143 3739us finish 27763 bar2 27304 f 13939 enter 7 fq 49 64 973us close 0us prep 211us flush 1953us
2026-08-17 23:43:18.293898+0900 0x8b1f0    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-17 23:43:18.293920+0900 0x8b1f0    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-17 23:43:18.294167+0900 0x8b1f0    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-17 23:43:18.658716+0900 0x8b1f0    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-17-234318.local' snap_xid 4046975 extentref oid 771234 sblock oid 793079
2026-08-17 23:43:18.661150+0900 0x8b1f0    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-17 23:43:18.838428+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4046982 tx stats: # 27460 owait 1143 3739us finish 27783 bar2 27324 f 13947 enter 16 fq 31 37 369us close 35us prep 210us flush 760us
2026-08-17 23:43:35.746634+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047002 tx stats: # 27480 owait 1144 3740us finish 27804 bar2 27344 f 13958 enter 71 fq 66 81 1010us close 7us prep 374us flush 2563us
2026-08-17 23:43:59.381362+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047022 tx stats: # 27500 owait 1145 3740us finish 27829 bar2 27364 f 13976 enter 651 fq 24 92 627us close 0us prep 1928us flush 3674us
2026-08-17 23:44:19.430609+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047042 tx stats: # 27520 owait 1145 3740us finish 27848 bar2 27384 f 13990 enter 111 fq 127 146 3271us close 0us prep 1478us flush 569us
2026-08-17 23:44:55.190730+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047062 tx stats: # 27540 owait 1146 3738us finish 27869 bar2 27404 f 14005 enter 48 fq 46 52 825us close 0us prep 998us flush 2221us
2026-08-17 23:45:08.419460+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047082 tx stats: # 27560 owait 1147 3736us finish 27890 bar2 27424 f 14022 enter 19 fq 18 21 431us close 0us prep 347us flush 2592us
2026-08-17 23:45:50.452546+0900 0x8c0e9    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: routined(65593) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-17 23:45:50.452560+0900 0x8c0e9    Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 65593, routined
2026-08-17 23:45:51.786108+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047102 tx stats: # 27580 owait 1148 3737us finish 27912 bar2 27444 f 14036 enter 398 fq 18 23 294us close 0us prep 2080us flush 2670us
2026-08-17 23:46:15.245266+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047122 tx stats: # 27600 owait 1148 3737us finish 27932 bar2 27464 f 14047 enter 98 fq 18 24 301us close 0us prep 4081us flush 1590us
2026-08-17 23:46:55.423443+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047142 tx stats: # 27620 owait 1148 3737us finish 27952 bar2 27484 f 14065 enter 151 fq 213 265 4673us close 0us prep 2046us flush 2988us
2026-08-17 23:47:17.430201+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047162 tx stats: # 27640 owait 1150 3804us finish 27973 bar2 27504 f 14080 enter 611 fq 246 22622 3398us close 19us prep 6050us flush 4389us
2026-08-17 23:47:31.928086+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047182 tx stats: # 27660 owait 1150 3804us finish 27993 bar2 27524 f 14087 enter 88 fq 96 102 1536us close 0us prep 400us flush 445us
2026-08-17 23:47:32.306140+0900 0x8ce71    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-17 23:47:34.399865+0900 0x8cc3e    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: Safari(66001) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-17 23:47:34.399866+0900 0x8cc3e    Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 66001, Safari
2026-08-17 23:47:45.276832+0900 0x8cd12    Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk1 xid 8642 tx stats: # 80 owait 0 0us finish 80 bar2 80 f 0 enter 8 fq 7 11 3084us close 0us prep 137us flush 252us
2026-08-17 23:47:48.163842+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047202 tx stats: # 27680 owait 1150 3804us finish 28013 bar2 27544 f 14087 enter 39 fq 111 135 1824us close 0us prep 661us flush 413us
2026-08-17 23:47:55.468938+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047222 tx stats: # 27700 owait 1151 3802us finish 28033 bar2 27564 f 14096 enter 7 fq 34 42 830us close 0us prep 270us flush 2478us
2026-08-17 23:48:12.959432+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047242 tx stats: # 27720 owait 1152 3803us finish 28053 bar2 27584 f 14104 enter 262 fq 61 92 1652us close 0us prep 6576us flush 2329us
2026-08-17 23:48:22.439453+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047262 tx stats: # 27740 owait 1155 3797us finish 28073 bar2 27604 f 14111 enter 31 fq 77 137 1677us close 1us prep 355us flush 1817us
2026-08-17 23:48:43.317799+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047282 tx stats: # 27760 owait 1156 3794us finish 28093 bar2 27624 f 14115 enter 35 fq 80 98 1751us close 0us prep 357us flush 483us
2026-08-17 23:48:53.431015+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047302 tx stats: # 27780 owait 1157 3792us finish 28113 bar2 27644 f 14119 enter 29 fq 84 102 2607us close 10us prep 438us flush 1506us
2026-08-17 23:48:58.350952+0900 0x8d91b    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 23:49:05.808966+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047322 tx stats: # 27800 owait 1157 3792us finish 28133 bar2 27664 f 14125 enter 81 fq 102 170 1906us close 0us prep 893us flush 579us
2026-08-17 23:49:20.633318+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047342 tx stats: # 27820 owait 1157 3792us finish 28153 bar2 27684 f 14137 enter 246 fq 92 228 1871us close 0us prep 5097us flush 3358us
2026-08-17 23:49:46.420082+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047362 tx stats: # 27840 owait 1157 3792us finish 28173 bar2 27704 f 14148 enter 132 fq 51 93 1209us close 0us prep 1794us flush 1269us
2026-08-17 23:50:05.640020+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047382 tx stats: # 27860 owait 1157 3792us finish 28193 bar2 27724 f 14164 enter 130 fq 25 29 851us close 0us prep 953us flush 1945us
2026-08-17 23:50:45.242683+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047402 tx stats: # 27880 owait 1158 3790us finish 28213 bar2 27744 f 14176 enter 101 fq 69 90 1615us close 3us prep 2512us flush 3228us
2026-08-17 23:51:02.088473+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047422 tx stats: # 27900 owait 1159 3789us finish 28234 bar2 27764 f 14189 enter 146 fq 14 17 285us close 0us prep 2618us flush 1283us
2026-08-17 23:51:18.773803+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047442 tx stats: # 27920 owait 1160 3786us finish 28256 bar2 27784 f 14195 enter 82 fq 140 213 3450us close 0us prep 1713us flush 2528us
2026-08-17 23:51:33.463937+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047462 tx stats: # 27940 owait 1160 3786us finish 28275 bar2 27804 f 14209 enter 13 fq 73 191 2965us close 0us prep 587us flush 3310us
2026-08-17 23:51:53.711703+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047482 tx stats: # 27960 owait 1161 3786us finish 28298 bar2 27824 f 14220 enter 59 fq 21 51 376us close 0us prep 1724us flush 1240us
2026-08-17 23:52:04.329974+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047502 tx stats: # 27980 owait 1161 3786us finish 28318 bar2 27844 f 14231 enter 89 fq 56 70 1336us close 0us prep 1378us flush 773us
2026-08-17 23:52:15.278450+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047522 tx stats: # 28000 owait 1163 3785us finish 28339 bar2 27864 f 14242 enter 134 fq 106 524 4491us close 0us prep 2116us flush 922us
2026-08-17 23:52:28.588273+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047542 tx stats: # 28020 owait 1163 3785us finish 28359 bar2 27884 f 14243 enter 265 fq 49 159 1571us close 0us prep 2339us flush 1025us
2026-08-17 23:52:31.446173+0900 0x83e18    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-17 23:52:38.179863+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047562 tx stats: # 28040 owait 1163 3785us finish 28379 bar2 27904 f 14248 enter 122 fq 46 219 941us close 0us prep 446us flush 645us
2026-08-17 23:52:44.604309+0900 0x8ec99    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: MessagesBlastDoorService(67321) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-17 23:52:44.611062+0900 0x8f79a    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: MessagesBlastDoorService(67321) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-17 23:52:47.753116+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047582 tx stats: # 28060 owait 1163 3785us finish 28399 bar2 27924 f 14250 enter 25 fq 83 95 2413us close 0us prep 450us flush 637us
2026-08-17 23:52:48.736771+0900 0x83e18    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-17 23:52:55.976247+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047602 tx stats: # 28080 owait 1163 3785us finish 28419 bar2 27944 f 14263 enter 28 fq 114 277 1756us close 0us prep 651us flush 3324us
2026-08-17 23:53:10.663638+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047622 tx stats: # 28100 owait 1163 3785us finish 28439 bar2 27964 f 14271 enter 188 fq 31 66 774us close 0us prep 2577us flush 1622us
2026-08-17 23:53:20.075150+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047642 tx stats: # 28120 owait 1165 3790us finish 28458 bar2 27983 f 14276 enter 265 fq 49 70 1198us close 59us prep 3453us flush 1135us
2026-08-17 23:53:25.815797+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047662 tx stats: # 28140 owait 1166 3788us finish 28478 bar2 28003 f 14276 enter 26 fq 36 551 493us close 0us prep 327us flush 501us
2026-08-17 23:53:35.752350+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047682 tx stats: # 28160 owait 1166 3788us finish 28498 bar2 28023 f 14280 enter 179 fq 46 108 1418us close 0us prep 1157us flush 688us
2026-08-17 23:53:48.901550+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047702 tx stats: # 28180 owait 1166 3788us finish 28518 bar2 28043 f 14289 enter 112 fq 17 24 461us close 0us prep 5353us flush 2446us
2026-08-17 23:54:04.907630+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047722 tx stats: # 28200 owait 1167 3786us finish 28539 bar2 28063 f 14302 enter 27 fq 28 34 672us close 0us prep 462us flush 2260us
2026-08-17 23:54:33.887763+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047742 tx stats: # 28220 owait 1167 3786us finish 28559 bar2 28083 f 14316 enter 579 fq 76 227 2227us close 0us prep 956us flush 2097us
2026-08-17 23:54:57.933054+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047762 tx stats: # 28240 owait 1167 3786us finish 28579 bar2 28103 f 14329 enter 4 fq 16 19 291us close 0us prep 166us flush 2129us
2026-08-17 23:55:30.363265+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047782 tx stats: # 28260 owait 1168 3785us finish 28599 bar2 28123 f 14339 enter 625 fq 80 94 1872us close 0us prep 8152us flush 3060us
2026-08-17 23:55:56.242554+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047802 tx stats: # 28280 owait 1168 3785us finish 28619 bar2 28143 f 14355 enter 27 fq 37 59 1064us close 0us prep 310us flush 2206us
2026-08-17 23:56:10.245885+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047822 tx stats: # 28300 owait 1171 3786us finish 28639 bar2 28163 f 14363 enter 15 fq 16 20 217us close 0us prep 122us flush 266us
2026-08-17 23:56:46.419061+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047842 tx stats: # 28320 owait 1171 3786us finish 28658 bar2 28182 f 14375 enter 125 fq 101 178 3887us close 0us prep 1575us flush 3313us
2026-08-17 23:56:52.399746+0900 0x91802    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-17 23:56:53.696186+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047862 tx stats: # 28340 owait 1171 3786us finish 28678 bar2 28202 f 14377 enter 1 fq 19 23 159us close 0us prep 186us flush 152us
2026-08-17 23:56:53.712897+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047882 tx stats: # 28360 owait 1171 3786us finish 28698 bar2 28222 f 14377 enter 1 fq 11 12 140us close 0us prep 72us flush 167us
2026-08-17 23:56:53.786564+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047902 tx stats: # 28380 owait 1171 3786us finish 28718 bar2 28242 f 14377 enter 1 fq 13 13 167us close 0us prep 79us flush 236us
2026-08-17 23:56:53.807455+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047922 tx stats: # 28400 owait 1171 3786us finish 28738 bar2 28262 f 14377 enter 1 fq 11 11 243us close 0us prep 162us flush 344us
2026-08-17 23:56:59.045229+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047942 tx stats: # 28420 owait 1171 3786us finish 28758 bar2 28282 f 14383 enter 8 fq 43 60 1182us close 0us prep 253us flush 496us
2026-08-17 23:57:18.322840+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047962 tx stats: # 28440 owait 1171 3786us finish 28778 bar2 28302 f 14386 enter 131 fq 112 137 1686us close 0us prep 3417us flush 3444us
2026-08-17 23:57:49.425720+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4047982 tx stats: # 28460 owait 1171 3786us finish 28798 bar2 28322 f 14396 enter 57 fq 122 155 3192us close 0us prep 823us flush 3020us
2026-08-17 23:58:21.406419+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048002 tx stats: # 28480 owait 1171 3786us finish 28818 bar2 28342 f 14405 enter 101 fq 106 129 3090us close 0us prep 2978us flush 2870us
2026-08-17 23:58:56.438501+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048022 tx stats: # 28500 owait 1172 3783us finish 28839 bar2 28362 f 14420 enter 35 fq 43 177 1374us close 1us prep 860us flush 2350us
2026-08-17 23:59:24.412543+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048042 tx stats: # 28520 owait 1172 3783us finish 28859 bar2 28382 f 14434 enter 27 fq 95 366 3272us close 0us prep 701us flush 2124us
2026-08-17 23:59:55.426759+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048062 tx stats: # 28540 owait 1173 3781us finish 28881 bar2 28402 f 14450 enter 15 fq 74 109 2723us close 0us prep 448us flush 3028us
2026-08-18 00:00:15.189890+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048082 tx stats: # 28560 owait 1173 3781us finish 28903 bar2 28422 f 14469 enter 146 fq 16 18 528us close 0us prep 5165us flush 2379us
2026-08-18 00:00:39.528136+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048102 tx stats: # 28580 owait 1174 3778us finish 28925 bar2 28442 f 14487 enter 122 fq 69 97 2486us close 0us prep 881us flush 2657us
2026-08-18 00:00:56.600954+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048122 tx stats: # 28600 owait 1174 3778us finish 28945 bar2 28462 f 14503 enter 3 fq 20 27 456us close 0us prep 240us flush 2451us
2026-08-18 00:01:15.227267+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048142 tx stats: # 28620 owait 1176 3777us finish 28967 bar2 28482 f 14520 enter 91 fq 50 59 1109us close 0us prep 4798us flush 1853us
2026-08-18 00:01:48.430026+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048162 tx stats: # 28640 owait 1177 3774us finish 28989 bar2 28502 f 14536 enter 127 fq 65 139 827us close 0us prep 2645us flush 3396us
2026-08-18 00:02:12.907700+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048182 tx stats: # 28660 owait 1177 3774us finish 29009 bar2 28522 f 14553 enter 109 fq 59 68 1637us close 0us prep 1697us flush 2546us
2026-08-18 00:02:31.417362+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048202 tx stats: # 28680 owait 1179 3771us finish 29032 bar2 28542 f 14569 enter 25 fq 75 123 1472us close 0us prep 597us flush 2738us
2026-08-18 00:03:00.110027+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048222 tx stats: # 28700 owait 1179 3771us finish 29052 bar2 28562 f 14584 enter 5 fq 45 58 511us close 0us prep 150us flush 2374us
2026-08-18 00:03:33.470981+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048242 tx stats: # 28720 owait 1179 3771us finish 29072 bar2 28582 f 14600 enter 2 fq 19 27 475us close 0us prep 238us flush 2297us
2026-08-18 00:03:47.275738+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048262 tx stats: # 28740 owait 1180 3775us finish 29093 bar2 28602 f 14610 enter 15 fq 27 28 640us close 0us prep 167us flush 420us
2026-08-18 00:04:04.418516+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048282 tx stats: # 28760 owait 1180 3775us finish 29113 bar2 28622 f 14626 enter 5 fq 40 50 945us close 0us prep 355us flush 2819us
2026-08-18 00:04:27.506477+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048302 tx stats: # 28780 owait 1180 3775us finish 29133 bar2 28642 f 14638 enter 30 fq 43 63 1481us close 0us prep 425us flush 2076us
2026-08-18 00:04:46.269054+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048322 tx stats: # 28800 owait 1180 3775us finish 29153 bar2 28662 f 14655 enter 32 fq 41 49 1829us close 0us prep 992us flush 1651us
2026-08-18 00:05:05.144720+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048342 tx stats: # 28820 owait 1180 3775us finish 29173 bar2 28682 f 14671 enter 9 fq 27 40 770us close 0us prep 357us flush 2751us
2026-08-18 00:05:39.405441+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048362 tx stats: # 28840 owait 1180 3775us finish 29193 bar2 28702 f 14689 enter 93 fq 42 57 1135us close 0us prep 1605us flush 3726us
2026-08-18 00:05:56.627607+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048382 tx stats: # 28860 owait 1180 3775us finish 29215 bar2 28722 f 14707 enter 319 fq 51 77 1506us close 0us prep 2001us flush 3398us
2026-08-18 00:06:10.419700+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048402 tx stats: # 28880 owait 1180 3775us finish 29235 bar2 28742 f 14723 enter 5 fq 44 59 1215us close 0us prep 276us flush 2848us
2026-08-18 00:06:24.657562+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048422 tx stats: # 28900 owait 1181 3773us finish 29256 bar2 28762 f 14734 enter 18 fq 18 21 155us close 0us prep 343us flush 866us
2026-08-18 00:06:57.011012+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048442 tx stats: # 28920 owait 1182 3770us finish 29276 bar2 28782 f 14746 enter 12 fq 73 108 3791us close 0us prep 584us flush 3103us
2026-08-18 00:07:43.404809+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048462 tx stats: # 28940 owait 1182 3770us finish 29296 bar2 28802 f 14759 enter 67 fq 98 163 3235us close 0us prep 1533us flush 2800us
2026-08-18 00:07:56.091188+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048482 tx stats: # 28960 owait 1184 3773us finish 29318 bar2 28822 f 14777 enter 16 fq 42 300 1512us close 0us prep 411us flush 2465us
2026-08-18 00:08:15.416254+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048502 tx stats: # 28980 owait 1184 3773us finish 29338 bar2 28842 f 14793 enter 15 fq 85 100 1879us close 0us prep 601us flush 3004us
2026-08-18 00:08:46.091088+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048522 tx stats: # 29000 owait 1186 3774us finish 29359 bar2 28862 f 14809 enter 59 fq 76 84 2508us close 0us prep 712us flush 3062us
2026-08-18 00:08:57.120787+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048542 tx stats: # 29020 owait 1186 3774us finish 29380 bar2 28882 f 14820 enter 5 fq 33 50 1045us close 0us prep 453us flush 3162us
2026-08-18 00:09:27.504183+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048562 tx stats: # 29040 owait 1186 3774us finish 29400 bar2 28902 f 14833 enter 3 fq 23 30 523us close 0us prep 220us flush 2851us
2026-08-18 00:10:21.414181+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048582 tx stats: # 29060 owait 1187 3772us finish 29420 bar2 28922 f 14847 enter 34 fq 48 554 2293us close 0us prep 1222us flush 2045us
2026-08-18 00:10:26.413613+0900 0x96884    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: routined(71631) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 00:10:26.413615+0900 0x96884    Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 71631, routined
2026-08-18 00:10:26.716766+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:10:26.716768+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:10:26.719866+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:10:26.719867+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:10:28.295646+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:10:28.295650+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:10:28.300390+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:10:28.300392+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:10:28.316667+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048602 tx stats: # 29080 owait 1187 3772us finish 29440 bar2 28942 f 14850 enter 72 fq 43 47 249us close 0us prep 935us flush 797us
2026-08-18 00:10:35.747126+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048622 tx stats: # 29100 owait 1188 3771us finish 29461 bar2 28962 f 14862 enter 155 fq 64 77 890us close 0us prep 3785us flush 2113us
2026-08-18 00:10:40.572529+0900 0x8f900    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 00:10:40.997353+0900 0x967e7    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 00:10:41.299335+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048642 tx stats: # 29120 owait 1193 3762us finish 29481 bar2 28982 f 14863 enter 36 fq 58 72 699us close 85us prep 961us flush 821us
2026-08-18 00:10:45.278854+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048662 tx stats: # 29140 owait 1197 3756us finish 29503 bar2 29002 f 14869 enter 229 fq 38 108 585us close 0us prep 5126us flush 1901us
2026-08-18 00:10:57.328842+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048682 tx stats: # 29160 owait 1197 3756us finish 29523 bar2 29022 f 14881 enter 28 fq 44 77 432us close 41us prep 170us flush 2997us
2026-08-18 00:11:15.238896+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048702 tx stats: # 29180 owait 1199 3755us finish 29543 bar2 29042 f 14889 enter 170 fq 174 610 3811us close 672us prep 856us flush 738us
2026-08-18 00:11:27.644864+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048722 tx stats: # 29200 owait 1201 3754us finish 29563 bar2 29062 f 14897 enter 134 fq 43 120 764us close 0us prep 242us flush 943us
2026-08-18 00:11:55.468392+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048742 tx stats: # 29220 owait 1201 3754us finish 29583 bar2 29082 f 14903 enter 85 fq 94 114 2530us close 0us prep 624us flush 2895us
2026-08-18 00:12:05.145117+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048762 tx stats: # 29240 owait 1201 3754us finish 29603 bar2 29102 f 14916 enter 380 fq 60 68 1258us close 0us prep 627us flush 1036us
2026-08-18 00:12:29.828041+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048782 tx stats: # 29260 owait 1202 3755us finish 29623 bar2 29122 f 14927 enter 47 fq 65 403 832us close 0us prep 118us flush 2483us
2026-08-18 00:12:53.605847+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048802 tx stats: # 29280 owait 1203 3752us finish 29643 bar2 29142 f 14932 enter 22 fq 26 38 274us close 0us prep 388us flush 1045us
2026-08-18 00:13:01.471030+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048822 tx stats: # 29300 owait 1203 3752us finish 29663 bar2 29162 f 14945 enter 20 fq 19 42 310us close 0us prep 196us flush 2489us
2026-08-18 00:13:15.293851+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048842 tx stats: # 29320 owait 1203 3752us finish 29683 bar2 29182 f 14952 enter 68 fq 17 25 556us close 0us prep 3525us flush 2664us
2026-08-18 00:13:57.613860+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048862 tx stats: # 29340 owait 1203 3752us finish 29703 bar2 29202 f 14968 enter 155 fq 115 131 3107us close 0us prep 931us flush 3245us
2026-08-18 00:14:14.951898+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048882 tx stats: # 29360 owait 1204 3750us finish 29723 bar2 29222 f 14980 enter 508 fq 34 52 857us close 0us prep 1129us flush 1049us
2026-08-18 00:14:22.836363+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048902 tx stats: # 29380 owait 1204 3750us finish 29744 bar2 29242 f 14980 enter 50 fq 98 111 1928us close 0us prep 554us flush 485us
2026-08-18 00:14:45.247225+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048922 tx stats: # 29400 owait 1204 3750us finish 29765 bar2 29262 f 14993 enter 49 fq 44 175 1115us close 0us prep 1476us flush 1794us
2026-08-18 00:15:14.277854+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048942 tx stats: # 29420 owait 1204 3750us finish 29785 bar2 29282 f 15009 enter 271 fq 45 55 671us close 0us prep 475us flush 2560us
2026-08-18 00:15:53.707315+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048962 tx stats: # 29440 owait 1206 3745us finish 29806 bar2 29302 f 15014 enter 17 fq 40 80 1112us close 0us prep 422us flush 566us
2026-08-18 00:15:57.763433+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4048982 tx stats: # 29460 owait 1206 3745us finish 29826 bar2 29322 f 15020 enter 13 fq 51 58 1250us close 0us prep 298us flush 2131us
2026-08-18 00:16:41.480693+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049002 tx stats: # 29480 owait 1206 3745us finish 29846 bar2 29342 f 15036 enter 58 fq 30 38 609us close 0us prep 473us flush 2989us
2026-08-18 00:17:21.452645+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049022 tx stats: # 29500 owait 1206 3745us finish 29866 bar2 29362 f 15051 enter 107 fq 67 96 1816us close 0us prep 2147us flush 2336us
2026-08-18 00:17:57.960213+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049042 tx stats: # 29520 owait 1206 3745us finish 29886 bar2 29382 f 15067 enter 11 fq 29 40 515us close 0us prep 270us flush 2376us
2026-08-18 00:18:25.470163+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049062 tx stats: # 29540 owait 1206 3745us finish 29906 bar2 29402 f 15083 enter 174 fq 40 45 624us close 0us prep 3305us flush 3005us
2026-08-18 00:18:31.620528+0900 0x999da    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29595839
2026-08-18 00:18:49.049828+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049082 tx stats: # 29560 owait 1208 3742us finish 29927 bar2 29422 f 15101 enter 33 fq 62 335 1671us close 3us prep 408us flush 3185us
2026-08-18 00:18:51.395395+0900 0x99b47    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 00:19:09.416431+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049102 tx stats: # 29580 owait 1208 3742us finish 29947 bar2 29442 f 15116 enter 94 fq 96 111 1670us close 0us prep 1664us flush 2154us
2026-08-18 00:19:31.473695+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049122 tx stats: # 29600 owait 1209 3741us finish 29967 bar2 29462 f 15127 enter 6 fq 41 47 440us close 0us prep 162us flush 2020us
2026-08-18 00:19:58.158234+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049142 tx stats: # 29620 owait 1209 3741us finish 29988 bar2 29482 f 15140 enter 2 fq 13 16 109us close 0us prep 101us flush 2183us
2026-08-18 00:20:26.207709+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049162 tx stats: # 29640 owait 1209 3741us finish 30010 bar2 29502 f 15154 enter 171 fq 45 64 713us close 0us prep 803us flush 2097us
2026-08-18 00:20:43.182657+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049182 tx stats: # 29660 owait 1210 3742us finish 30033 bar2 29522 f 15171 enter 357 fq 41 255 632us close 0us prep 3935us flush 2996us
2026-08-18 00:20:53.228492+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049202 tx stats: # 29680 owait 1210 3742us finish 30053 bar2 29542 f 15186 enter 177 fq 65 315 1594us close 0us prep 2026us flush 2491us
2026-08-18 00:21:20.473381+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049222 tx stats: # 29700 owait 1210 3742us finish 30075 bar2 29562 f 15203 enter 260 fq 24 32 477us close 0us prep 4422us flush 2820us
2026-08-18 00:21:58.321856+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049242 tx stats: # 29720 owait 1210 3742us finish 30095 bar2 29582 f 15221 enter 30 fq 126 414 3132us close 0us prep 776us flush 3280us
2026-08-18 00:22:38.225343+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049262 tx stats: # 29740 owait 1211 3742us finish 30118 bar2 29602 f 15236 enter 641 fq 67 80 1152us close 0us prep 3680us flush 3772us
2026-08-18 00:22:58.395865+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049282 tx stats: # 29760 owait 1213 3741us finish 30138 bar2 29622 f 15251 enter 141 fq 56 72 1855us close 0us prep 2447us flush 3440us
2026-08-18 00:23:33.438245+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049302 tx stats: # 29780 owait 1213 3741us finish 30157 bar2 29642 f 15268 enter 372 fq 28 31 381us close 0us prep 2797us flush 3473us
2026-08-18 00:23:58.519290+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049322 tx stats: # 29800 owait 1213 3741us finish 30178 bar2 29662 f 15282 enter 13 fq 38 88 675us close 0us prep 333us flush 2077us
2026-08-18 00:24:49.528534+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049342 tx stats: # 29820 owait 1213 3741us finish 30198 bar2 29682 f 15295 enter 73 fq 119 242 3589us close 0us prep 613us flush 3058us
2026-08-18 00:25:14.416762+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049362 tx stats: # 29840 owait 1213 3741us finish 30218 bar2 29702 f 15307 enter 85 fq 24 27 497us close 0us prep 1131us flush 2026us
2026-08-18 00:25:43.795858+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049382 tx stats: # 29860 owait 1213 3741us finish 30240 bar2 29722 f 15322 enter 38 fq 46 70 906us close 0us prep 685us flush 1944us
2026-08-18 00:25:58.670984+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049402 tx stats: # 29880 owait 1213 3741us finish 30260 bar2 29742 f 15340 enter 5 fq 24 31 279us close 0us prep 119us flush 2548us
2026-08-18 00:26:27.357187+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049422 tx stats: # 29900 owait 1213 3741us finish 30280 bar2 29762 f 15352 enter 15 fq 42 45 803us close 5us prep 438us flush 3015us
2026-08-18 00:26:38.949815+0900 0x9ca4d    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 00:26:55.693754+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049442 tx stats: # 29920 owait 1215 3739us finish 30301 bar2 29782 f 15366 enter 105 fq 49 73 1128us close 1us prep 479us flush 2953us
2026-08-18 00:27:03.223579+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049462 tx stats: # 29940 owait 1216 3737us finish 30323 bar2 29802 f 15385 enter 111 fq 42 45 748us close 0us prep 302us flush 3117us
2026-08-18 00:27:31.470501+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049482 tx stats: # 29960 owait 1216 3737us finish 30343 bar2 29822 f 15402 enter 6 fq 49 74 1038us close 0us prep 215us flush 2632us
2026-08-18 00:27:59.206135+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049502 tx stats: # 29980 owait 1217 3734us finish 30364 bar2 29842 f 15419 enter 49 fq 32 37 854us close 0us prep 262us flush 2080us
2026-08-18 00:28:17.625433+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049522 tx stats: # 30000 owait 1217 3734us finish 30384 bar2 29862 f 15434 enter 50 fq 45 55 868us close 0us prep 2227us flush 2866us
2026-08-18 00:28:49.794278+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049542 tx stats: # 30020 owait 1217 3734us finish 30404 bar2 29882 f 15452 enter 44 fq 30 73 411us close 0us prep 1476us flush 2380us
2026-08-18 00:29:07.437228+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049562 tx stats: # 30040 owait 1217 3734us finish 30425 bar2 29902 f 15470 enter 44 fq 19 22 192us close 0us prep 1674us flush 3026us
2026-08-18 00:29:27.452194+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049582 tx stats: # 30060 owait 1217 3734us finish 30445 bar2 29922 f 15486 enter 16 fq 69 98 2154us close 0us prep 590us flush 2030us
2026-08-18 00:29:40.133553+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049602 tx stats: # 30080 owait 1218 3733us finish 30468 bar2 29942 f 15501 enter 53 fq 15 18 162us close 0us prep 1857us flush 2316us
2026-08-18 00:29:59.005916+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049622 tx stats: # 30100 owait 1219 3731us finish 30487 bar2 29962 f 15516 enter 48 fq 103 117 4053us close 0us prep 1661us flush 3057us
2026-08-18 00:30:44.514972+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049642 tx stats: # 30120 owait 1220 3728us finish 30507 bar2 29982 f 15526 enter 127 fq 45 71 1579us close 0us prep 1343us flush 2234us
2026-08-18 00:31:08.604036+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049662 tx stats: # 30140 owait 1222 3725us finish 30527 bar2 30002 f 15540 enter 16 fq 23 25 181us close 0us prep 195us flush 513us
2026-08-18 00:31:08.960438+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:31:08.960439+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:31:08.962966+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:31:08.962968+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:31:12.288010+0900 0x9e649    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 00:31:12.288024+0900 0x9e649    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 76692); parent: com.apple.Mobile (pid 76691)
2026-08-18 00:31:12.288046+0900 0x9e649    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4049665)
2026-08-18 00:31:12.308303+0900 0x9e649    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 00:31:12.308637+0900 0x9e649    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 00:31:12.309110+0900 0x9e649    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 00:31:12.309207+0900 0x9e649    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 76692); parent: com.apple.Mobile (pid 76691)
2026-08-18 00:31:12.318900+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 00:31:12.318944+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 00:31:12.319761+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 00:31:12.319790+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 00:31:12.320770+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 76691); parent: launchd (pid 1)
2026-08-18 00:31:12.320795+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 00:31:12.322089+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 00:31:12.322290+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 00:31:12.375658+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 00:31:12.375676+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 76693); parent: com.apple.Mobile (pid 76691)
2026-08-18 00:31:12.375687+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4049667)
2026-08-18 00:31:12.380804+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 00:31:12.380890+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 00:31:12.380969+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 773784
2026-08-18 00:31:12.380983+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 00:31:12.816043+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 773966 -> 777713
2026-08-18 00:31:12.879520+0900 0x9e68c    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4049668-4049668
2026-08-18 00:31:12.947703+0900 0x9e68c    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4049668, om_snap_count 1 om_most_recent_snap 4049668
2026-08-18 00:31:12.947711+0900 0x9e68c    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4049668
2026-08-18 00:31:12.948028+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 00:31:12.948362+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4049674)
2026-08-18 00:31:12.954044+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 00:31:12.954154+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 00:31:12.954242+0900 0x9e666    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 76693); parent: com.apple.Mobile (pid 76691)
2026-08-18 00:31:12.970433+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 76691); parent: launchd (pid 1)
2026-08-18 00:31:12.970453+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 00:31:12.970509+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 00:31:12.972802+0900 0x9e644    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 00:31:15.198553+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemWillSleep[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:31:15.198557+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000280
2026-08-18 00:31:15.198956+0900 0x9e5e1    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 00:31:15.199866+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[81] to com.apple.iokit.IONVMeFamily
2026-08-18 00:31:15.199869+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:31:15.377269+0900 0x9e5e1    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 00:31:15.436518+0900 0x9e737    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 00:31:15.436601+0900 0x9e737    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 00:31:15.455728+0900 0x9e737    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 00:31:15.456084+0900 0x9e737    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 00:31:15.456088+0900 0x9e737    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 00:31:15.456091+0900 0x9e737    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 00:31:15.456149+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 00:31:15.502134+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:31:15.502136+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:31:42.565692+0900 0x9e56e    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:31:42.565697+0900 0x9e56e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:31:42.570116+0900 0x9e4c0    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 00:31:42.570122+0900 0x9e4c0    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 00:31:42.570129+0900 0x9e4c0    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 00:31:42.570133+0900 0x9e4c0    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 00:31:42.570141+0900 0x9e4c0    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 00:31:42.578326+0900 0x9e50a    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemWillPowerOn to com.apple.iokit.IONVMeFamily
2026-08-18 00:31:42.578329+0900 0x9e50a    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000320
2026-08-18 00:31:42.586147+0900 0x9e412    Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6525: disk3s5 apfs is being LOCKED!
2026-08-18 00:31:42.586156+0900 0x9e412    Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6664: disk3s5 apfs is now LOCKED (flags 0x441000d6)!
2026-08-18 00:31:42.695064+0900 0x9e73b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 00:31:42.695074+0900 0x9e73b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 00:31:42.695084+0900 0x9e73b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 00:31:42.695087+0900 0x9e73b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 00:31:42.699749+0900 0x9e73b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 00:31:42.712362+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049682 tx stats: # 30160 owait 1230 3732us finish 30548 bar2 30022 f 15551 enter 16 fq 62 75 4410us close 12us prep 236us flush 401us
2026-08-18 00:31:42.737703+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_lock_notification:6949: disk3s5 done processing lock keybag notification, err 0, (flags 0x441000c6)
2026-08-18 00:31:42.753184+0900 0x9e770    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 00:31:42.753208+0900 0x9e770    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 00:31:42.753344+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 00:31:42.753345+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 00:31:42.807884+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemHasPoweredOn to com.apple.iokit.IONVMeFamily
2026-08-18 00:31:42.807885+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000300
2026-08-18 00:31:44.124460+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6682: disk3s5 apfs is being UN-locked!
2026-08-18 00:31:44.124470+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6815: disk3s5 apfs is now UN-locked! (flags 0x441001c2)
2026-08-18 00:31:44.205893+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_unlock_notification:6995: disk3s5 done processing un-lock keybag notification, err 0, (flags 0x441000c2)
2026-08-18 00:31:53.554777+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049702 tx stats: # 30180 owait 1231 3729us finish 30568 bar2 30042 f 15557 enter 17 fq 93 114 1119us close 1354us prep 683us flush 781us
2026-08-18 00:32:16.473938+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049722 tx stats: # 30200 owait 1233 3725us finish 30588 bar2 30062 f 15571 enter 69 fq 77 249 2180us close 0us prep 728us flush 1747us
2026-08-18 00:32:26.201750+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049742 tx stats: # 30220 owait 1234 3723us finish 30609 bar2 30082 f 15588 enter 3 fq 18 24 258us close 0us prep 132us flush 2739us
2026-08-18 00:32:52.605220+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049762 tx stats: # 30240 owait 1234 3723us finish 30629 bar2 30102 f 15598 enter 66 fq 28 39 649us close 0us prep 2323us flush 1847us
2026-08-18 00:33:26.279475+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049782 tx stats: # 30260 owait 1234 3723us finish 30649 bar2 30122 f 15612 enter 6 fq 30 159 815us close 0us prep 204us flush 2781us
2026-08-18 00:34:19.526994+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049802 tx stats: # 30280 owait 1234 3723us finish 30669 bar2 30142 f 15626 enter 28 fq 82 113 2789us close 0us prep 781us flush 3031us
2026-08-18 00:34:27.435548+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049822 tx stats: # 30300 owait 1235 3722us finish 30692 bar2 30162 f 15645 enter 3 fq 24 27 501us close 0us prep 210us flush 3005us
2026-08-18 00:34:43.112049+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049842 tx stats: # 30320 owait 1237 3718us finish 30714 bar2 30182 f 15661 enter 9 fq 31 40 686us close 0us prep 249us flush 1935us
2026-08-18 00:34:53.452897+0900 0x9f6b9    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(77501) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 00:34:56.275976+0900 0x9fa46    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: ctkd(77501) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 00:34:56.907944+0900 0x9fa94    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(77523) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 00:34:57.713451+0900 0x9eb07    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(77523) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 00:35:06.611743+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049862 tx stats: # 30340 owait 1238 3720us finish 30737 bar2 30202 f 15677 enter 60 fq 74 116 2809us close 0us prep 435us flush 2767us
2026-08-18 00:35:20.009136+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049882 tx stats: # 30360 owait 1239 3718us finish 30758 bar2 30222 f 15687 enter 336 fq 13 15 185us close 0us prep 3075us flush 1241us
2026-08-18 00:35:26.744965+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049902 tx stats: # 30380 owait 1239 3718us finish 30780 bar2 30242 f 15702 enter 13 fq 20 24 182us close 0us prep 595us flush 2007us
2026-08-18 00:36:25.517896+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049922 tx stats: # 30400 owait 1239 3718us finish 30800 bar2 30262 f 15712 enter 81 fq 122 401 2882us close 0us prep 2141us flush 2049us
2026-08-18 00:37:03.225844+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049942 tx stats: # 30420 owait 1239 3718us finish 30820 bar2 30282 f 15730 enter 64 fq 45 55 909us close 0us prep 451us flush 2342us
2026-08-18 00:37:24.035816+0900 0xa0936    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 00:37:24.415219+0900 0xa0935    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 00:37:27.771588+0900 0xa0934    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_pageout : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 00:37:27.855226+0900 0xa04e1    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AudiovisualThumbnailExtension(78101) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 00:37:28.172506+0900 0xa08ed    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_pageout : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 00:37:28.520141+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049962 tx stats: # 30440 owait 1239 3718us finish 30840 bar2 30302 f 15745 enter 33 fq 20 22 187us close 0us prep 250us flush 2632us
2026-08-18 00:37:36.809075+0900 0xa0bba    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 00:38:00.085860+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4049982 tx stats: # 30460 owait 1239 3718us finish 30860 bar2 30322 f 15750 enter 89 fq 159 762 4798us close 0us prep 814us flush 2763us
2026-08-18 00:38:11.591336+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050002 tx stats: # 30480 owait 1239 3718us finish 30880 bar2 30342 f 15768 enter 23 fq 105 145 2919us close 0us prep 880us flush 2997us
2026-08-18 00:38:33.350264+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050022 tx stats: # 30500 owait 1239 3718us finish 30900 bar2 30362 f 15780 enter 13 fq 27 34 959us close 0us prep 293us flush 2186us
2026-08-18 00:39:15.580169+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050042 tx stats: # 30520 owait 1241 3715us finish 30921 bar2 30382 f 15790 enter 66 fq 61 90 1972us close 0us prep 1741us flush 1484us
2026-08-18 00:40:03.248641+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050062 tx stats: # 30540 owait 1241 3715us finish 30941 bar2 30402 f 15805 enter 265 fq 30 36 776us close 0us prep 7526us flush 2984us
2026-08-18 00:40:26.965172+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050082 tx stats: # 30560 owait 1241 3715us finish 30961 bar2 30422 f 15820 enter 4 fq 30 38 679us close 0us prep 181us flush 2292us
2026-08-18 00:40:38.103924+0900 0xa223b    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: routined(78828) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 00:40:38.103930+0900 0xa223b    Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 78828, routined
2026-08-18 00:40:54.022926+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050102 tx stats: # 30580 owait 1241 3715us finish 30981 bar2 30442 f 15829 enter 66 fq 71 84 1310us close 0us prep 652us flush 2938us
2026-08-18 00:41:08.175344+0900 0xa2614    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 00:41:08.175360+0900 0xa2614    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 00:41:08.175752+0900 0xa2614    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 00:41:08.512390+0900 0xa2614    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-004108.local' snap_xid 4050112 extentref oid 779754 sblock oid 793371
2026-08-18 00:41:08.514725+0900 0xa2614    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 00:41:08.656759+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050122 tx stats: # 30600 owait 1243 3710us finish 31001 bar2 30462 f 15835 enter 8 fq 38 246 262us close 71us prep 406us flush 363us
2026-08-18 00:41:08.958693+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050142 tx stats: # 30620 owait 1243 3710us finish 31021 bar2 30482 f 15835 enter 8 fq 16 18 83us close 0us prep 143us flush 182us
2026-08-18 00:41:27.047056+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050162 tx stats: # 30640 owait 1244 3708us finish 31041 bar2 30502 f 15846 enter 33 fq 47 62 1420us close 0us prep 545us flush 2183us
2026-08-18 00:42:00.232876+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050182 tx stats: # 30660 owait 1245 3711us finish 31063 bar2 30522 f 15859 enter 45 fq 49 64 1327us close 0us prep 412us flush 2665us
2026-08-18 00:42:25.521647+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050202 tx stats: # 30680 owait 1245 3711us finish 31085 bar2 30542 f 15877 enter 471 fq 28 40 612us close 0us prep 1497us flush 1811us
2026-08-18 00:42:43.937096+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050222 tx stats: # 30700 owait 1246 3709us finish 31107 bar2 30562 f 15890 enter 77 fq 146 191 2446us close 0us prep 826us flush 517us
2026-08-18 00:42:52.082334+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050242 tx stats: # 30720 owait 1247 3707us finish 31131 bar2 30582 f 15904 enter 248 fq 73 83 2149us close 57us prep 1193us flush 2654us
2026-08-18 00:43:07.163625+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050262 tx stats: # 30740 owait 1248 3706us finish 31155 bar2 30602 f 15923 enter 293 fq 12 14 288us close 0us prep 2278us flush 2777us
2026-08-18 00:43:27.142583+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050282 tx stats: # 30760 owait 1249 3705us finish 31176 bar2 30622 f 15941 enter 6 fq 23 33 535us close 0us prep 415us flush 1764us
2026-08-18 00:44:09.789916+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050302 tx stats: # 30780 owait 1249 3705us finish 31196 bar2 30642 f 15957 enter 122 fq 27 47 519us close 0us prep 3196us flush 2803us
2026-08-18 00:44:24.007668+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050322 tx stats: # 30800 owait 1250 3703us finish 31220 bar2 30662 f 15970 enter 56 fq 15 21 476us close 0us prep 872us flush 1778us
2026-08-18 00:44:27.244994+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050342 tx stats: # 30820 owait 1251 3700us finish 31240 bar2 30682 f 15988 enter 6 fq 22 26 650us close 0us prep 378us flush 1636us
2026-08-18 00:44:44.258038+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050362 tx stats: # 30840 owait 1252 3699us finish 31262 bar2 30702 f 16004 enter 37 fq 114 146 2064us close 0us prep 806us flush 2107us
2026-08-18 00:45:09.828421+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050382 tx stats: # 30860 owait 1252 3699us finish 31282 bar2 30722 f 16011 enter 29 fq 18 30 131us close 0us prep 146us flush 243us
2026-08-18 00:45:27.337551+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050402 tx stats: # 30880 owait 1253 3701us finish 31303 bar2 30742 f 16023 enter 10 fq 44 60 1585us close 0us prep 660us flush 2340us
2026-08-18 00:45:47.880163+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050422 tx stats: # 30900 owait 1254 3716us finish 31325 bar2 30762 f 16036 enter 226 fq 16 20 322us close 18us prep 2764us flush 1347us
2026-08-18 00:45:52.468982+0900 0xa4328    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 00:46:01.509990+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050442 tx stats: # 30920 owait 1254 3716us finish 31345 bar2 30782 f 16044 enter 10 fq 64 80 1901us close 0us prep 392us flush 2595us
2026-08-18 00:46:31.519523+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050462 tx stats: # 30940 owait 1254 3716us finish 31367 bar2 30802 f 16059 enter 49 fq 20 23 547us close 0us prep 1344us flush 2580us
2026-08-18 00:47:27.503239+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050482 tx stats: # 30960 owait 1254 3716us finish 31387 bar2 30822 f 16075 enter 80 fq 49 57 1045us close 0us prep 1019us flush 3176us
2026-08-18 00:47:57.515979+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050502 tx stats: # 30980 owait 1254 3716us finish 31407 bar2 30842 f 16087 enter 119 fq 121 164 4044us close 0us prep 1987us flush 3282us
2026-08-18 00:48:24.341360+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050522 tx stats: # 31000 owait 1255 3715us finish 31428 bar2 30862 f 16101 enter 167 fq 78 339 2204us close 0us prep 607us flush 2730us
2026-08-18 00:48:34.071882+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050542 tx stats: # 31020 owait 1256 3712us finish 31448 bar2 30882 f 16114 enter 235 fq 30 34 502us close 0us prep 2945us flush 2311us
2026-08-18 00:49:11.501262+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050562 tx stats: # 31040 owait 1256 3712us finish 31470 bar2 30902 f 16130 enter 177 fq 104 601 2004us close 0us prep 2017us flush 2688us
2026-08-18 00:49:27.709186+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050582 tx stats: # 31060 owait 1256 3712us finish 31490 bar2 30922 f 16145 enter 5 fq 29 44 318us close 0us prep 165us flush 1889us
2026-08-18 00:50:16.507694+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050602 tx stats: # 31080 owait 1257 3710us finish 31510 bar2 30942 f 16157 enter 133 fq 116 151 3924us close 0us prep 1323us flush 2869us
2026-08-18 00:50:54.026069+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050622 tx stats: # 31100 owait 1257 3710us finish 31530 bar2 30962 f 16173 enter 21 fq 73 196 1941us close 0us prep 283us flush 2912us
2026-08-18 00:51:32.228676+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050642 tx stats: # 31120 owait 1257 3710us finish 31550 bar2 30982 f 16189 enter 20 fq 23 26 337us close 0us prep 385us flush 1125us
2026-08-18 00:52:13.719735+0900 0xa6d47    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(82278) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 00:52:13.734983+0900 0xa6f88    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(82278) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 00:52:13.776547+0900 0xa6d47    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(82279) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 00:52:13.778417+0900 0xa69a0    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(82279) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 00:52:13.952539+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050662 tx stats: # 31140 owait 1260 3709us finish 31570 bar2 31002 f 16195 enter 593 fq 93 112 1393us close 22us prep 797us flush 1258us
2026-08-18 00:52:14.869124+0900 0xa704d    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 00:52:23.369133+0900 0xa73c9    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 00:52:25.503385+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050682 tx stats: # 31160 owait 1262 3709us finish 31590 bar2 31022 f 16203 enter 501 fq 105 156 1000us close 0us prep 479us flush 2674us
2026-08-18 00:53:00.048208+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050702 tx stats: # 31180 owait 1264 3711us finish 31609 bar2 31041 f 16216 enter 508 fq 371 8170 4899us close 0us prep 1605us flush 3361us
2026-08-18 00:53:28.099193+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050722 tx stats: # 31200 owait 1265 3709us finish 31629 bar2 31061 f 16230 enter 24 fq 38 121 400us close 0us prep 195us flush 2463us
2026-08-18 00:54:11.252899+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050742 tx stats: # 31220 owait 1265 3709us finish 31649 bar2 31081 f 16244 enter 56 fq 33 59 921us close 0us prep 1059us flush 1590us
2026-08-18 00:54:34.567419+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050762 tx stats: # 31240 owait 1265 3709us finish 31669 bar2 31101 f 16261 enter 180 fq 42 47 508us close 0us prep 378us flush 2616us
2026-08-18 00:54:46.222058+0900 0xa9d24    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 00:54:47.433307+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050782 tx stats: # 31260 owait 1267 3704us finish 31690 bar2 31121 f 16268 enter 16 fq 36 42 333us close 0us prep 185us flush 369us
2026-08-18 00:54:47.472416+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050802 tx stats: # 31280 owait 1267 3704us finish 31710 bar2 31141 f 16268 enter 1 fq 13 15 136us close 0us prep 77us flush 158us
2026-08-18 00:54:47.541889+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050822 tx stats: # 31300 owait 1267 3704us finish 31730 bar2 31161 f 16268 enter 1 fq 9 11 462us close 0us prep 72us flush 237us
2026-08-18 00:54:47.585255+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050842 tx stats: # 31320 owait 1267 3704us finish 31750 bar2 31181 f 16268 enter 1 fq 10 12 134us close 0us prep 100us flush 251us
2026-08-18 00:54:59.394484+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050862 tx stats: # 31340 owait 1267 3704us finish 31770 bar2 31201 f 16268 enter 192 fq 11 14 332us close 0us prep 1250us flush 945us
2026-08-18 00:55:17.739945+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050882 tx stats: # 31360 owait 1268 3705us finish 31791 bar2 31221 f 16283 enter 22 fq 73 81 2093us close 0us prep 1015us flush 882us
2026-08-18 00:55:28.276340+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050902 tx stats: # 31380 owait 1268 3705us finish 31811 bar2 31241 f 16285 enter 1 fq 16 20 430us close 0us prep 181us flush 2382us
2026-08-18 00:56:10.579982+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050922 tx stats: # 31400 owait 1268 3705us finish 31831 bar2 31261 f 16300 enter 50 fq 61 90 944us close 0us prep 869us flush 2902us
2026-08-18 00:56:43.564927+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050942 tx stats: # 31420 owait 1268 3705us finish 31851 bar2 31281 f 16315 enter 70 fq 93 356 2320us close 0us prep 1464us flush 1819us
2026-08-18 00:57:09.595828+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050962 tx stats: # 31440 owait 1271 3702us finish 31873 bar2 31301 f 16332 enter 5 fq 39 82 719us close 0us prep 194us flush 1855us
2026-08-18 00:57:28.477358+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4050982 tx stats: # 31460 owait 1272 3700us finish 31894 bar2 31321 f 16349 enter 97 fq 59 84 1008us close 0us prep 1113us flush 3651us
2026-08-18 00:58:12.386340+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051002 tx stats: # 31480 owait 1272 3700us finish 31914 bar2 31341 f 16360 enter 106 fq 53 60 1141us close 0us prep 3754us flush 1659us
2026-08-18 00:58:42.392112+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051022 tx stats: # 31500 owait 1272 3700us finish 31934 bar2 31361 f 16375 enter 210 fq 16 84 650us close 0us prep 2129us flush 4185us
2026-08-18 00:59:10.890229+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051042 tx stats: # 31520 owait 1272 3700us finish 31955 bar2 31381 f 16394 enter 706 fq 58 66 803us close 0us prep 412us flush 1929us
2026-08-18 00:59:28.728995+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051062 tx stats: # 31540 owait 1274 3696us finish 31975 bar2 31401 f 16406 enter 4 fq 21 33 446us close 0us prep 129us flush 2220us
2026-08-18 00:59:59.569822+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051082 tx stats: # 31560 owait 1275 3694us finish 31996 bar2 31421 f 16421 enter 113 fq 32 44 717us close 0us prep 355us flush 2750us
2026-08-18 01:00:31.566546+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051102 tx stats: # 31580 owait 1276 3692us finish 32016 bar2 31441 f 16440 enter 5 fq 30 35 436us close 0us prep 239us flush 2537us
2026-08-18 01:01:17.262881+0900 0xa7062    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:01:18.960986+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051122 tx stats: # 31600 owait 1277 3691us finish 32036 bar2 31461 f 16448 enter 541 fq 177 232 2495us close 8us prep 1946us flush 1108us
2026-08-18 01:01:20.446968+0900 0xac9d4    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 01:01:22.106721+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051142 tx stats: # 31620 owait 1277 3691us finish 32056 bar2 31481 f 16452 enter 79 fq 33 52 653us close 0us prep 500us flush 1234us
2026-08-18 01:01:27.810612+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051162 tx stats: # 31640 owait 1278 3688us finish 32076 bar2 31501 f 16452 enter 197 fq 109 160 1136us close 0us prep 616us flush 628us
2026-08-18 01:01:50.592507+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051182 tx stats: # 31660 owait 1279 3688us finish 32096 bar2 31521 f 16464 enter 367 fq 197 484 2005us close 0us prep 4131us flush 2892us
2026-08-18 01:02:06.642272+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051202 tx stats: # 31680 owait 1279 3688us finish 32116 bar2 31541 f 16477 enter 338 fq 33 73 408us close 0us prep 1432us flush 1538us
2026-08-18 01:02:29.018291+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051222 tx stats: # 31700 owait 1281 3683us finish 32136 bar2 31561 f 16482 enter 5 fq 32 56 490us close 0us prep 346us flush 2442us
2026-08-18 01:02:56.856288+0900 0xad57a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 01:03:00.114282+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051242 tx stats: # 31720 owait 1282 3684us finish 32156 bar2 31581 f 16493 enter 64 fq 117 305 1589us close 0us prep 1258us flush 1995us
2026-08-18 01:03:29.118033+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051262 tx stats: # 31740 owait 1285 3696us finish 32176 bar2 31601 f 16508 enter 24 fq 55 96 799us close 0us prep 265us flush 2049us
2026-08-18 01:04:00.000899+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051282 tx stats: # 31760 owait 1285 3696us finish 32196 bar2 31621 f 16520 enter 302 fq 93 350 1309us close 0us prep 1766us flush 2388us
2026-08-18 01:04:28.143342+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051302 tx stats: # 31780 owait 1285 3696us finish 32216 bar2 31641 f 16530 enter 54 fq 42 51 553us close 0us prep 542us flush 814us
2026-08-18 01:05:05.921072+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051322 tx stats: # 31800 owait 1285 3696us finish 32236 bar2 31661 f 16544 enter 27 fq 87 127 1209us close 0us prep 411us flush 2712us
2026-08-18 01:05:29.233784+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051342 tx stats: # 31820 owait 1288 3697us finish 32257 bar2 31681 f 16557 enter 59 fq 30 101 666us close 0us prep 514us flush 3118us
2026-08-18 01:05:54.070774+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051362 tx stats: # 31840 owait 1288 3697us finish 32277 bar2 31701 f 16569 enter 78 fq 130 273 2029us close 0us prep 598us flush 2128us
2026-08-18 01:06:11.040069+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051382 tx stats: # 31860 owait 1289 3696us finish 32301 bar2 31721 f 16586 enter 1297 fq 21 27 284us close 0us prep 258us flush 2018us
2026-08-18 01:06:26.475605+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051402 tx stats: # 31880 owait 1290 3693us finish 32323 bar2 31741 f 16604 enter 37 fq 38 52 392us close 0us prep 99us flush 1827us
2026-08-18 01:06:42.367161+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051422 tx stats: # 31900 owait 1292 3691us finish 32344 bar2 31761 f 16622 enter 140 fq 15 17 196us close 0us prep 4047us flush 2004us
2026-08-18 01:06:53.108808+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051442 tx stats: # 31920 owait 1295 3688us finish 32367 bar2 31781 f 16642 enter 236 fq 102 520 2189us close 1us prep 196us flush 2695us
2026-08-18 01:07:20.562077+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051462 tx stats: # 31940 owait 1296 3687us finish 32388 bar2 31801 f 16659 enter 108 fq 30 34 353us close 0us prep 836us flush 2074us
2026-08-18 01:07:22.984506+0900 0xac987    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:07:29.425318+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051482 tx stats: # 31960 owait 1296 3687us finish 32410 bar2 31821 f 16671 enter 8 fq 22 36 723us close 0us prep 378us flush 2294us
2026-08-18 01:07:58.792862+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051502 tx stats: # 31980 owait 1296 3687us finish 32430 bar2 31841 f 16676 enter 2488 fq 58 368 1566us close 0us prep 2363us flush 1740us
2026-08-18 01:08:29.488380+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051522 tx stats: # 32000 owait 1296 3687us finish 32452 bar2 31861 f 16691 enter 76 fq 58 200 2498us close 0us prep 1661us flush 3598us
2026-08-18 01:09:11.651435+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051542 tx stats: # 32020 owait 1297 3686us finish 32472 bar2 31881 f 16709 enter 72 fq 139 246 3527us close 0us prep 638us flush 3204us
2026-08-18 01:09:20.818793+0900 0x3133     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: Mail(897) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 01:09:20.818794+0900 0x3133     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 897, Mail
2026-08-18 01:09:29.672516+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051562 tx stats: # 32040 owait 1297 3686us finish 32492 bar2 31901 f 16724 enter 4 fq 19 22 528us close 0us prep 126us flush 2054us
2026-08-18 01:09:56.557052+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051582 tx stats: # 32060 owait 1297 3686us finish 32512 bar2 31921 f 16728 enter 67 fq 77 108 2244us close 0us prep 1519us flush 2485us
2026-08-18 01:10:28.564044+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051602 tx stats: # 32080 owait 1297 3686us finish 32532 bar2 31941 f 16739 enter 45 fq 88 265 1740us close 0us prep 1132us flush 2761us
2026-08-18 01:10:33.874156+0900 0xad2ad    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_pageout : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 01:10:34.295284+0900 0xb0afd    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 01:10:34.865772+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051622 tx stats: # 32100 owait 1297 3686us finish 32552 bar2 31961 f 16747 enter 88 fq 53 89 918us close 0us prep 366us flush 498us
2026-08-18 01:10:39.571594+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051642 tx stats: # 32120 owait 1297 3686us finish 32572 bar2 31981 f 16747 enter 59 fq 34 167 679us close 0us prep 420us flush 487us
2026-08-18 01:10:39.801829+0900 0xb0a3e    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 01:11:11.552042+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051662 tx stats: # 32140 owait 1297 3686us finish 32592 bar2 32001 f 16761 enter 33 fq 36 47 842us close 0us prep 450us flush 2876us
2026-08-18 01:11:39.683381+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051682 tx stats: # 32160 owait 1297 3686us finish 32612 bar2 32021 f 16779 enter 88 fq 17 20 180us close 0us prep 1693us flush 2069us
2026-08-18 01:12:14.346605+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051702 tx stats: # 32180 owait 1298 3685us finish 32632 bar2 32041 f 16786 enter 230 fq 106 134 2154us close 170us prep 3799us flush 2039us
2026-08-18 01:12:30.074523+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051722 tx stats: # 32200 owait 1298 3685us finish 32652 bar2 32061 f 16801 enter 21 fq 64 203 1211us close 0us prep 420us flush 2381us
2026-08-18 01:13:00.125743+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051742 tx stats: # 32220 owait 1299 3683us finish 32672 bar2 32081 f 16810 enter 366 fq 159 1174 4192us close 0us prep 5420us flush 2405us
2026-08-18 01:13:27.849838+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051762 tx stats: # 32240 owait 1301 3682us finish 32692 bar2 32101 f 16821 enter 240 fq 69 373 1448us close 0us prep 1372us flush 1086us
2026-08-18 01:13:38.287748+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051782 tx stats: # 32260 owait 1301 3682us finish 32712 bar2 32121 f 16838 enter 1 fq 17 23 230us close 0us prep 81us flush 2419us
2026-08-18 01:14:17.765656+0900 0xb239d    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: routined(91664) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 01:14:17.765658+0900 0xb239d    Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 91664, routined
2026-08-18 01:14:18.139686+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:18.139687+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:18.142179+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:18.142180+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:19.238203+0900 0xb20d1    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AuthenticationServicesAgent(91672) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:14:19.356480+0900 0xb2315    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AuthenticationServicesAgent(91672) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:14:19.930668+0900 0xb2521    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 01:14:19.930679+0900 0xb2521    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 91692); parent: com.apple.Mobile (pid 91689)
2026-08-18 01:14:19.930693+0900 0xb2521    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4051800)
2026-08-18 01:14:19.946898+0900 0xb2521    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 01:14:19.947245+0900 0xb2521    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 01:14:19.947318+0900 0xb2521    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 01:14:19.947378+0900 0xb2521    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 91692); parent: com.apple.Mobile (pid 91689)
2026-08-18 01:14:19.957337+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 01:14:19.957352+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 01:14:19.957400+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 01:14:19.957411+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 01:14:19.965115+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 91689); parent: launchd (pid 1)
2026-08-18 01:14:19.965139+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 01:14:19.966677+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 01:14:19.969814+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 01:14:20.029975+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 01:14:20.029991+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 91694); parent: com.apple.Mobile (pid 91689)
2026-08-18 01:14:20.030003+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4051802)
2026-08-18 01:14:20.031748+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051802 tx stats: # 32280 owait 1301 3682us finish 32732 bar2 32141 f 16850 enter 480 fq 34 42 406us close 0us prep 2698us flush 1674us
2026-08-18 01:14:20.034604+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 01:14:20.034676+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 01:14:20.037893+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 777298
2026-08-18 01:14:20.037937+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 01:14:20.495407+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 777713 -> 772024
2026-08-18 01:14:20.524078+0900 0xb2550    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4051803-4051803
2026-08-18 01:14:20.587963+0900 0xb2550    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4051803, om_snap_count 1 om_most_recent_snap 4051803
2026-08-18 01:14:20.587974+0900 0xb2550    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4051803
2026-08-18 01:14:20.588467+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 01:14:20.588824+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4051804)
2026-08-18 01:14:20.591569+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 01:14:20.591663+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 01:14:20.591754+0900 0xb253a    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 91694); parent: com.apple.Mobile (pid 91689)
2026-08-18 01:14:20.640960+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 91689); parent: launchd (pid 1)
2026-08-18 01:14:20.640988+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 01:14:20.642189+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 01:14:20.645866+0900 0xb2517    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 01:14:24.098480+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemWillSleep[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:24.098483+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000280
2026-08-18 01:14:24.098811+0900 0xb251b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 01:14:24.099725+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[81] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:24.099728+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:24.186834+0900 0xb251b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 01:14:24.342765+0900 0xb261c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 01:14:24.342936+0900 0xb261e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 01:14:24.978149+0900 0xb261e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 01:14:24.978579+0900 0xb261e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 01:14:24.978593+0900 0xb261e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 01:14:24.978600+0900 0xb261e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 01:14:24.978690+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 01:14:25.002019+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:25.002024+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:43.385490+0900 0xab6c2    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:43.385495+0900 0xab6c2    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:43.390640+0900 0xab95a    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 01:14:43.390649+0900 0xab95a    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 01:14:43.390659+0900 0xab95a    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 01:14:43.390664+0900 0xab95a    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 01:14:43.390674+0900 0xab95a    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 01:14:43.515451+0900 0xb263f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 01:14:43.515459+0900 0xb263f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 01:14:43.515469+0900 0xb263f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 01:14:43.515473+0900 0xb263f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 01:14:43.519481+0900 0xb263f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 01:14:43.524403+0900 0xb2648    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 01:14:43.524428+0900 0xb2648    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 01:14:43.524566+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:43.524567+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:43.559611+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6525: disk3s5 apfs is being LOCKED!
2026-08-18 01:14:43.559614+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6664: disk3s5 apfs is now LOCKED (flags 0x441000d6)!
2026-08-18 01:14:43.595966+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_lock_notification:6949: disk3s5 done processing lock keybag notification, err 0, (flags 0x441000c6)
2026-08-18 01:14:43.907466+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemWillPowerOn to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:43.907467+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000320
2026-08-18 01:14:43.907932+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:43.907933+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:43.908932+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:43.908933+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:43.916316+0900 0xb2739    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemHasPoweredOn to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:43.916317+0900 0xb2739    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000300
2026-08-18 01:14:44.531418+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051822 tx stats: # 32300 owait 1304 3680us finish 32752 bar2 32161 f 16858 enter 38 fq 111 205 1386us close 0us prep 654us flush 1056us
2026-08-18 01:14:44.814511+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051842 tx stats: # 32320 owait 1305 3678us finish 32772 bar2 32181 f 16858 enter 10 fq 20 23 233us close 0us prep 246us flush 448us
2026-08-18 01:14:46.072693+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051862 tx stats: # 32340 owait 1306 3675us finish 32792 bar2 32201 f 16862 enter 582 fq 38 46 556us close 4us prep 302us flush 830us
2026-08-18 01:14:48.420346+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:48.420347+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:48.421622+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:14:48.421623+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:14:48.776517+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051882 tx stats: # 32360 owait 1307 3674us finish 32812 bar2 32221 f 16869 enter 87 fq 39 44 562us close 0us prep 584us flush 1926us
2026-08-18 01:14:50.310150+0900 0xac987    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:14:52.061336+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051902 tx stats: # 32380 owait 1309 3670us finish 32832 bar2 32240 f 16875 enter 12 fq 25 35 366us close 0us prep 188us flush 2511us
2026-08-18 01:14:54.423596+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051922 tx stats: # 32400 owait 1309 3670us finish 32852 bar2 32260 f 16875 enter 155 fq 54 219 781us close 0us prep 308us flush 368us
2026-08-18 01:14:59.186390+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051942 tx stats: # 32420 owait 1312 3666us finish 32872 bar2 32280 f 16875 enter 1433 fq 106 162 1131us close 0us prep 3132us flush 1584us
2026-08-18 01:15:01.933011+0900 0xb20d1    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:15:02.003546+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.004766+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.007819+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.015065+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.015184+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) 4 duplicate reports for Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.018670+0900 0xb20d1    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:15:02.022788+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.024692+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.027833+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.031722+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.031869+0900 0xb2e2a    Error       0x0                  0      0    kernel: (Sandbox) 4 duplicate reports for Sandbox: managedcorespotlightd(91860) deny(1) iokit-get-properties iokit-class:IOEmbeddedNVMeBlockDevice property:IOClassNameOverride
2026-08-18 01:15:02.034567+0900 0xb20d1    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: managedcorespotlightd(91860) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:15:02.751518+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051962 tx stats: # 32440 owait 1315 3665us finish 32891 bar2 32299 f 16880 enter 582 fq 27 32 318us close 0us prep 1493us flush 940us
2026-08-18 01:15:06.830011+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4051982 tx stats: # 32460 owait 1317 3660us finish 32909 bar2 32317 f 16884 enter 1350 fq 43 62 500us close 47us prep 941us flush 1297us
2026-08-18 01:15:10.661724+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052002 tx stats: # 32480 owait 1318 3657us finish 32929 bar2 32337 f 16884 enter 898 fq 64 79 1017us close 0us prep 5181us flush 2168us
2026-08-18 01:15:12.200142+0900 0xb20d1    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: MessagesBlastDoorService(91934) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:15:12.291070+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052022 tx stats: # 32500 owait 1321 3652us finish 32947 bar2 32355 f 16884 enter 1210 fq 115 839 1578us close 7us prep 1196us flush 939us
2026-08-18 01:15:12.359434+0900 0xb26f2    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: MessagesBlastDoorService(91934) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:15:14.212764+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052042 tx stats: # 32520 owait 1322 3649us finish 32967 bar2 32375 f 16884 enter 1924 fq 107 409 1426us close 0us prep 1500us flush 1079us
2026-08-18 01:15:20.569556+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052062 tx stats: # 32540 owait 1322 3649us finish 32987 bar2 32395 f 16884 enter 346 fq 148 190 2013us close 0us prep 762us flush 799us
2026-08-18 01:15:29.750443+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052082 tx stats: # 32560 owait 1323 3649us finish 33006 bar2 32414 f 16885 enter 204 fq 80 343 2272us close 0us prep 709us flush 1195us
2026-08-18 01:15:30.120079+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemWillSleep[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:15:30.120082+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000280
2026-08-18 01:15:30.120387+0900 0xb32ba    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 01:15:30.121262+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[81] to com.apple.iokit.IONVMeFamily
2026-08-18 01:15:30.121264+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:15:30.228828+0900 0xb32ba    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 01:15:30.350517+0900 0xb35f7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 01:15:30.350575+0900 0xb2a07    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 01:15:30.368057+0900 0xb2a07    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 01:15:30.368115+0900 0xb2a07    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 01:15:30.368117+0900 0xb2a07    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 01:15:30.368118+0900 0xb2a07    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 01:15:30.368150+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 01:15:30.401562+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:15:30.401563+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:15:30.753164+0900 0xb3657    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:15:30.753168+0900 0xb3657    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:15:30.758424+0900 0x5eb8e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 01:15:30.758433+0900 0x5eb8e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 01:15:30.758447+0900 0x5eb8e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 01:15:30.758451+0900 0x5eb8e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 01:15:30.758475+0900 0x5eb8e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 01:15:30.882005+0900 0xb362a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 01:15:30.882013+0900 0xb362a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 01:15:30.882025+0900 0xb362a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 01:15:30.882030+0900 0xb362a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 01:15:30.886113+0900 0xb362a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 01:15:30.891133+0900 0xb362f    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 01:15:30.891147+0900 0xb362f    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 01:15:30.891248+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:15:30.891249+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:15:32.588159+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052102 tx stats: # 32580 owait 1325 3645us finish 33026 bar2 32434 f 16887 enter 52 fq 26 28 365us close 42us prep 1217us flush 848us
2026-08-18 01:15:48.766292+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052122 tx stats: # 32600 owait 1326 3644us finish 33046 bar2 32454 f 16895 enter 925 fq 254 703 4932us close 0us prep 1465us flush 976us
2026-08-18 01:16:05.261915+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052142 tx stats: # 32620 owait 1327 3645us finish 33068 bar2 32474 f 16903 enter 1246 fq 179 477 2062us close 0us prep 896us flush 2367us
2026-08-18 01:16:17.471585+0900 0xb36f7    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 01:16:17.472585+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:16:17.472589+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:16:17.562990+0900 0xb36f7    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 01:16:17.659480+0900 0xb3c34    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 01:16:17.659627+0900 0xb3c34    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 01:16:17.676772+0900 0xb3c34    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 01:16:17.677098+0900 0xb3c34    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 01:16:17.677101+0900 0xb3c34    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 01:16:17.677103+0900 0xb3c34    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 01:16:17.677158+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 01:16:17.718579+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:16:17.718580+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:31:15.102772+0900 0xb3c96    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:31:15.102776+0900 0xb3c96    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:31:15.109641+0900 0xb3be0    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 01:31:15.109657+0900 0xb3be0    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 01:31:15.109663+0900 0xb3be0    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 01:31:15.109666+0900 0xb3be0    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 01:31:15.109672+0900 0xb3be0    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 01:31:15.234057+0900 0xb3c37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 01:31:15.234064+0900 0xb3c37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 01:31:15.234076+0900 0xb3c37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 01:31:15.234079+0900 0xb3c37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 01:31:15.238028+0900 0xb3c37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 01:31:15.238299+0900 0xb3c37    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 01:31:15.238329+0900 0xb3c37    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 01:31:15.238453+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 01:31:15.238454+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 01:31:15.961706+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052162 tx stats: # 32640 owait 1328 3644us finish 33088 bar2 32494 f 16908 enter 177 fq 57 76 902us close 0us prep 349us flush 1661us
2026-08-18 01:31:19.785889+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052182 tx stats: # 32660 owait 1328 3644us finish 33108 bar2 32514 f 16913 enter 122 fq 161 362 2976us close 0us prep 1274us flush 1244us
2026-08-18 01:31:23.900517+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052202 tx stats: # 32680 owait 1329 3653us finish 33128 bar2 32534 f 16917 enter 959 fq 21 27 425us close 0us prep 5275us flush 2636us
2026-08-18 01:31:24.165172+0900 0xb2a94    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:31:26.371714+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052222 tx stats: # 32700 owait 1329 3653us finish 33143 bar2 32549 f 16917 enter 21 fq 42 54 1242us close 0us prep 526us flush 799us
2026-08-18 01:31:28.190615+0900 0xb3d70    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(92280) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:31:29.452566+0900 0xb3d70    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(92293) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:31:29.513228+0900 0xb3afc    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(92294) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:31:30.472409+0900 0xb3d70    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(92304) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:31:30.942891+0900 0xb3786    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(92304) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:31:31.584482+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052242 tx stats: # 32720 owait 1331 3653us finish 33160 bar2 32566 f 16918 enter 648 fq 109 134 1793us close 3us prep 1333us flush 1514us
2026-08-18 01:31:32.112053+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052262 tx stats: # 32740 owait 1332 3654us finish 33180 bar2 32586 f 16918 enter 23 fq 13 20 140us close 1us prep 179us flush 297us
2026-08-18 01:31:32.165301+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052282 tx stats: # 32760 owait 1332 3654us finish 33200 bar2 32606 f 16918 enter 40 fq 26 41 228us close 0us prep 224us flush 374us
2026-08-18 01:31:32.223098+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052302 tx stats: # 32780 owait 1334 3649us finish 33220 bar2 32626 f 16918 enter 27 fq 34 59 363us close 0us prep 282us flush 391us
2026-08-18 01:31:32.273582+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052322 tx stats: # 32800 owait 1334 3649us finish 33240 bar2 32646 f 16918 enter 22 fq 31 37 269us close 0us prep 188us flush 337us
2026-08-18 01:31:35.583727+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052342 tx stats: # 32820 owait 1335 3646us finish 33260 bar2 32666 f 16920 enter 2047 fq 34 47 322us close 5us prep 5378us flush 3224us
2026-08-18 01:31:36.847706+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052362 tx stats: # 32840 owait 1340 3639us finish 33280 bar2 32686 f 16923 enter 9 fq 36 41 421us close 0us prep 214us flush 318us
2026-08-18 01:31:37.241161+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052382 tx stats: # 32860 owait 1346 3627us finish 33300 bar2 32706 f 16923 enter 98 fq 245 670 2337us close 713us prep 531us flush 442us
2026-08-18 01:31:37.397752+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052402 tx stats: # 32880 owait 1362 3600us finish 33320 bar2 32726 f 16923 enter 85 fq 72 80 980us close 383us prep 1076us flush 1288us
2026-08-18 01:31:43.788116+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052422 tx stats: # 32900 owait 1367 3597us finish 33340 bar2 32746 f 16923 enter 723 fq 199 1006 3603us close 10us prep 2043us flush 839us
2026-08-18 01:31:52.629793+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052442 tx stats: # 32920 owait 1367 3597us finish 33360 bar2 32766 f 16929 enter 491 fq 125 877 3265us close 0us prep 4356us flush 1915us
2026-08-18 01:31:56.707444+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052462 tx stats: # 32940 owait 1368 3595us finish 33380 bar2 32786 f 16933 enter 74 fq 41 57 407us close 0us prep 856us flush 900us
2026-08-18 01:31:58.156389+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052482 tx stats: # 32960 owait 1370 3590us finish 33400 bar2 32806 f 16933 enter 171 fq 55 440 541us close 0us prep 2526us flush 1048us
2026-08-18 01:32:00.895413+0900 0xb408d    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:32:01.448385+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052502 tx stats: # 32980 owait 1372 3589us finish 33420 bar2 32826 f 16934 enter 467 fq 58 69 1358us close 0us prep 1385us flush 1083us
2026-08-18 01:32:11.411994+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052522 tx stats: # 33000 owait 1374 3590us finish 33440 bar2 32846 f 16938 enter 1641 fq 62 369 775us close 0us prep 5952us flush 2578us
2026-08-18 01:32:13.835848+0900 0xb4910    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 01:32:15.285034+0900 0xb495d    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 01:32:15.663595+0900 0xb4998    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 01:32:16.551036+0900 0xb49fc    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 01:32:17.314617+0900 0xb4a54    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 01:32:18.297447+0900 0xb474e    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:32:18.987319+0900 0xb4a07    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 01:32:23.260371+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052542 tx stats: # 33020 owait 1376 3598us finish 33460 bar2 32866 f 16942 enter 110 fq 72 110 921us close 155us prep 2190us flush 1030us
2026-08-18 01:32:30.186725+0900 0xb4c5b    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: com.apple.quicklook.ThumbnailsAg(82672) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 01:32:30.186863+0900 0xb4c5b    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: com.apple.quicklook.ThumbnailsAg(82672) deny(1) file-read-data /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 01:32:31.252298+0900 0xb4a13    Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29452491/29452491 pl_offset 0 f_offset 114688 size 16384 file size 103864 error 22 (mds_stores)
2026-08-18 01:32:40.040482+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052562 tx stats: # 33040 owait 1377 3601us finish 33478 bar2 32884 f 16947 enter 2451 fq 610 1084 8690us close 0us prep 9047us flush 3909us
2026-08-18 01:32:54.025924+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052582 tx stats: # 33060 owait 1379 3602us finish 33498 bar2 32904 f 16957 enter 145 fq 20 44 604us close 0us prep 1558us flush 1010us
2026-08-18 01:33:04.274513+0900 0xb45e6    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: IntelligencePlatformComputeServi(81747) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 01:33:05.420454+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052602 tx stats: # 33080 owait 1379 3602us finish 33518 bar2 32924 f 16961 enter 935 fq 145 530 1520us close 0us prep 2263us flush 2950us
2026-08-18 01:33:09.866114+0900 0xb4b04    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:33:20.685153+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052622 tx stats: # 33100 owait 1379 3602us finish 33538 bar2 32944 f 16969 enter 169 fq 15 21 283us close 0us prep 1107us flush 1247us
2026-08-18 01:33:24.293335+0900 0xb5270    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:33:33.483916+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052642 tx stats: # 33120 owait 1379 3602us finish 33557 bar2 32963 f 16969 enter 343 fq 105 260 1196us close 0us prep 3048us flush 1458us
2026-08-18 01:33:47.581281+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052662 tx stats: # 33140 owait 1380 3605us finish 33577 bar2 32983 f 16980 enter 3 fq 34 56 510us close 0us prep 142us flush 2481us
2026-08-18 01:34:13.491505+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052682 tx stats: # 33160 owait 1381 3603us finish 33597 bar2 33003 f 16988 enter 90 fq 33 42 542us close 0us prep 2174us flush 1126us
2026-08-18 01:34:15.690545+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052702 tx stats: # 33180 owait 1382 3601us finish 33617 bar2 33023 f 16988 enter 88 fq 56 66 542us close 0us prep 459us flush 641us
2026-08-18 01:34:19.501531+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052722 tx stats: # 33200 owait 1382 3601us finish 33637 bar2 33043 f 16988 enter 14 fq 31 36 220us close 0us prep 170us flush 285us
2026-08-18 01:34:25.324806+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052742 tx stats: # 33220 owait 1382 3601us finish 33655 bar2 33061 f 16999 enter 89 fq 23 29 262us close 0us prep 583us flush 2807us
2026-08-18 01:34:50.616543+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052762 tx stats: # 33240 owait 1382 3601us finish 33675 bar2 33081 f 17010 enter 12 fq 27 41 328us close 0us prep 162us flush 2331us
2026-08-18 01:34:55.977016+0900 0xb5441    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:35:04.234894+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052782 tx stats: # 33260 owait 1382 3601us finish 33695 bar2 33101 f 17015 enter 48 fq 34 37 185us close 0us prep 211us flush 368us
2026-08-18 01:35:06.334570+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052802 tx stats: # 33280 owait 1382 3601us finish 33714 bar2 33120 f 17015 enter 115 fq 41 47 247us close 0us prep 260us flush 658us
2026-08-18 01:35:16.973229+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052822 tx stats: # 33300 owait 1383 3598us finish 33733 bar2 33139 f 17015 enter 29 fq 26 37 180us close 0us prep 345us flush 473us
2026-08-18 01:35:27.670450+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052842 tx stats: # 33320 owait 1383 3598us finish 33753 bar2 33159 f 17019 enter 73 fq 51 91 562us close 0us prep 499us flush 1514us
2026-08-18 01:35:51.423613+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052862 tx stats: # 33340 owait 1384 3596us finish 33773 bar2 33179 f 17027 enter 36 fq 31 52 489us close 0us prep 278us flush 3041us
2026-08-18 01:35:58.312067+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052882 tx stats: # 33360 owait 1387 3598us finish 33791 bar2 33197 f 17033 enter 2593 fq 543 2107 3696us close 0us prep 10349us flush 6077us
2026-08-18 01:36:47.244190+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052902 tx stats: # 33380 owait 1387 3598us finish 33811 bar2 33217 f 17044 enter 431 fq 89 117 849us close 0us prep 1005us flush 2858us
2026-08-18 01:36:57.279367+0900 0x887      Default     0x0                  0      0    kernel: memorystatus: killing (idle) DiskManagementSubscriber [91847] due to idle-exit (9)
2026-08-18 01:36:57.284959+0900 0x887      Default     0x0                  0      0    kernel: memorystatus: killing_idle_process pid 91847 [DiskManagementSubscriber] (idle-exit 0 420s rf:- type:daemon) 2992KB - memorystatus_available_pages: 495533 compressor_size:465057
2026-08-18 01:36:59.593134+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052922 tx stats: # 33400 owait 1389 3596us finish 33831 bar2 33237 f 17056 enter 19 fq 40 119 918us close 0us prep 360us flush 2394us
2026-08-18 01:37:08.733502+0900 0xb6d25    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 01:37:09.669160+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052942 tx stats: # 33420 owait 1389 3596us finish 33851 bar2 33257 f 17056 enter 1 fq 14 15 144us close 0us prep 65us flush 152us
2026-08-18 01:37:09.737899+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052962 tx stats: # 33440 owait 1389 3596us finish 33871 bar2 33277 f 17056 enter 1 fq 12 13 123us close 0us prep 66us flush 162us
2026-08-18 01:37:09.764527+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4052982 tx stats: # 33460 owait 1389 3596us finish 33891 bar2 33297 f 17056 enter 1 fq 14 15 118us close 0us prep 58us flush 140us
2026-08-18 01:37:12.193219+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053002 tx stats: # 33480 owait 1389 3596us finish 33911 bar2 33317 f 17056 enter 74 fq 10 11 163us close 0us prep 541us flush 795us
2026-08-18 01:37:14.897456+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053022 tx stats: # 33500 owait 1389 3596us finish 33931 bar2 33337 f 17056 enter 1 fq 20 21 199us close 0us prep 76us flush 202us
2026-08-18 01:37:20.332570+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053042 tx stats: # 33520 owait 1389 3596us finish 33951 bar2 33357 f 17056 enter 15 fq 22 28 272us close 0us prep 236us flush 618us
2026-08-18 01:37:24.987495+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053062 tx stats: # 33540 owait 1389 3596us finish 33971 bar2 33377 f 17060 enter 7 fq 43 47 322us close 0us prep 131us flush 2359us
2026-08-18 01:37:30.968284+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053082 tx stats: # 33560 owait 1389 3596us finish 33991 bar2 33397 f 17060 enter 7 fq 38 49 664us close 0us prep 191us flush 289us
2026-08-18 01:37:34.727528+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053102 tx stats: # 33580 owait 1389 3596us finish 34011 bar2 33417 f 17064 enter 17 fq 26 32 219us close 0us prep 224us flush 551us
2026-08-18 01:37:41.696951+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053122 tx stats: # 33600 owait 1389 3596us finish 34031 bar2 33437 f 17064 enter 53 fq 59 64 365us close 0us prep 536us flush 794us
2026-08-18 01:37:45.356109+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053142 tx stats: # 33620 owait 1389 3596us finish 34051 bar2 33457 f 17064 enter 16 fq 34 40 185us close 0us prep 132us flush 342us
2026-08-18 01:37:48.806966+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053162 tx stats: # 33640 owait 1389 3596us finish 34071 bar2 33477 f 17070 enter 7 fq 16 17 85us close 0us prep 136us flush 333us
2026-08-18 01:38:24.234623+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053182 tx stats: # 33660 owait 1389 3596us finish 34091 bar2 33497 f 17082 enter 87 fq 109 633 2014us close 0us prep 1945us flush 956us
2026-08-18 01:38:47.594716+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053202 tx stats: # 33680 owait 1389 3596us finish 34111 bar2 33517 f 17098 enter 7 fq 42 50 1406us close 0us prep 189us flush 2933us
2026-08-18 01:39:06.495690+0900 0xb7819    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 01:39:06.495712+0900 0xb7819    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 01:39:06.496115+0900 0xb7819    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 01:39:06.893178+0900 0xb7819    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-013906.local' snap_xid 4053219 extentref oid 792149 sblock oid 780834
2026-08-18 01:39:06.895081+0900 0xb7819    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 01:39:07.024218+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053222 tx stats: # 33700 owait 1389 3596us finish 34131 bar2 33537 f 17102 enter 49 fq 18 22 411us close 7us prep 351us flush 626us
2026-08-18 01:39:27.609206+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053242 tx stats: # 33720 owait 1393 3586us finish 34151 bar2 33557 f 17113 enter 11 fq 21 26 268us close 0us prep 140us flush 2642us
2026-08-18 01:39:52.602253+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053262 tx stats: # 33740 owait 1393 3586us finish 34171 bar2 33577 f 17124 enter 12 fq 15 18 145us close 0us prep 622us flush 638us
2026-08-18 01:40:47.888415+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053282 tx stats: # 33760 owait 1393 3586us finish 34191 bar2 33597 f 17134 enter 3 fq 25 29 374us close 0us prep 215us flush 1920us
2026-08-18 01:41:19.979201+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053302 tx stats: # 33780 owait 1393 3586us finish 34210 bar2 33616 f 17143 enter 231 fq 98 383 975us close 0us prep 431us flush 522us
2026-08-18 01:41:48.064217+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053322 tx stats: # 33800 owait 1393 3586us finish 34230 bar2 33636 f 17155 enter 32 fq 88 447 2669us close 0us prep 595us flush 2542us
2026-08-18 01:42:10.503725+0900 0xb5f10    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:42:22.948552+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053342 tx stats: # 33820 owait 1395 3582us finish 34250 bar2 33656 f 17165 enter 177 fq 44 193 1222us close 0us prep 648us flush 1911us
2026-08-18 01:42:59.581862+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053362 tx stats: # 33840 owait 1395 3582us finish 34270 bar2 33676 f 17177 enter 50 fq 17 20 328us close 0us prep 1108us flush 2449us
2026-08-18 01:43:32.590904+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053382 tx stats: # 33860 owait 1395 3582us finish 34288 bar2 33694 f 17186 enter 271 fq 44 70 839us close 0us prep 1617us flush 3799us
2026-08-18 01:43:33.242422+0900 0xb8d86    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:43:34.007249+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053402 tx stats: # 33880 owait 1395 3582us finish 34308 bar2 33714 f 17192 enter 30 fq 30 35 247us close 0us prep 293us flush 529us
2026-08-18 01:43:57.201551+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053422 tx stats: # 33900 owait 1395 3582us finish 34327 bar2 33733 f 17198 enter 475 fq 29 40 395us close 0us prep 1033us flush 995us
2026-08-18 01:44:00.068485+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053442 tx stats: # 33920 owait 1396 3580us finish 34347 bar2 33753 f 17198 enter 36 fq 19 34 160us close 0us prep 304us flush 515us
2026-08-18 01:44:01.091032+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053462 tx stats: # 33940 owait 1396 3580us finish 34367 bar2 33773 f 17198 enter 84 fq 13 20 65us close 0us prep 84us flush 206us
2026-08-18 01:44:02.480113+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053482 tx stats: # 33960 owait 1396 3580us finish 34387 bar2 33793 f 17198 enter 52 fq 10 12 67us close 0us prep 90us flush 259us
2026-08-18 01:44:03.777647+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053502 tx stats: # 33980 owait 1396 3580us finish 34407 bar2 33813 f 17198 enter 77 fq 13 115 177us close 0us prep 121us flush 423us
2026-08-18 01:44:05.579405+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053522 tx stats: # 34000 owait 1396 3580us finish 34427 bar2 33833 f 17199 enter 46 fq 11 32 99us close 0us prep 111us flush 1670us
2026-08-18 01:44:07.077679+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053542 tx stats: # 34020 owait 1396 3580us finish 34447 bar2 33853 f 17201 enter 70 fq 17 84 113us close 0us prep 99us flush 216us
2026-08-18 01:44:08.771003+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053562 tx stats: # 34040 owait 1396 3580us finish 34467 bar2 33873 f 17201 enter 40 fq 9 11 76us close 0us prep 480us flush 428us
2026-08-18 01:44:10.576587+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053582 tx stats: # 34060 owait 1396 3580us finish 34487 bar2 33893 f 17201 enter 78 fq 22 30 123us close 1us prep 123us flush 312us
2026-08-18 01:44:12.504627+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053602 tx stats: # 34080 owait 1396 3580us finish 34507 bar2 33913 f 17201 enter 71 fq 14 16 86us close 0us prep 99us flush 220us
2026-08-18 01:44:14.202481+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053622 tx stats: # 34100 owait 1396 3580us finish 34527 bar2 33933 f 17201 enter 28 fq 20 25 189us close 0us prep 272us flush 339us
2026-08-18 01:44:20.965524+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053642 tx stats: # 34120 owait 1396 3580us finish 34547 bar2 33953 f 17201 enter 8 fq 28 55 196us close 0us prep 86us flush 191us
2026-08-18 01:44:27.526671+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053662 tx stats: # 34140 owait 1396 3580us finish 34567 bar2 33973 f 17204 enter 28 fq 64 631 769us close 0us prep 263us flush 2607us
2026-08-18 01:44:34.748850+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053682 tx stats: # 34160 owait 1396 3580us finish 34585 bar2 33991 f 17205 enter 655 fq 113 136 1410us close 0us prep 481us flush 556us
2026-08-18 01:44:48.556934+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053702 tx stats: # 34180 owait 1396 3580us finish 34605 bar2 34011 f 17213 enter 103 fq 80 97 947us close 0us prep 247us flush 2459us
2026-08-18 01:45:39.897650+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053722 tx stats: # 34200 owait 1396 3580us finish 34625 bar2 34031 f 17219 enter 303 fq 33 47 509us close 0us prep 1593us flush 1561us
2026-08-18 01:45:54.040380+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053742 tx stats: # 34220 owait 1396 3580us finish 34645 bar2 34051 f 17231 enter 21 fq 28 152 565us close 0us prep 195us flush 1144us
2026-08-18 01:46:44.614881+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053762 tx stats: # 34240 owait 1397 3578us finish 34665 bar2 34071 f 17247 enter 41 fq 96 374 1383us close 2us prep 328us flush 1913us
2026-08-18 01:46:47.999119+0900 0xb9544    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 01:47:36.744656+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053782 tx stats: # 34260 owait 1397 3578us finish 34685 bar2 34091 f 17261 enter 150 fq 107 132 1694us close 0us prep 1172us flush 891us
2026-08-18 01:47:50.217882+0900 0xb8e97    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 01:48:13.363455+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053802 tx stats: # 34280 owait 1397 3578us finish 34705 bar2 34111 f 17275 enter 270 fq 51 181 780us close 0us prep 815us flush 1809us
2026-08-18 01:48:49.098025+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053822 tx stats: # 34300 owait 1397 3578us finish 34725 bar2 34131 f 17292 enter 1162 fq 205 2139 2056us close 0us prep 895us flush 2018us
2026-08-18 01:49:11.333460+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053842 tx stats: # 34320 owait 1397 3578us finish 34742 bar2 34148 f 17298 enter 4476 fq 43 112 503us close 0us prep 1771us flush 917us
2026-08-18 01:49:49.130786+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053862 tx stats: # 34340 owait 1397 3578us finish 34762 bar2 34168 f 17313 enter 61 fq 91 360 988us close 0us prep 448us flush 1873us
2026-08-18 01:50:12.511543+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053882 tx stats: # 34360 owait 1397 3578us finish 34778 bar2 34184 f 17320 enter 308 fq 61 126 856us close 0us prep 933us flush 1610us
2026-08-18 01:50:17.509391+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053902 tx stats: # 34380 owait 1397 3578us finish 34794 bar2 34200 f 17320 enter 1309 fq 49 341 705us close 0us prep 1596us flush 949us
2026-08-18 01:50:21.696748+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053922 tx stats: # 34400 owait 1397 3578us finish 34809 bar2 34215 f 17320 enter 495 fq 113 169 1088us close 0us prep 1481us flush 1078us
2026-08-18 01:50:25.834168+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053942 tx stats: # 34420 owait 1398 3577us finish 34825 bar2 34231 f 17320 enter 221 fq 38 42 521us close 0us prep 469us flush 724us
2026-08-18 01:50:30.892657+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053962 tx stats: # 34440 owait 1398 3577us finish 34842 bar2 34248 f 17320 enter 1296 fq 92 247 1014us close 0us prep 1891us flush 1202us
2026-08-18 01:50:36.089079+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4053982 tx stats: # 34460 owait 1399 3575us finish 34861 bar2 34267 f 17324 enter 166 fq 96 280 1045us close 0us prep 626us flush 664us
2026-08-18 01:50:41.540454+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054002 tx stats: # 34480 owait 1399 3575us finish 34881 bar2 34287 f 17324 enter 41 fq 31 38 451us close 0us prep 378us flush 535us
2026-08-18 01:50:54.044990+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054022 tx stats: # 34500 owait 1399 3575us finish 34901 bar2 34307 f 17332 enter 48 fq 24 27 351us close 0us prep 775us flush 2769us
2026-08-18 01:51:29.619297+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054042 tx stats: # 34520 owait 1399 3575us finish 34921 bar2 34327 f 17344 enter 107 fq 52 140 1007us close 0us prep 1075us flush 1243us
2026-08-18 01:51:34.878995+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054062 tx stats: # 34540 owait 1399 3575us finish 34941 bar2 34347 f 17344 enter 37 fq 29 33 395us close 0us prep 292us flush 452us
2026-08-18 01:51:49.423463+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054082 tx stats: # 34560 owait 1399 3575us finish 34961 bar2 34367 f 17354 enter 14 fq 40 53 516us close 1us prep 170us flush 1835us
2026-08-18 01:52:06.080070+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054102 tx stats: # 34580 owait 1399 3575us finish 34980 bar2 34386 f 17354 enter 91 fq 17 129 222us close 0us prep 161us flush 355us
2026-08-18 01:52:17.536594+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054122 tx stats: # 34600 owait 1399 3575us finish 35000 bar2 34406 f 17362 enter 108 fq 20 25 261us close 0us prep 698us flush 2031us
2026-08-18 01:52:34.408980+0900 0xbc35a    Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29540703/29649491 pl_offset 0 f_offset 65536 size 16384 file size 65536 error 22 (mds_stores)
2026-08-18 01:52:49.603531+0900 0xbc720    Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29599736/29649492 pl_offset 0 f_offset 65536 size 16384 file size 65536 error 22 (mds_stores)
2026-08-18 01:52:52.630361+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054142 tx stats: # 34620 owait 1399 3575us finish 35020 bar2 34426 f 17372 enter 102 fq 29 31 314us close 0us prep 698us flush 999us
2026-08-18 01:52:52.746403+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054162 tx stats: # 34640 owait 1399 3575us finish 35040 bar2 34446 f 17372 enter 17 fq 25 28 318us close 0us prep 469us flush 427us
2026-08-18 01:52:53.182453+0900 0xbc71f    Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29599736/29649492 pl_offset 0 f_offset 65536 size 16384 file size 65536 error 22 (mds_stores)
2026-08-18 01:53:10.751032+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054182 tx stats: # 34660 owait 1399 3575us finish 35060 bar2 34466 f 17376 enter 169 fq 27 66 308us close 0us prep 815us flush 1127us
2026-08-18 01:53:31.493363+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054202 tx stats: # 34680 owait 1399 3575us finish 35080 bar2 34486 f 17385 enter 241 fq 24 34 341us close 0us prep 910us flush 1199us
2026-08-18 01:53:36.686239+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054222 tx stats: # 34700 owait 1399 3575us finish 35100 bar2 34506 f 17389 enter 126 fq 70 83 812us close 0us prep 745us flush 724us
2026-08-18 01:54:14.698271+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054242 tx stats: # 34720 owait 1399 3575us finish 35120 bar2 34526 f 17400 enter 792 fq 89 149 948us close 1us prep 941us flush 753us
2026-08-18 01:54:56.600987+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054262 tx stats: # 34740 owait 1399 3575us finish 35140 bar2 34546 f 17415 enter 92 fq 32 38 338us close 0us prep 673us flush 1457us
2026-08-18 01:55:36.297468+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054282 tx stats: # 34760 owait 1399 3575us finish 35160 bar2 34566 f 17422 enter 138 fq 59 76 760us close 0us prep 480us flush 610us
2026-08-18 01:55:36.886633+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054302 tx stats: # 34780 owait 1399 3575us finish 35180 bar2 34586 f 17422 enter 48 fq 26 31 425us close 0us prep 330us flush 468us
2026-08-18 01:55:37.190989+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054322 tx stats: # 34800 owait 1399 3575us finish 35200 bar2 34606 f 17422 enter 21 fq 27 31 301us close 0us prep 343us flush 541us
2026-08-18 01:55:38.963992+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054342 tx stats: # 34820 owait 1399 3575us finish 35220 bar2 34626 f 17422 enter 41 fq 29 42 406us close 0us prep 332us flush 445us
2026-08-18 01:55:39.374226+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054362 tx stats: # 34840 owait 1399 3575us finish 35240 bar2 34646 f 17422 enter 27 fq 32 37 457us close 0us prep 330us flush 466us
2026-08-18 01:55:39.869237+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054382 tx stats: # 34860 owait 1399 3575us finish 35260 bar2 34666 f 17422 enter 54 fq 29 33 379us close 0us prep 399us flush 553us
2026-08-18 01:55:41.805032+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054402 tx stats: # 34880 owait 1399 3575us finish 35280 bar2 34686 f 17422 enter 27 fq 30 36 432us close 0us prep 438us flush 486us
2026-08-18 01:55:59.602354+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054422 tx stats: # 34900 owait 1399 3575us finish 35300 bar2 34706 f 17434 enter 53 fq 19 24 727us close 0us prep 2454us flush 3218us
2026-08-18 01:56:04.925128+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054442 tx stats: # 34920 owait 1399 3575us finish 35320 bar2 34726 f 17437 enter 39 fq 26 29 662us close 0us prep 651us flush 640us
2026-08-18 01:56:05.263457+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054462 tx stats: # 34940 owait 1399 3575us finish 35340 bar2 34746 f 17437 enter 37 fq 25 29 719us close 0us prep 767us flush 658us
2026-08-18 01:56:07.572146+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054482 tx stats: # 34960 owait 1399 3575us finish 35360 bar2 34766 f 17437 enter 293 fq 51 535 1277us close 0us prep 1568us flush 1303us
2026-08-18 01:56:07.862651+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054502 tx stats: # 34980 owait 1399 3575us finish 35380 bar2 34786 f 17437 enter 38 fq 26 29 446us close 0us prep 566us flush 724us
2026-08-18 01:56:08.167058+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054522 tx stats: # 35000 owait 1399 3575us finish 35400 bar2 34806 f 17437 enter 39 fq 25 28 419us close 0us prep 620us flush 764us
2026-08-18 01:56:09.403456+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054542 tx stats: # 35020 owait 1399 3575us finish 35420 bar2 34826 f 17437 enter 45 fq 29 49 698us close 0us prep 684us flush 638us
2026-08-18 01:56:09.673867+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054562 tx stats: # 35040 owait 1399 3575us finish 35440 bar2 34846 f 17437 enter 38 fq 25 28 608us close 0us prep 671us flush 668us
2026-08-18 01:56:10.614549+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054582 tx stats: # 35060 owait 1399 3575us finish 35460 bar2 34866 f 17437 enter 396 fq 35 39 545us close 0us prep 536us flush 498us
2026-08-18 01:56:10.849722+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054602 tx stats: # 35080 owait 1399 3575us finish 35480 bar2 34886 f 17437 enter 49 fq 26 29 737us close 0us prep 730us flush 685us
2026-08-18 01:56:36.713257+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054622 tx stats: # 35100 owait 1399 3575us finish 35500 bar2 34906 f 17445 enter 581 fq 37 44 702us close 0us prep 1846us flush 2072us
2026-08-18 01:57:33.476466+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054642 tx stats: # 35120 owait 1399 3575us finish 35520 bar2 34926 f 17459 enter 129 fq 48 57 754us close 0us prep 1456us flush 1032us
2026-08-18 01:57:50.377023+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054662 tx stats: # 35140 owait 1399 3575us finish 35540 bar2 34946 f 17467 enter 79 fq 87 132 1620us close 0us prep 671us flush 2903us
2026-08-18 01:58:41.610991+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054682 tx stats: # 35160 owait 1399 3575us finish 35560 bar2 34966 f 17485 enter 8 fq 35 63 730us close 0us prep 321us flush 2839us
2026-08-18 01:59:36.711003+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054702 tx stats: # 35180 owait 1399 3575us finish 35580 bar2 34986 f 17500 enter 295 fq 24 39 692us close 0us prep 1763us flush 1583us
2026-08-18 02:00:17.620098+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054722 tx stats: # 35200 owait 1399 3575us finish 35600 bar2 35006 f 17514 enter 122 fq 116 158 2714us close 0us prep 551us flush 1836us
2026-08-18 02:00:50.887067+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054742 tx stats: # 35220 owait 1401 3572us finish 35620 bar2 35026 f 17528 enter 2 fq 13 19 263us close 0us prep 241us flush 2526us
2026-08-18 02:01:51.052851+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054762 tx stats: # 35240 owait 1401 3572us finish 35640 bar2 35046 f 17540 enter 34 fq 48 75 1431us close 0us prep 884us flush 3174us
2026-08-18 02:02:28.517151+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054782 tx stats: # 35260 owait 1401 3572us finish 35660 bar2 35066 f 17558 enter 611 fq 20 35 478us close 0us prep 2523us flush 2959us
2026-08-18 02:03:15.605521+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054802 tx stats: # 35280 owait 1401 3572us finish 35680 bar2 35086 f 17573 enter 102 fq 37 170 1349us close 0us prep 2015us flush 3510us
2026-08-18 02:03:51.410919+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054822 tx stats: # 35300 owait 1401 3572us finish 35700 bar2 35106 f 17590 enter 16 fq 46 308 1089us close 0us prep 485us flush 2760us
2026-08-18 02:04:32.611228+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054842 tx stats: # 35320 owait 1401 3572us finish 35720 bar2 35126 f 17607 enter 5 fq 46 52 518us close 1us prep 279us flush 2360us
2026-08-18 02:05:26.180136+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054862 tx stats: # 35340 owait 1401 3572us finish 35740 bar2 35146 f 17621 enter 151 fq 32 42 781us close 0us prep 2451us flush 2737us
2026-08-18 02:06:07.891210+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054882 tx stats: # 35360 owait 1401 3572us finish 35760 bar2 35166 f 17636 enter 114 fq 11 14 178us close 0us prep 2011us flush 2438us
2026-08-18 02:06:57.752300+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054902 tx stats: # 35380 owait 1401 3572us finish 35780 bar2 35186 f 17654 enter 33 fq 27 66 781us close 0us prep 1213us flush 1648us
2026-08-18 02:07:44.610769+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054922 tx stats: # 35400 owait 1401 3572us finish 35800 bar2 35206 f 17664 enter 215 fq 26 32 529us close 1us prep 447us flush 2313us
2026-08-18 02:08:27.632441+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054942 tx stats: # 35420 owait 1403 3567us finish 35820 bar2 35226 f 17682 enter 53 fq 28 157 467us close 0us prep 703us flush 2356us
2026-08-18 02:08:52.117078+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054962 tx stats: # 35440 owait 1403 3567us finish 35840 bar2 35246 f 17699 enter 2 fq 12 18 225us close 0us prep 429us flush 1792us
2026-08-18 02:09:52.632765+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4054982 tx stats: # 35460 owait 1403 3567us finish 35860 bar2 35266 f 17713 enter 9 fq 25 31 482us close 0us prep 386us flush 889us
2026-08-18 02:10:52.418206+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055002 tx stats: # 35480 owait 1405 3563us finish 35880 bar2 35286 f 17723 enter 74 fq 62 107 1876us close 0us prep 1145us flush 2830us
2026-08-18 02:11:28.572007+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055022 tx stats: # 35500 owait 1405 3563us finish 35900 bar2 35306 f 17741 enter 55 fq 51 128 1823us close 0us prep 1891us flush 2354us
2026-08-18 02:12:21.433844+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055042 tx stats: # 35520 owait 1405 3563us finish 35920 bar2 35326 f 17757 enter 287 fq 20 29 289us close 0us prep 1157us flush 2610us
2026-08-18 02:13:00.584382+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055062 tx stats: # 35540 owait 1405 3563us finish 35940 bar2 35346 f 17773 enter 8 fq 36 166 1317us close 0us prep 457us flush 1259us
2026-08-18 02:13:52.932575+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055082 tx stats: # 35560 owait 1405 3563us finish 35960 bar2 35366 f 17792 enter 4 fq 22 152 537us close 0us prep 281us flush 1971us
2026-08-18 02:14:44.625665+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055102 tx stats: # 35580 owait 1405 3563us finish 35980 bar2 35386 f 17802 enter 29 fq 72 115 794us close 0us prep 794us flush 2627us
2026-08-18 02:15:26.386279+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055122 tx stats: # 35600 owait 1405 3563us finish 35999 bar2 35405 f 17814 enter 407 fq 37 182 608us close 0us prep 2011us flush 1548us
2026-08-18 02:15:58.549040+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055142 tx stats: # 35620 owait 1405 3563us finish 36019 bar2 35425 f 17829 enter 59 fq 19 25 653us close 0us prep 2608us flush 3492us
2026-08-18 02:16:53.396373+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055162 tx stats: # 35640 owait 1405 3563us finish 36039 bar2 35445 f 17845 enter 14 fq 30 73 671us close 0us prep 343us flush 2708us
2026-08-18 02:17:32.214423+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055182 tx stats: # 35660 owait 1405 3563us finish 36059 bar2 35465 f 17859 enter 54 fq 19 25 225us close 0us prep 1315us flush 1831us
2026-08-18 02:18:07.772242+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055202 tx stats: # 35680 owait 1405 3563us finish 36079 bar2 35485 f 17873 enter 529 fq 22 32 583us close 0us prep 2603us flush 1870us
2026-08-18 02:18:58.558009+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055222 tx stats: # 35700 owait 1408 3561us finish 36099 bar2 35505 f 17892 enter 62 fq 28 100 803us close 0us prep 2218us flush 1958us
2026-08-18 02:19:53.788428+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055242 tx stats: # 35720 owait 1408 3561us finish 36119 bar2 35525 f 17904 enter 31 fq 29 35 338us close 5us prep 964us flush 1966us
2026-08-18 02:20:24.847340+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055262 tx stats: # 35740 owait 1408 3561us finish 36139 bar2 35545 f 17913 enter 39 fq 80 95 1536us close 0us prep 631us flush 780us
2026-08-18 02:20:46.861100+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055282 tx stats: # 35760 owait 1408 3561us finish 36159 bar2 35565 f 17921 enter 72 fq 53 71 555us close 0us prep 326us flush 556us
2026-08-18 02:21:11.944482+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055302 tx stats: # 35780 owait 1408 3561us finish 36179 bar2 35585 f 17935 enter 19 fq 22 28 551us close 0us prep 604us flush 861us
2026-08-18 02:21:21.034412+0900 0xc4738    Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29540693/29540693 pl_offset 0 f_offset 49152 size 16384 file size 44240 error 22 (mds_stores)
2026-08-18 02:21:23.649857+0900 0xc4739    Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29540693/29540693 pl_offset 0 f_offset 49152 size 16384 file size 44240 error 22 (mds_stores)
2026-08-18 02:21:41.846051+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055322 tx stats: # 35800 owait 1408 3561us finish 36199 bar2 35605 f 17943 enter 59 fq 17 21 206us close 0us prep 363us flush 802us
2026-08-18 02:21:54.174552+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055342 tx stats: # 35820 owait 1409 3558us finish 36219 bar2 35625 f 17948 enter 17 fq 49 368 1581us close 0us prep 514us flush 2569us
2026-08-18 02:22:44.641537+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055362 tx stats: # 35840 owait 1413 3550us finish 36240 bar2 35645 f 17960 enter 14 fq 65 97 1864us close 0us prep 466us flush 2336us
2026-08-18 02:23:33.398107+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055382 tx stats: # 35860 owait 1413 3550us finish 36260 bar2 35665 f 17978 enter 47 fq 49 76 1506us close 0us prep 785us flush 1977us
2026-08-18 02:24:27.462261+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055402 tx stats: # 35880 owait 1413 3550us finish 36280 bar2 35685 f 17995 enter 348 fq 34 46 1004us close 0us prep 1528us flush 3360us
2026-08-18 02:24:54.654672+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055422 tx stats: # 35900 owait 1413 3550us finish 36300 bar2 35705 f 18007 enter 2 fq 15 18 421us close 0us prep 390us flush 1933us
2026-08-18 02:25:54.838974+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055442 tx stats: # 35920 owait 1414 3548us finish 36320 bar2 35725 f 18021 enter 13 fq 35 112 1164us close 0us prep 366us flush 2299us
2026-08-18 02:26:51.351414+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055462 tx stats: # 35940 owait 1415 3548us finish 36340 bar2 35745 f 18037 enter 161 fq 24 35 435us close 0us prep 728us flush 3153us
2026-08-18 02:27:32.203829+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055482 tx stats: # 35960 owait 1415 3548us finish 36360 bar2 35765 f 18052 enter 60 fq 25 30 470us close 0us prep 1743us flush 1267us
2026-08-18 02:28:05.639870+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055502 tx stats: # 35980 owait 1415 3548us finish 36380 bar2 35785 f 18069 enter 19 fq 20 57 549us close 0us prep 657us flush 2695us
2026-08-18 02:29:11.335822+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055522 tx stats: # 36000 owait 1415 3548us finish 36400 bar2 35805 f 18085 enter 89 fq 17 36 348us close 0us prep 2859us flush 1679us
2026-08-18 02:29:52.634931+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055542 tx stats: # 36020 owait 1416 3545us finish 36420 bar2 35825 f 18101 enter 35 fq 23 32 258us close 0us prep 752us flush 1268us
2026-08-18 02:30:36.800740+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055562 tx stats: # 36040 owait 1416 3545us finish 36440 bar2 35845 f 18111 enter 40 fq 97 144 1881us close 0us prep 1246us flush 1119us
2026-08-18 02:31:11.966785+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055582 tx stats: # 36060 owait 1416 3545us finish 36460 bar2 35865 f 18126 enter 308 fq 16 17 238us close 0us prep 1448us flush 1605us
2026-08-18 02:31:37.014320+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055602 tx stats: # 36080 owait 1416 3545us finish 36480 bar2 35885 f 18135 enter 32 fq 106 138 2314us close 0us prep 797us flush 736us
2026-08-18 02:31:58.573717+0900 0xb3c37    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 02:31:58.574697+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 02:31:58.574700+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 02:31:58.578353+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055622 tx stats: # 36100 owait 1416 3545us finish 36500 bar2 35905 f 18145 enter 81 fq 15 17 164us close 0us prep 1396us flush 1039us
2026-08-18 02:31:58.663169+0900 0xb3c37    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 02:31:58.829567+0900 0xb3c37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 02:31:58.829709+0900 0xc7744    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 02:31:58.848440+0900 0xc7744    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 02:31:58.848826+0900 0xc7744    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 02:31:58.848834+0900 0xc7744    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 02:31:58.848836+0900 0xc7744    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 02:31:58.848902+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 02:31:58.870431+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 02:31:58.870434+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 02:46:57.127140+0900 0xc765d    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 02:46:57.127145+0900 0xc765d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 02:46:57.132039+0900 0xc77b5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 02:46:57.132051+0900 0xc77b5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 02:46:57.132060+0900 0xc77b5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 02:46:57.132065+0900 0xc77b5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 02:46:57.132074+0900 0xc77b5    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 02:46:57.255756+0900 0xc7781    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 02:46:57.255764+0900 0xc7781    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 02:46:57.255777+0900 0xc7781    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 02:46:57.255782+0900 0xc7781    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 02:46:57.259739+0900 0xc7781    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 02:46:57.274395+0900 0xc7789    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 02:46:57.274420+0900 0xc7789    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 02:46:57.274536+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 02:46:57.274536+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 02:47:16.290509+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055642 tx stats: # 36120 owait 1416 3545us finish 36520 bar2 35925 f 18146 enter 153 fq 32 40 296us close 0us prep 463us flush 370us
2026-08-18 02:47:20.584704+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055662 tx stats: # 36140 owait 1416 3545us finish 36535 bar2 35940 f 18150 enter 233 fq 25 97 302us close 0us prep 732us flush 807us
2026-08-18 02:47:25.708849+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055682 tx stats: # 36160 owait 1416 3545us finish 36552 bar2 35957 f 18154 enter 77 fq 58 311 1844us close 0us prep 732us flush 921us
2026-08-18 02:47:27.978064+0900 0xc7c30    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 02:47:27.978090+0900 0xc7c30    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 02:47:27.978665+0900 0xc7c30    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 02:47:28.383149+0900 0xc7c30    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-024727.local' snap_xid 4055691 extentref oid 781161 sblock oid 785826
2026-08-18 02:47:28.384558+0900 0xc7c30    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 02:47:28.808623+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055702 tx stats: # 36180 owait 1423 3538us finish 36572 bar2 35977 f 18157 enter 55 fq 91 93 2724us close 310us prep 1713us flush 1056us
2026-08-18 02:47:31.123165+0900 0xc7d7c    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 02:47:31.616536+0900 0x457      Default     0x0                  0      0    kernel: (apfs) apfs_vnop_reclaim:16349: disk3s5 Releasing space reserved for inode 165038 (dstream 1512072/2101248)
2026-08-18 02:47:31.648418+0900 0xc7df8    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 02:47:31.725523+0900 0xc7e09    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 02:47:31.818967+0900 0x457      Default     0x0                  0      0    kernel: (apfs) apfs_vnop_reclaim:16349: disk3s5 Releasing space reserved for inode 164989 (dstream 1487352/2101248)
2026-08-18 02:47:31.987425+0900 0xc7e32    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 02:47:32.173417+0900 0xc7e3a    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 02:47:32.908370+0900 0xc7db1    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 02:47:33.931786+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055722 tx stats: # 36200 owait 1423 3538us finish 36592 bar2 35997 f 18172 enter 1687 fq 170 187 2592us close 0us prep 20254us flush 6486us
2026-08-18 02:47:45.819491+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055742 tx stats: # 36220 owait 1423 3538us finish 36612 bar2 36017 f 18181 enter 41 fq 36 51 326us close 0us prep 296us flush 551us
2026-08-18 02:47:52.613754+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055762 tx stats: # 36240 owait 1423 3538us finish 36632 bar2 36037 f 18192 enter 247 fq 41 51 487us close 0us prep 1024us flush 2520us
2026-08-18 02:47:57.576831+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055782 tx stats: # 36260 owait 1423 3538us finish 36652 bar2 36057 f 18210 enter 125 fq 49 54 501us close 0us prep 1450us flush 2793us
2026-08-18 02:48:17.974768+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055802 tx stats: # 36280 owait 1423 3538us finish 36672 bar2 36077 f 18223 enter 604 fq 28 36 726us close 0us prep 2990us flush 2193us
2026-08-18 02:48:25.838247+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055822 tx stats: # 36300 owait 1424 3536us finish 36692 bar2 36097 f 18232 enter 191 fq 76 150 1517us close 0us prep 3033us flush 3863us
2026-08-18 02:48:31.788654+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055842 tx stats: # 36320 owait 1425 3534us finish 36712 bar2 36117 f 18247 enter 185 fq 63 134 2100us close 0us prep 2727us flush 3159us
2026-08-18 02:48:51.551306+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055862 tx stats: # 36340 owait 1427 3531us finish 36732 bar2 36137 f 18266 enter 174 fq 96 115 3359us close 0us prep 2846us flush 4391us
2026-08-18 02:48:57.834755+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055882 tx stats: # 36360 owait 1427 3531us finish 36752 bar2 36157 f 18278 enter 115 fq 107 372 1216us close 0us prep 853us flush 2303us
2026-08-18 02:48:59.698771+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055902 tx stats: # 36380 owait 1427 3531us finish 36772 bar2 36177 f 18280 enter 21 fq 27 31 229us close 0us prep 220us flush 279us
2026-08-18 02:49:00.248228+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055922 tx stats: # 36400 owait 1427 3531us finish 36792 bar2 36197 f 18280 enter 26 fq 33 37 362us close 0us prep 310us flush 501us
2026-08-18 02:49:00.775631+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055942 tx stats: # 36420 owait 1427 3531us finish 36812 bar2 36217 f 18280 enter 35 fq 27 31 276us close 0us prep 425us flush 375us
2026-08-18 02:49:02.922532+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055962 tx stats: # 36440 owait 1427 3531us finish 36832 bar2 36237 f 18280 enter 27 fq 37 39 382us close 0us prep 320us flush 434us
2026-08-18 02:49:03.502197+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4055982 tx stats: # 36460 owait 1427 3531us finish 36852 bar2 36257 f 18280 enter 26 fq 29 33 274us close 0us prep 259us flush 347us
2026-08-18 02:49:04.038386+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056002 tx stats: # 36480 owait 1427 3531us finish 36872 bar2 36277 f 18280 enter 23 fq 31 35 317us close 0us prep 188us flush 309us
2026-08-18 02:49:05.963098+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056022 tx stats: # 36500 owait 1427 3531us finish 36892 bar2 36297 f 18280 enter 34 fq 27 31 214us close 0us prep 393us flush 394us
2026-08-18 02:49:06.570208+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056042 tx stats: # 36520 owait 1427 3531us finish 36912 bar2 36317 f 18280 enter 34 fq 28 33 242us close 0us prep 300us flush 556us
2026-08-18 02:49:07.185527+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056062 tx stats: # 36540 owait 1427 3531us finish 36932 bar2 36337 f 18280 enter 30 fq 29 34 384us close 0us prep 527us flush 584us
2026-08-18 02:49:16.236121+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056082 tx stats: # 36560 owait 1427 3531us finish 36952 bar2 36357 f 18280 enter 22 fq 39 72 421us close 0us prep 311us flush 502us
2026-08-18 02:49:17.436560+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056102 tx stats: # 36580 owait 1427 3531us finish 36972 bar2 36377 f 18280 enter 24 fq 41 58 355us close 0us prep 356us flush 491us
2026-08-18 02:49:18.727690+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056122 tx stats: # 36600 owait 1427 3531us finish 36992 bar2 36397 f 18280 enter 24 fq 37 55 345us close 0us prep 345us flush 396us
2026-08-18 02:49:19.755328+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056142 tx stats: # 36620 owait 1427 3531us finish 37012 bar2 36417 f 18280 enter 21 fq 38 47 360us close 0us prep 443us flush 512us
2026-08-18 02:49:20.937403+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056162 tx stats: # 36640 owait 1427 3531us finish 37032 bar2 36437 f 18280 enter 24 fq 31 37 288us close 0us prep 355us flush 392us
2026-08-18 02:49:21.897898+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056182 tx stats: # 36660 owait 1427 3531us finish 37052 bar2 36457 f 18280 enter 22 fq 28 31 306us close 0us prep 308us flush 561us
2026-08-18 02:49:22.938619+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056202 tx stats: # 36680 owait 1427 3531us finish 37072 bar2 36477 f 18280 enter 557 fq 34 39 379us close 0us prep 1343us flush 815us
2026-08-18 02:49:54.322278+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056222 tx stats: # 36700 owait 1428 3531us finish 37092 bar2 36497 f 18293 enter 35 fq 43 62 1108us close 0us prep 384us flush 2707us
2026-08-18 02:50:05.053680+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056242 tx stats: # 36720 owait 1428 3531us finish 37111 bar2 36516 f 18299 enter 463 fq 40 53 607us close 0us prep 442us flush 742us
2026-08-18 02:50:14.378882+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056262 tx stats: # 36740 owait 1429 3529us finish 37128 bar2 36533 f 18299 enter 673 fq 30 280 455us close 0us prep 861us flush 715us
2026-08-18 02:50:24.991762+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056282 tx stats: # 36760 owait 1429 3529us finish 37147 bar2 36552 f 18299 enter 468 fq 32 264 493us close 0us prep 1498us flush 798us
2026-08-18 02:50:33.823301+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056302 tx stats: # 36780 owait 1429 3529us finish 37167 bar2 36572 f 18300 enter 57 fq 37 235 357us close 1us prep 561us flush 1877us
2026-08-18 02:50:52.269670+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056322 tx stats: # 36800 owait 1429 3529us finish 37187 bar2 36592 f 18307 enter 36 fq 64 561 1510us close 0us prep 386us flush 1741us
2026-08-18 02:51:03.993834+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056342 tx stats: # 36820 owait 1429 3529us finish 37207 bar2 36612 f 18313 enter 251 fq 42 438 387us close 0us prep 595us flush 756us
2026-08-18 02:51:12.918895+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056362 tx stats: # 36840 owait 1429 3529us finish 37225 bar2 36630 f 18317 enter 592 fq 64 118 883us close 0us prep 910us flush 661us
2026-08-18 02:51:16.261275+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056382 tx stats: # 36860 owait 1429 3529us finish 37242 bar2 36647 f 18318 enter 54 fq 35 39 727us close 0us prep 892us flush 1586us
2026-08-18 02:51:29.055049+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056402 tx stats: # 36880 owait 1429 3529us finish 37262 bar2 36667 f 18318 enter 67 fq 57 139 740us close 0us prep 425us flush 673us
2026-08-18 02:51:49.545072+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056422 tx stats: # 36900 owait 1429 3529us finish 37282 bar2 36687 f 18325 enter 59 fq 52 320 1039us close 0us prep 547us flush 2813us
2026-08-18 02:52:06.741176+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056442 tx stats: # 36920 owait 1429 3529us finish 37302 bar2 36707 f 18332 enter 306 fq 38 225 446us close 0us prep 577us flush 537us
2026-08-18 02:52:21.092320+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056462 tx stats: # 36940 owait 1430 3527us finish 37322 bar2 36727 f 18340 enter 21 fq 21 25 385us close 1us prep 434us flush 738us
2026-08-18 02:52:42.576558+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056482 tx stats: # 36960 owait 1430 3527us finish 37342 bar2 36747 f 18341 enter 621 fq 35 305 690us close 0us prep 1502us flush 914us
2026-08-18 02:52:51.463649+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056502 tx stats: # 36980 owait 1430 3527us finish 37362 bar2 36767 f 18345 enter 345 fq 38 310 425us close 0us prep 515us flush 546us
2026-08-18 02:52:54.825379+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056522 tx stats: # 37000 owait 1430 3527us finish 37382 bar2 36787 f 18348 enter 5 fq 40 130 586us close 0us prep 244us flush 1391us
2026-08-18 02:53:11.458944+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056542 tx stats: # 37020 owait 1430 3527us finish 37402 bar2 36807 f 18355 enter 111 fq 15 19 390us close 0us prep 661us flush 1392us
2026-08-18 02:53:20.237812+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056562 tx stats: # 37040 owait 1431 3525us finish 37422 bar2 36827 f 18359 enter 71 fq 34 1229 687us close 0us prep 702us flush 742us
2026-08-18 02:53:34.931108+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056582 tx stats: # 37060 owait 1431 3525us finish 37442 bar2 36847 f 18363 enter 54 fq 33 340 974us close 0us prep 328us flush 1420us
2026-08-18 02:53:52.246177+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056602 tx stats: # 37080 owait 1431 3525us finish 37462 bar2 36867 f 18367 enter 104 fq 30 70 792us close 0us prep 1487us flush 1161us
2026-08-18 02:53:53.444956+0900 0xcbdf7    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(7331) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 02:53:53.889294+0900 0xc83c4    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 02:53:55.480603+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056622 tx stats: # 37100 owait 1431 3525us finish 37482 bar2 36887 f 18373 enter 21 fq 29 70 806us close 0us prep 462us flush 467us
2026-08-18 02:53:57.552386+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056642 tx stats: # 37120 owait 1431 3525us finish 37502 bar2 36907 f 18373 enter 30 fq 89 156 941us close 0us prep 554us flush 473us
2026-08-18 02:54:26.184423+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056662 tx stats: # 37140 owait 1432 3523us finish 37522 bar2 36927 f 18377 enter 530 fq 50 102 567us close 0us prep 699us flush 787us
2026-08-18 02:54:27.826214+0900 0xc792e    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 02:54:27.827284+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 02:54:27.827288+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 02:54:27.910621+0900 0xc792e    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 02:54:28.062839+0900 0xcc311    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 02:54:28.063092+0900 0xcc30e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 02:54:28.081615+0900 0xcc30e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 02:54:28.082035+0900 0xcc30e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 02:54:28.082042+0900 0xcc30e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 02:54:28.082044+0900 0xcc30e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 02:54:28.082112+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 02:54:28.101246+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 02:54:28.101247+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:09:26.125149+0900 0xc7       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:09:26.125154+0900 0xc7       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:09:26.131518+0900 0xcc294    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 03:09:26.131535+0900 0xcc294    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:09:26.131546+0900 0xcc294    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 03:09:26.131551+0900 0xcc294    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:09:26.131558+0900 0xcc294    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 03:09:26.256695+0900 0xcc356    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:09:26.256702+0900 0xcc356    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 03:09:26.256710+0900 0xcc356    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 03:09:26.256713+0900 0xcc356    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 03:09:26.261484+0900 0xcc356    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 03:09:26.261647+0900 0xcc356    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 03:09:26.261675+0900 0xcc356    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:09:26.261805+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:09:26.261807+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:09:31.668033+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056682 tx stats: # 37160 owait 1432 3523us finish 37542 bar2 36947 f 18382 enter 48 fq 29 36 609us close 0us prep 992us flush 763us
2026-08-18 03:09:53.017972+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056702 tx stats: # 37180 owait 1432 3523us finish 37562 bar2 36967 f 18390 enter 6 fq 38 47 352us close 0us prep 150us flush 1967us
2026-08-18 03:10:13.544286+0900 0xcc532    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 03:10:13.545661+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:10:13.545665+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:10:13.624661+0900 0xcc532    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:10:13.815847+0900 0xccac8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:10:13.816203+0900 0xccaa8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 03:10:13.837529+0900 0xccaa8    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 03:10:13.837944+0900 0xccaa8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 03:10:13.837951+0900 0xccaa8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 03:10:13.837955+0900 0xccaa8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 03:10:13.838018+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 03:10:13.860286+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:10:13.860290+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:10:16.255779+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:10:16.255785+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:10:16.260507+0900 0xccaf6    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 03:10:16.260516+0900 0xccaf6    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:10:16.260524+0900 0xccaf6    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 03:10:16.260529+0900 0xccaf6    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:10:16.260554+0900 0xccaf6    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 03:10:16.385969+0900 0xccae5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:10:16.385988+0900 0xccae5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 03:10:16.386011+0900 0xccae5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 03:10:16.386021+0900 0xccae5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 03:10:16.390050+0900 0xccae5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 03:10:16.390159+0900 0xccaf0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 03:10:16.390188+0900 0xccaf0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:10:16.390305+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:10:16.390306+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:10:25.051801+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056722 tx stats: # 37200 owait 1432 3523us finish 37582 bar2 36987 f 18398 enter 142 fq 116 143 1676us close 0us prep 1423us flush 2376us
2026-08-18 03:10:53.401433+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056742 tx stats: # 37220 owait 1432 3523us finish 37602 bar2 37007 f 18400 enter 78 fq 30 181 561us close 0us prep 273us flush 476us
2026-08-18 03:11:01.276053+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056762 tx stats: # 37240 owait 1432 3523us finish 37622 bar2 37027 f 18414 enter 64 fq 25 51 322us close 0us prep 469us flush 970us
2026-08-18 03:11:04.080684+0900 0xccb84    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 03:11:04.081683+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:11:04.081687+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:11:04.161250+0900 0xccb84    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:11:04.317885+0900 0xcd390    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:11:04.318253+0900 0xcd387    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 03:11:04.337370+0900 0xcd387    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 03:11:04.337551+0900 0xcd387    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 03:11:04.337558+0900 0xcd387    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 03:11:04.337562+0900 0xcd387    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 03:11:04.337628+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 03:11:04.358699+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:11:04.358702+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:15:17.991963+0900 0xcc786    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:15:17.991969+0900 0xcc786    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:15:17.997693+0900 0xcd3c4    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 03:15:17.997710+0900 0xcd3c4    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:15:17.997727+0900 0xcd3c4    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 03:15:17.997737+0900 0xcd3c4    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:15:17.997759+0900 0xcd3c4    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 03:15:18.121788+0900 0xcd3c2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:15:18.121806+0900 0xcd3c2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 03:15:18.121822+0900 0xcd3c2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 03:15:18.121828+0900 0xcd3c2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 03:15:18.125912+0900 0xcd3c2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 03:15:18.126047+0900 0xcd3d0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 03:15:18.126069+0900 0xcd3d0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:15:18.126170+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:15:18.126171+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:15:18.983797+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056782 tx stats: # 37260 owait 1432 3523us finish 37642 bar2 37047 f 18416 enter 649 fq 50 53 418us close 0us prep 1606us flush 2775us
2026-08-18 03:16:05.110972+0900 0xcd524    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 03:16:05.112084+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:16:05.112089+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:16:05.206615+0900 0xcd524    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:16:05.330905+0900 0xcd948    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:16:05.331039+0900 0xcd523    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 03:16:05.348640+0900 0xcd523    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 03:16:05.349025+0900 0xcd523    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 03:16:05.349029+0900 0xcd523    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 03:16:05.349031+0900 0xcd523    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 03:16:05.349091+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 03:16:05.382138+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:16:05.382140+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:32:00.992047+0900 0xcd7a3    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:32:00.992052+0900 0xcd7a3    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:32:00.997304+0900 0xcd9b7    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 03:32:00.997321+0900 0xcd9b7    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:32:00.997333+0900 0xcd9b7    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 03:32:00.997338+0900 0xcd9b7    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:32:00.997349+0900 0x2e3      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 03:32:01.121514+0900 0xcd994    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:32:01.121520+0900 0xcd994    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 03:32:01.121531+0900 0xcd994    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 03:32:01.121535+0900 0xcd994    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 03:32:01.126546+0900 0xcd994    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 03:32:01.126709+0900 0xcd994    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 03:32:01.126734+0900 0xcd994    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:32:01.126851+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:32:01.126852+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:32:01.135762+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056802 tx stats: # 37280 owait 1433 3522us finish 37662 bar2 37066 f 18425 enter 158 fq 101 365 1353us close 0us prep 1127us flush 1553us
2026-08-18 03:32:06.165896+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056822 tx stats: # 37300 owait 1433 3522us finish 37682 bar2 37086 f 18439 enter 180 fq 15 18 262us close 0us prep 2481us flush 1269us
2026-08-18 03:32:15.164777+0900 0xccf87    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(8124) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 03:32:15.244511+0900 0x457      Default     0x0                  0      0    kernel: (apfs) apfs_vnop_reclaim:16349: disk3s5 Releasing space reserved for inode 164969 (dstream 1273112/2101248)
2026-08-18 03:32:15.945150+0900 0xcdda4    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(8124) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 03:32:36.458023+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056842 tx stats: # 37320 owait 1434 3521us finish 37704 bar2 37106 f 18447 enter 56 fq 56 234 1894us close 0us prep 2248us flush 1895us
2026-08-18 03:33:03.496990+0900 0xcdb1f    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 03:33:03.498083+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:33:03.498088+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:33:03.584383+0900 0xcdb1f    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:33:03.737875+0900 0xce47e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:33:03.738085+0900 0xce480    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 03:33:03.771030+0900 0xce480    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 03:33:03.771445+0900 0xce480    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 03:33:03.771453+0900 0xce480    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 03:33:03.771456+0900 0xce480    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 03:33:03.771520+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 03:33:03.817149+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:33:03.817153+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:48:01.991971+0900 0x4dc1     Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:48:01.991977+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:48:01.996996+0900 0xcda8e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 03:48:01.997007+0900 0xcda8e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:48:01.997017+0900 0xcda8e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 03:48:01.997022+0900 0xcda8e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 03:48:01.997032+0900 0xcda8e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 03:48:02.121341+0900 0xce4d7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:48:02.121353+0900 0xce4d7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 03:48:02.121369+0900 0xce4d7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 03:48:02.121377+0900 0xce4d7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 03:48:02.125338+0900 0xce4d7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 03:48:02.125519+0900 0xce4ce    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 03:48:02.125563+0900 0xce4ce    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:48:02.125753+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:48:02.125754+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:48:02.148861+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056862 tx stats: # 37340 owait 1435 3519us finish 37724 bar2 37126 f 18453 enter 104 fq 38 45 383us close 1us prep 169us flush 191us
2026-08-18 03:48:14.371186+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056882 tx stats: # 37360 owait 1436 3516us finish 37744 bar2 37146 f 18467 enter 57 fq 68 95 1343us close 0us prep 549us flush 1495us
2026-08-18 03:48:32.724360+0900 0xce912    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 03:48:32.724390+0900 0xce912    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 03:48:32.725268+0900 0xce912    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 03:48:33.202432+0900 0xce912    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-034832.local' snap_xid 4056893 extentref oid 776159 sblock oid 794430
2026-08-18 03:48:33.204342+0900 0xce912    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 03:48:33.438951+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056902 tx stats: # 37380 owait 1441 3508us finish 37764 bar2 37166 f 18472 enter 35 fq 30 32 292us close 837us prep 344us flush 2117us
2026-08-18 03:48:48.700668+0900 0xce673    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 03:48:48.701790+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:48:48.701795+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 03:48:48.799393+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056922 tx stats: # 37400 owait 1446 3496us finish 37784 bar2 37186 f 18482 enter 28 fq 56 65 334us close 0us prep 132us flush 221us
2026-08-18 03:48:48.799433+0900 0xce673    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 03:48:48.937794+0900 0xceb5a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 03:48:48.937948+0900 0xceb5a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 03:48:48.955364+0900 0xceb5a    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 03:48:48.955812+0900 0xceb5a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 03:48:48.955815+0900 0xceb5a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 03:48:48.955817+0900 0xceb5a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 03:48:48.955879+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 03:48:48.981617+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 03:48:48.981618+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:03:47.992040+0900 0xceba5    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:03:47.992044+0900 0xceba5    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:03:47.958608+0900 0xcebb9    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 04:03:47.958626+0900 0xcebb9    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 04:03:47.958643+0900 0xcebb9    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 04:03:47.958652+0900 0xcebb9    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 04:03:47.958673+0900 0xcebb9    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 04:03:48.082976+0900 0xceba5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 04:03:48.082992+0900 0xceba5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 04:03:48.083004+0900 0xceba5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 04:03:48.083009+0900 0xceba5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 04:03:48.086962+0900 0xceba5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 04:03:48.087050+0900 0xceba5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 04:03:48.087066+0900 0xceba5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 04:03:48.087164+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:03:48.087165+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:03:48.975782+0900 0xce907    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AuthenticationServicesAgent(8563) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 04:03:49.396410+0900 0xce907    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AuthenticationServicesAgent(8563) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 04:03:50.275052+0900 0xced36    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 04:03:50.275063+0900 0xced36    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 8585); parent: com.apple.Mobile (pid 8584)
2026-08-18 04:03:50.275077+0900 0xced36    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4056937)
2026-08-18 04:03:50.279106+0900 0xced36    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 04:03:50.279380+0900 0xced36    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 04:03:50.279601+0900 0xced36    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 04:03:50.279675+0900 0xced36    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 8585); parent: com.apple.Mobile (pid 8584)
2026-08-18 04:03:50.297385+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 04:03:50.297412+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 04:03:50.297467+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 04:03:50.297478+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 04:03:50.298692+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 8584); parent: launchd (pid 1)
2026-08-18 04:03:50.298716+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 04:03:50.302617+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 04:03:50.303747+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 04:03:50.390437+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 04:03:50.390454+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 8587); parent: com.apple.Mobile (pid 8584)
2026-08-18 04:03:50.390462+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4056940)
2026-08-18 04:03:50.395109+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 04:03:50.395204+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 04:03:50.395258+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 783844
2026-08-18 04:03:50.395275+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 04:03:50.756860+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 772024 -> 779828
2026-08-18 04:03:50.790078+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056942 tx stats: # 37420 owait 1448 3513us finish 37803 bar2 37206 f 18487 enter 28 fq 23 34 310us close 47320us prep 2426us flush 6849us
2026-08-18 04:03:50.799387+0900 0xced91    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4056941-4056941
2026-08-18 04:03:50.877483+0900 0xced91    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4056941, om_snap_count 1 om_most_recent_snap 4056941
2026-08-18 04:03:50.877493+0900 0xced91    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4056941
2026-08-18 04:03:50.878095+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 04:03:50.879735+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4056943)
2026-08-18 04:03:50.884615+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 04:03:50.884699+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 04:03:50.884789+0900 0xced5a    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 8587); parent: com.apple.Mobile (pid 8584)
2026-08-18 04:03:50.895991+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 8584); parent: launchd (pid 1)
2026-08-18 04:03:50.896015+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 04:03:50.897031+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 04:03:50.898965+0900 0xced2c    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 04:03:56.075483+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056962 tx stats: # 37440 owait 1448 3513us finish 37823 bar2 37226 f 18488 enter 99 fq 46 136 505us close 0us prep 872us flush 510us
2026-08-18 04:04:03.294235+0900 0xcebbc    Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk1 xid 8662 tx stats: # 100 owait 0 0us finish 100 bar2 100 f 6 enter 5 fq 8 14 90256us close 0us prep 113us flush 273us
2026-08-18 04:04:04.528529+0900 0xce907    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(8673) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 04:04:05.345876+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4056982 tx stats: # 37460 owait 1451 3507us finish 37840 bar2 37243 f 18494 enter 1244 fq 119 166 2519us close 0us prep 928us flush 3386us
2026-08-18 04:04:05.752731+0900 0xcf098    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(8673) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 04:04:16.319369+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057002 tx stats: # 37480 owait 1459 3492us finish 37851 bar2 37254 f 18496 enter 27 fq 76 308 1357us close 14us prep 1018us flush 2227us
2026-08-18 04:04:34.663404+0900 0xced19    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 04:04:34.664489+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:04:34.664497+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:04:34.754731+0900 0xced19    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 04:04:34.929917+0900 0xcf36c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 04:04:34.930278+0900 0xcf364    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 04:04:34.950396+0900 0xcf364    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 04:04:34.950818+0900 0xcf364    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 04:04:34.950826+0900 0xcf364    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 04:04:34.950829+0900 0xcf364    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 04:04:34.950898+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 04:04:34.972413+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:04:34.972418+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:16:18.951785+0900 0xcf335    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:16:18.951791+0900 0xcf335    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:16:18.957823+0900 0xcf335    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 04:16:18.957839+0900 0xcf335    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 04:16:18.957856+0900 0xcf335    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 04:16:18.957865+0900 0xcf335    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 04:16:18.957883+0900 0xcf335    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 04:16:19.082207+0900 0xcf3bd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 04:16:19.082220+0900 0xcf3bd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 04:16:19.082237+0900 0xcf3bd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 04:16:19.082243+0900 0xcf3bd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 04:16:19.086199+0900 0xcf3bd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 04:16:19.087365+0900 0xcf3bd    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 04:16:19.087395+0900 0xcf3bd    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 04:16:19.087513+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:16:19.087514+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:16:27.411332+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057022 tx stats: # 37500 owait 1459 3492us finish 37870 bar2 37273 f 18504 enter 4889 fq 19 32 293us close 0us prep 5675us flush 1530us
2026-08-18 04:16:59.249535+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057042 tx stats: # 37520 owait 1460 3493us finish 37890 bar2 37293 f 18514 enter 5070 fq 150 175 3364us close 0us prep 6470us flush 2428us
2026-08-18 04:17:02.858206+0900 0xcf83d    Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29599736/29663502 pl_offset 0 f_offset 65536 size 16384 file size 65536 error 22 (mds_stores)
2026-08-18 04:17:06.025499+0900 0xcd87c    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(8955) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 04:17:07.045722+0900 0xcf97e    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(8961) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 04:17:10.012895+0900 0xcf50b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 04:17:10.013887+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:17:10.013893+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:17:10.106758+0900 0xcf50b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 04:17:10.277961+0900 0xcf3ec    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 04:17:10.278087+0900 0xcfcf5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 04:17:10.297964+0900 0xcfcf5    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 04:17:10.298378+0900 0xcfcf5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 04:17:10.298383+0900 0xcfcf5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 04:17:10.298385+0900 0xcfcf5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 04:17:10.298461+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 04:17:10.318158+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:17:10.318160+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:32:08.952389+0900 0xcfafb    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:32:08.952395+0900 0xcfafb    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:32:08.957812+0900 0xcfccf    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 04:32:08.957831+0900 0xcfccf    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 04:32:08.957848+0900 0xcfccf    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 04:32:08.957857+0900 0xcfccf    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 04:32:08.957876+0900 0xcfccf    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 04:32:09.080997+0900 0xcfd37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 04:32:09.081005+0900 0xcfd37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 04:32:09.081015+0900 0xcfd37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 04:32:09.081018+0900 0xcfd37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 04:32:09.084945+0900 0xcfd37    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 04:32:09.121843+0900 0xcfd2e    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 04:32:09.121873+0900 0xcfd2e    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 04:32:09.122015+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:32:09.122016+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:32:14.871397+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057062 tx stats: # 37540 owait 1462 3488us finish 37910 bar2 37313 f 18522 enter 54 fq 79 109 774us close 0us prep 165us flush 1857us
2026-08-18 04:32:37.851993+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057082 tx stats: # 37560 owait 1462 3488us finish 37930 bar2 37333 f 18524 enter 61 fq 107 151 2019us close 0us prep 1220us flush 3011us
2026-08-18 04:33:07.880865+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057102 tx stats: # 37580 owait 1466 3482us finish 37950 bar2 37353 f 18539 enter 41 fq 63 83 1687us close 0us prep 1332us flush 2424us
2026-08-18 04:33:11.800805+0900 0xcfd36    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 04:33:11.801927+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:33:11.801931+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:33:11.890119+0900 0xcfd36    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 04:33:12.041769+0900 0xd05b3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 04:33:12.041878+0900 0xd05ce    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 04:33:12.059772+0900 0xd05ce    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 04:33:12.060171+0900 0xd05ce    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 04:33:12.060178+0900 0xd05ce    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 04:33:12.060180+0900 0xd05ce    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 04:33:12.060233+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 04:33:12.079184+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:33:12.079187+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:46:35.858631+0900 0xcfdd6    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:46:35.858637+0900 0xcfdd6    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:46:35.863209+0900 0xcfdd6    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 04:46:35.863219+0900 0xcfdd6    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 04:46:35.863229+0900 0xcfdd6    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 04:46:35.863235+0900 0xcfdd6    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 04:46:35.863246+0900 0xcfdd6    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 04:46:35.987549+0900 0xd05ee    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 04:46:35.987556+0900 0xd05ee    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 04:46:35.987567+0900 0xd05ee    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 04:46:35.987571+0900 0xd05ee    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 04:46:35.991631+0900 0xd05ee    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 04:46:35.991757+0900 0xd05ed    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 04:46:35.991782+0900 0xd05ed    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 04:46:35.991880+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:46:35.991881+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:47:04.597251+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057122 tx stats: # 37600 owait 1466 3482us finish 37970 bar2 37373 f 18549 enter 124 fq 57 94 1636us close 0us prep 1016us flush 1882us
2026-08-18 04:47:06.619391+0900 0xd0462    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 04:47:06.619421+0900 0xd0462    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 04:47:06.619817+0900 0xd0462    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 04:47:07.052381+0900 0xd0462    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-044706.local' snap_xid 4057130 extentref oid 773117 sblock oid 798837
2026-08-18 04:47:07.053826+0900 0xd0462    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 04:47:08.874930+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057142 tx stats: # 37620 owait 1470 3473us finish 37990 bar2 37393 f 18554 enter 67 fq 54 59 1759us close 54us prep 996us flush 2573us
2026-08-18 04:47:23.059610+0900 0xd0626    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 04:47:23.060722+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:47:23.060726+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 04:47:23.156604+0900 0xd0626    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 04:47:23.326002+0900 0xd07d0    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 04:47:23.326246+0900 0xd0c99    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 04:47:23.345031+0900 0xd0c99    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 04:47:23.345419+0900 0xd0c99    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 04:47:23.345425+0900 0xd0c99    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 04:47:23.345428+0900 0xd0c99    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 04:47:23.345498+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 04:47:23.382107+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 04:47:23.382112+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:02:21.952320+0900 0xd06af    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:02:21.952326+0900 0xd06af    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:02:21.978660+0900 0xd0cca    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 05:02:21.978678+0900 0xd0cca    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 05:02:21.978694+0900 0xd0cca    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 05:02:21.978703+0900 0xd0cca    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 05:02:21.978722+0900 0xd0cca    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 05:02:22.102792+0900 0xd0cfd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 05:02:22.102799+0900 0xd0cfd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 05:02:22.102810+0900 0xd0cfd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 05:02:22.102818+0900 0xd0cfd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 05:02:22.106745+0900 0xd0cfd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 05:02:22.106892+0900 0xd0cfd    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 05:02:22.106917+0900 0xd0cfd    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 05:02:22.107020+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:02:22.107020+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:02:22.140897+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057162 tx stats: # 37640 owait 1472 3469us finish 38010 bar2 37413 f 18564 enter 147 fq 24 28 153us close 0us prep 301us flush 211us
2026-08-18 05:02:29.332510+0900 0xd0a28    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 05:02:49.058055+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057182 tx stats: # 37660 owait 1476 3464us finish 38030 bar2 37433 f 18568 enter 177 fq 164 1438 3531us close 0us prep 1625us flush 831us
2026-08-18 05:03:07.551434+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057202 tx stats: # 37680 owait 1476 3464us finish 38050 bar2 37453 f 18580 enter 15 fq 50 69 1626us close 0us prep 428us flush 2528us
2026-08-18 05:03:08.679305+0900 0xd0de6    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 05:03:08.680420+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:03:08.680424+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:03:08.768633+0900 0xd0de6    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 05:03:08.919255+0900 0xd12c3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 05:03:08.919510+0900 0xd12d2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 05:03:08.937733+0900 0xd12d2    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 05:03:08.938199+0900 0xd12d2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 05:03:08.938207+0900 0xd12d2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 05:03:08.938209+0900 0xd12d2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 05:03:08.938282+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 05:03:08.969684+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:03:08.969686+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:17:19.972699+0900 0xd0d97    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:17:19.972704+0900 0xd0d97    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:17:19.977787+0900 0xd0d97    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 05:17:19.977807+0900 0xcfdc6    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 05:17:19.977818+0900 0xcfdc6    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 05:17:19.977824+0900 0xcfdc6    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 05:17:19.977836+0900 0xcfdc6    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 05:17:20.101609+0900 0xd12d4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 05:17:20.101617+0900 0xd12d4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 05:17:20.101631+0900 0xd12d4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 05:17:20.101636+0900 0xd12d4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 05:17:20.106909+0900 0xd12d4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 05:17:20.107097+0900 0xd12d4    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 05:17:20.107116+0900 0xd12d4    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 05:17:20.107226+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:17:20.107227+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:17:22.344141+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057222 tx stats: # 37700 owait 1476 3464us finish 38070 bar2 37473 f 18588 enter 99 fq 30 34 266us close 7us prep 387us flush 423us
2026-08-18 05:17:29.989551+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_keybag_cx_expired:6170: disk3s5 apfs received cx expiry notification!
2026-08-18 05:17:30.072059+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_keybag_cx_expired:6196: disk3s5 apfs processed cx expiry notification!
2026-08-18 05:17:47.029070+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057242 tx stats: # 37720 owait 1477 3464us finish 38090 bar2 37493 f 18590 enter 237 fq 28 158 617us close 0us prep 1403us flush 1935us
2026-08-18 05:17:53.568634+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057262 tx stats: # 37740 owait 1479 3459us finish 38110 bar2 37513 f 18600 enter 18 fq 38 259 990us close 548us prep 570us flush 1143us
2026-08-18 05:18:07.177542+0900 0xd14fb    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 05:18:07.178675+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:18:07.178681+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:18:07.275740+0900 0xd14fb    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 05:18:07.417037+0900 0xd1e13    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 05:18:07.417302+0900 0xd1e1c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 05:18:07.434854+0900 0xd1e1c    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 05:18:07.435291+0900 0xd1e1c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 05:18:07.435294+0900 0xd1e1c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 05:18:07.435296+0900 0xd1e1c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 05:18:07.435358+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 05:18:07.471140+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:18:07.471142+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:33:05.972782+0900 0xd1e08    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:33:05.972786+0900 0xd1e08    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:33:05.978397+0900 0xd017a    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 05:33:05.978404+0900 0xd017a    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 05:33:05.978420+0900 0xd017a    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 05:33:05.978425+0900 0xd017a    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 05:33:05.978435+0900 0xd017a    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 05:33:06.102182+0900 0xd1e6a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 05:33:06.102187+0900 0xd1e6a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 05:33:06.102195+0900 0xd1e6a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 05:33:06.102198+0900 0xd1e6a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 05:33:06.106239+0900 0xd1e6a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 05:33:06.106358+0900 0xd1e6a    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 05:33:06.106375+0900 0xd1e6a    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 05:33:06.106493+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:33:06.106494+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:33:08.544017+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057282 tx stats: # 37760 owait 1482 3453us finish 38130 bar2 37533 f 18605 enter 1746 fq 42 50 526us close 0us prep 801us flush 959us
2026-08-18 05:33:21.611154+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057302 tx stats: # 37780 owait 1482 3453us finish 38150 bar2 37553 f 18617 enter 56 fq 25 32 911us close 0us prep 1619us flush 2624us
2026-08-18 05:33:50.102824+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057322 tx stats: # 37800 owait 1487 3462us finish 38167 bar2 37570 f 18625 enter 1398 fq 412 69529 3265us close 6us prep 592us flush 1625us
2026-08-18 05:33:50.793961+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057342 tx stats: # 37820 owait 1490 3456us finish 38187 bar2 37590 f 18625 enter 75 fq 55 2392 535us close 0us prep 388us flush 600us
2026-08-18 05:34:00.103393+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057362 tx stats: # 37840 owait 1499 3470us finish 38203 bar2 37606 f 18633 enter 949 fq 313 53222 2089us close 0us prep 622us flush 2575us
2026-08-18 05:34:08.649807+0900 0xd1fe6    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 05:34:08.650833+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:34:08.650837+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:34:08.735225+0900 0xd1fe6    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 05:34:08.828212+0900 0xd28ec    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 05:34:08.828434+0900 0xd2923    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 05:34:08.845659+0900 0xd2923    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 05:34:08.846014+0900 0xd2923    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 05:34:08.846018+0900 0xd2923    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 05:34:08.846020+0900 0xd2923    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 05:34:08.846069+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 05:34:08.864837+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:34:08.864839+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:49:07.972844+0900 0xd298f    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:49:07.972848+0900 0xd298f    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:49:07.978736+0900 0xd2959    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 05:49:07.978751+0900 0xd2959    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 05:49:07.978760+0900 0xd2959    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 05:49:07.978766+0900 0xd2959    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 05:49:07.978776+0900 0xd2959    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 05:49:08.103350+0900 0xd2922    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 05:49:08.103362+0900 0xd2922    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 05:49:08.103378+0900 0xd2922    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 05:49:08.103385+0900 0xd2922    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 05:49:08.108493+0900 0xd2922    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 05:49:08.108626+0900 0xd2916    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 05:49:08.108648+0900 0xd2916    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 05:49:08.108750+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:49:08.108751+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:49:08.243231+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057382 tx stats: # 37860 owait 1507 3461us finish 38223 bar2 37626 f 18636 enter 130 fq 139 671 648us close 37us prep 373us flush 436us
2026-08-18 05:49:11.532925+0900 0xcedc0    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 05:49:11.575888+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057402 tx stats: # 37880 owait 1510 3456us finish 38243 bar2 37646 f 18641 enter 197 fq 131 166 3013us close 0us prep 1883us flush 1340us
2026-08-18 05:49:17.620354+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057422 tx stats: # 37900 owait 1512 3457us finish 38263 bar2 37666 f 18647 enter 71 fq 47 58 1149us close 0us prep 776us flush 870us
2026-08-18 05:49:20.041063+0900 0xd2c04    Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29452491/29452491 pl_offset 0 f_offset 114688 size 16384 file size 103864 error 22 (mds_stores)
2026-08-18 05:49:22.033863+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057442 tx stats: # 37920 owait 1512 3457us finish 38283 bar2 37686 f 18650 enter 22 fq 37 53 679us close 0us prep 697us flush 447us
2026-08-18 05:49:24.114285+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057462 tx stats: # 37940 owait 1515 3464us finish 38303 bar2 37706 f 18664 enter 882 fq 168 15228 1785us close 5us prep 1091us flush 2978us
2026-08-18 05:49:24.233257+0900 0xd2aa9    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 05:49:25.680479+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057482 tx stats: # 37960 owait 1517 3461us finish 38323 bar2 37726 f 18674 enter 555 fq 117 4220 1286us close 0us prep 688us flush 828us
2026-08-18 05:49:38.545881+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057502 tx stats: # 37980 owait 1520 3484us finish 38338 bar2 37741 f 18677 enter 31296 fq 442 71819 5699us close 6us prep 3610us flush 4872us
2026-08-18 05:49:38.559703+0900 0xd377b    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 05:49:38.559717+0900 0xd377b    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 05:49:38.563936+0900 0xd377b    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 05:49:38.940313+0900 0xd377b    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-054938.local' snap_xid 4057505 extentref oid 779381 sblock oid 810024
2026-08-18 05:49:38.941669+0900 0xd377b    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 05:49:42.330802+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057522 tx stats: # 38000 owait 1527 3475us finish 38357 bar2 37760 f 18679 enter 3074 fq 618 116725 3742us close 621us prep 877us flush 1246us
2026-08-18 05:49:46.003810+0900 0xd3826    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 05:49:54.256766+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057542 tx stats: # 38020 owait 1531 3469us finish 38377 bar2 37780 f 18688 enter 425 fq 56 130 575us close 0us prep 805us flush 856us
2026-08-18 05:49:54.756355+0900 0xd2bab    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 05:49:54.757439+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:49:54.757444+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 05:49:54.857272+0900 0xd2bab    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 05:49:54.967735+0900 0xd397a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 05:49:54.967903+0900 0xd3989    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 05:49:54.985263+0900 0xd3989    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 05:49:54.985665+0900 0xd3989    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 05:49:54.985668+0900 0xd3989    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 05:49:54.985670+0900 0xd3989    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 05:49:54.985719+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 05:49:55.002918+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 05:49:55.002919+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:04:53.048607+0900 0xd3a36    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:04:53.048611+0900 0xd3a36    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:04:53.075371+0900 0xd39dd    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 06:04:53.075383+0900 0xd39dd    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:04:53.075391+0900 0xd39dd    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 06:04:53.075396+0900 0xd39dd    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:04:53.075405+0900 0xd39dd    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 06:04:53.199147+0900 0xd3988    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:04:53.199153+0900 0xd3988    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 06:04:53.199161+0900 0xd3988    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 06:04:53.199164+0900 0xd3988    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 06:04:53.203059+0900 0xd3988    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 06:04:53.203184+0900 0xd39a5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 06:04:53.203223+0900 0xd39a5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:04:53.203332+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:04:53.203333+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:05:08.779168+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057562 tx stats: # 38040 owait 1537 3465us finish 38395 bar2 37798 f 18694 enter 3897 fq 144 201 2550us close 0us prep 3307us flush 2324us
2026-08-18 06:05:27.770533+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057582 tx stats: # 38060 owait 1538 3464us finish 38416 bar2 37818 f 18705 enter 1403 fq 39 304 465us close 0us prep 693us flush 2465us
2026-08-18 06:05:40.184299+0900 0xd3984    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 06:05:40.185387+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:05:40.185390+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:05:40.283512+0900 0xd3984    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:05:40.368290+0900 0xd3fa4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:05:40.368462+0900 0xd3f8e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 06:05:40.385343+0900 0xd3f8e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 06:05:40.385693+0900 0xd3f8e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 06:05:40.385695+0900 0xd3f8e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 06:05:40.385696+0900 0xd3f8e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 06:05:40.385748+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 06:05:40.408783+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:05:40.408784+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:18:20.070106+0900 0xd3fd8    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:18:20.070110+0900 0xd3fd8    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:18:20.076424+0900 0xd3a8d    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 06:18:20.076438+0900 0xd3a8d    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:18:20.076454+0900 0xd3a8d    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 06:18:20.076463+0900 0xd3a8d    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:18:20.076473+0900 0xd3a8d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 06:18:20.200858+0900 0xd3fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:18:20.200867+0900 0xd3fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 06:18:20.200876+0900 0xd3fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 06:18:20.200881+0900 0xd3fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 06:18:20.204765+0900 0xd3fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 06:18:20.221554+0900 0xd3fc9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 06:18:20.221584+0900 0xd3fc9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:18:20.221748+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:18:20.221749+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:18:24.316187+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057602 tx stats: # 38080 owait 1545 3456us finish 38435 bar2 37837 f 18713 enter 325 fq 169 5521 1604us close 0us prep 411us flush 546us
2026-08-18 06:18:53.527671+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057622 tx stats: # 38100 owait 1549 3452us finish 38455 bar2 37857 f 18721 enter 1434 fq 124 7692 1717us close 0us prep 2957us flush 1695us
2026-08-18 06:18:59.879610+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057642 tx stats: # 38120 owait 1553 3446us finish 38475 bar2 37877 f 18732 enter 118 fq 105 15760 1508us close 0us prep 919us flush 1347us
2026-08-18 06:19:06.819028+0900 0xd40df    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 06:19:06.820092+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:19:06.820097+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:19:07.035316+0900 0xd40df    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:19:07.058248+0900 0xd3ff2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:19:07.058333+0900 0xd4594    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 06:19:07.075115+0900 0xd4594    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 06:19:07.075163+0900 0xd4594    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 06:19:07.075166+0900 0xd4594    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 06:19:07.075167+0900 0xd4594    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 06:19:07.075212+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 06:19:07.709793+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:19:07.709798+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:25:36.426564+0900 0xd3a8d    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:25:36.426569+0900 0xd3a8d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:25:36.431976+0900 0xd45d5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 06:25:36.431986+0900 0xd45d5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:25:36.431995+0900 0xd45d5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 06:25:36.432000+0900 0xd45d5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:25:36.432009+0900 0xd45d5    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 06:25:36.557113+0900 0xd457c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:25:36.557121+0900 0xd457c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 06:25:36.557131+0900 0xd457c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 06:25:36.557135+0900 0xd457c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 06:25:36.561197+0900 0xd457c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 06:25:36.561370+0900 0xd45d9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 06:25:36.561400+0900 0xd45d9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:25:36.561522+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:25:36.561523+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:25:38.555440+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057662 tx stats: # 38140 owait 1557 3440us finish 38495 bar2 37897 f 18738 enter 145 fq 25 31 392us close 0us prep 296us flush 577us
2026-08-18 06:25:48.065978+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057682 tx stats: # 38160 owait 1558 3439us finish 38515 bar2 37917 f 18742 enter 183 fq 26 33 438us close 0us prep 584us flush 590us
2026-08-18 06:26:12.103828+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057702 tx stats: # 38180 owait 1558 3439us finish 38535 bar2 37937 f 18748 enter 87 fq 17 65 386us close 0us prep 1134us flush 8020us
2026-08-18 06:26:20.925729+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057722 tx stats: # 38200 owait 1559 3437us finish 38555 bar2 37957 f 18754 enter 42 fq 32 36 366us close 0us prep 303us flush 470us
2026-08-18 06:26:23.578687+0900 0xd45cd    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 06:26:23.579773+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:26:23.579778+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:26:23.648995+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057742 tx stats: # 38220 owait 1559 3437us finish 38575 bar2 37977 f 18764 enter 36 fq 24 30 743us close 0us prep 385us flush 1208us
2026-08-18 06:26:23.673120+0900 0xd45cd    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:26:23.818274+0900 0xd4f6e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:26:23.818433+0900 0xd3a8d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 06:26:23.836676+0900 0xd4f6e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 06:26:23.837077+0900 0xd4ea2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 06:26:23.837083+0900 0xd4ea2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 06:26:23.837085+0900 0xd4f6f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 06:26:23.837148+0900 0xd4f6f    Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 06:26:23.857080+0900 0xd4f6f    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:26:23.857083+0900 0xd4f6f    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:41:22.070094+0900 0xd3a8d    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:41:22.070100+0900 0xd3a8d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:41:22.075841+0900 0xd4f6e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 06:41:22.075858+0900 0xd4f6e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:41:22.075875+0900 0xd4f6e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 06:41:22.075885+0900 0xd4f6e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:41:22.075905+0900 0xd4f6e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 06:41:22.200253+0900 0xd4f22    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:41:22.200265+0900 0xd4f22    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 06:41:22.200278+0900 0xd4f22    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 06:41:22.200284+0900 0xd4f22    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 06:41:22.204279+0900 0xd4f22    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 06:41:22.204419+0900 0xd4f22    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 06:41:22.204443+0900 0xd4f22    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:41:22.204545+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:41:22.204546+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:41:39.723490+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057762 tx stats: # 38240 owait 1562 3430us finish 38595 bar2 37997 f 18766 enter 229 fq 68 298 698us close 0us prep 1430us flush 968us
2026-08-18 06:41:56.430759+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057782 tx stats: # 38260 owait 1562 3430us finish 38615 bar2 38017 f 18778 enter 84 fq 139 280 1350us close 0us prep 1640us flush 867us
2026-08-18 06:42:08.792418+0900 0xd5120    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 06:42:08.793660+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:42:08.793662+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:42:08.890613+0900 0xd5120    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:42:09.006562+0900 0xd564e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:42:09.006617+0900 0xd564f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 06:42:09.024418+0900 0xd564f    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 06:42:09.024783+0900 0xd564f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 06:42:09.024786+0900 0xd564f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 06:42:09.024787+0900 0xd564f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 06:42:09.024855+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 06:42:09.041923+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:42:09.041924+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:57:07.070080+0900 0xd56e8    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:57:07.070084+0900 0xd56e8    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:57:07.061427+0900 0xd5070    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 06:57:07.061438+0900 0xd5070    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:57:07.061459+0900 0xd5070    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 06:57:07.061464+0900 0xd5070    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 06:57:07.061473+0900 0xd5070    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 06:57:07.185579+0900 0xd56a4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:57:07.185590+0900 0xd56a4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 06:57:07.185602+0900 0xd56a4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 06:57:07.185606+0900 0xd56a4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 06:57:07.189566+0900 0xd56a4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 06:57:07.189713+0900 0xd56a4    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 06:57:07.189733+0900 0xd56a4    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:57:07.189877+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:57:07.189878+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:57:09.531443+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057802 tx stats: # 38280 owait 1562 3430us finish 38635 bar2 38037 f 18779 enter 429 fq 30 37 425us close 0us prep 3177us flush 1258us
2026-08-18 06:57:14.279150+0900 0xd567f    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 06:57:19.236618+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057822 tx stats: # 38300 owait 1562 3430us finish 38655 bar2 38057 f 18786 enter 64 fq 45 55 1000us close 0us prep 2260us flush 1450us
2026-08-18 06:57:36.241567+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057842 tx stats: # 38320 owait 1562 3430us finish 38675 bar2 38077 f 18796 enter 20 fq 35 52 782us close 0us prep 356us flush 1147us
2026-08-18 06:57:53.785758+0900 0xd5818    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 06:57:53.786888+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:57:53.786893+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 06:57:53.885207+0900 0xd5818    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 06:57:53.994569+0900 0xd5ca5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 06:57:53.994762+0900 0xd5cbc    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 06:57:54.012094+0900 0xd5cbc    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 06:57:54.012440+0900 0xd5cbc    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 06:57:54.012443+0900 0xd5cbc    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 06:57:54.012445+0900 0xd5cbc    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 06:57:54.012485+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 06:57:54.029784+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 06:57:54.029785+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:06:48.312026+0900 0xd5d27    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:06:48.312031+0900 0xd5d27    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:06:48.317955+0900 0xd5d0f    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 07:06:48.317963+0900 0xd5d0f    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:06:48.317972+0900 0xd5d0f    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 07:06:48.317976+0900 0xd5d0f    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:06:48.317986+0900 0xd5d0f    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 07:06:48.442107+0900 0xd5ce7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:06:48.442117+0900 0xd5ce7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 07:06:48.442131+0900 0xd5ce7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 07:06:48.442136+0900 0xd5ce7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 07:06:48.446138+0900 0xd5ce7    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 07:06:48.446253+0900 0xd5cf1    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 07:06:48.446283+0900 0xd5cf1    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:06:48.446398+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:06:48.446399+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:07:00.518765+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057862 tx stats: # 38340 owait 1563 3429us finish 38695 bar2 38097 f 18810 enter 100 fq 118 192 2608us close 684us prep 627us flush 2403us
2026-08-18 07:07:20.498972+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057882 tx stats: # 38360 owait 1564 3428us finish 38715 bar2 38117 f 18820 enter 65 fq 17 28 451us close 0us prep 986us flush 942us
2026-08-18 07:07:35.023674+0900 0xd5e3b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 07:07:35.024801+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:07:35.024806+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:07:35.125716+0900 0xd5e3b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:07:35.181889+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057902 tx stats: # 38380 owait 1566 3424us finish 38735 bar2 38137 f 18828 enter 4 fq 23 35 144us close 0us prep 50us flush 2019us
2026-08-18 07:07:35.240402+0900 0xd62b0    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:07:35.240487+0900 0xd6297    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 07:07:35.258453+0900 0xd6297    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 07:07:35.258793+0900 0xd6297    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 07:07:35.258797+0900 0xd6297    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 07:07:35.258798+0900 0xd6297    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 07:07:35.258855+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 07:07:35.275853+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:07:35.275854+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:19:20.055012+0900 0xd632f    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:19:20.055016+0900 0xd632f    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:19:20.060924+0900 0xd5dad    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 07:19:20.060934+0900 0xd5dad    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:19:20.060943+0900 0xd5dad    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 07:19:20.060948+0900 0xd5dad    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:19:20.060957+0900 0xd5dad    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 07:19:20.185174+0900 0xd62f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:19:20.185183+0900 0xd62f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 07:19:20.185196+0900 0xd62f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 07:19:20.185201+0900 0xd62f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 07:19:20.189214+0900 0xd62f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 07:19:20.189360+0900 0xd62f2    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 07:19:20.189378+0900 0xd62f2    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:19:20.189480+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:19:20.189481+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:19:32.233406+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057922 tx stats: # 38400 owait 1567 3422us finish 38755 bar2 38157 f 18833 enter 191 fq 40 53 547us close 0us prep 1884us flush 1665us
2026-08-18 07:19:50.879907+0900 0xd67e8    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 07:19:50.879935+0900 0xd67e8    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 07:19:50.880513+0900 0xd67e8    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 07:19:51.342286+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057942 tx stats: # 38420 owait 1567 3422us finish 38775 bar2 38177 f 18841 enter 42 fq 76 258 1607us close 0us prep 2153us flush 1342us
2026-08-18 07:19:51.342485+0900 0xd67e8    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-071950.local' snap_xid 4057943 extentref oid 779767 sblock oid 796950
2026-08-18 07:19:51.343422+0900 0xd67e8    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 07:19:59.226283+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057962 tx stats: # 38440 owait 1571 3414us finish 38795 bar2 38197 f 18848 enter 10 fq 24 29 296us close 0us prep 471us flush 2496us
2026-08-18 07:20:07.178767+0900 0xd6444    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 07:20:07.179841+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:20:07.179865+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:20:07.274409+0900 0xd6444    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:20:07.408874+0900 0xd6b98    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:20:07.409187+0900 0xd6b75    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 07:20:07.426591+0900 0xd6b75    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 07:20:07.426986+0900 0xd6b75    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 07:20:07.426990+0900 0xd6b75    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 07:20:07.426992+0900 0xd6b75    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 07:20:07.427050+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 07:20:07.468883+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:20:07.468885+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:27:46.402832+0900 0xd61f1    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:27:46.402838+0900 0xd61f1    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:27:46.408686+0900 0xd6aca    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 07:27:46.408704+0900 0xd6aca    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:27:46.408727+0900 0xd6aca    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 07:27:46.408738+0900 0xd6aca    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:27:46.408758+0900 0xd6aca    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 07:27:46.533302+0900 0xd6bca    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:27:46.533311+0900 0xd6bca    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 07:27:46.533321+0900 0xd6bca    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 07:27:46.533325+0900 0xd6bca    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 07:27:46.537333+0900 0xd6bca    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 07:27:46.570413+0900 0xd6bc8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 07:27:46.570440+0900 0xd6bc8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:27:46.570635+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:27:46.570636+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:27:46.886081+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4057982 tx stats: # 38460 owait 1571 3414us finish 38815 bar2 38217 f 18857 enter 496 fq 39 118 30118us close 0us prep 1417us flush 1525us
2026-08-18 07:27:55.140959+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058002 tx stats: # 38480 owait 1572 3412us finish 38835 bar2 38237 f 18858 enter 352 fq 25 31 213us close 0us prep 1739us flush 1165us
2026-08-18 07:28:11.139713+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058022 tx stats: # 38500 owait 1572 3412us finish 38855 bar2 38257 f 18867 enter 237 fq 33 40 502us close 0us prep 3171us flush 2681us
2026-08-18 07:28:41.231216+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058042 tx stats: # 38520 owait 1572 3412us finish 38875 bar2 38277 f 18880 enter 52 fq 24 30 570us close 0us prep 1836us flush 1650us
2026-08-18 07:28:49.405793+0900 0xd6d78    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 07:28:49.406862+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:28:49.406867+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:28:49.497219+0900 0xd6d78    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:28:49.618186+0900 0xd74bd    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:28:49.618259+0900 0xd74e9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 07:28:49.635569+0900 0xd74e9    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 07:28:49.635931+0900 0xd74e9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 07:28:49.635934+0900 0xd74e9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 07:28:49.635936+0900 0xd74e9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 07:28:49.635972+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 07:28:49.664996+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:28:49.664998+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:30:38.634875+0900 0xd751b    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:30:38.634880+0900 0xd751b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:30:38.640942+0900 0xd751b    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 07:30:38.640962+0900 0xd751b    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:30:38.640982+0900 0xd751b    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 07:30:38.640991+0900 0xd751b    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:30:38.641009+0900 0xd751b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 07:30:38.765100+0900 0xd7509    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:30:38.765110+0900 0xd7509    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 07:30:38.765124+0900 0xd7509    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 07:30:38.765128+0900 0xd7509    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 07:30:38.769101+0900 0xd7509    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 07:30:38.769213+0900 0xd7504    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 07:30:38.769242+0900 0xd7504    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:30:38.769353+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:30:38.769354+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:30:55.103886+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058062 tx stats: # 38540 owait 1572 3412us finish 38895 bar2 38297 f 18885 enter 106 fq 63 144 684us close 0us prep 574us flush 2068us
2026-08-18 07:31:25.342587+0900 0xd75ce    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 07:31:25.343682+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:31:25.343686+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:31:25.442710+0900 0xd75ce    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:31:25.565135+0900 0xd75d2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:31:25.565243+0900 0xd7965    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 07:31:25.582712+0900 0xd7965    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 07:31:25.583101+0900 0xd7965    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 07:31:25.583105+0900 0xd7965    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 07:31:25.583107+0900 0xd7965    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 07:31:25.583161+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 07:31:25.600372+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:31:25.600374+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:46:23.055039+0900 0xd68aa    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:46:23.055043+0900 0xd68aa    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:46:23.061290+0900 0xd79d5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 07:46:23.061303+0900 0xd79d5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:46:23.061312+0900 0xd79d5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 07:46:23.061317+0900 0xd79d5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 07:46:23.061326+0900 0xd79d5    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 07:46:23.185653+0900 0xd79a2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:46:23.185669+0900 0xd79a2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 07:46:23.185683+0900 0xd79a2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 07:46:23.185690+0900 0xd79a2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 07:46:23.189751+0900 0xd79a2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 07:46:23.189946+0900 0xd79b0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 07:46:23.189969+0900 0xd79b0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:46:23.190082+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:46:23.190082+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:46:23.573654+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058082 tx stats: # 38560 owait 1572 3412us finish 38915 bar2 38317 f 18896 enter 187 fq 54 106 2358us close 1us prep 872us flush 972us
2026-08-18 07:46:26.928944+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058102 tx stats: # 38580 owait 1573 3410us finish 38935 bar2 38337 f 18902 enter 233 fq 48 71 679us close 0us prep 507us flush 572us
2026-08-18 07:46:33.500000+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058122 tx stats: # 38600 owait 1573 3410us finish 38955 bar2 38357 f 18909 enter 11 fq 15 18 363us close 0us prep 243us flush 1929us
2026-08-18 07:47:09.778661+0900 0xd7b79    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 07:47:09.779648+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:47:09.779650+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 07:47:09.859297+0900 0xd7b79    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 07:47:10.011549+0900 0xd7fa2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 07:47:10.011717+0900 0xd7fa9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 07:47:10.030177+0900 0xd7fa9    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 07:47:10.030622+0900 0xd7fa9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 07:47:10.030626+0900 0xd7fa9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 07:47:10.030629+0900 0xd7fa9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 07:47:10.030704+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 07:47:10.050810+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 07:47:10.050812+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:02:09.055038+0900 0xd7ea0    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:02:09.055044+0900 0xd7ea0    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:02:08.994013+0900 0xd7a64    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 08:02:08.994028+0900 0xd7a64    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:02:08.994045+0900 0xd7a64    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 08:02:08.994053+0900 0xd7a64    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:02:08.994073+0900 0xd7a64    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 08:02:09.119055+0900 0xd8008    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:02:09.119062+0900 0xd8008    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 08:02:09.119072+0900 0xd8008    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 08:02:09.119076+0900 0xd8008    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 08:02:09.123154+0900 0xd8008    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 08:02:09.123329+0900 0xd8008    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 08:02:09.123349+0900 0xd8008    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:02:09.123458+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:02:09.123459+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:02:09.148803+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058142 tx stats: # 38620 owait 1574 3408us finish 38975 bar2 38377 f 18915 enter 138 fq 51 78 337us close 13us prep 370us flush 423us
2026-08-18 08:02:23.841238+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058162 tx stats: # 38640 owait 1574 3408us finish 38995 bar2 38397 f 18928 enter 26 fq 121 152 3247us close 0us prep 788us flush 2502us
2026-08-18 08:02:41.440889+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058182 tx stats: # 38660 owait 1574 3408us finish 39015 bar2 38417 f 18940 enter 75 fq 23 60 319us close 0us prep 1499us flush 2736us
2026-08-18 08:02:55.700594+0900 0xd816a    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 08:02:55.701756+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:02:55.701760+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:02:55.800560+0900 0xd816a    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:02:55.939529+0900 0xd875c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:02:55.939788+0900 0xd8776    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 08:02:55.957120+0900 0xd8776    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 08:02:55.957536+0900 0xd8776    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 08:02:55.957540+0900 0xd8776    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 08:02:55.957543+0900 0xd8776    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 08:02:55.957602+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 08:02:55.976472+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:02:55.976474+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:17:54.987946+0900 0xd87d3    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:17:54.987950+0900 0xd87d3    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:17:54.993165+0900 0xd8779    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 08:17:54.993178+0900 0xd8779    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:17:54.993190+0900 0xd8779    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 08:17:54.993196+0900 0xd8779    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:17:54.993209+0900 0xd8779    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 08:17:55.118046+0900 0xd87c5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:17:55.118065+0900 0xd87c5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 08:17:55.118082+0900 0xd87c5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 08:17:55.118089+0900 0xd87c5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 08:17:55.122112+0900 0xd87c5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 08:17:55.142958+0900 0xd87c7    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 08:17:55.142975+0900 0xd87c7    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:17:55.143127+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:17:55.143128+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:18:07.382657+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058202 tx stats: # 38680 owait 1575 3406us finish 39035 bar2 38437 f 18945 enter 196 fq 46 248 1340us close 0us prep 1128us flush 2434us
2026-08-18 08:18:22.988969+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058222 tx stats: # 38700 owait 1576 3405us finish 39055 bar2 38457 f 18957 enter 134 fq 52 64 1133us close 5us prep 2617us flush 2394us
2026-08-18 08:18:25.763340+0900 0xd8b89    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 08:18:25.763371+0900 0xd8b89    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 08:18:25.764021+0900 0xd8b89    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 08:18:26.262241+0900 0xd8b89    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-081825.local' snap_xid 4058234 extentref oid 772698 sblock oid 793376
2026-08-18 08:18:26.264064+0900 0xd8b89    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 08:18:26.597869+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058242 tx stats: # 38720 owait 1579 3399us finish 39075 bar2 38477 f 18963 enter 95 fq 24 27 215us close 783us prep 2483us flush 1550us
2026-08-18 08:18:40.277639+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058262 tx stats: # 38740 owait 1580 3397us finish 39096 bar2 38497 f 18963 enter 197 fq 57 139 894us close 0us prep 2251us flush 1407us
2026-08-18 08:18:41.726534+0900 0xd8905    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 08:18:41.727546+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:18:41.727550+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:18:41.818576+0900 0xd8905    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:18:41.943732+0900 0xd8902    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:18:41.943891+0900 0xd8d6d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 08:18:41.961313+0900 0xd8d6d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 08:18:41.961712+0900 0xd8d6d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 08:18:41.961716+0900 0xd8d6d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 08:18:41.961719+0900 0xd8d6d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 08:18:41.961780+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 08:18:41.996852+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:18:41.996854+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:20:20.987902+0900 0xd8858    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:20:20.987908+0900 0xd8858    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:20:20.993574+0900 0xd8858    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 08:20:20.993583+0900 0xd8858    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:20:20.993592+0900 0xd8858    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 08:20:20.993597+0900 0xd8858    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:20:20.993606+0900 0xd8858    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 08:20:21.117533+0900 0xd8dae    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:20:21.117545+0900 0xd8dae    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 08:20:21.117559+0900 0xd8dae    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 08:20:21.117571+0900 0xd8dae    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 08:20:21.121552+0900 0xd8dae    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 08:20:21.121677+0900 0xd8dae    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 08:20:21.121704+0900 0xd8dae    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:20:21.121811+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:20:21.121812+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:20:25.405166+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058282 tx stats: # 38760 owait 1583 3399us finish 39116 bar2 38517 f 18971 enter 2396 fq 223 4892 3075us close 0us prep 4101us flush 2658us
2026-08-18 08:20:46.965584+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058302 tx stats: # 38780 owait 1586 3400us finish 39137 bar2 38537 f 18979 enter 80 fq 98 443 1995us close 0us prep 511us flush 2647us
2026-08-18 08:21:07.683106+0900 0xd8daa    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 08:21:07.683985+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:21:07.683988+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:21:07.761363+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058322 tx stats: # 38800 owait 1586 3400us finish 39157 bar2 38557 f 18989 enter 107 fq 26 31 597us close 0us prep 856us flush 704us
2026-08-18 08:21:07.765213+0900 0xd8daa    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:21:07.900184+0900 0xd91df    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:21:07.900350+0900 0xd91cc    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 08:21:07.919201+0900 0xd91cc    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 08:21:07.919590+0900 0xd91cc    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 08:21:07.919594+0900 0xd91cc    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 08:21:07.919596+0900 0xd91cc    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 08:21:07.919670+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 08:21:07.939200+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:21:07.939203+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:36:06.988092+0900 0x4dc1     Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:36:06.988097+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:36:06.994057+0900 0xd9217    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 08:36:06.994073+0900 0xd9217    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:36:06.994089+0900 0xd9217    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 08:36:06.994098+0900 0xd9217    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:36:06.994116+0900 0xd9217    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 08:36:07.118843+0900 0xd9219    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:36:07.118851+0900 0xd9219    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 08:36:07.118861+0900 0xd9219    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 08:36:07.118866+0900 0xd9219    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 08:36:07.122827+0900 0xd9219    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 08:36:07.122940+0900 0xd9219    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 08:36:07.122962+0900 0xd9219    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:36:07.123069+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:36:07.123070+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:36:22.371817+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058342 tx stats: # 38820 owait 1587 3398us finish 39177 bar2 38577 f 18996 enter 157 fq 32 59 449us close 0us prep 1079us flush 2411us
2026-08-18 08:36:40.085879+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058362 tx stats: # 38840 owait 1589 3395us finish 39198 bar2 38597 f 19003 enter 62 fq 21 25 398us close 0us prep 1411us flush 1374us
2026-08-18 08:36:59.346281+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058382 tx stats: # 38860 owait 1590 3393us finish 39218 bar2 38617 f 19021 enter 8 fq 41 46 953us close 0us prep 695us flush 2660us
2026-08-18 08:37:07.386292+0900 0xd9240    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 08:37:07.387484+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:37:07.387488+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:37:07.485421+0900 0xd9240    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:37:07.569243+0900 0xd9219    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:37:07.569399+0900 0xd9ae3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 08:37:07.587225+0900 0xd9ae3    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 08:37:07.587555+0900 0xd9ae3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 08:37:07.587557+0900 0xd9ae3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 08:37:07.587559+0900 0xd9ae3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 08:37:07.587611+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 08:37:07.604411+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:37:07.604412+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:52:06.003310+0900 0xd9b1c    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:52:06.003314+0900 0xd9b1c    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:52:06.009390+0900 0xd9b4c    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 08:52:06.009409+0900 0xd9b4c    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:52:06.009427+0900 0xd9b4c    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 08:52:06.009436+0900 0xd9b4c    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:52:06.009459+0900 0xd9b4c    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 08:52:06.133807+0900 0xd9ade    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:52:06.133818+0900 0xd9ade    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 08:52:06.133833+0900 0xd9ade    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 08:52:06.133839+0900 0xd9ade    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 08:52:06.137728+0900 0xd9ade    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 08:52:06.137861+0900 0xd9ad9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 08:52:06.137883+0900 0xd9ad9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:52:06.137989+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:52:06.137990+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:52:10.075793+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058402 tx stats: # 38880 owait 1590 3393us finish 39238 bar2 38637 f 19026 enter 81 fq 89 141 1014us close 0us prep 443us flush 586us
2026-08-18 08:52:15.754335+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058422 tx stats: # 38900 owait 1590 3393us finish 39258 bar2 38657 f 19027 enter 218 fq 22 43 503us close 0us prep 2034us flush 1775us
2026-08-18 08:52:23.116155+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058442 tx stats: # 38920 owait 1590 3393us finish 39278 bar2 38677 f 19028 enter 11 fq 17 39 291us close 0us prep 364us flush 1821us
2026-08-18 08:52:45.786797+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058462 tx stats: # 38940 owait 1591 3391us finish 39299 bar2 38697 f 19043 enter 12 fq 54 153 1370us close 0us prep 419us flush 3066us
2026-08-18 08:52:53.148971+0900 0xd9c6c    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 08:52:53.150123+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:52:53.150128+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:52:53.248217+0900 0xd9c6c    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:52:53.377618+0900 0xda107    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:52:53.377777+0900 0xd9c67    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 08:52:53.396010+0900 0xd9c67    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 08:52:53.396399+0900 0xd9c67    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 08:52:53.396403+0900 0xd9c67    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 08:52:53.396405+0900 0xd9c67    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 08:52:53.396446+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 08:52:53.413982+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:52:53.413984+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:52:55.584040+0900 0xda147    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:52:55.584045+0900 0xda147    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:52:55.590014+0900 0xda13e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 08:52:55.590035+0900 0xda13e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:52:55.590053+0900 0xda13e    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 08:52:55.590061+0900 0xda13e    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 08:52:55.590078+0900 0xda13e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 08:52:55.714390+0900 0xda147    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:52:55.714401+0900 0xda147    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 08:52:55.714414+0900 0xda147    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 08:52:55.714421+0900 0xda147    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 08:52:55.718418+0900 0xda147    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 08:52:55.720409+0900 0xda0f8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 08:52:55.720426+0900 0xda0f8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:52:55.720516+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:52:55.720519+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:52:56.017290+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058482 tx stats: # 38960 owait 1591 3391us finish 39319 bar2 38717 f 19043 enter 111 fq 93 144 16873us close 0us prep 612us flush 672us
2026-08-18 08:52:58.876238+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058502 tx stats: # 38980 owait 1591 3391us finish 39339 bar2 38737 f 19046 enter 12 fq 43 79 466us close 0us prep 271us flush 2262us
2026-08-18 08:53:07.167593+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058522 tx stats: # 39000 owait 1591 3391us finish 39359 bar2 38757 f 19057 enter 19 fq 51 322 647us close 0us prep 245us flush 473us
2026-08-18 08:53:29.713205+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058542 tx stats: # 39020 owait 1591 3391us finish 39379 bar2 38777 f 19062 enter 36 fq 20 26 415us close 0us prep 327us flush 703us
2026-08-18 08:53:46.568295+0900 0xda1de    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 08:53:46.569228+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:53:46.569231+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 08:53:46.659174+0900 0xda1de    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 08:53:46.762710+0900 0xda781    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 08:53:46.762965+0900 0xda783    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 08:53:46.780914+0900 0xda783    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 08:53:46.781318+0900 0xda783    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 08:53:46.781322+0900 0xda783    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 08:53:46.781324+0900 0xda783    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 08:53:46.781374+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 08:53:46.798567+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 08:53:46.798568+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:08:00.003816+0900 0xda7ed    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:08:00.003820+0900 0xda7ed    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:07:59.980615+0900 0xda1a4    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 09:07:59.980648+0900 0xda1a4    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 09:07:59.980657+0900 0xda1a4    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 09:07:59.980663+0900 0xda1a4    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 09:07:59.980696+0900 0xda1a4    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 09:08:00.105104+0900 0xda7f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 09:08:00.105117+0900 0xda7f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 09:08:00.105129+0900 0xda7f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 09:08:00.105134+0900 0xda7f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 09:08:00.109062+0900 0xda7f2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 09:08:00.109203+0900 0xda7ea    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 09:08:00.109233+0900 0xda7ea    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 09:08:00.109346+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:08:00.109347+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:08:01.237330+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058562 tx stats: # 39040 owait 1592 3390us finish 39399 bar2 38797 f 19063 enter 939 fq 59 69 4054us close 0us prep 3484us flush 2761us
2026-08-18 09:08:08.014564+0900 0xda7c4    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 09:08:15.028085+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058582 tx stats: # 39060 owait 1592 3390us finish 39419 bar2 38817 f 19073 enter 10 fq 17 18 230us close 0us prep 268us flush 2511us
2026-08-18 09:08:46.683970+0900 0xda967    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 09:08:46.684978+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:08:46.684982+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:08:46.746145+0900 0xda967    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 09:08:46.933117+0900 0xdae7b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 09:08:46.933652+0900 0xdae81    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 09:08:46.952377+0900 0xdae81    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 09:08:46.952815+0900 0xdae81    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 09:08:46.952846+0900 0xdae81    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 09:08:46.952852+0900 0xdae81    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 09:08:46.952948+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 09:08:46.978566+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:08:46.978571+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:21:21.974049+0900 0xdaec7    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:21:21.974055+0900 0xdaec7    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:21:21.979098+0900 0xda867    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 09:21:21.979114+0900 0xda867    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 09:21:21.979131+0900 0xda867    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 09:21:21.979140+0900 0xda867    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 09:21:21.979158+0900 0xda867    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 09:21:22.103439+0900 0xdaed5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 09:21:22.103452+0900 0xdaed5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 09:21:22.103469+0900 0xdaed5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 09:21:22.103475+0900 0xdaed5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 09:21:22.107451+0900 0xdaed5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 09:21:22.107578+0900 0xdaed5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 09:21:22.107600+0900 0xdaed5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 09:21:22.107709+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:21:22.107710+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:21:22.728199+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058602 tx stats: # 39080 owait 1592 3390us finish 39439 bar2 38837 f 19078 enter 1528 fq 108 221 2216us close 0us prep 2403us flush 1351us
2026-08-18 09:21:40.235867+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058622 tx stats: # 39100 owait 1593 3388us finish 39460 bar2 38857 f 19086 enter 208 fq 30 297 597us close 0us prep 1683us flush 1341us
2026-08-18 09:21:50.022664+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058642 tx stats: # 39120 owait 1594 3388us finish 39479 bar2 38877 f 19100 enter 5 fq 43 69 673us close 0us prep 261us flush 2593us
2026-08-18 09:22:09.072942+0900 0xdafba    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 09:22:09.073875+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:22:09.073878+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:22:09.159636+0900 0xdafba    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 09:22:09.298228+0900 0xdb31c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 09:22:09.298335+0900 0xdb30d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 09:22:09.316549+0900 0xdb30d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 09:22:09.316937+0900 0xdb30d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 09:22:09.316946+0900 0xdb30d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 09:22:09.316948+0900 0xdb30d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 09:22:09.317009+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 09:22:09.336185+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:22:09.336187+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:37:07.974059+0900 0xda1a5    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:37:07.974064+0900 0xda1a5    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:37:07.979795+0900 0xda1a5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 09:37:07.979812+0900 0xda1a5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 09:37:07.979832+0900 0xda1a5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 09:37:07.979842+0900 0xda1a5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 09:37:07.979869+0900 0xda1a5    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 09:37:08.104094+0900 0xdb389    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 09:37:08.104129+0900 0xdb3a1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 09:37:08.104146+0900 0xdb3a1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 09:37:08.104152+0900 0xdb3a1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 09:37:08.108058+0900 0xdb3a1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 09:37:08.108218+0900 0xdb3a1    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 09:37:08.108245+0900 0xdb3a1    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 09:37:08.108355+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:37:08.108356+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:37:08.131078+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058662 tx stats: # 39140 owait 1594 3388us finish 39499 bar2 38897 f 19113 enter 183 fq 24 62 338us close 0us prep 308us flush 471us
2026-08-18 09:37:12.818687+0900 0xdb510    Default     0x0                  0      0    kernel: (apfs) get_purgeable_record_id_for_lookup:889: disk3s5 ino 29626353 did not have a source-purge-id
2026-08-18 09:37:12.819684+0900 0xdb510    Default     0x0                  0      0    kernel: (apfs) get_purgeable_record_id_for_lookup:889: disk3s5 ino 29620536 did not have a source-purge-id
2026-08-18 09:37:12.820813+0900 0xdb510    Default     0x0                  0      0    kernel: (apfs) get_purgeable_record_id_for_lookup:889: disk3s5 ino 29559857 did not have a source-purge-id
2026-08-18 09:37:13.579221+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058682 tx stats: # 39160 owait 1596 3385us finish 39519 bar2 38917 f 19114 enter 14 fq 14 26 280us close 0us prep 222us flush 295us
2026-08-18 09:37:16.612359+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058702 tx stats: # 39180 owait 1597 3384us finish 39538 bar2 38936 f 19115 enter 53 fq 93 469 1525us close 0us prep 1587us flush 2046us
2026-08-18 09:37:42.009131+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058722 tx stats: # 39200 owait 1599 3382us finish 39558 bar2 38956 f 19119 enter 200 fq 49 90 393us close 0us prep 791us flush 576us
2026-08-18 09:37:49.180995+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058742 tx stats: # 39220 owait 1600 3380us finish 39578 bar2 38976 f 19127 enter 15 fq 80 198 836us close 0us prep 215us flush 2200us
2026-08-18 09:38:02.773332+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058762 tx stats: # 39240 owait 1601 3378us finish 39598 bar2 38996 f 19134 enter 1518 fq 51 125 556us close 0us prep 532us flush 874us
2026-08-18 09:38:05.352345+0900 0xdb5a5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 09:38:05.353359+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:38:05.353363+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:38:05.447720+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058782 tx stats: # 39260 owait 1604 3373us finish 39610 bar2 39008 f 19134 enter 249 fq 22 25 474us close 0us prep 2489us flush 736us
2026-08-18 09:38:05.450330+0900 0xdb5a5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 09:38:05.591480+0900 0xdbc7a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 09:38:05.591654+0900 0xdb5a6    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 09:38:05.609998+0900 0xdb5a6    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 09:38:05.610438+0900 0xdb5a6    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 09:38:05.610442+0900 0xdb5a6    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 09:38:05.610444+0900 0xdb5a6    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 09:38:05.610503+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 09:38:05.641918+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:38:05.641919+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:53:03.998203+0900 0xdbcdc    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:53:03.998208+0900 0xdbcdc    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:53:04.003698+0900 0xdbcdb    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 09:53:04.003707+0900 0xdbcdb    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 09:53:04.003716+0900 0xdbcdb    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 09:53:04.003721+0900 0xdbcdb    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 09:53:04.003730+0900 0xdbcdb    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 09:53:04.128050+0900 0xdbcca    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 09:53:04.128081+0900 0xdbcc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 09:53:04.128097+0900 0xdbcc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 09:53:04.128103+0900 0xdbcc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 09:53:04.132157+0900 0xdbcc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 09:53:04.132405+0900 0xdbcca    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 09:53:04.132447+0900 0xdbcca    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 09:53:04.132653+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:53:04.132655+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:53:07.518044+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058802 tx stats: # 39280 owait 1607 3368us finish 39631 bar2 39028 f 19134 enter 18 fq 29 43 324us close 0us prep 141us flush 300us
2026-08-18 09:53:07.553365+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058822 tx stats: # 39300 owait 1607 3368us finish 39651 bar2 39048 f 19134 enter 27 fq 15 28 133us close 0us prep 94us flush 190us
2026-08-18 09:53:26.929922+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058842 tx stats: # 39320 owait 1607 3368us finish 39671 bar2 39068 f 19143 enter 203 fq 71 90 1581us close 0us prep 1812us flush 1342us
2026-08-18 09:53:34.667908+0900 0xdbe55    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 09:53:34.667937+0900 0xdbe55    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 09:53:34.668601+0900 0xdbe55    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 09:53:35.189297+0900 0xdbe55    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-095334.local' snap_xid 4058850 extentref oid 776907 sblock oid 805103
2026-08-18 09:53:35.190329+0900 0xdbe55    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 09:53:35.442602+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058862 tx stats: # 39340 owait 1610 3364us finish 39691 bar2 39088 f 19149 enter 14 fq 34 94 247us close 4902us prep 227us flush 787us
2026-08-18 09:53:35.777548+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058882 tx stats: # 39360 owait 1611 3362us finish 39711 bar2 39108 f 19149 enter 11 fq 28 32 556us close 3us prep 865us flush 791us
2026-08-18 09:53:35.791966+0900 0xdbf83    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29599740
2026-08-18 09:53:35.791992+0900 0xdbf83    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 2023424:90112,6 for inode 29599740
2026-08-18 09:53:35.792812+0900 0xdbf83    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29599741
2026-08-18 09:53:35.792819+0900 0xdbf83    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 2023424:90112,6 for inode 29599741
2026-08-18 09:53:40.969237+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058902 tx stats: # 39380 owait 1612 3360us finish 39731 bar2 39128 f 19149 enter 26 fq 32 39 300us close 0us prep 227us flush 315us
2026-08-18 09:53:50.967077+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058922 tx stats: # 39400 owait 1612 3360us finish 39751 bar2 39148 f 19163 enter 9 fq 38 45 926us close 0us prep 353us flush 2252us
2026-08-18 09:53:51.177355+0900 0xdbdf0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 09:53:51.178462+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:53:51.178466+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 09:53:51.273373+0900 0xdbdf0    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 09:53:51.397595+0900 0xdc2fb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 09:53:51.397718+0900 0xdc2fb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 09:53:51.415154+0900 0xdc2fb    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 09:53:51.415518+0900 0xdc2fb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 09:53:51.415521+0900 0xdc2fb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 09:53:51.415523+0900 0xdc2fb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 09:53:51.415557+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 09:53:51.434247+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 09:53:51.434249+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 10:08:49.997924+0900 0xdc368    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 10:08:49.997928+0900 0xdc368    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 10:08:50.022789+0900 0xdaf63    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 10:08:50.022799+0900 0xdaf63    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 10:08:50.022808+0900 0xdaf63    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 10:08:50.022813+0900 0xdaf63    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 10:08:50.022823+0900 0xdaf63    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 10:08:50.147007+0900 0xdc340    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 10:08:50.147034+0900 0xdc340    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 10:08:50.147050+0900 0xdc340    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 10:08:50.147056+0900 0xdc340    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 10:08:50.151125+0900 0xdc340    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 10:08:50.151294+0900 0xdc32b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 10:08:50.151320+0900 0xdc32b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 10:08:50.151433+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 10:08:50.151434+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 10:08:53.917847+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058942 tx stats: # 39420 owait 1613 3358us finish 39771 bar2 39168 f 19169 enter 58 fq 25 39 180us close 0us prep 103us flush 170us
2026-08-18 10:08:53.947891+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058962 tx stats: # 39440 owait 1613 3358us finish 39791 bar2 39188 f 19169 enter 15 fq 18 37 118us close 0us prep 97us flush 200us
2026-08-18 10:08:56.106449+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4058982 tx stats: # 39460 owait 1613 3358us finish 39811 bar2 39208 f 19169 enter 63 fq 27 31 638us close 0us prep 570us flush 822us
2026-08-18 10:09:35.474977+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059002 tx stats: # 39480 owait 1613 3358us finish 39831 bar2 39228 f 19178 enter 94 fq 57 80 1645us close 0us prep 968us flush 3630us
2026-08-18 10:09:36.730070+0900 0xdc32e    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 10:09:36.731178+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 10:09:36.731183+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 10:09:36.829798+0900 0xdc32e    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 10:09:36.970602+0900 0xdca36    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 10:09:36.970690+0900 0xdca3b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 10:09:36.989068+0900 0xdca3b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 10:09:36.989446+0900 0xdca3b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 10:09:36.989450+0900 0xdca3b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 10:09:36.989453+0900 0xdca3b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 10:09:36.989523+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 10:09:37.053365+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 10:09:37.053370+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 10:22:23.016465+0900 0xdbd7b    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 10:22:23.016471+0900 0xdbd7b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 10:22:23.022271+0900 0xdbd7b    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 10:22:23.022281+0900 0xdbd7b    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 10:22:23.022305+0900 0xdbd7b    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 10:22:23.022311+0900 0xdbd7b    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 10:22:23.022320+0900 0xdbd7b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 10:22:23.147176+0900 0xdca45    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 10:22:23.147199+0900 0xdca45    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 10:22:23.147216+0900 0xdca45    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 10:22:23.147223+0900 0xdca45    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 10:22:23.151222+0900 0xdca45    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 10:22:23.184104+0900 0xdca45    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 10:22:23.184167+0900 0xdca45    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 10:22:23.184348+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 10:22:23.184350+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 10:22:25.230014+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059022 tx stats: # 39500 owait 1616 3352us finish 39850 bar2 39247 f 19182 enter 101 fq 16 26 199us close 0us prep 176us flush 275us
2026-08-18 10:22:30.441039+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059042 tx stats: # 39520 owait 1619 3346us finish 39870 bar2 39267 f 19183 enter 59 fq 44 72 399us close 0us prep 359us flush 360us
2026-08-18 10:22:32.354143+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059062 tx stats: # 39540 owait 1619 3346us finish 39890 bar2 39287 f 19186 enter 69 fq 45 535 1583us close 0us prep 730us flush 2777us
2026-08-18 10:22:46.107367+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059082 tx stats: # 39560 owait 1619 3346us finish 39910 bar2 39307 f 19193 enter 51 fq 16 24 478us close 0us prep 1494us flush 1496us
2026-08-18 10:23:06.915918+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemWillPowerOn to com.apple.iokit.IONVMeFamily
2026-08-18 10:23:06.915924+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000320
2026-08-18 10:23:06.917494+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 10:23:06.917498+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 10:23:06.921486+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 10:23:06.921487+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 10:23:06.925344+0900 0xdbd7b    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemHasPoweredOn to com.apple.iokit.IONVMeFamily
2026-08-18 10:23:06.925347+0900 0xdbd7b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000300
2026-08-18 10:23:07.322419+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059102 tx stats: # 39580 owait 1619 3346us finish 39930 bar2 39327 f 19197 enter 106 fq 76 119 803us close 2us prep 2968us flush 586us
2026-08-18 10:23:09.336619+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6682: disk3s5 apfs is being UN-locked!
2026-08-18 10:23:09.336636+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6815: disk3s5 apfs is now UN-locked! (flags 0x441001c2)
2026-08-18 10:23:09.424047+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_unlock_notification:6995: disk3s5 done processing un-lock keybag notification, err 0, (flags 0x441000c2)
2026-08-18 10:23:14.185596+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059122 tx stats: # 39600 owait 1621 3360us finish 39950 bar2 39347 f 19203 enter 101 fq 90 103 1028us close 20us prep 2788us flush 2148us
2026-08-18 10:23:21.123470+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059142 tx stats: # 39620 owait 1622 3358us finish 39970 bar2 39367 f 19207 enter 128 fq 34 38 933us close 0us prep 2324us flush 1346us
2026-08-18 10:23:24.272123+0900 0xdd359    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 10:23:32.494704+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059162 tx stats: # 39640 owait 1622 3358us finish 39990 bar2 39387 f 19218 enter 24 fq 84 117 1736us close 0us prep 564us flush 2602us
2026-08-18 10:23:40.096635+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059182 tx stats: # 39660 owait 1622 3358us finish 40010 bar2 39407 f 19228 enter 25 fq 20 23 272us close 0us prep 643us flush 740us
2026-08-18 10:23:53.610175+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059202 tx stats: # 39680 owait 1622 3358us finish 40030 bar2 39427 f 19240 enter 18 fq 59 180 719us close 0us prep 233us flush 2343us
2026-08-18 10:24:10.649130+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059222 tx stats: # 39700 owait 1622 3358us finish 40050 bar2 39447 f 19249 enter 17 fq 63 325 1447us close 0us prep 631us flush 2751us
2026-08-18 10:24:23.455972+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059242 tx stats: # 39720 owait 1623 3358us finish 40071 bar2 39467 f 19259 enter 11 fq 23 25 312us close 0us prep 485us flush 533us
2026-08-18 10:24:45.452868+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059262 tx stats: # 39740 owait 1623 3358us finish 40091 bar2 39487 f 19270 enter 28 fq 24 248 398us close 0us prep 372us flush 623us
2026-08-18 10:25:06.783212+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059282 tx stats: # 39760 owait 1623 3358us finish 40111 bar2 39507 f 19283 enter 37 fq 40 57 934us close 0us prep 1104us flush 1676us
2026-08-18 10:25:32.665383+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059302 tx stats: # 39780 owait 1623 3358us finish 40131 bar2 39527 f 19296 enter 6 fq 35 45 875us close 0us prep 386us flush 2843us
2026-08-18 10:26:03.554882+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059322 tx stats: # 39800 owait 1623 3358us finish 40151 bar2 39547 f 19306 enter 27 fq 45 53 956us close 0us prep 1081us flush 3411us
2026-08-18 10:26:27.391950+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059342 tx stats: # 39820 owait 1623 3358us finish 40171 bar2 39567 f 19313 enter 164 fq 34 120 831us close 0us prep 2957us flush 2960us
2026-08-18 10:26:34.867452+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059362 tx stats: # 39840 owait 1623 3358us finish 40191 bar2 39587 f 19326 enter 41 fq 20 26 426us close 0us prep 380us flush 721us
2026-08-18 10:26:58.497947+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059382 tx stats: # 39860 owait 1623 3358us finish 40213 bar2 39607 f 19337 enter 40 fq 35 125 698us close 0us prep 711us flush 2204us
2026-08-18 10:27:32.844013+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059402 tx stats: # 39880 owait 1623 3358us finish 40233 bar2 39627 f 19351 enter 24 fq 49 127 1125us close 0us prep 798us flush 2693us
2026-08-18 10:27:50.475655+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059422 tx stats: # 39900 owait 1624 3358us finish 40254 bar2 39647 f 19364 enter 91 fq 13 32 252us close 0us prep 1547us flush 1598us
2026-08-18 10:28:00.644377+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059442 tx stats: # 39920 owait 1627 3354us finish 40275 bar2 39667 f 19378 enter 5 fq 29 40 573us close 0us prep 350us flush 1615us
2026-08-18 10:28:18.358089+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059462 tx stats: # 39940 owait 1629 3354us finish 40297 bar2 39687 f 19393 enter 443 fq 394 920 3983us close 0us prep 1173us flush 3183us
2026-08-18 10:28:27.984759+0900 0xdf89d    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 10:28:28.035926+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059482 tx stats: # 39960 owait 1631 3351us finish 40319 bar2 39707 f 19395 enter 101 fq 147 216 2273us close 0us prep 1238us flush 2386us
2026-08-18 10:28:34.873884+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059502 tx stats: # 39980 owait 1631 3351us finish 40339 bar2 39727 f 19408 enter 55 fq 14 19 269us close 0us prep 477us flush 639us
2026-08-18 10:28:57.127149+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059522 tx stats: # 40000 owait 1631 3351us finish 40359 bar2 39747 f 19420 enter 3 fq 18 170 452us close 0us prep 248us flush 2717us
2026-08-18 10:29:27.438280+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059542 tx stats: # 40020 owait 1631 3351us finish 40380 bar2 39767 f 19433 enter 6 fq 19 28 358us close 0us prep 232us flush 2570us
2026-08-18 10:30:06.555242+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059562 tx stats: # 40040 owait 1632 3351us finish 40402 bar2 39787 f 19446 enter 568 fq 23 43 187us close 0us prep 2302us flush 2676us
2026-08-18 10:30:18.407491+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059582 tx stats: # 40060 owait 1632 3351us finish 40423 bar2 39807 f 19464 enter 2 fq 13 16 136us close 0us prep 135us flush 1943us
2026-08-18 10:30:59.249718+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059602 tx stats: # 40080 owait 1632 3351us finish 40443 bar2 39827 f 19480 enter 99 fq 23 37 319us close 0us prep 1193us flush 2181us
2026-08-18 10:31:57.411985+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059622 tx stats: # 40100 owait 1632 3351us finish 40463 bar2 39847 f 19498 enter 144 fq 15 19 195us close 0us prep 378us flush 2569us
2026-08-18 10:32:27.434910+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059642 tx stats: # 40120 owait 1633 3350us finish 40484 bar2 39867 f 19516 enter 6 fq 45 61 1090us close 0us prep 273us flush 2681us
2026-08-18 10:33:00.089284+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059662 tx stats: # 40140 owait 1633 3350us finish 40506 bar2 39887 f 19532 enter 42 fq 41 177 521us close 0us prep 1103us flush 2650us
2026-08-18 10:33:33.303174+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059682 tx stats: # 40160 owait 1633 3350us finish 40526 bar2 39907 f 19547 enter 9 fq 22 47 557us close 0us prep 325us flush 3086us
2026-08-18 10:34:03.418121+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059702 tx stats: # 40180 owait 1633 3350us finish 40548 bar2 39927 f 19565 enter 44 fq 81 366 1546us close 0us prep 364us flush 2815us
2026-08-18 10:34:10.273928+0900 0xe1546    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 10:34:10.273941+0900 0xe1546    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 18537); parent: com.apple.Mobile (pid 18536)
2026-08-18 10:34:10.273958+0900 0xe1546    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4059705)
2026-08-18 10:34:10.282797+0900 0xe1546    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 10:34:10.283337+0900 0xe1546    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 10:34:10.283427+0900 0xe1546    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 10:34:10.283504+0900 0xe1546    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 18537); parent: com.apple.Mobile (pid 18536)
2026-08-18 10:34:10.295466+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 10:34:10.295484+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 10:34:10.295530+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 10:34:10.295541+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 10:34:10.296381+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 18536); parent: launchd (pid 1)
2026-08-18 10:34:10.296403+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 10:34:10.297598+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 10:34:10.297763+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 10:34:10.352472+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 10:34:10.352491+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 18538); parent: com.apple.Mobile (pid 18536)
2026-08-18 10:34:10.352501+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4059707)
2026-08-18 10:34:10.356965+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 10:34:10.357079+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 10:34:10.357168+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 777526
2026-08-18 10:34:10.357198+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 10:34:10.828984+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 779828 -> 791180
2026-08-18 10:34:10.850608+0900 0xe159b    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4059708-4059708
2026-08-18 10:34:10.922922+0900 0xe159b    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4059708, om_snap_count 1 om_most_recent_snap 4059708
2026-08-18 10:34:10.922931+0900 0xe159b    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4059708
2026-08-18 10:34:10.923446+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 10:34:10.923773+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4059709)
2026-08-18 10:34:10.929872+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 10:34:10.929985+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 10:34:10.930076+0900 0xe1564    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 18538); parent: com.apple.Mobile (pid 18536)
2026-08-18 10:34:10.949411+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 18536); parent: launchd (pid 1)
2026-08-18 10:34:10.949446+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 10:34:10.949575+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 10:34:10.949846+0900 0xe1540    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 10:34:27.609302+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059722 tx stats: # 40200 owait 1636 3349us finish 40568 bar2 39947 f 19579 enter 105 fq 31 53 868us close 0us prep 301us flush 3604us
2026-08-18 10:34:37.911149+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059742 tx stats: # 40220 owait 1636 3349us finish 40590 bar2 39967 f 19593 enter 26 fq 38 44 630us close 0us prep 563us flush 2466us
2026-08-18 10:34:53.434656+0900 0xe1982    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(18786) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 10:34:53.500452+0900 0xe1ac1    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(18786) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 10:34:58.430420+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059762 tx stats: # 40240 owait 1638 3346us finish 40610 bar2 39987 f 19603 enter 26 fq 30 34 824us close 0us prep 623us flush 2233us
2026-08-18 10:35:16.911050+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059782 tx stats: # 40260 owait 1641 3341us finish 40630 bar2 40007 f 19613 enter 453 fq 61 73 1146us close 0us prep 2301us flush 1309us
2026-08-18 10:35:39.413867+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059802 tx stats: # 40280 owait 1641 3341us finish 40650 bar2 40027 f 19622 enter 8 fq 26 95 444us close 0us prep 227us flush 2091us
2026-08-18 10:36:09.439268+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059822 tx stats: # 40300 owait 1641 3341us finish 40670 bar2 40047 f 19635 enter 137 fq 32 114 668us close 0us prep 519us flush 2795us
2026-08-18 10:36:34.872338+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059842 tx stats: # 40320 owait 1641 3341us finish 40690 bar2 40067 f 19651 enter 83 fq 19 22 395us close 0us prep 349us flush 1070us
2026-08-18 10:36:34.874890+0900 0xd2df7    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29687009
2026-08-18 10:37:15.422394+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059862 tx stats: # 40340 owait 1641 3341us finish 40710 bar2 40087 f 19664 enter 14 fq 39 67 753us close 0us prep 307us flush 2204us
2026-08-18 10:38:00.098646+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059882 tx stats: # 40360 owait 1641 3341us finish 40730 bar2 40107 f 19677 enter 15 fq 84 600 1433us close 0us prep 576us flush 2358us
2026-08-18 10:38:34.035456+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059902 tx stats: # 40380 owait 1641 3341us finish 40750 bar2 40127 f 19694 enter 2 fq 12 16 255us close 0us prep 446us flush 1515us
2026-08-18 10:39:05.259605+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059922 tx stats: # 40400 owait 1642 3339us finish 40770 bar2 40147 f 19703 enter 93 fq 26 49 569us close 2us prep 1431us flush 1273us
2026-08-18 10:39:27.436260+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059942 tx stats: # 40420 owait 1642 3339us finish 40790 bar2 40167 f 19709 enter 25 fq 29 62 849us close 0us prep 1102us flush 2684us
2026-08-18 10:39:57.415728+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059962 tx stats: # 40440 owait 1644 3337us finish 40810 bar2 40187 f 19723 enter 27 fq 90 291 1560us close 58us prep 450us flush 1896us
2026-08-18 10:40:01.522944+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6525: disk3s5 apfs is being LOCKED!
2026-08-18 10:40:01.522963+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6664: disk3s5 apfs is now LOCKED (flags 0x441000d6)!
2026-08-18 10:40:01.611711+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_lock_notification:6949: disk3s5 done processing lock keybag notification, err 0, (flags 0x441000c6)
2026-08-18 10:40:04.000788+0900 0xe36b5    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 10:40:27.447630+0900 0x3ab1     Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29650036
2026-08-18 10:40:34.362166+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4059982 tx stats: # 40460 owait 1644 3337us finish 40830 bar2 40207 f 19732 enter 6 fq 45 53 1254us close 0us prep 404us flush 3063us
2026-08-18 10:41:13.844807+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060002 tx stats: # 40480 owait 1644 3337us finish 40850 bar2 40227 f 19741 enter 18 fq 17 30 292us close 0us prep 233us flush 358us
2026-08-18 10:41:28.510206+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060022 tx stats: # 40500 owait 1644 3337us finish 40870 bar2 40247 f 19745 enter 137 fq 37 65 888us close 0us prep 665us flush 2933us
2026-08-18 10:42:06.418302+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060042 tx stats: # 40520 owait 1644 3337us finish 40890 bar2 40267 f 19759 enter 24 fq 93 170 1432us close 0us prep 560us flush 1456us
2026-08-18 10:42:15.918851+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060062 tx stats: # 40540 owait 1644 3337us finish 40910 bar2 40287 f 19760 enter 15 fq 13 19 139us close 0us prep 144us flush 183us
2026-08-18 10:42:15.983180+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060082 tx stats: # 40560 owait 1644 3337us finish 40930 bar2 40307 f 19760 enter 61 fq 18 28 163us close 0us prep 226us flush 313us
2026-08-18 10:42:16.025680+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060102 tx stats: # 40580 owait 1644 3337us finish 40950 bar2 40327 f 19760 enter 16 fq 22 40 150us close 0us prep 122us flush 213us
2026-08-18 10:42:16.065213+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060122 tx stats: # 40600 owait 1645 3335us finish 40970 bar2 40347 f 19760 enter 14 fq 13 22 145us close 0us prep 129us flush 152us
2026-08-18 10:42:16.100491+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060142 tx stats: # 40620 owait 1645 3335us finish 40990 bar2 40367 f 19760 enter 29 fq 15 27 168us close 0us prep 139us flush 198us
2026-08-18 10:42:37.417311+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060162 tx stats: # 40640 owait 1645 3335us finish 41010 bar2 40387 f 19774 enter 5 fq 14 18 557us close 0us prep 419us flush 2801us
2026-08-18 10:43:20.629975+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060182 tx stats: # 40660 owait 1645 3335us finish 41030 bar2 40407 f 19790 enter 86 fq 28 45 568us close 0us prep 1992us flush 2531us
2026-08-18 10:43:42.410376+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060202 tx stats: # 40680 owait 1645 3335us finish 41050 bar2 40427 f 19807 enter 118 fq 14 17 223us close 0us prep 284us flush 2651us
2026-08-18 10:44:29.381332+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060222 tx stats: # 40700 owait 1646 3333us finish 41070 bar2 40447 f 19816 enter 517 fq 27 58 1008us close 0us prep 2677us flush 2226us
2026-08-18 10:45:07.674795+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060242 tx stats: # 40720 owait 1647 3331us finish 41090 bar2 40467 f 19831 enter 34 fq 67 86 1298us close 0us prep 974us flush 1004us
2026-08-18 10:45:51.417349+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060262 tx stats: # 40740 owait 1647 3331us finish 41110 bar2 40487 f 19843 enter 56 fq 18 21 379us close 0us prep 1042us flush 2723us
2026-08-18 10:46:08.200174+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060282 tx stats: # 40760 owait 1647 3331us finish 41130 bar2 40507 f 19849 enter 37 fq 73 242 1202us close 0us prep 1052us flush 839us
2026-08-18 10:46:48.415331+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060302 tx stats: # 40780 owait 1648 3329us finish 41150 bar2 40527 f 19863 enter 83 fq 30 37 426us close 0us prep 1118us flush 805us
2026-08-18 10:47:27.438743+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060322 tx stats: # 40800 owait 1648 3329us finish 41171 bar2 40547 f 19878 enter 9 fq 47 58 1412us close 0us prep 462us flush 1535us
2026-08-18 10:47:58.417272+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060342 tx stats: # 40820 owait 1649 3328us finish 41191 bar2 40567 f 19894 enter 77 fq 73 597 744us close 0us prep 439us flush 2020us
2026-08-18 10:48:35.469802+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060362 tx stats: # 40840 owait 1650 3326us finish 41211 bar2 40587 f 19910 enter 4 fq 16 18 405us close 0us prep 636us flush 2825us
2026-08-18 10:49:27.445806+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060382 tx stats: # 40860 owait 1653 3322us finish 41231 bar2 40607 f 19922 enter 36 fq 75 114 2037us close 0us prep 790us flush 2844us
2026-08-18 10:50:05.014077+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6682: disk3s5 apfs is being UN-locked!
2026-08-18 10:50:05.014083+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_unlock:6815: disk3s5 apfs is now UN-locked! (flags 0x441001c2)
2026-08-18 10:50:05.050973+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_unlock_notification:6995: disk3s5 done processing un-lock keybag notification, err 0, (flags 0x441000c2)
2026-08-18 10:50:05.213941+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060402 tx stats: # 40880 owait 1653 3322us finish 41251 bar2 40627 f 19939 enter 128 fq 74 84 1136us close 0us prep 1293us flush 3111us
2026-08-18 10:50:14.601091+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060422 tx stats: # 40900 owait 1653 3322us finish 41271 bar2 40647 f 19947 enter 216 fq 40 60 774us close 0us prep 2798us flush 1514us
2026-08-18 10:50:17.068860+0900 0xe62c9    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 10:50:20.111391+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060442 tx stats: # 40920 owait 1654 3320us finish 41292 bar2 40667 f 19953 enter 2 fq 21 26 533us close 0us prep 248us flush 2708us
2026-08-18 10:50:22.404959+0900 0xd2df7    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29688743
2026-08-18 10:50:35.790725+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060462 tx stats: # 40940 owait 1654 3320us finish 41312 bar2 40687 f 19964 enter 8 fq 39 60 967us close 0us prep 341us flush 1827us
2026-08-18 10:50:47.298512+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060482 tx stats: # 40960 owait 1655 3319us finish 41332 bar2 40707 f 19978 enter 209 fq 30 37 880us close 0us prep 1421us flush 1037us
2026-08-18 10:50:47.302363+0900 0xd2df7    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29689597
2026-08-18 10:51:07.086388+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060502 tx stats: # 40980 owait 1657 3316us finish 41353 bar2 40727 f 19984 enter 153 fq 70 88 814us close 8us prep 867us flush 1438us
2026-08-18 10:51:11.305644+0900 0xd2df7    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29689667
2026-08-18 10:51:21.584906+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060522 tx stats: # 41000 owait 1657 3316us finish 41373 bar2 40747 f 19992 enter 146 fq 48 56 702us close 0us prep 1636us flush 1364us
2026-08-18 10:51:42.410096+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060542 tx stats: # 41020 owait 1658 3314us finish 41393 bar2 40767 f 20006 enter 9 fq 38 169 655us close 27us prep 442us flush 2119us
2026-08-18 10:51:56.175928+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060562 tx stats: # 41040 owait 1658 3314us finish 41413 bar2 40787 f 20011 enter 11 fq 27 76 583us close 0us prep 378us flush 403us
2026-08-18 10:52:14.259696+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060582 tx stats: # 41060 owait 1658 3314us finish 41434 bar2 40807 f 20018 enter 19 fq 79 127 1317us close 0us prep 367us flush 2675us
2026-08-18 10:52:30.419960+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060602 tx stats: # 41080 owait 1658 3314us finish 41454 bar2 40827 f 20027 enter 52 fq 51 94 774us close 0us prep 1397us flush 1327us
2026-08-18 10:52:42.720348+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060622 tx stats: # 41100 owait 1658 3314us finish 41474 bar2 40847 f 20033 enter 41 fq 27 32 618us close 0us prep 673us flush 653us
2026-08-18 10:53:00.092014+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060642 tx stats: # 41120 owait 1658 3314us finish 41494 bar2 40867 f 20045 enter 9 fq 66 156 1383us close 0us prep 369us flush 2606us
2026-08-18 10:53:13.144079+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060662 tx stats: # 41140 owait 1659 3314us finish 41515 bar2 40887 f 20059 enter 33 fq 36 108 806us close 0us prep 183us flush 2995us
2026-08-18 10:53:20.684793+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060682 tx stats: # 41160 owait 1659 3314us finish 41535 bar2 40907 f 20072 enter 40 fq 17 147 370us close 0us prep 631us flush 1103us
2026-08-18 10:53:33.470726+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060702 tx stats: # 41180 owait 1659 3314us finish 41558 bar2 40927 f 20087 enter 10 fq 61 106 1114us close 0us prep 269us flush 2607us
2026-08-18 10:53:45.692646+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060722 tx stats: # 41200 owait 1659 3314us finish 41578 bar2 40947 f 20097 enter 9 fq 47 91 1207us close 0us prep 283us flush 2831us
2026-08-18 10:54:09.765388+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060742 tx stats: # 41220 owait 1659 3314us finish 41599 bar2 40967 f 20102 enter 62 fq 43 89 727us close 0us prep 1172us flush 913us
2026-08-18 10:54:27.490648+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060762 tx stats: # 41240 owait 1660 3313us finish 41619 bar2 40987 f 20111 enter 33 fq 37 47 893us close 0us prep 651us flush 1485us
2026-08-18 10:54:45.876834+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060782 tx stats: # 41260 owait 1660 3313us finish 41639 bar2 41007 f 20120 enter 51 fq 15 20 269us close 0us prep 806us flush 872us
2026-08-18 10:54:59.271111+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060802 tx stats: # 41280 owait 1660 3313us finish 41659 bar2 41027 f 20133 enter 58 fq 20 42 661us close 0us prep 1294us flush 2651us
2026-08-18 10:55:20.913875+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060822 tx stats: # 41300 owait 1660 3313us finish 41680 bar2 41047 f 20138 enter 3 fq 39 49 356us close 0us prep 205us flush 2112us
2026-08-18 10:55:34.916379+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060842 tx stats: # 41320 owait 1661 3311us finish 41700 bar2 41067 f 20142 enter 32 fq 42 55 520us close 0us prep 391us flush 537us
2026-08-18 10:55:54.063483+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060862 tx stats: # 41340 owait 1661 3311us finish 41720 bar2 41087 f 20154 enter 18 fq 21 53 292us close 0us prep 697us flush 2888us
2026-08-18 10:56:16.097786+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060882 tx stats: # 41360 owait 1661 3311us finish 41740 bar2 41107 f 20163 enter 247 fq 108 301 1310us close 0us prep 1292us flush 1048us
2026-08-18 10:56:32.170534+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060902 tx stats: # 41380 owait 1661 3311us finish 41760 bar2 41127 f 20177 enter 349 fq 29 33 303us close 0us prep 1636us flush 3378us
2026-08-18 10:56:49.330522+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060922 tx stats: # 41400 owait 1661 3311us finish 41780 bar2 41147 f 20183 enter 130 fq 73 131 1341us close 0us prep 1079us flush 1128us
2026-08-18 10:57:07.314409+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060942 tx stats: # 41420 owait 1661 3311us finish 41800 bar2 41167 f 20196 enter 60 fq 21 31 328us close 0us prep 480us flush 986us
2026-08-18 10:57:36.291108+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060962 tx stats: # 41440 owait 1663 3309us finish 41820 bar2 41187 f 20203 enter 15 fq 29 46 309us close 0us prep 545us flush 1530us
2026-08-18 10:57:58.448478+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4060982 tx stats: # 41460 owait 1663 3309us finish 41839 bar2 41206 f 20212 enter 102 fq 67 167 1413us close 0us prep 822us flush 1888us
2026-08-18 10:58:12.385141+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061002 tx stats: # 41480 owait 1663 3309us finish 41860 bar2 41226 f 20226 enter 67 fq 23 41 485us close 0us prep 541us flush 1425us
2026-08-18 10:58:34.896156+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061022 tx stats: # 41500 owait 1663 3309us finish 41880 bar2 41246 f 20234 enter 65 fq 23 27 271us close 6us prep 256us flush 451us
2026-08-18 10:58:49.373859+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061042 tx stats: # 41520 owait 1663 3309us finish 41900 bar2 41266 f 20244 enter 116 fq 39 78 413us close 0us prep 849us flush 722us
2026-08-18 10:59:14.370787+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061062 tx stats: # 41540 owait 1664 3308us finish 41920 bar2 41286 f 20249 enter 52 fq 29 43 411us close 0us prep 430us flush 420us
2026-08-18 10:59:32.405149+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061082 tx stats: # 41560 owait 1664 3308us finish 41941 bar2 41306 f 20257 enter 105 fq 17 28 332us close 0us prep 1718us flush 2084us
2026-08-18 10:59:44.385655+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061102 tx stats: # 41580 owait 1664 3308us finish 41961 bar2 41326 f 20266 enter 110 fq 20 31 251us close 0us prep 522us flush 725us
2026-08-18 11:00:05.626357+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061122 tx stats: # 41600 owait 1664 3308us finish 41981 bar2 41346 f 20276 enter 280 fq 47 55 759us close 0us prep 890us flush 1269us
2026-08-18 11:00:22.423071+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061142 tx stats: # 41620 owait 1664 3308us finish 42001 bar2 41366 f 20287 enter 14 fq 36 64 559us close 0us prep 321us flush 1258us
2026-08-18 11:00:37.375475+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061162 tx stats: # 41640 owait 1664 3308us finish 42022 bar2 41386 f 20295 enter 3 fq 15 27 188us close 0us prep 158us flush 1305us
2026-08-18 11:01:07.391998+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061182 tx stats: # 41660 owait 1667 3303us finish 42041 bar2 41406 f 20303 enter 290 fq 74 91 1388us close 0us prep 794us flush 2610us
2026-08-18 11:01:27.916920+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061202 tx stats: # 41680 owait 1667 3303us finish 42061 bar2 41426 f 20314 enter 26 fq 21 45 374us close 0us prep 251us flush 1614us
2026-08-18 11:01:37.430899+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061222 tx stats: # 41700 owait 1667 3303us finish 42081 bar2 41446 f 20324 enter 25 fq 14 16 105us close 0us prep 185us flush 592us
2026-08-18 11:02:07.438020+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061242 tx stats: # 41720 owait 1667 3303us finish 42101 bar2 41466 f 20335 enter 214 fq 39 109 480us close 0us prep 1476us flush 3136us
2026-08-18 11:02:11.194040+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061262 tx stats: # 41740 owait 1668 3302us finish 42121 bar2 41486 f 20338 enter 143 fq 25 50 675us close 0us prep 1180us flush 640us
2026-08-18 11:02:15.433771+0900 0xea872    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 11:02:15.765724+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061282 tx stats: # 41760 owait 1669 3301us finish 42141 bar2 41506 f 20338 enter 525 fq 47 57 723us close 0us prep 1804us flush 1086us
2026-08-18 11:02:36.988976+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061302 tx stats: # 41780 owait 1671 3298us finish 42161 bar2 41526 f 20346 enter 12 fq 52 290 814us close 0us prep 221us flush 1525us
2026-08-18 11:02:54.772839+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061322 tx stats: # 41800 owait 1672 3296us finish 42181 bar2 41546 f 20361 enter 172 fq 51 71 1113us close 0us prep 872us flush 1684us
2026-08-18 11:03:06.009613+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061342 tx stats: # 41820 owait 1673 3295us finish 42201 bar2 41566 f 20366 enter 32 fq 31 43 967us close 0us prep 1178us flush 1266us
2026-08-18 11:03:33.385376+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061362 tx stats: # 41840 owait 1675 3295us finish 42221 bar2 41586 f 20377 enter 24 fq 22 60 416us close 0us prep 505us flush 1716us
2026-08-18 11:03:56.819826+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061382 tx stats: # 41860 owait 1675 3295us finish 42241 bar2 41606 f 20384 enter 244 fq 26 100 813us close 0us prep 1453us flush 1254us
2026-08-18 11:04:05.437382+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061402 tx stats: # 41880 owait 1675 3295us finish 42261 bar2 41626 f 20397 enter 130 fq 48 55 447us close 0us prep 472us flush 1873us
2026-08-18 11:04:29.111055+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061422 tx stats: # 41900 owait 1676 3294us finish 42282 bar2 41646 f 20401 enter 484 fq 64 90 802us close 0us prep 2192us flush 954us
2026-08-18 11:04:37.101270+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061442 tx stats: # 41920 owait 1677 3292us finish 42302 bar2 41666 f 20415 enter 5 fq 18 24 458us close 0us prep 212us flush 2265us
2026-08-18 11:05:01.422652+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061462 tx stats: # 41940 owait 1677 3292us finish 42322 bar2 41686 f 20424 enter 58 fq 24 103 705us close 0us prep 1841us flush 2848us
2026-08-18 11:05:17.688805+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061482 tx stats: # 41960 owait 1677 3292us finish 42343 bar2 41706 f 20433 enter 22 fq 38 111 632us close 0us prep 687us flush 747us
2026-08-18 11:05:37.188752+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061502 tx stats: # 41980 owait 1677 3292us finish 42363 bar2 41726 f 20440 enter 20 fq 61 133 1581us close 0us prep 518us flush 1258us
2026-08-18 11:05:54.205508+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061522 tx stats: # 42000 owait 1677 3292us finish 42383 bar2 41746 f 20450 enter 137 fq 78 94 857us close 0us prep 2210us flush 1557us
2026-08-18 11:06:12.138281+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061542 tx stats: # 42020 owait 1677 3292us finish 42403 bar2 41766 f 20454 enter 9 fq 40 330 881us close 0us prep 250us flush 2427us
2026-08-18 11:06:33.609100+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061562 tx stats: # 42040 owait 1677 3292us finish 42423 bar2 41786 f 20462 enter 95 fq 67 81 837us close 0us prep 1514us flush 1762us
2026-08-18 11:06:47.428045+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061582 tx stats: # 42060 owait 1677 3292us finish 42443 bar2 41806 f 20471 enter 170 fq 57 143 755us close 0us prep 675us flush 2850us
2026-08-18 11:07:03.695147+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061602 tx stats: # 42080 owait 1677 3292us finish 42463 bar2 41826 f 20480 enter 83 fq 31 41 954us close 0us prep 1309us flush 1061us
2026-08-18 11:07:21.349786+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061622 tx stats: # 42100 owait 1677 3292us finish 42483 bar2 41846 f 20489 enter 37 fq 18 87 287us close 0us prep 972us flush 1976us
2026-08-18 11:07:37.366469+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061642 tx stats: # 42120 owait 1677 3292us finish 42503 bar2 41866 f 20497 enter 3 fq 31 432 666us close 0us prep 272us flush 1818us
2026-08-18 11:07:54.355191+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061662 tx stats: # 42140 owait 1677 3292us finish 42523 bar2 41886 f 20511 enter 2 fq 26 35 417us close 0us prep 225us flush 1454us
2026-08-18 11:08:20.187898+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061682 tx stats: # 42160 owait 1677 3292us finish 42543 bar2 41906 f 20516 enter 70 fq 17 22 145us close 0us prep 521us flush 522us
2026-08-18 11:08:37.438625+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061702 tx stats: # 42180 owait 1678 3291us finish 42563 bar2 41926 f 20525 enter 60 fq 40 83 440us close 0us prep 749us flush 1823us
2026-08-18 11:08:54.008874+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061722 tx stats: # 42200 owait 1678 3291us finish 42583 bar2 41946 f 20537 enter 114 fq 40 85 415us close 0us prep 1074us flush 2057us
2026-08-18 11:09:09.059104+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061742 tx stats: # 42220 owait 1680 3288us finish 42603 bar2 41966 f 20550 enter 68 fq 16 22 212us close 0us prep 1219us flush 956us
2026-08-18 11:09:30.351634+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061762 tx stats: # 42240 owait 1680 3288us finish 42623 bar2 41986 f 20556 enter 26 fq 38 127 866us close 0us prep 847us flush 2183us
2026-08-18 11:09:39.146446+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061782 tx stats: # 42260 owait 1680 3288us finish 42643 bar2 42006 f 20564 enter 28 fq 21 39 224us close 0us prep 413us flush 877us
2026-08-18 11:10:03.360099+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061802 tx stats: # 42280 owait 1680 3288us finish 42663 bar2 42026 f 20575 enter 84 fq 90 131 1979us close 0us prep 1492us flush 3153us
2026-08-18 11:10:12.113129+0900 0xed9a8    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 11:10:20.975826+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061822 tx stats: # 42300 owait 1683 3300us finish 42684 bar2 42046 f 20586 enter 323 fq 48 77 653us close 40us prep 880us flush 3101us
2026-08-18 11:10:28.654172+0900 0x3aaf     Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29686834
2026-08-18 11:10:41.832399+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061842 tx stats: # 42320 owait 1686 3295us finish 42704 bar2 42066 f 20599 enter 211 fq 38 51 801us close 0us prep 2073us flush 3138us
2026-08-18 11:11:03.129305+0900 0xee2b2    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 11:11:03.129337+0900 0xee2b2    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 11:11:03.130291+0900 0xee2b2    Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 11:11:03.314113+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061862 tx stats: # 42340 owait 1688 3295us finish 42725 bar2 42086 f 20608 enter 407 fq 490 735 5277us close 0us prep 1670us flush 708us
2026-08-18 11:11:03.635113+0900 0xee2b2    Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-111103.local' snap_xid 4061866 extentref oid 773481 sblock oid 791298
2026-08-18 11:11:03.636229+0900 0xee2b2    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 11:11:06.364935+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061882 tx stats: # 42360 owait 1692 3289us finish 42745 bar2 42106 f 20615 enter 34 fq 48 55 1222us close 3us prep 351us flush 2868us
2026-08-18 11:11:28.445573+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061902 tx stats: # 42380 owait 1693 3288us finish 42769 bar2 42126 f 20629 enter 258 fq 86 94 1850us close 0us prep 4489us flush 1638us
2026-08-18 11:11:39.351464+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061922 tx stats: # 42400 owait 1693 3288us finish 42789 bar2 42146 f 20638 enter 4 fq 17 21 216us close 0us prep 141us flush 1831us
2026-08-18 11:12:17.297258+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061942 tx stats: # 42420 owait 1694 3288us finish 42810 bar2 42166 f 20656 enter 151 fq 26 34 334us close 0us prep 768us flush 2799us
2026-08-18 11:12:22.841395+0900 0xeee10    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 11:12:29.572784+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061962 tx stats: # 42440 owait 1694 3288us finish 42832 bar2 42186 f 20666 enter 257 fq 156 170 1891us close 1us prep 3534us flush 2746us
2026-08-18 11:12:51.395788+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4061982 tx stats: # 42460 owait 1694 3288us finish 42852 bar2 42206 f 20682 enter 176 fq 21 88 280us close 0us prep 1499us flush 3044us
2026-08-18 11:13:06.080640+0900 0xeeb03    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(27738) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 11:13:17.744283+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062002 tx stats: # 42480 owait 1694 3288us finish 42873 bar2 42226 f 20694 enter 86 fq 35 53 610us close 0us prep 1097us flush 1970us
2026-08-18 11:13:33.065307+0900 0xef4e6    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: ctkd(27738) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 11:13:37.848487+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062022 tx stats: # 42500 owait 1695 3287us finish 42893 bar2 42246 f 20700 enter 51 fq 30 37 412us close 0us prep 652us flush 2839us
2026-08-18 11:14:23.409611+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062042 tx stats: # 42520 owait 1695 3287us finish 42914 bar2 42266 f 20716 enter 56 fq 50 307 1066us close 0us prep 772us flush 1985us
2026-08-18 11:14:54.555311+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062062 tx stats: # 42540 owait 1696 3286us finish 42934 bar2 42286 f 20733 enter 30 fq 32 39 606us close 0us prep 440us flush 1500us
2026-08-18 11:15:07.923304+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062082 tx stats: # 42560 owait 1696 3286us finish 42954 bar2 42306 f 20743 enter 41 fq 45 54 887us close 0us prep 476us flush 521us
2026-08-18 11:15:36.375546+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062102 tx stats: # 42580 owait 1696 3286us finish 42974 bar2 42326 f 20747 enter 210 fq 24 32 298us close 0us prep 893us flush 1010us
2026-08-18 11:16:04.357750+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062122 tx stats: # 42600 owait 1696 3286us finish 42994 bar2 42346 f 20758 enter 145 fq 40 115 653us close 0us prep 1275us flush 1277us
2026-08-18 11:16:38.042227+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062142 tx stats: # 42620 owait 1696 3286us finish 43015 bar2 42366 f 20775 enter 42 fq 60 68 1415us close 0us prep 371us flush 2650us
2026-08-18 11:17:17.783085+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062162 tx stats: # 42640 owait 1696 3286us finish 43036 bar2 42386 f 20790 enter 9 fq 43 120 1071us close 0us prep 378us flush 1188us
2026-08-18 11:17:51.438458+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062182 tx stats: # 42660 owait 1696 3286us finish 43056 bar2 42406 f 20804 enter 13 fq 68 103 1218us close 0us prep 378us flush 1372us
2026-08-18 11:18:33.408004+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062202 tx stats: # 42680 owait 1696 3286us finish 43076 bar2 42426 f 20820 enter 3 fq 20 42 236us close 0us prep 145us flush 2217us
2026-08-18 11:19:23.411532+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062222 tx stats: # 42700 owait 1696 3286us finish 43097 bar2 42446 f 20831 enter 98 fq 21 31 367us close 0us prep 1650us flush 933us
2026-08-18 11:19:33.164567+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062242 tx stats: # 42720 owait 1696 3286us finish 43117 bar2 42466 f 20841 enter 118 fq 69 128 641us close 1us prep 1107us flush 1422us
2026-08-18 11:19:36.580225+0900 0xf0536    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 11:19:58.099776+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062262 tx stats: # 42740 owait 1696 3286us finish 43137 bar2 42486 f 20851 enter 614 fq 20 42 214us close 0us prep 1703us flush 1852us
2026-08-18 11:20:33.128620+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062282 tx stats: # 42760 owait 1696 3286us finish 43158 bar2 42506 f 20861 enter 286 fq 55 83 656us close 0us prep 3716us flush 2886us
2026-08-18 11:20:39.354228+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062302 tx stats: # 42780 owait 1697 3285us finish 43178 bar2 42526 f 20873 enter 3 fq 17 32 276us close 0us prep 190us flush 2395us
2026-08-18 11:21:10.299168+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062322 tx stats: # 42800 owait 1697 3285us finish 43198 bar2 42546 f 20883 enter 65 fq 36 43 467us close 0us prep 448us flush 664us
2026-08-18 11:21:10.500898+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062342 tx stats: # 42820 owait 1697 3285us finish 43218 bar2 42566 f 20883 enter 16 fq 18 40 238us close 0us prep 277us flush 368us
2026-08-18 11:21:12.865862+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062362 tx stats: # 42840 owait 1697 3285us finish 43238 bar2 42586 f 20887 enter 317 fq 14 21 144us close 0us prep 913us flush 1934us
2026-08-18 11:21:30.653476+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062382 tx stats: # 42860 owait 1698 3283us finish 43258 bar2 42606 f 20893 enter 13 fq 34 111 436us close 0us prep 376us flush 496us
2026-08-18 11:21:37.966905+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062402 tx stats: # 42880 owait 1698 3283us finish 43278 bar2 42626 f 20894 enter 96 fq 20 42 238us close 0us prep 581us flush 2073us
2026-08-18 11:21:42.456524+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062422 tx stats: # 42900 owait 1698 3283us finish 43298 bar2 42646 f 20903 enter 20 fq 23 104 280us close 0us prep 1451us flush 360us
2026-08-18 11:21:42.555037+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062442 tx stats: # 42920 owait 1698 3283us finish 43318 bar2 42666 f 20903 enter 1 fq 11 13 100us close 0us prep 115us flush 195us
2026-08-18 11:21:42.604569+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062462 tx stats: # 42940 owait 1698 3283us finish 43338 bar2 42686 f 20903 enter 1 fq 10 11 98us close 0us prep 118us flush 232us
2026-08-18 11:21:42.626386+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062482 tx stats: # 42960 owait 1698 3283us finish 43358 bar2 42706 f 20903 enter 1 fq 9 11 84us close 0us prep 105us flush 166us
2026-08-18 11:21:45.348478+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062502 tx stats: # 42980 owait 1698 3283us finish 43378 bar2 42726 f 20904 enter 5 fq 10 11 81us close 0us prep 235us flush 1409us
2026-08-18 11:21:50.257244+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062522 tx stats: # 43000 owait 1698 3283us finish 43398 bar2 42746 f 20907 enter 15 fq 9 11 105us close 0us prep 314us flush 326us
2026-08-18 11:22:10.590708+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062542 tx stats: # 43020 owait 1699 3281us finish 43418 bar2 42766 f 20917 enter 8 fq 24 48 245us close 0us prep 162us flush 1192us
2026-08-18 11:22:34.835446+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062562 tx stats: # 43040 owait 1699 3281us finish 43438 bar2 42786 f 20923 enter 44 fq 38 64 439us close 0us prep 1174us flush 2044us
2026-08-18 11:22:51.356995+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062582 tx stats: # 43060 owait 1699 3281us finish 43458 bar2 42806 f 20937 enter 16 fq 50 141 976us close 0us prep 248us flush 1797us
2026-08-18 11:23:10.745943+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062602 tx stats: # 43080 owait 1699 3281us finish 43479 bar2 42826 f 20943 enter 29 fq 27 52 264us close 0us prep 252us flush 931us
2026-08-18 11:23:30.094493+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062622 tx stats: # 43100 owait 1700 3280us finish 43500 bar2 42846 f 20954 enter 16 fq 31 46 210us close 0us prep 122us flush 2559us
2026-08-18 11:23:40.769374+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062642 tx stats: # 43120 owait 1700 3280us finish 43520 bar2 42866 f 20967 enter 8 fq 54 61 1374us close 0us prep 396us flush 2984us
2026-08-18 11:23:54.355909+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062662 tx stats: # 43140 owait 1703 3278us finish 43541 bar2 42886 f 20976 enter 28 fq 58 389 1200us close 0us prep 309us flush 1468us
2026-08-18 11:24:10.843985+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062682 tx stats: # 43160 owait 1703 3278us finish 43561 bar2 42906 f 20986 enter 9 fq 22 31 269us close 0us prep 299us flush 1357us
2026-08-18 11:24:31.070807+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062702 tx stats: # 43180 owait 1703 3278us finish 43581 bar2 42926 f 20991 enter 87 fq 88 101 859us close 0us prep 615us flush 1056us
2026-08-18 11:24:40.855566+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062722 tx stats: # 43200 owait 1703 3278us finish 43601 bar2 42946 f 21002 enter 169 fq 19 22 232us close 0us prep 669us flush 2248us
2026-08-18 11:24:58.393861+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062742 tx stats: # 43220 owait 1703 3278us finish 43621 bar2 42966 f 21013 enter 6 fq 23 35 281us close 0us prep 155us flush 2570us
2026-08-18 11:25:10.553201+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062762 tx stats: # 43240 owait 1703 3278us finish 43641 bar2 42986 f 21016 enter 61 fq 27 31 256us close 0us prep 589us flush 567us
2026-08-18 11:25:32.583185+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062782 tx stats: # 43260 owait 1703 3278us finish 43661 bar2 43006 f 21024 enter 176 fq 64 72 547us close 0us prep 805us flush 817us
2026-08-18 11:25:42.441785+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062802 tx stats: # 43280 owait 1703 3278us finish 43681 bar2 43026 f 21036 enter 51 fq 23 27 252us close 0us prep 1006us flush 1078us
2026-08-18 11:25:53.285627+0900 0x457      Default     0x0                  0      0    kernel: (apfs) apfs_vnop_reclaim:16349: disk3s5 Releasing space reserved for inode 455481 (dstream 1079472/2101248)
2026-08-18 11:25:55.705420+0900 0xf4140    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 11:25:55.705429+0900 0xf4140    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 30814); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:55.705440+0900 0xf4140    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4062817)
2026-08-18 11:25:55.726239+0900 0xf4140    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 11:25:55.728489+0900 0xf4140    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 11:25:55.728607+0900 0xf4140    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 11:25:55.728691+0900 0xf4140    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 30814); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:55.781059+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 11:25:55.781074+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 11:25:55.781099+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 11:25:55.781106+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 11:25:55.784336+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 30812); parent: launchd (pid 1)
2026-08-18 11:25:55.784363+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 11:25:55.785659+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 11:25:55.786726+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 11:25:55.864916+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 11:25:55.864932+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 30818); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:55.864940+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4062819)
2026-08-18 11:25:55.868192+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 11:25:55.868291+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 11:25:55.868389+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 786301
2026-08-18 11:25:55.868408+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 11:25:56.184687+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 791180 -> 803813
2026-08-18 11:25:56.219847+0900 0xf417d    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4062820-4062820
2026-08-18 11:25:56.270411+0900 0xf417d    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4062820, om_snap_count 1 om_most_recent_snap 4062820
2026-08-18 11:25:56.270419+0900 0xf417d    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4062820
2026-08-18 11:25:56.270820+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 11:25:56.271051+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4062822)
2026-08-18 11:25:56.273934+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062822 tx stats: # 43300 owait 1705 3288us finish 43700 bar2 43046 f 21044 enter 108 fq 103 128 907us close 17906us prep 1150us flush 4251us
2026-08-18 11:25:56.274172+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 11:25:56.274281+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 11:25:56.274376+0900 0xf415f    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 30818); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:56.291148+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 30812); parent: launchd (pid 1)
2026-08-18 11:25:56.291164+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 11:25:56.292236+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 11:25:56.294839+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 11:25:56.470059+0900 0xf41a4    Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 11:25:56.470079+0900 0xf41a4    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mounting volume Recovery, requested by: mount_apfs (pid 30821); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:56.470504+0900 0xf41a4    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 11:25:56.470687+0900 0xf41a4    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 11:25:56.470695+0900 0xf41a4    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 11:25:56.470739+0900 0xf41a4    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mount-complete volume Recovery, requested by: mount_apfs (pid 30821); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:56.505802+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: com.apple.MobileSoftwareUpdate. (pid 30812); parent: launchd (pid 1)
2026-08-18 11:25:56.505822+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s3 waiting for purgatory cleaner to finish
2026-08-18 11:25:56.507450+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 11:25:56.509040+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 11:25:56.623450+0900 0xf41b8    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 11:25:56.623470+0900 0xf41b8    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 30823); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:56.623493+0900 0xf41b8    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4062826)
2026-08-18 11:25:56.628008+0900 0xf41b8    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 11:25:56.628103+0900 0xf41b8    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 11:25:56.628165+0900 0xf41b8    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 11:25:56.628229+0900 0xf41b8    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 30823); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:56.646702+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 11:25:56.646724+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 11:25:56.646770+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 11:25:56.646782+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 11:25:56.648139+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 30812); parent: launchd (pid 1)
2026-08-18 11:25:56.648160+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 11:25:56.649212+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 11:25:56.653614+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 11:25:56.711119+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 11:25:56.711135+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 30825); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:56.711143+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4062828)
2026-08-18 11:25:56.714679+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 11:25:56.714737+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 11:25:56.714802+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 802945
2026-08-18 11:25:56.714825+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 11:25:56.749913+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 803813 -> 793227
2026-08-18 11:25:56.765629+0900 0xf41cd    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4062829-4062829
2026-08-18 11:25:56.794307+0900 0xf41cd    Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4062829, om_snap_count 1 om_most_recent_snap 4062829
2026-08-18 11:25:56.794318+0900 0xf41cd    Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4062829
2026-08-18 11:25:56.794867+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 11:25:56.796414+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4062830)
2026-08-18 11:25:56.800294+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 11:25:56.800397+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 11:25:56.800472+0900 0xf41c2    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 30825); parent: com.apple.Mobile (pid 30812)
2026-08-18 11:25:56.819574+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 30812); parent: launchd (pid 1)
2026-08-18 11:25:56.819611+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 11:25:56.819748+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 11:25:56.820180+0900 0xf4134    Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 11:26:05.594819+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062842 tx stats: # 43320 owait 1710 3284us finish 43719 bar2 43066 f 21053 enter 6554 fq 43 74 456us close 0us prep 2929us flush 2829us
2026-08-18 11:26:25.969215+0900 0xf464f    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 11:26:26.826017+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062862 tx stats: # 43340 owait 1713 3284us finish 43739 bar2 43086 f 21057 enter 184 fq 63 92 873us close 0us prep 1175us flush 849us
2026-08-18 11:26:30.189163+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062882 tx stats: # 43360 owait 1715 3281us finish 43756 bar2 43103 f 21059 enter 106 fq 48 55 752us close 0us prep 2401us flush 1718us
2026-08-18 11:26:36.532133+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062902 tx stats: # 43380 owait 1717 3278us finish 43776 bar2 43123 f 21063 enter 24 fq 40 55 367us close 0us prep 610us flush 740us
2026-08-18 11:27:03.383387+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062922 tx stats: # 43400 owait 1717 3278us finish 43796 bar2 43143 f 21081 enter 30 fq 120 149 1578us close 0us prep 590us flush 2259us
2026-08-18 11:27:20.278970+0900 0xf4d10    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 11:27:20.531320+0900 0x457      Default     0x0                  0      0    kernel: (apfs) apfs_vnop_reclaim:16349: disk3s5 Releasing space reserved for inode 1591289 (dstream 3345472/4333568)
2026-08-18 11:27:21.132782+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062942 tx stats: # 43420 owait 1717 3278us finish 43816 bar2 43163 f 21083 enter 4 fq 23 31 221us close 0us prep 90us flush 134us
2026-08-18 11:27:21.194490+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062962 tx stats: # 43440 owait 1717 3278us finish 43836 bar2 43183 f 21083 enter 1 fq 10 11 98us close 0us prep 50us flush 99us
2026-08-18 11:27:21.270112+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4062982 tx stats: # 43460 owait 1717 3278us finish 43856 bar2 43203 f 21083 enter 3 fq 11 13 118us close 0us prep 106us flush 151us
2026-08-18 11:27:21.282285+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063002 tx stats: # 43480 owait 1717 3278us finish 43876 bar2 43223 f 21083 enter 1 fq 10 12 84us close 0us prep 36us flush 79us
2026-08-18 11:27:26.494249+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063022 tx stats: # 43500 owait 1718 3276us finish 43896 bar2 43243 f 21083 enter 6 fq 19 23 556us close 0us prep 370us flush 470us
2026-08-18 11:27:38.899304+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063042 tx stats: # 43520 owait 1718 3276us finish 43916 bar2 43263 f 21090 enter 41 fq 144 195 1337us close 0us prep 854us flush 2548us
2026-08-18 11:28:05.627026+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063062 tx stats: # 43540 owait 1718 3276us finish 43936 bar2 43283 f 21103 enter 150 fq 133 146 977us close 0us prep 2491us flush 2933us
2026-08-18 11:28:19.431121+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063082 tx stats: # 43560 owait 1718 3276us finish 43956 bar2 43303 f 21108 enter 106 fq 76 149 1147us close 0us prep 1293us flush 1371us
2026-08-18 11:28:34.778455+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063102 tx stats: # 43580 owait 1718 3276us finish 43977 bar2 43323 f 21117 enter 55 fq 64 80 1015us close 0us prep 449us flush 665us
2026-08-18 11:28:38.930238+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063122 tx stats: # 43600 owait 1718 3276us finish 43997 bar2 43343 f 21126 enter 4 fq 13 17 238us close 0us prep 250us flush 2709us
2026-08-18 11:28:59.466966+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063142 tx stats: # 43620 owait 1720 3273us finish 44017 bar2 43363 f 21135 enter 102 fq 44 141 651us close 0us prep 1023us flush 987us
2026-08-18 11:29:11.437982+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063162 tx stats: # 43640 owait 1720 3273us finish 44037 bar2 43383 f 21146 enter 47 fq 26 68 450us close 0us prep 659us flush 2070us
2026-08-18 11:29:32.158569+0900 0xf5f9b    Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 11:29:32.636692+0900 0xf602a    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_pageout : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 11:29:32.765130+0900 0xf5c0f    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AudiovisualThumbnailExtension(31720) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 11:29:32.970812+0900 0xf6030    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_pageout : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 11:29:34.599429+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063182 tx stats: # 43660 owait 1721 3271us finish 44058 bar2 43403 f 21150 enter 217 fq 69 92 787us close 0us prep 1784us flush 940us
2026-08-18 11:29:34.800980+0900 0xf6034    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_pageout : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 11:29:34.843246+0900 0xf6028    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_pageout : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 28814893 (thumbnails.data ; parent-id 1593659)
2026-08-18 11:29:38.414217+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063202 tx stats: # 43680 owait 1722 3270us finish 44078 bar2 43423 f 21151 enter 63 fq 30 51 414us close 0us prep 581us flush 1138us
2026-08-18 11:29:41.362184+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063222 tx stats: # 43700 owait 1724 3267us finish 44098 bar2 43443 f 21161 enter 29 fq 25 33 271us close 0us prep 191us flush 762us
2026-08-18 11:29:57.535607+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063242 tx stats: # 43720 owait 1725 3265us finish 44118 bar2 43463 f 21170 enter 5 fq 32 139 328us close 0us prep 150us flush 2436us
2026-08-18 11:30:17.981983+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063262 tx stats: # 43740 owait 1725 3265us finish 44139 bar2 43483 f 21179 enter 36 fq 17 22 276us close 0us prep 499us flush 880us
2026-08-18 11:30:36.586099+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063282 tx stats: # 43760 owait 1725 3265us finish 44158 bar2 43503 f 21184 enter 62 fq 40 268 363us close 0us prep 514us flush 477us
2026-08-18 11:30:51.496859+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063302 tx stats: # 43780 owait 1725 3265us finish 44178 bar2 43523 f 21195 enter 73 fq 34 48 686us close 0us prep 757us flush 1654us
2026-08-18 11:31:11.648191+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063322 tx stats: # 43800 owait 1725 3265us finish 44198 bar2 43543 f 21203 enter 52 fq 31 54 398us close 0us prep 618us flush 634us
2026-08-18 11:31:31.113093+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063342 tx stats: # 43820 owait 1725 3265us finish 44219 bar2 43563 f 21216 enter 16 fq 42 70 424us close 0us prep 353us flush 1809us
2026-08-18 11:31:47.019244+0900 0xf6e13    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: routined(32214) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 11:31:47.019246+0900 0xf6e13    Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 32214, routined
2026-08-18 11:31:47.204076+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:31:47.204077+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:31:47.206053+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:31:47.206054+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:31:47.279427+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063362 tx stats: # 43840 owait 1725 3265us finish 44239 bar2 43583 f 21222 enter 347 fq 31 88 299us close 0us prep 917us flush 1019us
2026-08-18 11:31:53.323483+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemWillSleep[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:31:53.323487+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000280
2026-08-18 11:31:53.323888+0900 0xf6ee4    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 11:31:53.324802+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[81] to com.apple.iokit.IONVMeFamily
2026-08-18 11:31:53.324807+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:31:53.430168+0900 0xf6ee4    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 11:31:53.569969+0900 0xf6f6b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 11:31:53.570192+0900 0xf6fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 11:31:53.589335+0900 0xf6fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 11:31:53.589730+0900 0xf6fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 11:31:53.589734+0900 0xf6fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 11:31:53.589736+0900 0xf6fc9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 11:31:53.589794+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 11:31:53.612654+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:31:53.612656+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:33:17.704327+0900 0xf7038    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:33:17.704331+0900 0xf7038    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:33:17.709504+0900 0xf6fe0    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 11:33:17.709516+0900 0xf6fe0    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 11:33:17.709528+0900 0xf6fe0    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 11:33:17.709535+0900 0xf6fe0    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 11:33:17.709548+0900 0xf6fe0    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 11:33:17.714539+0900 0xf6c0a    Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6525: disk3s5 apfs is being LOCKED!
2026-08-18 11:33:17.714547+0900 0xf6c0a    Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6664: disk3s5 apfs is now LOCKED (flags 0x441000d6)!
2026-08-18 11:33:17.834099+0900 0xf6fdf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 11:33:17.834108+0900 0xf6fdf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 11:33:17.834119+0900 0xf6fdf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 11:33:17.834123+0900 0xf6fdf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 11:33:17.838044+0900 0xf6fdf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 11:33:17.842486+0900 0xf6fe8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 11:33:17.842509+0900 0xf6fe8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 11:33:17.842618+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:33:17.842619+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:33:17.886588+0900 0x26dc     Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_lock_notification:6949: disk3s5 done processing lock keybag notification, err 0, (flags 0x441000c6)
2026-08-18 11:33:18.823558+0900 0xf7097    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:completeReport fLogAfterWatchDog:1 fEnableCoreCapture:1 needCaptureLog:1 needsWatchdog:0 dumpFaultReportToDisk:1 needsBlockingFaultReporter:0 doCapture=1
2026-08-18 11:33:19.613224+0900 0xf6744    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:19.707103+0900 0xf6f6d    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:19.759390+0900 0xf709d    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:19.985007+0900 0xf70ab    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:19.990471+0900 0xf70ab    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:19.995469+0900 0xf70ab    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:19.999738+0900 0xf70ab    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:20.004204+0900 0xf70ab    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:20.009502+0900 0xf70ab    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:20.013644+0900 0xf70ab    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:20.017570+0900 0xf70ab    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 11:33:20.626467+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063382 tx stats: # 43860 owait 1729 3265us finish 44260 bar2 43603 f 21233 enter 1394 fq 36 48 192us close 0us prep 6550us flush 2748us
2026-08-18 11:33:45.447812+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063402 tx stats: # 43880 owait 1729 3265us finish 44280 bar2 43623 f 21245 enter 17 fq 60 96 734us close 0us prep 315us flush 2254us
2026-08-18 11:34:03.325334+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063422 tx stats: # 43900 owait 1729 3265us finish 44300 bar2 43643 f 21256 enter 78 fq 16 118 267us close 0us prep 1575us flush 2203us
2026-08-18 11:34:04.408559+0900 0xf6ffd    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 11:34:04.409453+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:34:04.409454+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:34:04.502640+0900 0xf6ffd    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 11:34:04.526004+0900 0xf7578    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 11:34:04.526032+0900 0xf757a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 11:34:04.543236+0900 0xf757a    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 11:34:04.543303+0900 0xf757a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 11:34:04.543306+0900 0xf757a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 11:34:04.543307+0900 0xf757a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 11:34:04.543373+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 11:34:04.562520+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:34:04.562521+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:49:57.961127+0900 0xf75a7    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:49:57.961132+0900 0xf75a7    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:49:57.965744+0900 0xf7350    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 11:49:57.965752+0900 0xf7350    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 11:49:57.965760+0900 0xf7350    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 11:49:57.965765+0900 0xf7350    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 11:49:57.965774+0900 0xf7350    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 11:49:58.090674+0900 0xf75a9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 11:49:58.090685+0900 0xf75a9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 11:49:58.090696+0900 0xf75a9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 11:49:58.090700+0900 0xf75a9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 11:49:58.094704+0900 0xf75a9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 11:49:58.094818+0900 0xf75a9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 11:49:58.094837+0900 0xf75a9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 11:49:58.094949+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:49:58.094950+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:50:17.525802+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063442 tx stats: # 43920 owait 1731 3262us finish 44320 bar2 43663 f 21273 enter 28 fq 33 41 517us close 0us prep 949us flush 2748us
2026-08-18 11:50:29.830944+0900 0xf769d    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 11:50:29.831833+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:50:29.831841+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:50:29.909896+0900 0xf769d    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 11:50:29.933191+0900 0xf799b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 11:50:29.933331+0900 0xf798f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 11:50:29.950609+0900 0xf798f    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 11:50:29.950645+0900 0xf798f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 11:50:29.950647+0900 0xf798f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 11:50:29.950648+0900 0xf798f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 11:50:29.950706+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 11:50:29.968279+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:50:29.968280+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:52:48.539513+0900 0xf79f3    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:52:48.539517+0900 0xf79f3    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:52:48.544797+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 11:52:48.544807+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 11:52:48.544818+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 11:52:48.544822+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 11:52:48.544831+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 11:52:48.669240+0900 0xf7985    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 11:52:48.669253+0900 0xf7985    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 11:52:48.669274+0900 0xf7985    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 11:52:48.669283+0900 0xf7985    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 11:52:48.673277+0900 0xf7985    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 11:52:48.673360+0900 0xf7994    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 11:52:48.673385+0900 0xf7994    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 11:52:48.673561+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:52:48.673562+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:52:57.614195+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063462 tx stats: # 43940 owait 1731 3262us finish 44340 bar2 43683 f 21280 enter 23 fq 22 27 309us close 0us prep 270us flush 1144us
2026-08-18 11:53:10.775012+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063482 tx stats: # 43960 owait 1731 3262us finish 44360 bar2 43703 f 21284 enter 34 fq 23 30 529us close 0us prep 257us flush 656us
2026-08-18 11:53:29.320031+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063502 tx stats: # 43980 owait 1731 3262us finish 44380 bar2 43723 f 21302 enter 4 fq 37 565 668us close 0us prep 127us flush 2137us
2026-08-18 11:53:35.243233+0900 0xf79d2    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 11:53:35.244755+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:53:35.244760+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:53:35.380427+0900 0xf79d2    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 11:53:35.474104+0900 0xf7f75    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 11:53:35.474148+0900 0xf7f3b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 11:53:35.491502+0900 0xf7f3b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 11:53:35.491846+0900 0xf7f3b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 11:53:35.491848+0900 0xf7f3b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 11:53:35.491850+0900 0xf7f3b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 11:53:35.491916+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 11:53:35.510036+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 11:53:35.510037+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:10:22.961229+0900 0xf8018    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:10:22.961234+0900 0xf8018    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:10:22.944590+0900 0xf7fd4    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 12:10:22.944605+0900 0xf7fd4    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 12:10:22.944617+0900 0xf7fd4    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 12:10:22.944621+0900 0xf7fd4    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 12:10:22.944630+0900 0xf7fd4    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 12:10:23.069299+0900 0xf7fdb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 12:10:23.069309+0900 0xf7fdb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 12:10:23.069323+0900 0xf7fdb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:10:23.069328+0900 0xf7fdb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:10:23.073290+0900 0xf7fdb    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 12:10:23.073443+0900 0xf7f84    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 12:10:23.073472+0900 0xf7f84    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 12:10:23.073582+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:10:23.073583+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:10:43.686239+0900 0xf80de    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 12:10:43.687336+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:10:43.687341+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:10:43.791911+0900 0xf80de    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 12:10:43.865595+0900 0xf82a9    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 12:10:43.865774+0900 0xf80de    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 12:10:43.883141+0900 0xf80de    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 12:10:43.883479+0900 0xf80de    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 12:10:43.883481+0900 0xf80de    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 12:10:43.883483+0900 0xf80de    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 12:10:43.883546+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 12:10:43.901848+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:10:43.901849+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:26:23.937453+0900 0xf8328    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:26:23.937457+0900 0xf8328    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:26:23.944005+0900 0xf82e5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 12:26:23.944012+0900 0xf82e5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 12:26:23.944021+0900 0xf82e5    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 12:26:23.944026+0900 0xf82e5    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 12:26:23.944037+0900 0xf82e5    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 12:26:24.067456+0900 0xf82ec    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 12:26:24.067468+0900 0xf82ec    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 12:26:24.067479+0900 0xf82ec    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:26:24.067484+0900 0xf82ec    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:26:24.071494+0900 0xf82ec    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 12:26:24.071629+0900 0xf82e4    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 12:26:24.071652+0900 0xf82e4    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 12:26:24.071769+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:26:24.071770+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:26:26.075511+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063522 tx stats: # 44000 owait 1731 3262us finish 44400 bar2 43743 f 21310 enter 126 fq 121 142 1734us close 0us prep 815us flush 1797us
2026-08-18 12:26:36.183981+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063542 tx stats: # 44020 owait 1732 3261us finish 44420 bar2 43763 f 21324 enter 75 fq 21 37 569us close 0us prep 1494us flush 2001us
2026-08-18 12:26:44.669380+0900 0xf83dc    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 12:26:44.670947+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:26:44.670949+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:26:44.770313+0900 0xf83dc    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 12:26:44.888415+0900 0xf85e3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 12:26:44.888636+0900 0xf85df    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 12:26:44.906100+0900 0xf85df    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 12:26:44.906473+0900 0xf85df    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 12:26:44.906476+0900 0xf85df    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 12:26:44.906478+0900 0xf85df    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 12:26:44.906534+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 12:26:44.924682+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:26:44.924684+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:42:15.937461+0900 0xf8649    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:42:15.937466+0900 0xf8649    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:42:15.944079+0900 0xf7f35    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 12:42:15.944093+0900 0xf7f35    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 12:42:15.944111+0900 0xf7f35    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 12:42:15.944118+0900 0xf7f35    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 12:42:15.944131+0900 0xf7f35    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 12:42:16.069561+0900 0xf861c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 12:42:16.069574+0900 0xf861c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 12:42:16.069591+0900 0xf861c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:42:16.069598+0900 0xf861c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:42:16.073630+0900 0xf861c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 12:42:16.073753+0900 0xf8615    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 12:42:16.073781+0900 0xf8615    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 12:42:16.073897+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:42:16.073898+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:42:20.983890+0900 0xf86fb    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 12:42:20.984851+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:42:20.984858+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:42:21.069368+0900 0xf86fb    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 12:42:21.192185+0900 0xf873c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 12:42:21.192394+0900 0xf873d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 12:42:21.211627+0900 0xf873d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 12:42:21.214070+0900 0xf873d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 12:42:21.214074+0900 0xf873d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 12:42:21.214076+0900 0xf873d    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 12:42:21.214135+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 12:42:21.234523+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:42:21.234525+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:59:36.937409+0900 0xf8696    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:59:36.937415+0900 0xf8696    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:59:36.917387+0900 0xf8696    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 12:59:36.917397+0900 0xf8696    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 12:59:36.917406+0900 0xf8696    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 12:59:36.917411+0900 0xf8696    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 12:59:36.917419+0900 0xf8696    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 12:59:37.042383+0900 0xf878a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 12:59:37.042393+0900 0xf878a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 12:59:37.042409+0900 0xf878a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:59:37.042414+0900 0xf878a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:59:37.046468+0900 0xf878a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 12:59:37.046614+0900 0xf879b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 12:59:37.046640+0900 0xf879b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 12:59:37.046781+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 12:59:37.046782+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:59:39.315675+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063562 tx stats: # 44040 owait 1735 3259us finish 44440 bar2 43783 f 21332 enter 330 fq 72 88 1250us close 0us prep 2624us flush 1924us
2026-08-18 12:59:40.967895+0900 0xf824a    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(32983) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:59:40.970366+0900 0xf88f4    Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(32983) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:59:44.789918+0900 0xf7fab    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 12:59:48.399772+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063582 tx stats: # 44060 owait 1738 3255us finish 44460 bar2 43803 f 21340 enter 8 fq 40 80 1154us close 0us prep 378us flush 2176us
2026-08-18 12:59:49.325418+0900 0xf87b5    Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk1 xid 8682 tx stats: # 120 owait 0 0us finish 120 bar2 120 f 6 enter 6 fq 8 11 473us close 0us prep 132us flush 220us
2026-08-18 13:00:13.872155+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063602 tx stats: # 44080 owait 1738 3255us finish 44480 bar2 43823 f 21348 enter 97 fq 58 164 1175us close 0us prep 1538us flush 1480us
2026-08-18 13:00:43.347150+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063622 tx stats: # 44100 owait 1738 3255us finish 44500 bar2 43843 f 21360 enter 37 fq 16 25 264us close 0us prep 961us flush 2381us
2026-08-18 13:00:57.877394+0900 0xf8f21    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:completeReport fLogAfterWatchDog:1 fEnableCoreCapture:1 needCaptureLog:1 needsWatchdog:0 dumpFaultReportToDisk:1 needsBlockingFaultReporter:0 doCapture=1
2026-08-18 13:00:57.912055+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706371
2026-08-18 13:00:57.912079+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29706371
2026-08-18 13:00:57.912568+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706361
2026-08-18 13:00:57.912576+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29706361
2026-08-18 13:00:57.912979+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706381
2026-08-18 13:00:57.912988+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:9342976,6 for inode 29706381
2026-08-18 13:00:57.913360+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706386
2026-08-18 13:00:57.913365+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29706386
2026-08-18 13:00:57.913737+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706366
2026-08-18 13:00:57.913743+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:3051520,6 for inode 29706366
2026-08-18 13:00:57.914079+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706376
2026-08-18 13:00:57.914084+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29706376
2026-08-18 13:00:57.914438+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706391
2026-08-18 13:00:57.914447+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29706391
2026-08-18 13:00:57.915022+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706309
2026-08-18 13:00:57.915027+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29706309
2026-08-18 13:00:57.915394+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706304
2026-08-18 13:00:57.915401+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29706304
2026-08-18 13:00:57.916906+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706396
2026-08-18 13:00:57.916916+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29706396
2026-08-18 13:00:57.917352+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706292
2026-08-18 13:00:57.917361+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:15634432,6 for inode 29706292
2026-08-18 13:00:57.917828+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29706297
2026-08-18 13:00:57.917837+0900 0xf8fe1    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29706297
2026-08-18 13:00:59.048613+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.117814+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.157047+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.159751+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.162319+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.164766+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.167325+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.170681+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.174240+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.176756+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:00:59.190628+0900 0xf885e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 13:01:01.194659+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063642 tx stats: # 44120 owait 1739 3253us finish 44520 bar2 43863 f 21371 enter 380 fq 90 1967 918us close 6us prep 725us flush 1170us
2026-08-18 13:01:08.774088+0900 0xf88ae    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 13:01:08.775088+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:01:08.775091+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:01:08.845826+0900 0xf88ae    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:01:08.985391+0900 0xf926b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:01:08.985594+0900 0xf927b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 13:01:09.015748+0900 0xf927b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 13:01:09.016071+0900 0xf927b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 13:01:09.016078+0900 0xf927b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 13:01:09.016081+0900 0xf927b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 13:01:09.016139+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 13:01:09.036336+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:01:09.036342+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:18:59.911126+0900 0xf8fc1    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:18:59.911132+0900 0xf8fc1    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:18:59.916330+0900 0xf8fc1    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 13:18:59.916340+0900 0xf8fc1    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:18:59.916354+0900 0xf8fc1    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 13:18:59.916359+0900 0xf8fc1    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:18:59.916370+0900 0xf8fc1    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 13:19:00.040797+0900 0xf92c1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:19:00.040812+0900 0xf92c1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 13:19:00.040831+0900 0xf92c1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 13:19:00.040843+0900 0xf92c1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 13:19:00.044840+0900 0xf92c1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 13:19:00.044978+0900 0xf92b1    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 13:19:00.045006+0900 0xf92b1    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:19:00.045114+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:19:00.045115+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:19:03.176859+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063662 tx stats: # 44140 owait 1740 3251us finish 44540 bar2 43883 f 21371 enter 152 fq 62 82 710us close 1us prep 684us flush 724us
2026-08-18 13:19:04.972397+0900 0xf92df    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 13:19:04.973395+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:19:04.973397+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:19:05.073809+0900 0xf92df    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:19:05.151737+0900 0xf9419    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:19:05.151792+0900 0xf9477    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 13:19:05.169507+0900 0xf9477    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 13:19:05.169856+0900 0xf9477    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 13:19:05.169858+0900 0xf9477    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 13:19:05.169860+0900 0xf9477    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 13:19:05.169916+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 13:19:05.193280+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:19:05.193281+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:19:12.799100+0900 0xf948d    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:19:12.799105+0900 0xf948d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:19:12.804287+0900 0xf949c    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 13:19:12.804299+0900 0xf949c    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:19:12.804308+0900 0xf949c    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 13:19:12.804313+0900 0xf949c    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:19:12.804323+0900 0xf949c    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 13:19:12.929165+0900 0xf9499    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:19:12.929178+0900 0xf9499    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 13:19:12.929191+0900 0xf9499    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 13:19:12.929197+0900 0xf9499    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 13:19:12.933143+0900 0xf9499    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 13:19:12.933331+0900 0xf9497    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 13:19:12.933367+0900 0xf9497    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:19:12.933535+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:19:12.933536+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:19:23.232808+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063682 tx stats: # 44160 owait 1740 3251us finish 44560 bar2 43903 f 21378 enter 9 fq 21 24 320us close 0us prep 324us flush 575us
2026-08-18 13:19:39.571097+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063702 tx stats: # 44180 owait 1740 3251us finish 44580 bar2 43923 f 21396 enter 36 fq 25 109 732us close 0us prep 1212us flush 1349us
2026-08-18 13:19:56.443123+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707429
2026-08-18 13:19:56.443148+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29707429
2026-08-18 13:19:56.443711+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707460
2026-08-18 13:19:56.443728+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29707460
2026-08-18 13:19:56.444282+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707445
2026-08-18 13:19:56.444295+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:9342976,6 for inode 29707445
2026-08-18 13:19:56.444803+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707440
2026-08-18 13:19:56.444843+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29707440
2026-08-18 13:19:56.445380+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707424
2026-08-18 13:19:56.445394+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:3051520,6 for inode 29707424
2026-08-18 13:19:56.445931+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707434
2026-08-18 13:19:56.445944+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29707434
2026-08-18 13:19:56.446411+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707455
2026-08-18 13:19:56.446423+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29707455
2026-08-18 13:19:56.447317+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707366
2026-08-18 13:19:56.447331+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29707366
2026-08-18 13:19:56.447853+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707361
2026-08-18 13:19:56.447866+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29707361
2026-08-18 13:19:56.449524+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707450
2026-08-18 13:19:56.449539+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29707450
2026-08-18 13:19:56.450149+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707465
2026-08-18 13:19:56.450163+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 8036352:8744960,6 for inode 29707465
2026-08-18 13:19:56.450685+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29707417
2026-08-18 13:19:56.450699+0900 0xf9887    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29707417
2026-08-18 13:19:59.500178+0900 0xf9541    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 13:19:59.501275+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:19:59.501280+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:19:59.599459+0900 0xf9541    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:19:59.707865+0900 0xf9946    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:19:59.707949+0900 0xf9961    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 13:19:59.725514+0900 0xf9961    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 13:19:59.725882+0900 0xf9961    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 13:19:59.725885+0900 0xf9961    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 13:19:59.725886+0900 0xf9961    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 13:19:59.725946+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 13:19:59.743788+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:19:59.743789+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:20:07.310145+0900 0xf99b4    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:20:07.310150+0900 0xf99b4    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:20:07.314916+0900 0xf9946    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 13:20:07.314924+0900 0xf9946    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:20:07.314932+0900 0xf9946    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 13:20:07.314938+0900 0xf9946    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:20:07.314947+0900 0xf9946    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 13:20:07.439904+0900 0xf9981    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:20:07.439913+0900 0xf9981    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 13:20:07.439925+0900 0xf9981    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 13:20:07.439931+0900 0xf9981    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 13:20:07.443977+0900 0xf9981    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 13:20:07.444083+0900 0xf9981    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 13:20:07.444105+0900 0xf9981    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:20:07.444204+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:20:07.444204+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:20:20.213474+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063722 tx stats: # 44200 owait 1740 3251us finish 44600 bar2 43943 f 21413 enter 131 fq 24 48 497us close 0us prep 2516us flush 2547us
2026-08-18 13:20:35.850487+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063742 tx stats: # 44220 owait 1740 3251us finish 44620 bar2 43963 f 21423 enter 5 fq 20 53 640us close 0us prep 353us flush 2036us
2026-08-18 13:20:54.009641+0900 0xf9a38    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 13:20:54.010731+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:20:54.010736+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:20:54.109019+0900 0xf9a38    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:20:54.209341+0900 0xf9e8a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:20:54.209525+0900 0xf9e7e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 13:20:54.223740+0900 0xf9e7e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 13:20:54.224116+0900 0xf9e7e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 13:20:54.224119+0900 0xf9e7e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 13:20:54.224120+0900 0xf9e7e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 13:20:54.224177+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 13:20:54.262569+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:20:54.262571+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:21:01.821719+0900 0xf9ed9    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:21:01.821724+0900 0xf9ed9    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:21:01.826822+0900 0xf9ea2    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 13:21:01.826834+0900 0xf9ea2    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:21:01.826845+0900 0xf9ea2    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 13:21:01.826850+0900 0xf9ea2    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:21:01.826859+0900 0xf9ea2    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 13:21:01.951212+0900 0xf9ea4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:21:01.951225+0900 0xf9ea4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 13:21:01.951246+0900 0xf9ea4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 13:21:01.951255+0900 0xf9ea4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 13:21:01.955186+0900 0xf9ea4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 13:21:01.955354+0900 0xf9ea9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 13:21:01.955390+0900 0xf9ea9    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:21:01.955566+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:21:01.955567+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:21:11.646475+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063762 tx stats: # 44240 owait 1740 3251us finish 44640 bar2 43983 f 21436 enter 204 fq 28 97 375us close 23us prep 967us flush 2708us
2026-08-18 13:21:37.808866+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063782 tx stats: # 44260 owait 1740 3251us finish 44660 bar2 44003 f 21452 enter 30 fq 23 31 367us close 0us prep 272us flush 845us
2026-08-18 13:21:48.541124+0900 0xf9f41    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 13:21:48.542171+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:21:48.542176+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:21:48.628549+0900 0xf9f41    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:21:48.747147+0900 0xfa340    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:21:48.747391+0900 0xf9f42    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 13:21:48.765742+0900 0xf9f42    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 13:21:48.766159+0900 0xf9f42    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 13:21:48.766163+0900 0xf9f42    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 13:21:48.766166+0900 0xf9f42    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 13:21:48.766225+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 13:21:48.784907+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:21:48.784909+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:32:46.911479+0900 0xfa3df    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:32:46.911484+0900 0xfa3df    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:32:46.917641+0900 0x7f9      Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 13:32:46.917649+0900 0x7f9      Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:32:46.917658+0900 0x7f9      Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 13:32:46.917663+0900 0x7f9      Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:32:46.917672+0900 0x7f9      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 13:32:47.042832+0900 0xfa394    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:32:47.042839+0900 0xfa394    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 13:32:47.042850+0900 0xfa394    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 13:32:47.042854+0900 0xfa394    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 13:32:47.046810+0900 0xfa394    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 13:32:47.046931+0900 0xfa394    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 13:32:47.046958+0900 0xfa394    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:32:47.047065+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:32:47.047066+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:33:00.460989+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063802 tx stats: # 44280 owait 1741 3251us finish 44680 bar2 44023 f 21464 enter 548 fq 57 88 593us close 7us prep 3111us flush 3305us
2026-08-18 13:33:33.604985+0900 0xfa4b7    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 13:33:33.606088+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:33:33.606093+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:33:33.697110+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063822 tx stats: # 44300 owait 1742 3251us finish 44700 bar2 44043 f 21475 enter 190 fq 52 182 840us close 0us prep 1913us flush 1096us
2026-08-18 13:33:33.697286+0900 0xfa4b7    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:33:33.786405+0900 0xfa4c1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:33:33.786559+0900 0xfa878    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 13:33:33.804472+0900 0xfa878    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 13:33:33.804823+0900 0xfa878    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 13:33:33.804826+0900 0xfa878    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 13:33:33.804828+0900 0xfa878    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 13:33:33.804895+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 13:33:33.827113+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:33:33.827114+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:49:02.911378+0900 0x378dd    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:49:02.911382+0900 0x378dd    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:49:02.917234+0900 0xf9f06    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 13:49:02.917248+0900 0xf9f06    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:49:02.917256+0900 0xf9f06    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 13:49:02.917261+0900 0xf9f06    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 13:49:02.917270+0900 0xf9f06    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 13:49:03.041850+0900 0xfa894    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:49:03.041861+0900 0xfa894    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 13:49:03.041876+0900 0xfa894    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 13:49:03.041882+0900 0xfa894    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 13:49:03.045954+0900 0xfa894    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 13:49:03.046097+0900 0xfa86a    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 13:49:03.046122+0900 0xfa86a    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:49:03.046231+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:49:03.046231+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:49:07.954522+0900 0xfa8ad    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 13:49:07.955392+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:49:07.955395+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 13:49:08.066505+0900 0xfa8ad    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 13:49:08.164811+0900 0xfa9e1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 13:49:08.165088+0900 0xfa9c2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 13:49:08.183148+0900 0xfa9c2    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 13:49:08.183495+0900 0xfa9c2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 13:49:08.183499+0900 0xfa9c2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 13:49:08.183501+0900 0xfa9c2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 13:49:08.183570+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 13:49:08.201687+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 13:49:08.201688+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:05:04.910427+0900 0xfaa0e    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:05:04.910432+0900 0xfaa0e    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:05:04.881436+0900 0xfa918    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 14:05:04.881444+0900 0xfa918    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:05:04.881453+0900 0xfa918    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 14:05:04.881458+0900 0xfa918    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:05:04.881467+0900 0xfa918    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 14:05:05.006087+0900 0xfaa18    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:05:05.006094+0900 0xfaa18    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 14:05:05.006105+0900 0xfaa18    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 14:05:05.006108+0900 0xfaa18    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 14:05:05.010164+0900 0xfaa18    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 14:05:05.010282+0900 0xfa9ed    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 14:05:05.010304+0900 0xfa9ed    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:05:05.010434+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:05:05.010435+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:05:07.406721+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063842 tx stats: # 44320 owait 1743 3249us finish 44720 bar2 44063 f 21489 enter 60 fq 106 147 2266us close 0us prep 572us flush 2690us
2026-08-18 14:05:36.728979+0900 0xfaacc    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 14:05:36.730055+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:05:36.730059+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:05:36.826152+0900 0xfaacc    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:05:36.934193+0900 0xfaacf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:05:36.934293+0900 0xfad74    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 14:05:36.951414+0900 0xfad74    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 14:05:36.951792+0900 0xfad74    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 14:05:36.951795+0900 0xfad74    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 14:05:36.951796+0900 0xfad74    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 14:05:36.951853+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 14:05:36.969899+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:05:36.969900+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:05:46.510435+0900 0xfa8e4    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:05:46.510440+0900 0xfa8e4    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:05:46.515469+0900 0xfabb3    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 14:05:46.515482+0900 0xfabb3    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:05:46.515490+0900 0xfabb3    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 14:05:46.515495+0900 0xfabb3    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:05:46.515504+0900 0xfabb3    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 14:05:46.640503+0900 0xfada5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:05:46.640512+0900 0xfada5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 14:05:46.640525+0900 0xfada5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 14:05:46.640530+0900 0xfada5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 14:05:46.644623+0900 0xfada5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 14:05:46.644716+0900 0xfada2    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 14:05:46.644750+0900 0xfada2    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:05:46.644939+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:05:46.644941+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:05:56.112178+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063862 tx stats: # 44340 owait 1743 3249us finish 44740 bar2 44083 f 21506 enter 136 fq 110 189 1199us close 0us prep 782us flush 2790us
2026-08-18 14:06:27.127910+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063882 tx stats: # 44360 owait 1743 3249us finish 44760 bar2 44103 f 21524 enter 16 fq 25 31 555us close 0us prep 341us flush 1711us
2026-08-18 14:06:33.216004+0900 0xfae20    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 14:06:33.217021+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:06:33.217025+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:06:33.306994+0900 0xfae20    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:06:33.415706+0900 0xfb247    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:06:33.415910+0900 0xfb22b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 14:06:33.434417+0900 0xfb22b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 14:06:33.434848+0900 0xfb22b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 14:06:33.434851+0900 0xfb22b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 14:06:33.434853+0900 0xfb22b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 14:06:33.434920+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 14:06:33.469735+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:06:33.469737+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:06:39.912711+0900 0xfb299    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:06:39.912715+0900 0xfb299    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:06:39.917873+0900 0xfb279    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 14:06:39.917882+0900 0xfb279    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:06:39.917891+0900 0xfb279    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 14:06:39.917896+0900 0xfb279    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:06:39.917905+0900 0xfb279    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 14:06:40.042616+0900 0xfb25e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:06:40.042625+0900 0xfb25e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 14:06:40.042638+0900 0xfb25e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 14:06:40.042644+0900 0xfb25e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 14:06:40.046691+0900 0xfb25e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 14:06:40.046787+0900 0xfb235    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 14:06:40.046801+0900 0xfb235    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:06:40.046894+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:06:40.046895+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:07:24.524929+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063902 tx stats: # 44380 owait 1743 3249us finish 44780 bar2 44123 f 21542 enter 6 fq 16 32 325us close 0us prep 496us flush 2944us
2026-08-18 14:07:26.618296+0900 0xfb314    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 14:07:26.620004+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:07:26.620009+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:07:26.716711+0900 0xfb314    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:07:26.821459+0900 0xfb314    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:07:26.821557+0900 0xfb72b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 14:07:26.838999+0900 0xfb72b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 14:07:26.839388+0900 0xfb72b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 14:07:26.839390+0900 0xfb72b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 14:07:26.839392+0900 0xfb72b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 14:07:26.839456+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 14:07:26.869128+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:07:26.869129+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:07:34.214756+0900 0xfb7db    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:07:34.214761+0900 0xfb7db    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:07:34.219581+0900 0xfb744    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 14:07:34.219596+0900 0xfb744    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:07:34.219609+0900 0xfb744    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 14:07:34.219613+0900 0xfb744    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:07:34.219622+0900 0xfb744    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 14:07:34.344499+0900 0xfb743    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:07:34.344523+0900 0xfb743    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 14:07:34.344541+0900 0xfb743    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 14:07:34.344551+0900 0xfb743    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 14:07:34.348605+0900 0xfb743    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 14:07:34.348775+0900 0xfb742    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 14:07:34.348831+0900 0xfb742    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:07:34.349122+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:07:34.349123+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:08:07.285091+0900 0xfb2cf    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:completeReport fLogAfterWatchDog:1 fEnableCoreCapture:1 needCaptureLog:1 needsWatchdog:0 dumpFaultReportToDisk:1 needsBlockingFaultReporter:0 doCapture=1
2026-08-18 14:08:07.526149+0900 0xfb2ce    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:07.607239+0900 0xfb788    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:07.678308+0900 0xfb2ce    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:07.688204+0900 0xfb2ce    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:08.469647+0900 0xfba68    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:08.478087+0900 0xfba68    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:08.484573+0900 0xfba68    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:08.489924+0900 0xfba68    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:08.495986+0900 0xfba68    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:08.502533+0900 0xfba5e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:08.508634+0900 0xfba5e    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 14:08:19.823205+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063922 tx stats: # 44400 owait 1743 3249us finish 44800 bar2 44143 f 21555 enter 141 fq 134 2367 1783us close 0us prep 1274us flush 1002us
2026-08-18 14:08:20.937443+0900 0xfb7c3    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 14:08:20.938388+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:08:20.938392+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:08:21.028344+0900 0xfb7c3    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:08:21.239832+0900 0xfbcbe    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:08:21.240063+0900 0xfbcb5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 14:08:21.257347+0900 0xfbcb5    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 14:08:21.257756+0900 0xfbcb5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 14:08:21.257765+0900 0xfbcb5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 14:08:21.257770+0900 0xfbcb5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 14:08:21.257834+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 14:08:21.278936+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:08:21.278940+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:08:28.276888+0900 0xfbd0b    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:08:28.276893+0900 0xfbd0b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:08:28.281967+0900 0xfbce9    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 14:08:28.281982+0900 0xfbce9    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:08:28.281999+0900 0xfbce9    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 14:08:28.282010+0900 0xfbce9    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:08:28.282025+0900 0xfbce9    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 14:08:28.406856+0900 0xfbcf4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:08:28.406868+0900 0xfbcf4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 14:08:28.406884+0900 0xfbcf4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 14:08:28.406890+0900 0xfbcf4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 14:08:28.410959+0900 0xfbcf4    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 14:08:28.411070+0900 0xfbcef    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 14:08:28.411098+0900 0xfbcef    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:08:28.411205+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:08:28.411206+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:08:37.784997+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063942 tx stats: # 44420 owait 1743 3249us finish 44820 bar2 44163 f 21556 enter 36 fq 20 131 326us close 0us prep 393us flush 512us
2026-08-18 14:08:44.871818+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063962 tx stats: # 44440 owait 1744 3248us finish 44840 bar2 44183 f 21569 enter 8 fq 29 89 635us close 0us prep 261us flush 2124us
2026-08-18 14:09:12.797680+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4063982 tx stats: # 44460 owait 1745 3247us finish 44860 bar2 44203 f 21582 enter 6 fq 40 58 577us close 3us prep 240us flush 2936us
2026-08-18 14:09:14.356727+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708369
2026-08-18 14:09:14.356747+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29708369
2026-08-18 14:09:14.357348+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708364
2026-08-18 14:09:14.357363+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29708364
2026-08-18 14:09:14.358086+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708302
2026-08-18 14:09:14.358101+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:9342976,6 for inode 29708302
2026-08-18 14:09:14.358679+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708389
2026-08-18 14:09:14.358692+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29708389
2026-08-18 14:09:14.359180+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708379
2026-08-18 14:09:14.359192+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:3051520,6 for inode 29708379
2026-08-18 14:09:14.359625+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708394
2026-08-18 14:09:14.359636+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29708394
2026-08-18 14:09:14.360080+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708374
2026-08-18 14:09:14.360092+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29708374
2026-08-18 14:09:14.360820+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708320
2026-08-18 14:09:14.360834+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29708320
2026-08-18 14:09:14.361378+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708315
2026-08-18 14:09:14.361393+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29708315
2026-08-18 14:09:14.363120+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708384
2026-08-18 14:09:14.363137+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29708384
2026-08-18 14:09:14.363653+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708289
2026-08-18 14:09:14.363667+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:15634432,6 for inode 29708289
2026-08-18 14:09:14.364262+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708307
2026-08-18 14:09:14.364276+0900 0xfc24d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29708307
2026-08-18 14:09:14.982641+0900 0xfbdd5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 14:09:14.983622+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:09:14.983627+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:09:15.074699+0900 0xfbdd5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:09:15.207648+0900 0xfc2a0    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:09:15.207893+0900 0xfc29c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 14:09:15.225241+0900 0xfc29c    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 14:09:15.225628+0900 0xfc29c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 14:09:15.225632+0900 0xfc29c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 14:09:15.225635+0900 0xfc29c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 14:09:15.225695+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 14:09:15.269309+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:09:15.269311+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:26:56.876428+0900 0xfc2ec    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:26:56.876434+0900 0xfc2ec    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:26:56.881557+0900 0xfc2ec    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 14:26:56.881565+0900 0xfc2ec    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:26:56.881574+0900 0xfc2ec    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 14:26:56.881579+0900 0xfc2ec    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:26:56.881589+0900 0xfc2ec    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 14:26:57.004941+0900 0xfc2ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:26:57.004948+0900 0xfc2ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 14:26:57.004958+0900 0xfc2ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 14:26:57.004962+0900 0xfc2ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 14:26:57.008998+0900 0xfc2ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 14:26:57.009104+0900 0xfc2ef    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 14:26:57.009126+0900 0xfc2ef    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:26:57.009304+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:26:57.009305+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:27:01.923660+0900 0xfc2a8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 14:27:01.924618+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:27:01.924621+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:27:02.031874+0900 0xfc2a8    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:27:02.107198+0900 0xfc44c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:27:02.107328+0900 0xfc465    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 14:27:02.124308+0900 0xfc465    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 14:27:02.124655+0900 0xfc465    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 14:27:02.124658+0900 0xfc465    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 14:27:02.124659+0900 0xfc465    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 14:27:02.124712+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 14:27:02.142141+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:27:02.142142+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:33:47.876357+0900 0xfc45d    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:33:47.876361+0900 0xfc45d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:33:47.882441+0900 0xfc480    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 14:33:47.882454+0900 0xfc480    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:33:47.882466+0900 0xfc480    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 14:33:47.882471+0900 0xfc480    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:33:47.882482+0900 0xfc480    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 14:33:48.007620+0900 0xfc489    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:33:48.007632+0900 0xfc489    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 14:33:48.007646+0900 0xfc489    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 14:33:48.007651+0900 0xfc489    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 14:33:48.011730+0900 0xfc489    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 14:33:48.011885+0900 0xfc48e    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 14:33:48.011908+0900 0xfc48e    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:33:48.012075+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:33:48.012076+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:34:05.443683+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064002 tx stats: # 44480 owait 1745 3247us finish 44880 bar2 44223 f 21592 enter 13 fq 17 74 555us close 0us prep 621us flush 2161us
2026-08-18 14:34:34.600080+0900 0xfc499    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 14:34:34.601206+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:34:34.601211+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:34:34.696134+0900 0xfc499    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:34:34.839482+0900 0xfc938    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:34:34.839748+0900 0xfc949    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 14:34:34.857377+0900 0xfc949    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 14:34:34.857783+0900 0xfc949    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 14:34:34.857787+0900 0xfc949    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 14:34:34.857790+0900 0xfc949    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 14:34:34.857851+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 14:34:34.877690+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:34:34.877692+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:50:32.876406+0900 0xfc245    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:50:32.876412+0900 0xfc245    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:50:32.881573+0900 0x193      Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 14:50:32.881586+0900 0x193      Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:50:32.881596+0900 0x193      Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 14:50:32.881600+0900 0x193      Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 14:50:32.881610+0900 0x193      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 14:50:33.005327+0900 0xfc94e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:50:33.005339+0900 0xfc94e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 14:50:33.005353+0900 0xfc94e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 14:50:33.005359+0900 0xfc94e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 14:50:33.009367+0900 0xfc94e    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 14:50:33.009495+0900 0xfc976    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 14:50:33.009520+0900 0xfc976    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:50:33.009630+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:50:33.009631+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:50:33.016898+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064022 tx stats: # 44500 owait 1745 3247us finish 44900 bar2 44243 f 21606 enter 160 fq 105 456 778us close 0us prep 699us flush 2346us
2026-08-18 14:50:37.920807+0900 0xfca4b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 14:50:37.921783+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:50:37.921786+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 14:50:38.020149+0900 0xfca4b    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 14:50:38.103697+0900 0xfcab2    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 14:50:38.103777+0900 0xfca96    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 14:50:38.120695+0900 0xfca96    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 14:50:38.120955+0900 0xfca96    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 14:50:38.120960+0900 0xfca96    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 14:50:38.120961+0900 0xfca96    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 14:50:38.120995+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 14:50:38.138875+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 14:50:38.138876+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:07:03.876556+0900 0xfcae2    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:07:03.876561+0900 0xfcae2    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:07:03.850298+0900 0xfc9dd    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 15:07:03.850311+0900 0xfc9dd    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:07:03.850320+0900 0xfc9dd    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 15:07:03.850324+0900 0xfc9dd    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:07:03.850335+0900 0xfc9dd    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 15:07:03.975355+0900 0xfcab1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:07:03.975363+0900 0xfcab1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 15:07:03.975374+0900 0xfcab1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 15:07:03.975379+0900 0xfcab1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 15:07:03.979239+0900 0xfcab1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 15:07:03.979365+0900 0xfcae5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 15:07:03.979388+0900 0xfcae5    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:07:03.979536+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:07:03.979537+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:07:17.686978+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064042 tx stats: # 44520 owait 1746 3245us finish 44920 bar2 44263 f 21618 enter 116 fq 48 84 980us close 0us prep 3460us flush 3169us
2026-08-18 15:07:35.904260+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064062 tx stats: # 44540 owait 1746 3245us finish 44940 bar2 44283 f 21627 enter 59 fq 56 203 1039us close 0us prep 697us flush 874us
2026-08-18 15:08:05.927940+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064082 tx stats: # 44560 owait 1746 3245us finish 44960 bar2 44303 f 21640 enter 8 fq 19 23 540us close 0us prep 591us flush 6664us
2026-08-18 15:08:29.308615+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064102 tx stats: # 44580 owait 1746 3245us finish 44980 bar2 44323 f 21653 enter 8 fq 32 305 892us close 0us prep 486us flush 2395us
2026-08-18 15:08:55.021864+0900 0xfd2d5    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:completeReport fLogAfterWatchDog:1 fEnableCoreCapture:1 needCaptureLog:1 needsWatchdog:0 dumpFaultReportToDisk:1 needsBlockingFaultReporter:0 doCapture=1
2026-08-18 15:08:55.227821+0900 0xfd2a9    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:55.285960+0900 0xfd2a9    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:55.353610+0900 0xfcb95    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:55.396426+0900 0xfcb95    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:56.084728+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064122 tx stats: # 44600 owait 1748 3242us finish 45000 bar2 44343 f 21667 enter 59 fq 107 756 1337us close 0us prep 461us flush 520us
2026-08-18 15:08:56.200319+0900 0xfcb88    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:56.205966+0900 0xfcb88    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:56.209933+0900 0xfcb88    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:56.214293+0900 0xfcb88    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:56.217329+0900 0xfcb88    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:56.220913+0900 0xfcb88    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:08:56.223704+0900 0xfcb88    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 15:09:29.447733+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064142 tx stats: # 44620 owait 1750 3239us finish 45020 bar2 44363 f 21679 enter 37 fq 49 58 1159us close 0us prep 430us flush 3314us
2026-08-18 15:10:05.563495+0900 0xfcbff    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 15:10:05.564619+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:10:05.564623+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:10:05.656544+0900 0xfcbff    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:10:05.861898+0900 0xfcae8    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:10:05.862202+0900 0xfdbb6    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 15:10:05.877303+0900 0xfdbb6    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 15:10:05.877428+0900 0xfdbb6    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 15:10:05.877435+0900 0xfdbb6    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 15:10:05.877440+0900 0xfdbb6    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 15:10:05.877512+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 15:10:05.937417+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:10:05.937421+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:27:56.843233+0900 0xfd4ef    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:27:56.843239+0900 0xfd4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:27:56.849053+0900 0xfd4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 15:27:56.849067+0900 0xfd4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:27:56.849087+0900 0xfd4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 15:27:56.849095+0900 0xfd4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:27:56.849121+0900 0xfd3e7    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 15:27:56.974339+0900 0xfdbc3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:27:56.974357+0900 0xfdbc3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 15:27:56.974369+0900 0xfdbc3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 15:27:56.974373+0900 0xfdbc3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 15:27:56.978257+0900 0xfdbc3    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 15:27:56.978379+0900 0xfdbc3    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 15:27:56.978405+0900 0xfdbc3    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:27:56.978565+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:27:56.978566+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:27:58.584657+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064162 tx stats: # 44640 owait 1751 3238us finish 45041 bar2 44383 f 21695 enter 266 fq 108 128 1719us close 408us prep 1246us flush 3878us
2026-08-18 15:28:01.885626+0900 0xfdd76    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 15:28:01.887014+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:28:01.887017+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:28:01.970503+0900 0xfdd76    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:28:01.993597+0900 0xfdd7c    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:28:01.993781+0900 0xfdddf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 15:28:02.007648+0900 0xfdddf    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 15:28:02.007697+0900 0xfdddf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 15:28:02.007700+0900 0xfdddf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 15:28:02.007724+0900 0xfdddf    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 15:28:02.007798+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 15:28:02.033193+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:28:02.033194+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:28:10.840624+0900 0xfde2d    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:28:10.840629+0900 0xfde2d    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:28:10.846065+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 15:28:10.846076+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:28:10.846085+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 15:28:10.846090+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:28:10.846099+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 15:28:10.970460+0900 0xfde0b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:28:10.970472+0900 0xfde0b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 15:28:10.970488+0900 0xfde0b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 15:28:10.970499+0900 0xfde0b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 15:28:10.974489+0900 0xfde0b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 15:28:10.974668+0900 0xfde00    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 15:28:10.974704+0900 0xfde00    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:28:10.974905+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:28:10.974906+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:28:19.984212+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064182 tx stats: # 44660 owait 1754 3235us finish 45061 bar2 44403 f 21701 enter 305 fq 100 111 834us close 7us prep 1316us flush 1229us
2026-08-18 15:28:29.252652+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064202 tx stats: # 44680 owait 1754 3235us finish 45081 bar2 44423 f 21709 enter 6 fq 42 110 1178us close 0us prep 488us flush 2118us
2026-08-18 15:28:47.298438+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064222 tx stats: # 44700 owait 1754 3235us finish 45101 bar2 44443 f 21723 enter 96 fq 17 26 402us close 0us prep 3495us flush 2669us
2026-08-18 15:28:54.784357+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709121
2026-08-18 15:28:54.784377+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29709121
2026-08-18 15:28:54.785438+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709087
2026-08-18 15:28:54.785455+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29709087
2026-08-18 15:28:54.786089+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709004
2026-08-18 15:28:54.786103+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:9342976,6 for inode 29709004
2026-08-18 15:28:54.786965+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709106
2026-08-18 15:28:54.786980+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29709106
2026-08-18 15:28:54.787582+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709092
2026-08-18 15:28:54.787595+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:3051520,6 for inode 29709092
2026-08-18 15:28:54.788048+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709115
2026-08-18 15:28:54.788059+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29709115
2026-08-18 15:28:54.788779+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709126
2026-08-18 15:28:54.788792+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29709126
2026-08-18 15:28:54.789591+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709032
2026-08-18 15:28:54.789603+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29709032
2026-08-18 15:28:54.790106+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709023
2026-08-18 15:28:54.790120+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29709023
2026-08-18 15:28:54.791702+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709097
2026-08-18 15:28:54.791719+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29709097
2026-08-18 15:28:54.792177+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29708991
2026-08-18 15:28:54.792190+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:15634432,6 for inode 29708991
2026-08-18 15:28:54.792623+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29709009
2026-08-18 15:28:54.792634+0900 0xfe36d    Default     0x0                  0      0    kernel: (apfs) apfs_release_all_reserved_space:4437: disk3s5 Reserved unwritten range 1146880:954368,6 for inode 29709009
2026-08-18 15:28:57.559527+0900 0xfde17    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 15:28:57.560676+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:28:57.560694+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:28:57.647827+0900 0xfde17    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:28:57.751423+0900 0xfe42a    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:28:57.751521+0900 0xfe443    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 15:28:57.768947+0900 0xfe443    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 15:28:57.769338+0900 0xfe443    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 15:28:57.769342+0900 0xfe443    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 15:28:57.769345+0900 0xfe443    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 15:28:57.769404+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 15:28:57.790278+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:28:57.790280+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:29:05.203119+0900 0xfe493    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:29:05.203124+0900 0xfe493    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:29:05.208590+0900 0xfe467    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 15:29:05.208597+0900 0xfe467    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:29:05.208606+0900 0xfe467    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 15:29:05.208610+0900 0xfe467    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:29:05.208619+0900 0xfe467    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 15:29:05.333368+0900 0xfde53    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:29:05.333378+0900 0xfde53    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 15:29:05.333391+0900 0xfde53    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 15:29:05.333401+0900 0xfde53    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 15:29:05.337489+0900 0xfde53    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 15:29:05.337585+0900 0xfde53    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 15:29:05.337617+0900 0xfde53    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:29:05.337816+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:29:05.337818+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:29:25.705463+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064242 tx stats: # 44720 owait 1754 3235us finish 45121 bar2 44463 f 21735 enter 47 fq 63 73 602us close 0us prep 615us flush 1649us
2026-08-18 15:29:36.816980+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064262 tx stats: # 44740 owait 1754 3235us finish 45141 bar2 44483 f 21747 enter 3 fq 27 35 718us close 0us prep 339us flush 2240us
2026-08-18 15:29:51.908019+0900 0xfe522    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 15:29:51.909136+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:29:51.909140+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:29:52.008583+0900 0xfe522    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:29:52.128772+0900 0xfe8c5    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:29:52.128944+0900 0xfe91f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 15:29:52.146128+0900 0xfe91f    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 15:29:52.146507+0900 0xfe91f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 15:29:52.146511+0900 0xfe91f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 15:29:52.146513+0900 0xfe91f    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 15:29:52.146571+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 15:29:52.165047+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:29:52.165049+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:34:48.843393+0900 0xfe950    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:34:48.843398+0900 0xfe950    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:34:48.848843+0900 0xfdc65    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 15:34:48.848855+0900 0xfdc65    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:34:48.848864+0900 0xfdc65    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 15:34:48.848869+0900 0xfdc65    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:34:48.848878+0900 0xfdc65    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 15:34:48.972501+0900 0xfe948    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:34:48.972511+0900 0xfe948    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 15:34:48.972523+0900 0xfe948    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 15:34:48.972528+0900 0xfe948    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 15:34:48.976506+0900 0xfe948    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 15:34:48.976624+0900 0xfe51f    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 15:34:48.976649+0900 0xfe51f    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:34:48.976763+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:34:48.976764+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:34:58.860254+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_keybag_cx_expired:6170: disk3s5 apfs received cx expiry notification!
2026-08-18 15:34:58.945234+0900 0x19a      Default     0x0                  0      0    kernel: (apfs) handle_keybag_cx_expired:6196: disk3s5 apfs processed cx expiry notification!
2026-08-18 15:35:14.398135+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064282 tx stats: # 44760 owait 1754 3235us finish 45161 bar2 44503 f 21766 enter 101 fq 96 391 1853us close 0us prep 355us flush 3180us
2026-08-18 15:35:35.553966+0900 0xfe950    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 15:35:35.555075+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:35:35.555080+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:35:35.645128+0900 0xfe950    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:35:35.789539+0900 0xfee28    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:35:35.789694+0900 0xfee7b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 15:35:35.807739+0900 0xfee7b    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 15:35:35.808087+0900 0xfee7b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 15:35:35.808091+0900 0xfee7b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 15:35:35.808093+0900 0xfee7b    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 15:35:35.808160+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 15:35:35.831214+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:35:35.831216+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:51:13.843494+0900 0xfe9fc    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:51:13.843499+0900 0xfe9fc    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:51:13.848408+0900 0xfe9fc    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 15:51:13.848420+0900 0xfe9fc    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:51:13.848430+0900 0xfe9fc    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 15:51:13.848436+0900 0xfe9fc    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 15:51:13.848445+0900 0xfe9fc    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 15:51:13.972655+0900 0xfeeb1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:51:13.972669+0900 0xfeeb1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 15:51:13.972683+0900 0xfeeb1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 15:51:13.972688+0900 0xfeeb1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 15:51:13.976769+0900 0xfeeb1    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 15:51:13.976910+0900 0xfeeaa    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 15:51:13.976934+0900 0xfeeaa    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:51:13.977103+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:51:13.977103+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:51:13.996631+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064302 tx stats: # 44780 owait 1756 3232us finish 45181 bar2 44523 f 21775 enter 184 fq 25 35 338us close 0us prep 548us flush 798us
2026-08-18 15:51:18.891941+0900 0xfeeaa    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 15:51:18.892902+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:51:18.892905+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 15:51:18.993003+0900 0xfeeaa    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 15:51:19.064483+0900 0xff000    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 15:51:19.064633+0900 0xff002    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 15:51:19.098974+0900 0xff002    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 15:51:19.099339+0900 0xff002    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 15:51:19.099341+0900 0xff002    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 15:51:19.099342+0900 0xff002    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 15:51:19.099410+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 15:51:19.117988+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 15:51:19.117989+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 16:01:13.299738+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 16:01:13.299742+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 16:01:13.277856+0900 0xfef48    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 16:01:13.277868+0900 0xfef48    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 16:01:13.277877+0900 0xfef48    Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 16:01:13.277882+0900 0xfef48    Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 16:01:13.277891+0900 0xfef48    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 16:01:13.403296+0900 0xff034    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 16:01:13.403304+0900 0xff034    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 16:01:13.403314+0900 0xff034    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 16:01:13.403319+0900 0xff034    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 16:01:13.407306+0900 0xff034    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 16:01:13.407392+0900 0xff034    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 16:01:13.407418+0900 0xff034    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 16:01:13.407538+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 16:01:13.407539+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 16:01:14.459285+0900 0xff09b    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:completeReport fLogAfterWatchDog:1 fEnableCoreCapture:1 needCaptureLog:1 needsWatchdog:0 dumpFaultReportToDisk:1 needsBlockingFaultReporter:0 doCapture=1
2026-08-18 16:01:14.671276+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:14.837079+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:14.877572+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:14.887150+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:15.655130+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:15.665751+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:15.672539+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:15.678905+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:15.684607+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:15.690933+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:15.697255+0900 0xfef47    Default     0x0                  0      0    kernel: (com.apple.DriverKit-AppleBCMWLAN.dext) corecapture:CCLogPipeUserClient::dumpToDiskComplete
2026-08-18 16:01:18.761088+0900 0xfeaef    Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(867) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 16:01:23.453504+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064322 tx stats: # 44800 owait 1758 3232us finish 45202 bar2 44543 f 21781 enter 54 fq 34 45 707us close 0us prep 1318us flush 2231us
2026-08-18 16:01:59.981241+0900 0xff154    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=4
2026-08-18 16:01:59.982340+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 16:01:59.982344+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 16:02:00.084299+0900 0xff154    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 16:02:00.107594+0900 0xff4f0    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 16:02:00.107641+0900 0xff4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::910:sleep
2026-08-18 16:02:00.124673+0900 0xff4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeController::ShutdownNVMe(bool, bool)::2174:inSuspend: 1 inPolled: 0
2026-08-18 16:02:00.124732+0900 0xff4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2066:inSuspend: 1
2026-08-18 16:02:00.124734+0900 0xff4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2091:Entering suspend
2026-08-18 16:02:00.124735+0900 0xff4ef    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::SendShutdownNotification(bool)::2099:CC=0x46c001 timeout=35000
2026-08-18 16:02:00.124789+0900 0x325      Default     0x0                  0      0    kernel: (RTBuddy) [ANS2:client1] NVMe shutdown start seg->lba: 1, seg->size: 0
2026-08-18 16:02:00.141326+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 16:02:00.141327+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 16:17:56.814556+0900 0xff51a    Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 16:17:56.814560+0900 0xff51a    Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 16:17:56.820209+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: eccWidgetLLTShadow
2026-08-18 16:17:56.820224+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 16:17:56.820240+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: kIOReturnSuccess == (status)
2026-08-18 16:17:56.820249+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleANS2NVMeController.cpp
2026-08-18 16:17:56.820268+0900 0x4dc1     Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn AppleANS2NVMeController::PowerStateAction(unsigned long, unsigned long)::3427: failed with status - 0xe00002c9
2026-08-18 16:17:56.945189+0900 0xff520    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::setPowerState(unsigned long, IOService *)::265:Scheduling callout thread
2026-08-18 16:17:56.945199+0900 0xff520    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::969:wake
2026-08-18 16:17:56.945213+0900 0xff520    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 16:17:56.945219+0900 0xff520    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 16:17:56.949261+0900 0xff520    Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleEmbeddedNVMeController::ThreadEntry()::984:unfreezing queue
2026-08-18 16:17:56.949364+0900 0xff52c    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout ps=2
2026-08-18 16:17:56.949388+0900 0xff52c    Default     0x0                  0      0    kernel: PMRD: disk_sync_callout finish
2026-08-18 16:17:56.949502+0900 0x7f       Default     0x0                  0      0    kernel: PMRD: kIOMessageSystemCapabilityChange[38] to com.apple.iokit.IONVMeFamily
2026-08-18 16:17:56.949502+0900 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 16:17:56.975985+0900 0x25ff     Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4064342 tx stats: # 44820 owait 1761 3227us finish 45222 bar2 44563 f 21793 enter 252 fq 111 140 15629us close 0us prep 434us flush 427us
2026-08-18 11:45:24.451623+0000 0x80       Default     0x0                  0      0    kernel: (AppleDiskImages2) [0 (ctx)] virtual bool AppleDiskImagesController::start(IOService *)::163: kext version: 524.120.8
2026-08-18 11:45:24.827761+0000 0x845      Default     0x0                  0      0    kernel: (AppleH13CameraInterface) AppleH13amIn::start - fInRamdisk=0
2026-08-18 11:45:25.064040+0000 0x98a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS2NVMeController::probe(IOService *, SInt32 *)::248:Found (ANS2) provider, returning score 100000
2026-08-18 11:45:25.064264+0000 0x98a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS3NVMeController::probe(IOService *, SInt32 *)::82:Found (ANS2) provider and linear-sq, returning score 300000
2026-08-18 11:45:25.128200+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleANS2NVMeController::start(IOService *)::430:Found the ANS2Endpoint1
2026-08-18 11:45:25.132325+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::SetNamespacesStruct()::196:Obtained 3 namespaces from DT
2026-08-18 11:45:25.132328+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::756:start 0x100000650
2026-08-18 11:45:25.132603+0000 0x955      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOFilterInterruptEventSource *AppleANS2NVMeController::CreateDeviceInterrupt(IOInterruptEventSource::Action, IOFilterInterruptEventSource::Filter, IOService *)::2756:ANS2 NVMe interrupt index - 0x4
2026-08-18 11:45:25.132648+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual uint32_t AppleANS2CGv2Controller::GetNVMeSPTMQueueEntries()::164:NVMe Queue Entries=253
2026-08-18 11:45:25.133072+0000 0x98a      Default     0x0                  0      0    kernel: (IONVMeFamily) static AppleNVMeRequestPoolTagReserve *AppleNVMeRequestPoolTagReserve::Create(AppleNVMeWorkLoop *, uint8_t, uint16_t, uint32_t, bool, NVMeBufferAllocator *, lck_mtx_t *, NVMeCGType_t, IOMapper *)::138:NVMe Request Pool Init (Tag Reservation Case). First phase, RequestCount = 1
2026-08-18 11:45:25.133193+0000 0x98a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=0 entrysize=64
2026-08-18 11:45:25.133209+0000 0x98a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=1 entrysize=64
2026-08-18 11:45:25.133225+0000 0x98a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 11:45:25.133227+0000 0x98a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 11:45:25.152604+0000 0x9d6      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeRequestPoolTagReserve::Rebuild(uint8_t, uint32_t, bool, NVMeCGType_t, IOMapper *)::181:NVMe Request Pool Init (Tag Reservation Case). Second phase, RequestCount = 253
2026-08-18 11:45:25.208700+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1966:nvme: Vendor ID     : 0x106b
2026-08-18 11:45:25.208702+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1967:nvme: Model Number  : APPLE SSD AP0512Z
2026-08-18 11:45:25.208704+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1968:nvme: Serial Number : [REDACTED]
2026-08-18 11:45:25.208706+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1969:nvme: Firmware Rev  : 561.100.
2026-08-18 11:45:25.208707+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2038:nvme: S5E A0 Toshiba 5th Gen Lithography tlc 3D 2 plane 512GB
2026-08-18 11:45:25.208710+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2058:ECCVersion   : 1
2026-08-18 11:45:25.208712+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2062:FTL Rev      : 36.1
2026-08-18 11:45:25.208713+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2063:DM_Version   : 179
2026-08-18 11:45:25.208714+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2064:=======================
2026-08-18 11:45:25.208716+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2071:Found 3 namespaces in current NAND
2026-08-18 11:45:25.208754+0000 0x6c1      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[1] as nstype[1]
2026-08-18 11:45:25.208802+0000 0x6c1      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[2] as nstype[8]
2026-08-18 11:45:25.208841+0000 0x9d6      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[3] as nstype[13]
2026-08-18 11:45:25.225821+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1580:allocateAll 1
2026-08-18 11:45:25.231300+0000 0x953      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 11:45:25.288820+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 11:45:25.288822+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s1 device_handle block size 4096 block count 128000 features 0 internal
2026-08-18 11:45:25.288903+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 11:45:25.289051+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s3 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 11:45:25.289053+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s3 device_handle block size 4096 block count 1310709 features 0 internal
2026-08-18 11:45:25.289224+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s2 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 11:45:25.289226+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s2 device_handle block size 4096 block count 120699413 features 0 internal
2026-08-18 11:45:25.289426+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s3 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 11:45:25.289522+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 11:45:25.295780+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s1 checkpoint search: largest xid 9053, best xid 9053 @ 9
2026-08-18 11:45:25.295784+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s1 stable checkpoint indices: desc 8 data 370
2026-08-18 11:45:25.302023+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s3 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 11:45:25.302026+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s3 stable checkpoint indices: desc 36 data 285
2026-08-18 11:45:25.338139+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s2 checkpoint search: largest xid 4065770, best xid 4065770 @ 118
2026-08-18 11:45:25.338145+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s2 stable checkpoint indices: desc 117 data 12135
2026-08-18 11:45:25.338163+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 11:45:25.338165+0000 0x981      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 11:45:25.338654+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 11:45:25.338656+0000 0x953      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 11:45:25.340225+0000 0x981      Default     0x0                  0      0    kernel: (AppleFileSystemDriver) AppleFileSystemDriver: publishing boot-uuid-media=disk3s1 (Macintosh HD)
2026-08-18 11:45:25.340286+0000 0x953      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 2, NSTYPE - 8
2026-08-18 11:45:25.340450+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 11:45:25.340452+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 768
2026-08-18 11:45:25.340490+0000 0x953      Default     0x0                  0      0    kernel: BSD root: disk3s1
2026-08-18 11:45:25.340526+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 2, NSTYPE: 8
2026-08-18 11:45:25.340529+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 3, NSTYPE - 13
2026-08-18 11:45:25.340683+0000 0x953      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk3 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 11:45:25.340685+0000 0x953      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk3 device_handle block size 4096 block count 120699413 features 22 internal solidstate
2026-08-18 11:45:25.340740+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 11:45:25.340742+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 32768
2026-08-18 11:45:25.340781+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk3 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 11:45:25.340850+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeEAN::StartDevice(IOService *)::249:EAN StartDevice Done
2026-08-18 11:45:25.340907+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 3, NSTYPE: 13
2026-08-18 11:45:25.340909+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::StartController()::1549:Setting NAND status to Ready
+ 2026-08-18 11:45:25.340915+0000 0x88a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::816:Successfully initialized NVMe drive 0x100000650
+ 2026-08-18 11:45:25.342254+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cd00c2 DWORD10=0x00000000 NVMeStatus=0xc0
+ 2026-08-18 11:45:25.342256+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CD
+ 2026-08-18 11:45:25.342258+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 11:45:25.342259+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
+ 2026-08-18 11:45:25.342261+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
+ 2026-08-18 11:45:25.342477+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cd00c2 DWORD10=0x00000000 NVMeStatus=0xc0
+ 2026-08-18 11:45:25.342478+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CD
+ 2026-08-18 11:45:25.342480+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 11:45:25.342481+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
+ 2026-08-18 11:45:25.342482+0000 0x981      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 11:45:25.383075+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk3 checkpoint search: largest xid 4065770, best xid 4065770 @ 118
2026-08-18 11:45:25.383080+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk3 stable checkpoint indices: desc 117 data 12135
2026-08-18 11:45:25.384287+0000 0x953      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s1 No ER state object for volume Macintosh HD - rolling is not happening, nothing to recover.
2026-08-18 11:45:25.384596+0000 0x953      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2916: disk3s1 Rooting from snapshot with xid 3094032.
2026-08-18 11:45:25.384599+0000 0x953      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 11:45:25.384625+0000 0x953      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1222: disk3s1 mounting snapshot w/snap_xid 3094032 and sblock oid 0xbcade
2026-08-18 11:45:25.385304+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk3 volume groups tree is not setup yet
2026-08-18 11:45:25.385305+0000 0x953      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk3 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 11:45:25.385561+0000 0x953      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 11:45:25.385563+0000 0x953      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 11:45:25.385565+0000 0x953      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk3s1 successfully validated on-disk root hash
2026-08-18 11:45:25.385567+0000 0x953      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1407: disk3s1 setting dev block size to 4096 from 512
2026-08-18 11:45:25.385573+0000 0x953      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 11:45:25.386775+0000 0x953      Default     0x0                  0      0    kernel: (apfs) handle_mount:960: disk3s1 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
2026-08-18 11:45:25.386778+0000 0x953      Default     0x0                  0      0    kernel: (apfs) fs_setup_shadow_fs_root_tree:3501: disk3s1 Created the shadow_fs_root tree <private>
2026-08-18 11:45:25.386793+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s1 Set volume (role 0x1) to 402 xid 2f3610
2026-08-18 11:45:25.386817+0000 0x953      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 11:45:25.387423+0000 0x953      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 11:45:25.387425+0000 0x953      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 11:45:25.391577+0000 0x953      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 11:45:25.391615+0000 0x953      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 11:45:25.391708+0000 0x953      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 11:45:25.391710+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 11:45:25.399501+0000 0x981      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk4s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 11:45:25.399503+0000 0x981      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk4s1 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 11:45:25.399515+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk4s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 11:45:25.401922+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk4s1 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 11:45:25.401925+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk4s1 stable checkpoint indices: desc 6 data 14
2026-08-18 11:45:25.402938+0000 0x953      Default     0x0                  0      0    kernel: imageboot_pivot_image: attached disk image /System/Volumes/Recovery/398F441C-CCE1-471E-AA2A-F804CABE8548/boot/B23324F57C2EF64EDC38BD8F5EB06D534A249B64D931D892147D98B70E9A9A76C2CEAFDC629D9D9C877585940336718D/usr/standalone/firmware/arm64eBaseSystem.dmg as disk4s1
2026-08-18 11:45:25.403005+0000 0x953      Default     0x0                  0      0    kernel: (HFS) hfs_mount: hfs_mountfs returned error=22 for device disk4s1
2026-08-18 11:45:25.403107+0000 0x953      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk5 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 11:45:25.403109+0000 0x953      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk5 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 11:45:25.403119+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk5 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 11:45:25.403360+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk5 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 11:45:25.403362+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk5 stable checkpoint indices: desc 6 data 14
2026-08-18 11:45:25.405289+0000 0x953      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk5s1 No ER state object for volume macOS Base System - rolling is not happening, nothing to recover.
2026-08-18 11:45:25.405354+0000 0x953      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 11:45:25.405356+0000 0x953      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 11:45:25.405358+0000 0x953      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk5s1 successfully validated on-disk root hash
2026-08-18 11:45:25.405371+0000 0x953      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mounting volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 11:45:25.405405+0000 0x953      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk5s1 vol-uuid: 98E2569B-8C5F-43FB-BAC5-FD0129260DF4 block size: 4096 block count: 385536 (unencrypted; flags: 0x1; features: 21.0.12)
2026-08-18 11:45:25.407141+0000 0x953      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk5s1 setting dev block size to 4096 from 512
2026-08-18 11:45:25.407143+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 11:45:25.407150+0000 0x953      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mount-complete volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 11:45:25.407414+0000 0x953      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 11:45:25.407416+0000 0x953      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 11:45:25.410988+0000 0x953      Default     0x0                  0      0    kernel: (BootCache) BootCache: Root disk is an SSD, not caching
2026-08-18 11:45:25.877627+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:173: disk3 metazone for device 0 of size 1540803 blocks (encrypted: 0-770401 unencrypted: 770401-1540803)
2026-08-18 11:45:25.877631+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 23199744
2026-08-18 11:45:25.877633+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 23887872
2026-08-18 11:45:25.877635+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 68780032
2026-08-18 11:45:25.877637+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 15597568
2026-08-18 11:45:25.880489+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s6 No ER state object for volume VM - rolling is not happening, nothing to recover.
2026-08-18 11:45:25.880493+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mounting volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.880542+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s6 vol-uuid: D5740DA5-764A-4EE1-A679-9DA5755A8249 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 11:45:25.880687+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s6 setting dev block size to 4096 from 512
2026-08-18 11:45:25.880689+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s6 Volume VM role 0x8 is not a System or Data volume
2026-08-18 11:45:25.880701+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mount-complete volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.883253+0000 0x981      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
2026-08-18 11:45:25.883257+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mounting volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.883274+0000 0x981      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s2 vol-uuid: 336B630F-3720-42B7-9A54-AC333F292FBD block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 11:45:25.883736+0000 0x981      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s2 setting dev block size to 4096 from 512
2026-08-18 11:45:25.883739+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
2026-08-18 11:45:25.883749+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s2 volume with role 16 will be mounted until system shutdown
2026-08-18 11:45:25.883753+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mount-complete volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.887008+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s4 No ER state object for volume Update - rolling is not happening, nothing to recover.
2026-08-18 11:45:25.887011+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mounting volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.887032+0000 0x88a      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s4 vol-uuid: F01A451D-5CDC-4F27-9387-42805AB04770 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 11:45:25.887790+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s4 setting dev block size to 4096 from 512
2026-08-18 11:45:25.887798+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s4 Volume Update role 0xc0 is not a System or Data volume
2026-08-18 11:45:25.887808+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s4 volume with role 192 will be mounted until system shutdown
2026-08-18 11:45:25.887812+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mount-complete volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.888325+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk1 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 11:45:25.888328+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk1 device_handle block size 4096 block count 128000 features 22 internal solidstate
2026-08-18 11:45:25.888551+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 11:45:25.910042+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk1 checkpoint search: largest xid 9053, best xid 9053 @ 9
2026-08-18 11:45:25.910050+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk1 stable checkpoint indices: desc 8 data 370
2026-08-18 11:45:25.910059+0000 0x981      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:111: disk1 no metazone for device 0, of size 524288000 bytes, block_size 4096
2026-08-18 11:45:25.911450+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk1 scan took 0.001378 s (no trims)
2026-08-18 11:45:25.911453+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk1 dev 0 smfree 122764/128000 table 25/127 blocks 122764 1:4910:122615 100.00% range 1219:126781 99.04% scans 1
2026-08-18 11:45:25.914251+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk1 scan took 0.002794 s, trims took 0.002790 s
2026-08-18 11:45:25.914253+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk1 122764 blocks free in 26 extents, avg 4721.69
2026-08-18 11:45:25.914255+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk1 122764 blocks trimmed in 26 extents (107 us/trim, 9318 trims/s)
2026-08-18 11:45:25.914258+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk1 trim distribution 1:3 2+:4 4+:17 16+:0 64+:0 256+:2
2026-08-18 11:45:25.914371+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s2 No ER state object for volume xART - rolling is not happening, nothing to recover.
2026-08-18 11:45:25.914374+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mounting volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.914399+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s2 vol-uuid: 8E16CEF3-ED64-4D4E-BBA7-A3B59511C2AA block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 11:45:25.914408+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s2 setting dev block size to 4096 from 512
2026-08-18 11:45:25.914410+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s2 Volume xART role 0x100 is not a System or Data volume
2026-08-18 11:45:25.914413+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s2 volume with role 256 will be mounted until system shutdown
2026-08-18 11:45:25.914416+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mount-complete volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.917664+0000 0x981      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s1 No ER state object for volume iSCPreboot - rolling is not happening, nothing to recover.
2026-08-18 11:45:25.917670+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mounting volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.917684+0000 0x981      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s1 vol-uuid: 68EF6EF8-2323-4896-9123-2894BDE8CA21 block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 11:45:25.917927+0000 0x981      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s1 setting dev block size to 4096 from 512
2026-08-18 11:45:25.917930+0000 0x981      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s1 Volume iSCPreboot role 0x10 is not a System or Data volume
2026-08-18 11:45:25.917935+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s1 volume with role 16 will be mounted until system shutdown
2026-08-18 11:45:25.917939+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mount-complete volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.920093+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s3 No ER state object for volume Hardware - rolling is not happening, nothing to recover.
2026-08-18 11:45:25.920096+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mounting volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.920116+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s3 vol-uuid: 26639779-A201-4A4B-90DA-1A7F4141453B block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 11:45:25.920270+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s3 setting dev block size to 4096 from 512
2026-08-18 11:45:25.920277+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s3 Volume Hardware role 0x140 is not a System or Data volume
2026-08-18 11:45:25.920280+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s3 volume with role 320 will be mounted until system shutdown
2026-08-18 11:45:25.920283+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mount-complete volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 11:45:25.960609+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_rawdev_create:708: disk1s2 Enable bypass mode on inode 16 on xART@disk1 as 2.0, tidemark 2771
2026-08-18 11:45:26.062431+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk3 scan took 0.184783 s (no trims)
2026-08-18 11:45:26.062434+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk3 dev 0 smfree 15177334/120699413 table 587/587 blocks 453748 432:772:5965 2.98% range 1042374:119615391 99.10% scans 1
2026-08-18 11:45:26.062437+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:496: disk3 dev 0 scan_stats[2]: foundmax 5965 extents 812823 blocks 14723586 long 432 avg 18 97.01% range 39147:120660266 99.96%
2026-08-18 11:45:28.048411+0000 0x9d7      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 11:45:28.057634+0000 0x9d7      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 11:45:28.057639+0000 0x9d7      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 11:45:28.121671+0000 0x981      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk3 scan took 2.059230 s, trims took 1.871248 s
2026-08-18 11:45:28.121674+0000 0x981      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk3 15177334 blocks free in 813415 extents, avg 18.65
2026-08-18 11:45:28.121676+0000 0x981      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk3 15177334 blocks trimmed in 813415 extents (2 us/trim, 434691 trims/s)
2026-08-18 11:45:28.121678+0000 0x981      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk3 trim distribution 1:279201 2+:151123 4+:243552 16+:82026 64+:52230 256+:5283
2026-08-18 11:45:28.121680+0000 0x981      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4455: disk3 trims dropped: 24094 blocks 23930 extents, avg 1.00
2026-08-18 11:45:28.286352+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 11:45:28.296129+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 11:45:28.296144+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 11:45:28.305368+0000 0x981      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 updating mounted volume macOS Base System, requested by: mount_apfs (pid 25); parent: mount (pid 24)
2026-08-18 11:45:22.500924+0000 0x9a6      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 11:45:22.500930+0000 0x9a6      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 11:45:22.523356+0000 0xc00      Default     0x0                  0      0    kernel: (apfs) apfs_mount:30540: disk3s5 Failed to unwrap metadata crypto state: 1
2026-08-18 11:45:22.541496+0000 0xc00      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2842: disk3 apfs_mount failed, err: 1
2026-08-18 11:45:22.724752+0000 0xbe1      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 11:45:22.724764+0000 0xbe1      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 11:45:22.724907+0000 0xbe1      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 11:45:22.728397+0000 0xbe1      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 11:45:22.728416+0000 0xbe1      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 11:45:25.640034+0000 0x908      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 11:45:25.654395+0000 0xc2e      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] 10 duplicate reports for Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 11:45:32.485299+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) handle_get_dev_by_role:13150: disk3s1 This operation needs entitlement
2026-08-18 11:45:37.698770+0000 0xaca      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 11:45:37.698778+0000 0xaca      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 11:45:37.729641+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 11:45:37.736674+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 os.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 11:45:37.736677+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 os.dmg device_handle block size 4096 real block size 4096 block count 1736704 features 0 internal
2026-08-18 11:45:37.764814+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: os.dmgs1 successfully validated on-disk root hash
2026-08-18 11:45:37.764823+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 11:45:37.764824+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99116, jobj_id range 100687+12489
2026-08-18 11:45:37.765011+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99116 on dir 17, dev_name [os.dmg]
2026-08-18 11:45:37.765716+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 11:45:37.765727+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 app.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 11:45:37.765728+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 app.dmg device_handle block size 4096 real block size 4096 block count 12800 features 0 internal
2026-08-18 11:45:37.768383+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: app.dmgs1 successfully validated on-disk root hash
2026-08-18 11:45:37.768387+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 11:45:37.768388+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99120, jobj_id range 113176+5406
2026-08-18 11:45:37.768537+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99120 on dir 18, dev_name [app.dmg]
2026-08-18 11:45:37.768909+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 11:45:37.768910+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:849: disk3s2 Grafting a clone, share blockmap lut with os.dmg
2026-08-18 11:45:37.768911+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 os.clone.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 11:45:37.768912+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 os.clone.dmg device_handle block size 4096 real block size 4096 block count 1736704 features 0 internal
2026-08-18 11:45:37.771666+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: os.clone.dmgs1 successfully validated on-disk root hash
2026-08-18 11:45:37.771669+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 11:45:37.771670+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99117, jobj_id range 118582+12489
2026-08-18 11:45:37.771988+0000 0xec3      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99117 on dir 20, dev_name [os.clone.dmg]
2026-08-18 11:45:38.146171+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s5 No ER state object for volume Data - rolling is not happening, nothing to recover.
2026-08-18 11:45:38.150256+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s5 mounting volume Data, requested by: apfs_boot_util (pid 240); parent: launchd (pid 1)
2026-08-18 11:45:38.150304+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s5 vol-uuid: 398F441C-CCE1-471E-AA2A-F804CABE8548 block size: 4096 block count: 120699413 (encrypted; flags: 0x100; features: 41.0.2)
2026-08-18 11:45:38.150319+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s5 setting dev block size to 4096 from 512
2026-08-18 11:45:38.150321+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s5 Set volume (role 0x40) to 8a99 xid 0
2026-08-18 11:45:38.150358+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s5 mount-complete volume Data, requested by: apfs_boot_util (pid 240); parent: launchd (pid 1)
2026-08-18 11:45:38.150384+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) apfs_kbn_handler_start:7700: disk3s5 keybag notification handler started
2026-08-18 11:45:38.204898+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 unmounting volume macOS Base System, requested by: apfs_boot_util (pid 240); parent: launchd (pid 1)
2026-08-18 11:45:38.204909+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 11:45:38.204971+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk5 nx_num_vols_mounted is 0
2026-08-18 11:45:38.206799+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) container_get_dangling_mounts:4766: Found 0 dangling mounts on /dev/disk5
2026-08-18 11:45:38.215798+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: apfs_boot_util (pid 240); parent: launchd (pid 1)
2026-08-18 11:45:38.215803+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 11:45:38.215823+0000 0xecb      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 11:45:38.295871+0000 0xed4      Default     0x0                  0      0    kernel: (apfs) authorize_purge:4154: disk3s5 failed to authorize rmdir for ino 23126050 (parent 23125507): 1 (Operation not permitted)
2026-08-18 11:45:38.866384+0000 0x6c1      Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29709243 size back to 4429744 (from 4545064)
2026-08-18 20:45:37.092716+0900 0x11b2     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: mDNSResponder(354) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 20:45:37.092721+0900 0x11b2     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 354, mDNSResponder
2026-08-18 20:45:37.098619+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065790 tx stats: # 20 owait 11 15770us finish 6 bar2 6 f 1 enter 748 fq 121 21962 1251us close 34us prep 539us flush 598us
2026-08-18 20:45:38.512980+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:38.513029+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:38.513035+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:38.515823+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PHOT successfully validated on-disk root hash
2026-08-18 20:45:38.515884+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a06e2 type 3
2026-08-18 20:45:38.515889+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1615250, jobj_id range 1705579+116
2026-08-18 20:45:38.516134+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1615250 on dir 1705578, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:38.520687+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065810 tx stats: # 40 owait 14 12900us finish 26 bar2 26 f 1 enter 677 fq 64 92 616us close 3us prep 5957us flush 2424us
2026-08-18 20:45:38.552888+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:38.552944+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:38.552949+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:38.556155+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MAGI successfully validated on-disk root hash
2026-08-18 20:45:38.556183+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc56d type 3
2026-08-18 20:45:38.556187+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14390412, jobj_id range 14468344+116
2026-08-18 20:45:38.556531+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14390412 on dir 14468343, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:38.591531+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:38.591563+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:38.591568+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:38.594704+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MESS successfully validated on-disk root hash
2026-08-18 20:45:38.594721+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0ca2 type 3
2026-08-18 20:45:38.594727+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1683674, jobj_id range 1707051+116
2026-08-18 20:45:38.594977+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1683674 on dir 1707050, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:38.641163+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:38.641265+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:38.641279+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:38.646422+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PHOT successfully validated on-disk root hash
2026-08-18 20:45:38.646445+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a084a type 3
2026-08-18 20:45:38.646449+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1625731, jobj_id range 1705939+116
2026-08-18 20:45:38.647019+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1625731 on dir 1705938, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:38.703703+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:38.703759+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:38.703764+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:38.708266+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MESS successfully validated on-disk root hash
2026-08-18 20:45:38.708290+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc5e3 type 3
2026-08-18 20:45:38.708312+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14397120, jobj_id range 14468462+116
2026-08-18 20:45:38.708732+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14397120 on dir 14468461, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:38.753920+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:38.753981+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:38.753985+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:38.759600+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_AUTO successfully validated on-disk root hash
2026-08-18 20:45:38.759617+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0f7f type 3
2026-08-18 20:45:38.759622+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1703896, jobj_id range 1707784+116
2026-08-18 20:45:38.760036+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1703896 on dir 1707783, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:38.797706+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:38.797754+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:38.797759+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:38.802034+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PROO successfully validated on-disk root hash
2026-08-18 20:45:38.802056+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc8a7 type 3
2026-08-18 20:45:38.802060+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14466627, jobj_id range 14469170+116
2026-08-18 20:45:38.802459+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14466627 on dir 14469169, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:38.859986+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:38.860066+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:38.860070+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 13312 features 0 internal  VEK
2026-08-18 20:45:38.862695+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SHOR successfully validated on-disk root hash
2026-08-18 20:45:38.862713+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a12be type 3
2026-08-18 20:45:38.862718+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1704058, jobj_id range 1707904+150
2026-08-18 20:45:38.862984+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1704058 on dir 1707903, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:38.900222+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:38.900348+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:38.900358+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:38.904260+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SUGG successfully validated on-disk root hash
2026-08-18 20:45:38.904365+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0f07 type 3
2026-08-18 20:45:38.904372+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1700875, jobj_id range 1707543+116
2026-08-18 20:45:38.904755+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1700875 on dir 1707542, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:39.035559+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.035635+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.035641+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:39.040515+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_FM_A successfully validated on-disk root hash
2026-08-18 20:45:39.040540+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc745 type 3
2026-08-18 20:45:39.040546+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14461068, jobj_id range 14468816+116
2026-08-18 20:45:39.040920+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14461068 on dir 14468815, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:39.076455+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.076548+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.076551+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 77312 features 0 internal  VEK
2026-08-18 20:45:39.080648+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_BA successfully validated on-disk root hash
2026-08-18 20:45:39.080704+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a066a type 3
2026-08-18 20:45:39.080710+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1588657, jobj_id range 1705440+135
2026-08-18 20:45:39.081585+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1588657 on dir 1705439, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:39.118244+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.118307+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.118312+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:39.123378+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PROF successfully validated on-disk root hash
2026-08-18 20:45:39.123404+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a07d2 type 3
2026-08-18 20:45:39.123409+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1618299, jobj_id range 1705699+116
2026-08-18 20:45:39.123809+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1618299 on dir 1705698, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:39.146108+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.146216+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.146223+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 166400 features 0 internal  VEK
2026-08-18 20:45:39.154767+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SIRI_ASR_ASSISTANT_EN_US_EN_ successfully validated on-disk root hash
2026-08-18 20:45:39.154789+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcadcb type 3
2026-08-18 20:45:39.154818+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14460120, jobj_id range 14461832+458
2026-08-18 20:45:39.155456+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14460120 on dir 14461831, dev_name [UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg]
2026-08-18 20:45:39.177958+0900 0x1508     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 20:45:39.177971+0900 0x1508     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 469); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:39.177985+0900 0x1508     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4065823)
2026-08-18 20:45:39.182034+0900 0x1508     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 20:45:39.182110+0900 0x1508     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 20:45:39.182168+0900 0x1508     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 20:45:39.182229+0900 0x1508     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 469); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:39.189533+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 20:45:39.189550+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 20:45:39.189590+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 20:45:39.189600+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 20:45:39.189886+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_stop_bg_work_ext:928: disk3s1 Volume Macintosh HD is unmounting, stop any bg work
2026-08-18 20:45:39.190727+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 456); parent: launchd (pid 1)
2026-08-18 20:45:39.190745+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 20:45:39.191533+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.191592+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.191595+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 7168 features 0 internal  VEK
2026-08-18 20:45:39.191747+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 20:45:39.191896+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 20:45:39.194182+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MAIL successfully validated on-disk root hash
2026-08-18 20:45:39.194210+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0c0a type 3
2026-08-18 20:45:39.194214+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1679841, jobj_id range 1706899+116
2026-08-18 20:45:39.202534+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1679841 on dir 1706898, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:39.213070+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 20:45:39.213090+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 471); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:39.213102+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4065826)
2026-08-18 20:45:39.215482+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 20:45:39.215560+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 20:45:39.215625+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 792235
2026-08-18 20:45:39.215644+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 20:45:39.237909+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.237994+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.237999+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:39.243814+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_OPEN successfully validated on-disk root hash
2026-08-18 20:45:39.243836+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc659 type 3
2026-08-18 20:45:39.243841+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14403375, jobj_id range 14468580+116
2026-08-18 20:45:39.244271+0900 0x12a5     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14403375 on dir 14468579, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:39.730403+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 793227 -> 784584
2026-08-18 20:45:39.763036+0900 0x1535     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4065827-4065827
2026-08-18 20:45:39.808476+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.808541+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.808545+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:39.811189+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_TEXT successfully validated on-disk root hash
2026-08-18 20:45:39.811216+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc831 type 3
2026-08-18 20:45:39.811220+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14466449, jobj_id range 14469052+116
2026-08-18 20:45:39.811448+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14466449 on dir 14469051, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:39.826190+0900 0x1535     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4065827, om_snap_count 1 om_most_recent_snap 4065827
2026-08-18 20:45:39.826195+0900 0x1535     Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4065827
2026-08-18 20:45:39.826682+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 20:45:39.827730+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4065829)
2026-08-18 20:45:39.833415+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 20:45:39.833483+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 20:45:39.833547+0900 0x1515     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 471); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:39.857589+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.857669+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.857674+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:39.861326+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MACH successfully validated on-disk root hash
2026-08-18 20:45:39.861352+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc7bb type 3
2026-08-18 20:45:39.861357+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14465641, jobj_id range 14468934+116
2026-08-18 20:45:39.861681+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14465641 on dir 14468933, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:39.873845+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065830 tx stats: # 60 owait 16 11664us finish 46 bar2 46 f 5 enter 50 fq 35 41 196us close 30374us prep 515us flush 2439us
2026-08-18 20:45:39.897772+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 456); parent: launchd (pid 1)
2026-08-18 20:45:39.897800+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 20:45:39.899324+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 20:45:39.902020+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 20:45:39.939843+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.939927+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.939932+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:39.943941+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_TEXT successfully validated on-disk root hash
2026-08-18 20:45:39.943972+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0b1a type 3
2026-08-18 20:45:39.943977+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1655456, jobj_id range 1706539+116
2026-08-18 20:45:39.944311+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1655456 on dir 1706538, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:39.981941+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:39.982004+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:39.982010+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 7168 features 0 internal  VEK
2026-08-18 20:45:39.985379+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SUMM successfully validated on-disk root hash
2026-08-18 20:45:39.985401+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc91d type 3
2026-08-18 20:45:39.985405+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14467237, jobj_id range 14469288+116
2026-08-18 20:45:39.985790+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14467237 on dir 14469287, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.023472+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.023563+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.023569+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 253952 features 0 internal  VEK
2026-08-18 20:45:40.029131+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_BASE successfully validated on-disk root hash
2026-08-18 20:45:40.029151+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0e16 type 3
2026-08-18 20:45:40.029155+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1685582, jobj_id range 1707411+128
2026-08-18 20:45:40.029672+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1685582 on dir 1707410, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.076036+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.076153+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.076162+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 62464 features 0 internal  VEK
2026-08-18 20:45:40.082963+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_IF_PLANNER_NLROUTER_BASE_KO_ successfully validated on-disk root hash
2026-08-18 20:45:40.082992+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x187c28 type 3
2026-08-18 20:45:40.082998+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1586107, jobj_id range 1604598+46
2026-08-18 20:45:40.083663+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1586107 on dir 1604597, dev_name [UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.146303+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.146412+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.146417+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 41472 features 0 internal  VEK
2026-08-18 20:45:40.152304+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SPEECH_ASR_TRANSCRIPTION_KO_ successfully validated on-disk root hash
2026-08-18 20:45:40.152335+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xde19e8 type 3
2026-08-18 20:45:40.152341+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14553470, jobj_id range 14555507+68
2026-08-18 20:45:40.152914+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14553470 on dir 14555503, dev_name [UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.205982+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.206044+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.206050+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 1024 features 0 internal  VEK
2026-08-18 20:45:40.212720+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: SECUREPKITRUSTSTOREASSETS_SECUR successfully validated on-disk root hash
2026-08-18 20:45:40.212741+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x37ecf3 type 3
2026-08-18 20:45:40.212747+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 3664701, jobj_id range 3664795+34
2026-08-18 20:45:40.213171+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 3664701 on dir 3664794, dev_name [SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg]
2026-08-18 20:45:40.242525+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.242708+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.242720+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 324096 features 0 internal  VEK
2026-08-18 20:45:40.253033+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_VISUAL_IMAGE_DIFFUSION_V1 successfully validated on-disk root hash
2026-08-18 20:45:40.253057+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x197f9e type 3
2026-08-18 20:45:40.253063+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1604359, jobj_id range 1670854+196
2026-08-18 20:45:40.253745+0900 0x12eb     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1604359 on dir 1670851, dev_name [UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.289335+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.289401+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.289406+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:40.294244+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_CONC successfully validated on-disk root hash
2026-08-18 20:45:40.294267+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a093a type 3
2026-08-18 20:45:40.294272+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1641368, jobj_id range 1706059+116
2026-08-18 20:45:40.294702+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1641368 on dir 1706058, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.329448+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.329542+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.329549+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 50176 features 0 internal  VEK
2026-08-18 20:45:40.335892+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_IMAG successfully validated on-disk root hash
2026-08-18 20:45:40.335910+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdccc13 type 3
2026-08-18 20:45:40.335915+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14467978, jobj_id range 14469406+28
2026-08-18 20:45:40.336597+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14467978 on dir 14469405, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.371154+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.371248+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.371287+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 55808 features 0 internal  VEK
2026-08-18 20:45:40.377274+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_IM successfully validated on-disk root hash
2026-08-18 20:45:40.377295+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0c2a type 3
2026-08-18 20:45:40.377301+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1681663, jobj_id range 1707019+28
2026-08-18 20:45:40.377988+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1681663 on dir 1707018, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.398377+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.398477+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.398482+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 133120 features 0 internal  VEK
2026-08-18 20:45:40.405285+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SIRI_ASR_ASSISTANT_KO_KR_KO_ successfully validated on-disk root hash
2026-08-18 20:45:40.405305+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcab87 type 3
2026-08-18 20:45:40.405309+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14398070, jobj_id range 14461497+331
2026-08-18 20:45:40.405604+0900 0x12e3     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14398070 on dir 14461496, dev_name [UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg]
2026-08-18 20:45:40.446168+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.446233+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.446239+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:40.451093+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SHOR successfully validated on-disk root hash
2026-08-18 20:45:40.451116+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0d92 type 3
2026-08-18 20:45:40.451121+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1684620, jobj_id range 1707291+116
2026-08-18 20:45:40.451486+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1684620 on dir 1707290, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.503460+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.503537+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.503542+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:40.508400+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_REMI successfully validated on-disk root hash
2026-08-18 20:45:40.508425+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0d1a type 3
2026-08-18 20:45:40.508430+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1684144, jobj_id range 1707171+116
2026-08-18 20:45:40.508832+0900 0x12e9     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1684144 on dir 1707170, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.545728+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.545812+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.545817+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:40.550860+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_OP successfully validated on-disk root hash
2026-08-18 20:45:40.550898+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc6cf type 3
2026-08-18 20:45:40.550907+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14459878, jobj_id range 14468698+116
2026-08-18 20:45:40.551332+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14459878 on dir 14468697, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.599920+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.599988+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.599993+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:40.605188+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_AD successfully validated on-disk root hash
2026-08-18 20:45:40.605217+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0a2a type 3
2026-08-18 20:45:40.605221+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1645820, jobj_id range 1706299+116
2026-08-18 20:45:40.605643+0900 0x12e2     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1645820 on dir 1706298, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:40.641039+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 20:45:40.641121+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 20:45:40.641126+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 20:45:40.646610+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_FRIE successfully validated on-disk root hash
2026-08-18 20:45:40.646632+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0b92 type 3
2026-08-18 20:45:40.646637+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1666752, jobj_id range 1706779+116
2026-08-18 20:45:40.647060+0900 0x12ea     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1666752 on dir 1706778, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 20:45:48.633165+0900 0xfbd      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 20:45:48.633171+0900 0xfbd      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 20:45:50.176094+0900 0x1064     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s2 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 289
2026-08-18 20:45:50.224499+0900 0xfe6      Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s1 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 289
2026-08-18 20:45:50.350595+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065850 tx stats: # 80 owait 16 11664us finish 66 bar2 66 f 7 enter 2060 fq 41 50 400us close 47us prep 1784us flush 10872us
2026-08-18 20:45:50.686732+0900 0x16a6     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s5 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 289
2026-08-18 20:45:51.257808+0900 0x17cc     Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 20:45:51.257818+0900 0x17cc     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mounting volume Recovery, requested by: mount_apfs (pid 565); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:51.257914+0900 0x17cc     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 20:45:51.258078+0900 0x17cc     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 20:45:51.258085+0900 0x17cc     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 20:45:51.258118+0900 0x17cc     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mount-complete volume Recovery, requested by: mount_apfs (pid 565); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:51.305537+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_stop_bg_work_ext:928: disk3s3 Volume Recovery is unmounting, stop any bg work
2026-08-18 20:45:51.307300+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: com.apple.MobileSoftwareUpdate. (pid 456); parent: launchd (pid 1)
2026-08-18 20:45:51.307312+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s3 waiting for purgatory cleaner to finish
2026-08-18 20:45:51.311166+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065870 tx stats: # 100 owait 18 10400us finish 87 bar2 86 f 9 enter 126 fq 75 102 736us close 0us prep 134us flush 2059us
2026-08-18 20:45:51.311209+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 20:45:51.311317+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 20:45:51.900857+0900 0x18ea     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: routined(592) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 20:45:51.900858+0900 0x18ea     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 592, routined
2026-08-18 20:45:52.234051+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065890 tx stats: # 120 owait 20 9404us finish 107 bar2 106 f 10 enter 192 fq 53 95 437us close 10us prep 426us flush 748us
2026-08-18 20:45:52.260796+0900 0x1949     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 20:45:52.260807+0900 0x1949     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 618); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:52.260817+0900 0x1949     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4065895)
2026-08-18 20:45:52.264425+0900 0x1949     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 20:45:52.264496+0900 0x1949     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 20:45:52.264551+0900 0x1949     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 20:45:52.264591+0900 0x1949     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 618); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:52.396341+0900 0x193a     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: sharingd(611) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 20:45:52.396342+0900 0x193a     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 611, sharingd
2026-08-18 20:45:52.624273+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 20:45:52.624294+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 20:45:52.624359+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 20:45:52.624377+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 20:45:52.626087+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 456); parent: launchd (pid 1)
2026-08-18 20:45:52.626097+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 20:45:52.627578+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 20:45:52.628715+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 20:45:52.671741+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 20:45:52.671750+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 653); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:52.671758+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4065907)
2026-08-18 20:45:52.676609+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 20:45:52.676652+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 20:45:52.676697+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 784499
2026-08-18 20:45:52.676711+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 20:45:52.714346+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 784584 -> 772007
2026-08-18 20:45:52.747804+0900 0x1ab5     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4065908-4065908
2026-08-18 20:45:52.789769+0900 0x1ab5     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4065908, om_snap_count 1 om_most_recent_snap 4065908
2026-08-18 20:45:52.789776+0900 0x1ab5     Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4065908
2026-08-18 20:45:52.790328+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 20:45:52.791213+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4065909)
2026-08-18 20:45:52.795401+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 20:45:52.795464+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 20:45:52.795513+0900 0x1a9b     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 653); parent: com.apple.Mobile (pid 456)
2026-08-18 20:45:52.831933+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065910 tx stats: # 140 owait 21 9063us finish 126 bar2 126 f 14 enter 91 fq 43 130 294us close 2487us prep 483us flush 4669us
2026-08-18 20:45:52.831956+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 456); parent: launchd (pid 1)
2026-08-18 20:45:52.831972+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 20:45:52.833895+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 20:45:52.835008+0900 0x14fb     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 20:45:58.600954+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065930 tx stats: # 160 owait 21 9063us finish 145 bar2 145 f 15 enter 35 fq 61 116 587us close 0us prep 252us flush 515us
2026-08-18 20:46:06.398988+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065950 tx stats: # 180 owait 21 9063us finish 165 bar2 165 f 18 enter 2 fq 13 17 177us close 6us prep 123us flush 229us
2026-08-18 20:46:06.507948+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065970 tx stats: # 200 owait 24 7950us finish 185 bar2 185 f 18 enter 3 fq 15 18 155us close 0us prep 104us flush 241us
2026-08-18 20:46:06.537143+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4065990 tx stats: # 220 owait 31 6199us finish 205 bar2 205 f 18 enter 67 fq 17 19 226us close 3us prep 119us flush 274us
2026-08-18 20:46:07.992833+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066010 tx stats: # 240 owait 34 5677us finish 225 bar2 225 f 19 enter 179 fq 63 70 539us close 0us prep 935us flush 904us
2026-08-18 20:46:09.388185+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066030 tx stats: # 260 owait 34 5677us finish 245 bar2 245 f 19 enter 86 fq 168 623 1801us close 10us prep 368us flush 549us
2026-08-18 20:46:11.063793+0900 0x209a     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:46:11.317645+0900 0xec7      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(765) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:11.363387+0900 0x1749     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(765) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:11.886402+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066050 tx stats: # 280 owait 35 5544us finish 265 bar2 265 f 19 enter 90 fq 82 92 649us close 0us prep 965us flush 879us
2026-08-18 20:46:13.664703+0900 0x20a1     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:46:14.117073+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066070 tx stats: # 300 owait 35 5544us finish 285 bar2 285 f 19 enter 123 fq 279 580 2168us close 0us prep 658us flush 798us
2026-08-18 20:46:14.970677+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066090 tx stats: # 320 owait 36 5394us finish 305 bar2 305 f 19 enter 33 fq 62 76 539us close 0us prep 293us flush 545us
2026-08-18 20:46:15.570076+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066110 tx stats: # 340 owait 38 5126us finish 325 bar2 325 f 19 enter 24 fq 54 64 597us close 87us prep 227us flush 316us
2026-08-18 20:46:16.911083+0900 0x20a1     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:46:17.281764+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066130 tx stats: # 360 owait 39 5005us finish 345 bar2 345 f 20 enter 375 fq 65 101 553us close 0us prep 609us flush 791us
2026-08-18 20:46:18.386393+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066150 tx stats: # 380 owait 41 4829us finish 365 bar2 365 f 20 enter 719 fq 400 582 2755us close 25us prep 2337us flush 1906us
2026-08-18 20:46:20.419271+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066170 tx stats: # 400 owait 44 4704us finish 384 bar2 384 f 22 enter 269 fq 71 843 643us close 0us prep 421us flush 8879us
2026-08-18 20:46:20.678369+0900 0x1c55     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(633) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:20.727740+0900 0x17cb     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: ctkd(633) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:20.934804+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066190 tx stats: # 420 owait 45 4611us finish 404 bar2 404 f 22 enter 5 fq 23 27 213us close 0us prep 93us flush 259us
2026-08-18 20:46:21.020842+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066210 tx stats: # 440 owait 46 4519us finish 424 bar2 424 f 22 enter 1 fq 13 15 171us close 0us prep 80us flush 217us
2026-08-18 20:46:21.437710+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066230 tx stats: # 460 owait 47 4427us finish 444 bar2 444 f 22 enter 58 fq 85 99 514us close 0us prep 198us flush 349us
2026-08-18 20:46:23.329561+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066250 tx stats: # 480 owait 49 4259us finish 464 bar2 464 f 22 enter 314 fq 54 71 394us close 0us prep 355us flush 665us
2026-08-18 20:46:23.870436+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066270 tx stats: # 500 owait 51 4116us finish 484 bar2 484 f 22 enter 41 fq 23 43 178us close 0us prep 143us flush 288us
2026-08-18 20:46:24.342873+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066290 tx stats: # 520 owait 51 4116us finish 504 bar2 504 f 22 enter 25 fq 30 40 215us close 2us prep 111us flush 230us
2026-08-18 20:46:24.832698+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066310 tx stats: # 540 owait 55 3836us finish 534 bar2 524 f 23 enter 143 fq 27 32 235us close 8us prep 346us flush 750us
2026-08-18 20:46:25.331429+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066330 tx stats: # 560 owait 56 3776us finish 554 bar2 544 f 23 enter 18 fq 48 55 333us close 0us prep 151us flush 323us
2026-08-18 20:46:25.929989+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066350 tx stats: # 580 owait 57 3712us finish 574 bar2 564 f 24 enter 58 fq 97 218 966us close 0us prep 367us flush 651us
2026-08-18 20:46:26.543395+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066370 tx stats: # 600 owait 58 3658us finish 594 bar2 584 f 24 enter 32 fq 31 44 265us close 0us prep 116us flush 259us
2026-08-18 20:46:26.757337+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066390 tx stats: # 620 owait 60 3544us finish 614 bar2 604 f 25 enter 240 fq 15 17 105us close 297us prep 221us flush 541us
2026-08-18 20:46:27.192147+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066410 tx stats: # 640 owait 60 3544us finish 634 bar2 624 f 26 enter 186 fq 24 205 193us close 0us prep 199us flush 446us
2026-08-18 20:46:27.437254+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066430 tx stats: # 660 owait 61 3493us finish 654 bar2 644 f 27 enter 19 fq 18 35 143us close 0us prep 151us flush 233us
2026-08-18 20:46:28.086964+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066450 tx stats: # 680 owait 61 3493us finish 674 bar2 664 f 28 enter 36 fq 32 71 335us close 0us prep 230us flush 1523us
2026-08-18 20:46:28.683672+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066470 tx stats: # 700 owait 61 3493us finish 694 bar2 684 f 28 enter 47 fq 40 78 305us close 0us prep 174us flush 372us
2026-08-18 20:46:29.245477+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066490 tx stats: # 720 owait 61 3493us finish 714 bar2 704 f 29 enter 40 fq 21 24 200us close 0us prep 130us flush 359us
2026-08-18 20:46:29.923425+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066510 tx stats: # 740 owait 62 3448us finish 734 bar2 724 f 30 enter 50 fq 60 212 482us close 2us prep 309us flush 503us
2026-08-18 20:46:30.133473+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066530 tx stats: # 760 owait 64 3362us finish 755 bar2 744 f 31 enter 60 fq 29 130 197us close 33us prep 137us flush 288us
2026-08-18 20:46:31.555683+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066550 tx stats: # 780 owait 65 3322us finish 775 bar2 764 f 33 enter 166 fq 23 28 187us close 0us prep 324us flush 1275us
2026-08-18 20:46:32.023534+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066570 tx stats: # 800 owait 65 3322us finish 796 bar2 784 f 34 enter 35 fq 17 21 172us close 0us prep 146us flush 312us
2026-08-18 20:46:32.897325+0900 0x22bd     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:46:32.998028+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066590 tx stats: # 820 owait 66 3275us finish 816 bar2 804 f 36 enter 12 fq 24 31 226us close 0us prep 95us flush 275us
2026-08-18 20:46:33.130830+0900 0x1c55     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(847) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:33.132238+0900 0xec5      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(847) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:33.642333+0900 0x2670     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 20:46:35.634506+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066610 tx stats: # 840 owait 66 3275us finish 836 bar2 824 f 37 enter 452 fq 119 479 762us close 0us prep 578us flush 777us
2026-08-18 20:46:36.833658+0900 0xec7      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AudiovisualThumbnailExtension(883) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:37.241435+0900 0x2772     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 20:46:37.360446+0900 0x2775     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 20:46:37.383808+0900 0x22bd     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:46:37.560132+0900 0x2773     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 20:46:38.091831+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066630 tx stats: # 860 owait 69 3450us finish 855 bar2 843 f 40 enter 1302 fq 69 325 418us close 10us prep 1269us flush 2363us
2026-08-18 20:46:38.293978+0900 0x268f     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 20:46:39.431863+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066650 tx stats: # 880 owait 72 3381us finish 875 bar2 863 f 57 enter 302 fq 88 150 772us close 0us prep 367us flush 1176us
2026-08-18 20:46:39.835235+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066670 tx stats: # 900 owait 72 3381us finish 895 bar2 883 f 60 enter 246 fq 43 173 291us close 0us prep 381us flush 623us
2026-08-18 20:46:40.318482+0900 0x2759     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 20:46:41.230896+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066690 tx stats: # 920 owait 72 3381us finish 915 bar2 903 f 61 enter 99 fq 46 57 420us close 0us prep 603us flush 714us
2026-08-18 20:46:42.909547+0900 0x2773     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 20:46:43.644096+0900 0x297f     Default     0x0                  0      0    kernel: (Sandbox) Sandbox: icdd(1751) allow mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:43.673633+0900 0x348d     Default     0x0                  0      0    kernel: (Sandbox) 2 duplicate reports for Sandbox: icdd(1751) allow mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:44.250845+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066710 tx stats: # 940 owait 73 3338us finish 935 bar2 923 f 65 enter 142 fq 69 213 612us close 0us prep 251us flush 425us
2026-08-18 20:46:44.393260+0900 0x3615     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 20:46:44.493472+0900 0x2762     Default     0x0                  0      0    kernel: (apfs) apfs_set_bsd_flags:8897: disk3s5 fileproviderd: unsetting SF_DATALESS bsd_flag on ino 164471 (iCloud~com~goodnotesapp~x) old flags (0x40008020) new flags (0x8000)
2026-08-18 20:46:44.521627+0900 0x2762     Default     0x0                  0      0    kernel: (apfs) apfs_set_bsd_flags:8897: disk3s5 fileproviderd: unsetting SF_DATALESS bsd_flag on ino 164465 (5UAR78B6YU~com~goodnotesapp~goodnotes) old flags (0x40008020) new flags (0x8000)
2026-08-18 20:46:44.599457+0900 0x2762     Default     0x0                  0      0    kernel: (apfs) apfs_set_bsd_flags:8897: disk3s5 fileproviderd: unsetting SF_DATALESS bsd_flag on ino 164519 (iCloud~com~dayoneapp~dayone) old flags (0x40008020) new flags (0x8000)
2026-08-18 20:46:45.337039+0900 0x262b     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:46:45.352927+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066730 tx stats: # 960 owait 78 3147us finish 955 bar2 943 f 66 enter 169 fq 33 49 241us close 9us prep 260us flush 600us
2026-08-18 20:46:45.364595+0900 0x36b5     Default     0x0                  0      0    kernel: (apfs) apfs_set_bsd_flags:8897: disk3s5 fileproviderd: unsetting SF_DATALESS bsd_flag on ino 164460 (5U8NS4GX82~com~dayoneapp~dayone) old flags (0x40008020) new flags (0x8000)
2026-08-18 20:46:45.366888+0900 0x36b5     Default     0x0                  0      0    kernel: (apfs) apfs_set_bsd_flags:8897: disk3s5 fileproviderd: unsetting SF_DATALESS bsd_flag on ino 164537 (iCloud~com~dayoneapp~dayone-client-only) old flags (0x40008020) new flags (0x8000)
2026-08-18 20:46:46.330167+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066750 tx stats: # 980 owait 81 3043us finish 975 bar2 963 f 67 enter 18 fq 29 40 235us close 0us prep 157us flush 340us
2026-08-18 20:46:47.245229+0900 0x2900     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: iconservicesagent(697) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 20:46:47.245230+0900 0x2900     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 697, iconservicesagen
2026-08-18 20:46:47.624183+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066770 tx stats: # 1000 owait 83 2975us finish 995 bar2 983 f 80 enter 881 fq 77 123 636us close 0us prep 1361us flush 1215us
2026-08-18 20:46:48.098882+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066790 tx stats: # 1020 owait 88 2831us finish 1015 bar2 1003 f 80 enter 119 fq 75 89 510us close 0us prep 211us flush 464us
2026-08-18 20:46:48.141829+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066810 tx stats: # 1040 owait 92 2726us finish 1035 bar2 1023 f 80 enter 43 fq 32 37 205us close 0us prep 109us flush 277us
2026-08-18 20:46:48.806603+0900 0x297f     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(2220) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:48.833604+0900 0xec5      Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(2220) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:46:49.032326+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066830 tx stats: # 1060 owait 94 2672us finish 1055 bar2 1043 f 84 enter 33 fq 100 129 772us close 0us prep 189us flush 558us
2026-08-18 20:46:49.652350+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066850 tx stats: # 1080 owait 97 2597us finish 1075 bar2 1063 f 91 enter 97 fq 85 95 716us close 1us prep 284us flush 3074us
2026-08-18 20:46:50.034498+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066870 tx stats: # 1100 owait 97 2597us finish 1095 bar2 1083 f 106 enter 685 fq 22 28 205us close 0us prep 622us flush 2502us
2026-08-18 20:46:50.508943+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066890 tx stats: # 1120 owait 99 2552us finish 1116 bar2 1103 f 123 enter 1201 fq 71 79 587us close 0us prep 632us flush 3740us
2026-08-18 20:46:51.269913+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066910 tx stats: # 1140 owait 102 2491us finish 1136 bar2 1123 f 135 enter 832 fq 92 103 523us close 0us prep 705us flush 1687us
2026-08-18 20:46:52.325585+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066930 tx stats: # 1160 owait 103 2471us finish 1156 bar2 1143 f 148 enter 72 fq 72 88 483us close 0us prep 473us flush 1503us
2026-08-18 20:46:54.143990+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066950 tx stats: # 1180 owait 103 2471us finish 1176 bar2 1163 f 157 enter 187 fq 58 66 301us close 0us prep 292us flush 3486us
2026-08-18 20:46:55.971126+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066970 tx stats: # 1200 owait 106 2417us finish 1195 bar2 1182 f 169 enter 1626 fq 65 74 604us close 0us prep 735us flush 11032us
2026-08-18 20:46:56.439094+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4066990 tx stats: # 1220 owait 108 2385us finish 1215 bar2 1202 f 183 enter 1841 fq 56 63 462us close 18us prep 1818us flush 8013us
2026-08-18 20:46:57.150701+0900 0x22bd     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:46:57.990253+0900 0x4358     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk4s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 20:46:57.990262+0900 0x4358     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk4s1 device_handle block size 4096 block count 19318 features 0 internal
2026-08-18 20:46:57.990312+0900 0x4358     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk4s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 20:46:57.991299+0900 0x4358     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk4s1 checkpoint search: largest xid 5, best xid 5 @ 1
2026-08-18 20:46:57.991313+0900 0x4358     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk4s1 stable checkpoint indices: desc 0 data 14
2026-08-18 20:46:58.295805+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk5 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 20:46:58.295808+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk5 device_handle block size 4096 block count 19318 features 16 internal
2026-08-18 20:46:58.295865+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk5 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 20:46:58.296435+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk5 checkpoint search: largest xid 5, best xid 5 @ 1
2026-08-18 20:46:58.296441+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk5 stable checkpoint indices: desc 0 data 14
2026-08-18 20:46:58.296568+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk5s1 No ER state object for volume AlDente - rolling is not happening, nothing to recover.
2026-08-18 20:46:58.296570+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mounting volume AlDente, requested by: mount_apfs (pid 2737); parent: mount (pid 2736)
2026-08-18 20:46:58.296611+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk5s1 vol-uuid: 5074B32D-9B1B-4FC6-B15C-F4BA769660E6 block size: 4096 block count: 19318 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 20:46:58.296652+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk5s1 setting dev block size to 4096 from 512
2026-08-18 20:46:58.296654+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk5s1 Volume AlDente role 0x0 is not a System or Data volume
2026-08-18 20:46:58.296663+0900 0x43fc     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mount-complete volume AlDente, requested by: mount_apfs (pid 2737); parent: mount (pid 2736)
2026-08-18 20:46:58.670689+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067010 tx stats: # 1240 owait 110 2412us finish 1235 bar2 1222 f 191 enter 1578 fq 169 460 1094us close 325us prep 1822us flush 1523us
2026-08-18 20:46:59.629455+0900 0x4593     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 unmounting volume AlDente, requested by: diskarbitrationd (pid 292); parent: launchd (pid 1)
2026-08-18 20:46:59.629487+0900 0x4593     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk5s1 Volume AlDente role 0x0 is not a System or Data volume
2026-08-18 20:46:59.629759+0900 0x4593     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk5 nx_num_vols_mounted is 0
2026-08-18 20:46:59.729587+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067030 tx stats: # 1260 owait 115 2438us finish 1254 bar2 1241 f 205 enter 1296 fq 107 163 1110us close 47us prep 644us flush 6225us
2026-08-18 20:47:00.132916+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067050 tx stats: # 1280 owait 119 2396us finish 1274 bar2 1261 f 222 enter 907 fq 86 927 793us close 0us prep 350us flush 3493us
2026-08-18 20:47:00.483097+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067070 tx stats: # 1300 owait 121 2361us finish 1294 bar2 1281 f 242 enter 879 fq 99 172 908us close 0us prep 557us flush 4089us
2026-08-18 20:47:01.277404+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067090 tx stats: # 1320 owait 123 2336us finish 1314 bar2 1301 f 257 enter 178 fq 51 115 463us close 0us prep 843us flush 2412us
2026-08-18 20:47:02.441032+0900 0x48c6     Default     0x0                  0      0    kernel: (apfs) container_get_dangling_mounts:4766: Found 0 dangling mounts on /dev/disk5
2026-08-18 20:47:03.453043+0900 0x446f     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:47:03.607204+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067110 tx stats: # 1340 owait 125 2370us finish 1334 bar2 1321 f 260 enter 4878 fq 101 268 878us close 6us prep 4858us flush 3145us
2026-08-18 20:47:04.679231+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067130 tx stats: # 1360 owait 128 2358us finish 1356 bar2 1341 f 270 enter 127 fq 131 231 1096us close 35us prep 327us flush 2928us
2026-08-18 20:47:06.083838+0900 0x4e23     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 20:47:07.654542+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067150 tx stats: # 1380 owait 134 2378us finish 1375 bar2 1360 f 277 enter 8588 fq 163 309 943us close 23us prep 2027us flush 2401us
2026-08-18 20:47:07.719177+0900 0x4f08     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 20:47:08.084027+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067170 tx stats: # 1400 owait 138 2368us finish 1394 bar2 1380 f 282 enter 439 fq 166 349 1088us close 33us prep 1164us flush 3076us
2026-08-18 20:47:08.338621+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067190 tx stats: # 1420 owait 145 2282us finish 1414 bar2 1400 f 294 enter 105 fq 96 209 749us close 1us prep 254us flush 637us
2026-08-18 20:47:09.975471+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067210 tx stats: # 1440 owait 149 2276us finish 1434 bar2 1420 f 300 enter 1329 fq 127 541 1004us close 34us prep 1455us flush 2926us
2026-08-18 20:47:12.215938+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067230 tx stats: # 1460 owait 151 2361us finish 1454 bar2 1440 f 300 enter 2483 fq 255 1066 2497us close 0us prep 1566us flush 1410us
2026-08-18 20:47:13.241540+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067250 tx stats: # 1480 owait 156 2296us finish 1475 bar2 1460 f 300 enter 12 fq 21 28 203us close 0us prep 119us flush 310us
2026-08-18 20:47:14.606542+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067270 tx stats: # 1500 owait 158 2281us finish 1495 bar2 1480 f 300 enter 450 fq 74 215 546us close 0us prep 741us flush 829us
2026-08-18 20:47:17.621770+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067290 tx stats: # 1520 owait 161 2321us finish 1515 bar2 1500 f 300 enter 1842 fq 111 474 866us close 0us prep 1198us flush 1329us
2026-08-18 20:47:20.057182+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067310 tx stats: # 1540 owait 162 2330us finish 1535 bar2 1520 f 301 enter 2449 fq 385 4729 2201us close 1us prep 1669us flush 1519us
2026-08-18 20:47:21.625171+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067330 tx stats: # 1560 owait 167 2313us finish 1555 bar2 1540 f 310 enter 3728 fq 123 227 768us close 2us prep 2246us flush 3410us
2026-08-18 20:47:24.901452+0900 0x5212     Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29742318
2026-08-18 20:47:25.134696+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067350 tx stats: # 1580 owait 170 2305us finish 1575 bar2 1560 f 316 enter 334 fq 134 1820 1074us close 59us prep 434us flush 739us
2026-08-18 20:47:25.233245+0900 0x58ca     Default     0x0                  0      0    kernel: (HFS) hfs: mounted JetBrains Toolbox on device disk4s1
2026-08-18 20:47:27.212976+0900 0x5ac3     Default     0x0                  0      0    kernel: (HFS) hfs: unmount initiated on JetBrains Toolbox on device disk4s1
2026-08-18 20:47:29.462627+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067370 tx stats: # 1600 owait 174 2362us finish 1595 bar2 1580 f 316 enter 792 fq 423 3023 3632us close 13us prep 1202us flush 791us
2026-08-18 20:47:30.117864+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067390 tx stats: # 1620 owait 174 2362us finish 1615 bar2 1600 f 316 enter 57 fq 16 148 212us close 0us prep 249us flush 430us
2026-08-18 20:47:32.805689+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067410 tx stats: # 1640 owait 175 2355us finish 1635 bar2 1620 f 317 enter 1705 fq 101 143 647us close 14us prep 2452us flush 1627us
2026-08-18 20:47:34.764846+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067430 tx stats: # 1660 owait 177 2362us finish 1654 bar2 1639 f 317 enter 176 fq 61 107 598us close 0us prep 579us flush 761us
2026-08-18 20:47:36.148972+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067450 tx stats: # 1680 owait 186 2335us finish 1674 bar2 1658 f 321 enter 1830 fq 289 896 1831us close 7us prep 5199us flush 1335us
2026-08-18 20:47:39.958161+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067470 tx stats: # 1700 owait 191 2378us finish 1695 bar2 1678 f 324 enter 992 fq 57 135 498us close 3us prep 770us flush 2518us
2026-08-18 20:47:41.221469+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067490 tx stats: # 1720 owait 194 2354us finish 1715 bar2 1698 f 329 enter 284 fq 232 1889 1796us close 0us prep 406us flush 1295us
2026-08-18 20:47:43.296683+0900 0x407b     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(4701) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:47:44.781124+0900 0x407b     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(4714) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:47:46.183398+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067510 tx stats: # 1740 owait 196 2380us finish 1735 bar2 1718 f 329 enter 3790 fq 155 301 2470us close 0us prep 1094us flush 2501us
2026-08-18 20:47:47.467222+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067530 tx stats: # 1760 owait 203 2851us finish 1755 bar2 1738 f 331 enter 925 fq 48 388 296us close 21us prep 406us flush 457us
2026-08-18 20:47:47.613591+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067550 tx stats: # 1780 owait 211 2826us finish 1775 bar2 1758 f 331 enter 88 fq 37 51 255us close 1072us prep 1001us flush 509us
2026-08-18 20:47:50.356746+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067570 tx stats: # 1800 owait 216 2788us finish 1795 bar2 1778 f 331 enter 11281 fq 125 523 1028us close 1us prep 17466us flush 3131us
2026-08-18 20:47:52.607217+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067590 tx stats: # 1820 owait 216 2788us finish 1812 bar2 1795 f 331 enter 137 fq 118 3567 761us close 0us prep 8341us flush 709us
2026-08-18 20:47:54.537600+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067610 tx stats: # 1840 owait 221 2997us finish 1832 bar2 1815 f 331 enter 1863 fq 147 163 707us close 2us prep 12054us flush 5679us
2026-08-18 20:47:54.729176+0900 0x446f     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:47:55.246715+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067630 tx stats: # 1860 owait 227 2950us finish 1852 bar2 1835 f 332 enter 696 fq 68 101 687us close 2us prep 821us flush 992us
2026-08-18 20:47:55.427397+0900 0x2376     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(805) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 20:47:57.070643+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067650 tx stats: # 1880 owait 233 3000us finish 1872 bar2 1855 f 332 enter 1264 fq 51 117 752us close 1us prep 1091us flush 858us
2026-08-18 20:48:01.211771+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067670 tx stats: # 1900 owait 239 3148us finish 1891 bar2 1874 f 332 enter 979 fq 524 608 7724us close 0us prep 1119us flush 981us
2026-08-18 20:48:02.748550+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067690 tx stats: # 1920 owait 244 3542us finish 1911 bar2 1894 f 333 enter 52 fq 66 71 519us close 45479us prep 5489us flush 2699us
2026-08-18 20:48:07.847117+0900 0x630b     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:48:08.214802+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067710 tx stats: # 1940 owait 244 3542us finish 1931 bar2 1914 f 342 enter 412 fq 147 1516 1925us close 9us prep 350us flush 2131us
2026-08-18 20:48:10.263363+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067730 tx stats: # 1960 owait 246 3526us finish 1952 bar2 1934 f 352 enter 406 fq 45 81 578us close 0us prep 1676us flush 3145us
2026-08-18 20:48:14.602829+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067750 tx stats: # 1980 owait 246 3526us finish 1972 bar2 1954 f 355 enter 1088 fq 45 96 886us close 0us prep 4218us flush 1815us
2026-08-18 20:48:18.145439+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067770 tx stats: # 2000 owait 247 3560us finish 1990 bar2 1972 f 355 enter 29 fq 459 1093 5911us close 0us prep 857us flush 614us
2026-08-18 20:48:23.585751+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067790 tx stats: # 2020 owait 247 3560us finish 2010 bar2 1992 f 356 enter 94 fq 40 195 459us close 72us prep 501us flush 780us
2026-08-18 20:48:38.572525+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067810 tx stats: # 2040 owait 247 3560us finish 2030 bar2 2012 f 366 enter 16 fq 63 73 1310us close 176us prep 284us flush 2665us
2026-08-18 20:48:39.421431+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067830 tx stats: # 2060 owait 247 3560us finish 2050 bar2 2032 f 368 enter 15 fq 21 24 367us close 0us prep 605us flush 706us
2026-08-18 20:48:44.633763+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067850 tx stats: # 2080 owait 248 3555us finish 2071 bar2 2052 f 372 enter 165 fq 20 29 276us close 0us prep 1037us flush 1035us
2026-08-18 20:48:46.841224+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067870 tx stats: # 2100 owait 249 3544us finish 2091 bar2 2072 f 374 enter 20 fq 94 153 1466us close 9us prep 725us flush 579us
2026-08-18 20:48:46.940390+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067890 tx stats: # 2120 owait 250 3543us finish 2111 bar2 2092 f 374 enter 29 fq 25 31 257us close 1us prep 656us flush 1161us
2026-08-18 20:48:48.286276+0900 0x2f78     Default     0x0                  0      0    kernel: (apfs) apfs_vnop_remove:4868: disk3s5 invalidating reserved ranges after deletion of ino 29760161
2026-08-18 20:48:50.860344+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067910 tx stats: # 2140 owait 250 3543us finish 2131 bar2 2112 f 374 enter 1619 fq 79 181 1070us close 0us prep 482us flush 696us
2026-08-18 20:48:57.286825+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067930 tx stats: # 2160 owait 250 3543us finish 2151 bar2 2132 f 375 enter 369 fq 138 341 1264us close 0us prep 465us flush 1208us
2026-08-18 20:49:06.537390+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067950 tx stats: # 2180 owait 251 3535us finish 2168 bar2 2149 f 377 enter 100 fq 41 50 775us close 0us prep 598us flush 815us
2026-08-18 20:49:07.358712+0900 0x6740     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 20:49:09.838393+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067970 tx stats: # 2200 owait 259 3496us finish 2189 bar2 2169 f 388 enter 5026 fq 62 78 611us close 108us prep 7521us flush 4354us
2026-08-18 20:49:10.917408+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4067990 tx stats: # 2220 owait 263 3472us finish 2209 bar2 2189 f 399 enter 212 fq 49 62 750us close 0us prep 1657us flush 1854us
2026-08-18 20:49:16.069588+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068010 tx stats: # 2240 owait 264 3462us finish 2229 bar2 2209 f 414 enter 1570 fq 35 42 331us close 0us prep 2141us flush 2405us
2026-08-18 20:49:31.852475+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068030 tx stats: # 2260 owait 264 3462us finish 2249 bar2 2229 f 415 enter 997 fq 51 307 533us close 0us prep 2642us flush 3766us
2026-08-18 20:49:40.381758+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068050 tx stats: # 2280 owait 265 3465us finish 2269 bar2 2249 f 417 enter 70 fq 111 124 862us close 0us prep 534us flush 2845us
2026-08-18 20:49:46.894413+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068070 tx stats: # 2300 owait 266 3453us finish 2289 bar2 2269 f 427 enter 116 fq 44 314 620us close 0us prep 729us flush 811us
2026-08-18 20:50:08.410184+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068090 tx stats: # 2320 owait 267 3441us finish 2308 bar2 2288 f 437 enter 5 fq 28 48 367us close 0us prep 246us flush 2392us
2026-08-18 20:50:15.855694+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068110 tx stats: # 2340 owait 267 3441us finish 2328 bar2 2308 f 446 enter 697 fq 49 171 385us close 0us prep 1739us flush 2480us
2026-08-18 20:50:45.869667+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068130 tx stats: # 2360 owait 267 3441us finish 2348 bar2 2328 f 452 enter 7 fq 36 89 514us close 0us prep 207us flush 2158us
2026-08-18 20:51:08.423950+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068150 tx stats: # 2380 owait 267 3441us finish 2368 bar2 2348 f 456 enter 94 fq 81 137 1181us close 0us prep 1038us flush 2636us
2026-08-18 20:51:18.602931+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068170 tx stats: # 2400 owait 267 3441us finish 2388 bar2 2368 f 466 enter 34 fq 43 148 773us close 0us prep 296us flush 2145us
2026-08-18 20:51:22.169386+0900 0x8e6a     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AuthenticationServicesAgent(6092) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:51:22.294734+0900 0x91f4     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AuthenticationServicesAgent(6092) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 20:51:35.537552+0900 0x936e     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 20:51:35.537567+0900 0x936e     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 20:51:35.537582+0900 0x936e     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_remove:1106: disk3s5 proc backupd: deleting snapshot name (com.apple.TimeMachine.2026-08-17-114103.local) w/xid 4030142
2026-08-18 20:51:35.537645+0900 0x936e     Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.apfs.purgatory.3d7ebe' snap_xid 4030142 extentref oid 771235 sblock oid 809926
2026-08-18 20:51:35.537665+0900 0x936e     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 20:51:35.537689+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) cleanup_snapshot_purgatory:1819: disk3s5 processing snap xid 4030142...
2026-08-18 20:51:35.538142+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4061866, dest_snap_xid 4030142, cur_tree_count 3181769, next_tree_count 210552
2026-08-18 20:51:35.966411+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4061866, dest_snap_xid 4030142, cur_tree_count 3186253, next_tree_count 188247
2026-08-18 20:51:35.969184+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4061866, dest_snap_xid 4030142, cur_tree_count 3186249, next_tree_count 188147
2026-08-18 20:51:35.969195+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 20:51:35.969214+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 20:51:35.969272+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:36.111536+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:36.194315+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068190 tx stats: # 2420 owait 271 3730us finish 2406 bar2 2385 f 474 enter 12 fq 910 15689 5545us close 220us prep 94us flush 492us
2026-08-18 20:51:36.199766+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:36.201255+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:36.202703+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:36.305010+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:36.305538+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:36.306217+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:36.306962+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:37.378006+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4061866, dest_snap_xid 4030142, cur_tree_count 3213161, next_tree_count 84811
2026-08-18 20:51:37.379161+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4061866, dest_snap_xid 4030142, cur_tree_count 3213113, next_tree_count 84750
2026-08-18 20:51:37.379910+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4061866, dest_snap_xid 4030142, cur_tree_count 3213111, next_tree_count 84740
2026-08-18 20:51:37.380160+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) delete_clone_fs:2922: disk3s5 backward merge, src_snap_xid 4061866, dest_snap_xid 4030142, cur_tree_count 3213109, next_tree_count 84727
2026-08-18 20:51:37.439761+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:37.828987+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068210 tx stats: # 2440 owait 279 4409us finish 2418 bar2 2397 f 474 enter 26 fq 760 31072 5745us close 27us prep 220us flush 367us
2026-08-18 20:51:38.351149+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:38.353362+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:38.402568+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:38.430987+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:38.433514+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:39.422676+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068230 tx stats: # 2460 owait 289 5039us finish 2421 bar2 2400 f 474 enter 89 fq 1594 153577 15580us close 4us prep 149us flush 505us
2026-08-18 20:51:39.734299+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-111103.local' snap_xid 4061866 extentref oid 801127 sblock oid 791298
2026-08-18 20:51:39.734334+0900 0xecc      Default     0x0                  0      0    kernel: (apfs) cleanup_snapshot_purgatory:1844: disk3s5 done processing snap xid 4030142
2026-08-18 20:51:39.734346+0900 0x93fd     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s5 started cleaning snapshots 4030142-4030142
2026-08-18 20:51:39.734350+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) apfs_snap_vnop_create:503: disk3s5 waiting for purgatory cleaner to finish cleaning.
2026-08-18 20:51:39.932094+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) fs_insert_snapshot_metadata:252: disk3s5 snap_name='com.apple.TimeMachine.2026-08-18-205135.local' snap_xid 4068237 extentref oid 815345 sblock oid 816937
2026-08-18 20:51:39.965792+0900 0x9371     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 20:51:40.726707+0900 0x93fd     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s5 completed cleaning snapshot 4030142, om_snap_count 2 om_most_recent_snap 4068237
2026-08-18 20:51:47.599452+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068250 tx stats: # 2480 owait 301 5147us finish 2435 bar2 2414 f 478 enter 26 fq 1166 1333 23318us close 21us prep 778us flush 1627us
2026-08-18 20:52:02.871470+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068270 tx stats: # 2500 owait 301 5147us finish 2455 bar2 2434 f 488 enter 35 fq 14 19 374us close 0us prep 857us flush 884us
2026-08-18 20:52:23.645631+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068290 tx stats: # 2520 owait 301 5147us finish 2475 bar2 2454 f 500 enter 37 fq 13 33 442us close 0us prep 1219us flush 3154us
2026-08-18 20:52:57.610753+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068310 tx stats: # 2540 owait 301 5147us finish 2495 bar2 2474 f 514 enter 218 fq 46 52 584us close 0us prep 1769us flush 548us
2026-08-18 20:53:18.341816+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068330 tx stats: # 2560 owait 301 5147us finish 2515 bar2 2494 f 520 enter 45 fq 24 63 304us close 0us prep 1257us flush 769us
2026-08-18 20:53:33.963277+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068350 tx stats: # 2580 owait 301 5147us finish 2536 bar2 2514 f 530 enter 78 fq 18 93 221us close 0us prep 1336us flush 539us
2026-08-18 20:53:57.218797+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068370 tx stats: # 2600 owait 301 5147us finish 2556 bar2 2534 f 539 enter 41 fq 11 15 156us close 0us prep 401us flush 1054us
2026-08-18 20:54:23.859781+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068390 tx stats: # 2620 owait 301 5147us finish 2577 bar2 2554 f 545 enter 223 fq 38 56 711us close 0us prep 2448us flush 1396us
2026-08-18 20:54:44.760323+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068410 tx stats: # 2640 owait 301 5147us finish 2597 bar2 2574 f 553 enter 80 fq 41 185 778us close 0us prep 789us flush 461us
2026-08-18 20:55:05.576392+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068430 tx stats: # 2660 owait 302 5134us finish 2617 bar2 2594 f 561 enter 137 fq 20 25 519us close 0us prep 2027us flush 1166us
2026-08-18 20:55:26.764567+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068450 tx stats: # 2680 owait 302 5134us finish 2637 bar2 2614 f 567 enter 107 fq 39 92 928us close 0us prep 1684us flush 908us
2026-08-18 20:55:30.833752+0900 0xa67b     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(805) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 20:55:42.512596+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068470 tx stats: # 2700 owait 303 5124us finish 2657 bar2 2634 f 575 enter 393 fq 96 113 1746us close 9us prep 1781us flush 694us
2026-08-18 20:55:56.200981+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068490 tx stats: # 2720 owait 303 5124us finish 2677 bar2 2654 f 575 enter 19 fq 48 55 796us close 0us prep 524us flush 458us
2026-08-18 20:56:18.229344+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068510 tx stats: # 2740 owait 303 5124us finish 2697 bar2 2674 f 589 enter 125 fq 29 45 385us close 0us prep 2242us flush 1381us
2026-08-18 20:56:37.792378+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068530 tx stats: # 2760 owait 303 5124us finish 2718 bar2 2694 f 597 enter 39 fq 29 36 534us close 0us prep 1433us flush 817us
2026-08-18 20:56:53.615683+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068550 tx stats: # 2780 owait 303 5124us finish 2738 bar2 2714 f 605 enter 182 fq 43 78 755us close 0us prep 1715us flush 1243us
2026-08-18 20:57:03.356282+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068570 tx stats: # 2800 owait 303 5124us finish 2758 bar2 2734 f 615 enter 11 fq 15 19 305us close 0us prep 988us flush 1671us
2026-08-18 20:57:14.173133+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068590 tx stats: # 2820 owait 303 5124us finish 2778 bar2 2754 f 625 enter 11 fq 42 82 1802us close 0us prep 518us flush 3004us
2026-08-18 20:58:05.021585+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068610 tx stats: # 2840 owait 303 5124us finish 2798 bar2 2774 f 633 enter 899 fq 15 25 198us close 0us prep 6406us flush 1908us
2026-08-18 20:58:19.096502+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068630 tx stats: # 2860 owait 303 5124us finish 2818 bar2 2794 f 647 enter 75 fq 41 76 1016us close 0us prep 703us flush 1579us
2026-08-18 20:58:49.108027+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068650 tx stats: # 2880 owait 305 5096us finish 2839 bar2 2814 f 653 enter 65 fq 22 27 418us close 0us prep 1037us flush 2416us
2026-08-18 20:59:08.600676+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068670 tx stats: # 2900 owait 305 5096us finish 2859 bar2 2834 f 659 enter 8 fq 20 519 301us close 0us prep 242us flush 2498us
2026-08-18 20:59:29.285459+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068690 tx stats: # 2920 owait 305 5096us finish 2879 bar2 2854 f 670 enter 91 fq 73 90 3163us close 0us prep 1089us flush 1115us
2026-08-18 20:59:54.280761+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068710 tx stats: # 2940 owait 305 5096us finish 2899 bar2 2874 f 682 enter 12 fq 30 110 832us close 0us prep 491us flush 2259us
2026-08-18 21:00:10.202214+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068730 tx stats: # 2960 owait 305 5096us finish 2919 bar2 2894 f 689 enter 30 fq 14 18 227us close 0us prep 388us flush 621us
2026-08-18 21:00:56.451921+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068750 tx stats: # 2980 owait 305 5096us finish 2939 bar2 2914 f 701 enter 78 fq 22 32 440us close 0us prep 1411us flush 994us
2026-08-18 21:01:20.397726+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068770 tx stats: # 3000 owait 305 5096us finish 2959 bar2 2934 f 712 enter 22 fq 27 32 382us close 0us prep 813us flush 853us
2026-08-18 21:01:37.114800+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068790 tx stats: # 3020 owait 307 5094us finish 2980 bar2 2954 f 720 enter 26 fq 36 104 1704us close 0us prep 903us flush 1770us
2026-08-18 21:02:09.158662+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068810 tx stats: # 3040 owait 307 5094us finish 3000 bar2 2974 f 733 enter 12 fq 97 115 3398us close 0us prep 1051us flush 3054us
2026-08-18 21:02:47.897703+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068830 tx stats: # 3060 owait 307 5094us finish 3020 bar2 2994 f 743 enter 333 fq 32 127 688us close 0us prep 4135us flush 1371us
2026-08-18 21:02:58.871024+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068850 tx stats: # 3080 owait 307 5094us finish 3040 bar2 3014 f 754 enter 88 fq 69 122 2687us close 0us prep 734us flush 2446us
2026-08-18 21:03:10.144599+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068870 tx stats: # 3100 owait 307 5094us finish 3059 bar2 3033 f 755 enter 630 fq 323 463 5971us close 0us prep 2348us flush 893us
2026-08-18 21:03:18.964217+0900 0xd406     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(805) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 21:03:20.135105+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068890 tx stats: # 3120 owait 308 5084us finish 3080 bar2 3053 f 762 enter 348 fq 244 330 6980us close 0us prep 1989us flush 1154us
2026-08-18 21:03:29.433617+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068910 tx stats: # 3140 owait 310 5067us finish 3100 bar2 3073 f 768 enter 1791 fq 22 39 614us close 12us prep 2632us flush 2181us
2026-08-18 21:03:40.105977+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068930 tx stats: # 3160 owait 312 5070us finish 3120 bar2 3093 f 772 enter 470 fq 143 186 1841us close 0us prep 4787us flush 4068us
2026-08-18 21:04:00.036126+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068950 tx stats: # 3180 owait 315 5048us finish 3140 bar2 3113 f 782 enter 63 fq 66 181 2294us close 0us prep 1096us flush 2694us
2026-08-18 21:04:15.128231+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068970 tx stats: # 3200 owait 316 5038us finish 3160 bar2 3133 f 793 enter 152 fq 15 22 330us close 0us prep 1201us flush 1417us
2026-08-18 21:04:55.627424+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4068990 tx stats: # 3220 owait 316 5038us finish 3180 bar2 3153 f 807 enter 199 fq 41 61 1230us close 0us prep 1996us flush 2858us
2026-08-18 21:05:15.556660+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069010 tx stats: # 3240 owait 316 5038us finish 3200 bar2 3173 f 819 enter 145 fq 15 19 258us close 0us prep 1545us flush 1050us
2026-08-18 21:05:42.927859+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069030 tx stats: # 3260 owait 316 5038us finish 3221 bar2 3193 f 831 enter 9 fq 41 48 618us close 0us prep 210us flush 2032us
2026-08-18 21:06:11.626301+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069050 tx stats: # 3280 owait 316 5038us finish 3240 bar2 3213 f 839 enter 43 fq 77 88 1679us close 0us prep 828us flush 1807us
2026-08-18 21:06:29.394869+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069070 tx stats: # 3300 owait 317 5023us finish 3260 bar2 3233 f 848 enter 39 fq 19 158 277us close 0us prep 538us flush 2519us
2026-08-18 21:06:52.060746+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069090 tx stats: # 3320 owait 320 4979us finish 3282 bar2 3253 f 860 enter 139 fq 42 69 1305us close 0us prep 1442us flush 801us
2026-08-18 21:07:12.977256+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069110 tx stats: # 3340 owait 320 4979us finish 3302 bar2 3273 f 871 enter 11 fq 25 28 448us close 0us prep 439us flush 2856us
2026-08-18 21:07:33.630010+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069130 tx stats: # 3360 owait 320 4979us finish 3323 bar2 3293 f 881 enter 49 fq 32 37 489us close 0us prep 620us flush 2735us
2026-08-18 21:08:02.621957+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069150 tx stats: # 3380 owait 320 4979us finish 3343 bar2 3313 f 889 enter 57 fq 23 60 554us close 0us prep 907us flush 676us
2026-08-18 21:08:26.791102+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069170 tx stats: # 3400 owait 320 4979us finish 3363 bar2 3333 f 901 enter 57 fq 33 92 1477us close 0us prep 1149us flush 2357us
2026-08-18 21:08:51.469155+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069190 tx stats: # 3420 owait 320 4979us finish 3383 bar2 3353 f 912 enter 200 fq 14 19 289us close 0us prep 1090us flush 656us
2026-08-18 21:09:11.922477+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069210 tx stats: # 3440 owait 323 4945us finish 3403 bar2 3373 f 925 enter 5 fq 21 46 318us close 0us prep 458us flush 2949us
2026-08-18 21:09:35.711291+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069230 tx stats: # 3460 owait 323 4945us finish 3423 bar2 3393 f 931 enter 13 fq 43 126 1305us close 0us prep 388us flush 1806us
2026-08-18 21:09:47.321332+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069250 tx stats: # 3480 owait 323 4945us finish 3443 bar2 3413 f 940 enter 14 fq 29 66 360us close 0us prep 206us flush 337us
2026-08-18 21:10:10.625457+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069270 tx stats: # 3500 owait 323 4945us finish 3463 bar2 3433 f 948 enter 7 fq 42 72 614us close 0us prep 378us flush 1950us
2026-08-18 21:10:26.362645+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069290 tx stats: # 3520 owait 323 4945us finish 3483 bar2 3453 f 958 enter 190 fq 60 91 1442us close 0us prep 2351us flush 1851us
2026-08-18 21:10:54.196314+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069310 tx stats: # 3540 owait 326 4909us finish 3505 bar2 3473 f 965 enter 50 fq 69 175 2746us close 2us prep 634us flush 552us
2026-08-18 21:10:57.442865+0900 0xffa7     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(805) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 21:11:12.048802+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069330 tx stats: # 3560 owait 326 4909us finish 3525 bar2 3493 f 971 enter 17 fq 26 250 787us close 0us prep 522us flush 2608us
2026-08-18 21:11:34.683833+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069350 tx stats: # 3580 owait 326 4909us finish 3546 bar2 3513 f 984 enter 1160 fq 138 705 3467us close 0us prep 6289us flush 2157us
2026-08-18 21:11:51.342145+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069370 tx stats: # 3600 owait 329 4893us finish 3566 bar2 3533 f 995 enter 209 fq 31 63 851us close 0us prep 1947us flush 2113us
2026-08-18 21:12:12.171557+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069390 tx stats: # 3620 owait 331 4890us finish 3586 bar2 3553 f 1003 enter 83 fq 37 54 611us close 0us prep 272us flush 684us
2026-08-18 21:12:36.130583+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069410 tx stats: # 3640 owait 331 4890us finish 3606 bar2 3573 f 1011 enter 45 fq 47 125 792us close 0us prep 701us flush 398us
2026-08-18 21:12:56.805331+0900 0x25f1     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: Mail(838) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:12:56.805339+0900 0x25f1     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 838, Mail
2026-08-18 21:12:56.881804+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069430 tx stats: # 3660 owait 331 4890us finish 3626 bar2 3593 f 1019 enter 83 fq 29 54 755us close 0us prep 1273us flush 1103us
2026-08-18 21:13:13.171328+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069450 tx stats: # 3680 owait 331 4890us finish 3646 bar2 3613 f 1029 enter 30 fq 25 37 411us close 0us prep 700us flush 2360us
2026-08-18 21:13:23.104305+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069470 tx stats: # 3700 owait 336 4832us finish 3666 bar2 3633 f 1034 enter 80 fq 43 113 1010us close 0us prep 1147us flush 700us
2026-08-18 21:13:23.978485+0900 0x2620     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 841, Microsoft Excel
2026-08-18 21:13:24.363279+0900 0xe345     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:13:26.682145+0900 0x1104d    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:13:29.853469+0900 0x11049    Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:13:29.870862+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069490 tx stats: # 3720 owait 336 4832us finish 3686 bar2 3653 f 1035 enter 46 fq 56 106 1023us close 0us prep 687us flush 526us
2026-08-18 21:13:33.614936+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069510 tx stats: # 3740 owait 336 4832us finish 3706 bar2 3673 f 1040 enter 77 fq 24 51 498us close 0us prep 1775us flush 936us
2026-08-18 21:13:47.658132+0900 0x8fd      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069530 tx stats: # 3760 owait 336 4832us finish 3727 bar2 3693 f 1045 enter 73 fq 53 80 1083us close 0us prep 500us flush 1655us
2026-08-18 12:17:37.183113+0000 0x80       Default     0x0                  0      0    kernel: (AppleDiskImages2) [0 (ctx)] virtual bool AppleDiskImagesController::start(IOService *)::163: kext version: 524.120.8
2026-08-18 12:17:37.567807+0000 0x7d9      Default     0x0                  0      0    kernel: (AppleH13CameraInterface) AppleH13amIn::start - fInRamdisk=0
2026-08-18 12:17:37.898317+0000 0x96c      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS2NVMeController::probe(IOService *, SInt32 *)::248:Found (ANS2) provider, returning score 100000
2026-08-18 12:17:37.898427+0000 0x9c7      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS3NVMeController::probe(IOService *, SInt32 *)::82:Found (ANS2) provider and linear-sq, returning score 300000
2026-08-18 12:17:37.915518+0000 0x5db      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleANS2NVMeController::start(IOService *)::430:Found the ANS2Endpoint1
2026-08-18 12:17:37.915966+0000 0x5db      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::SetNamespacesStruct()::196:Obtained 3 namespaces from DT
2026-08-18 12:17:37.915968+0000 0x5db      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::756:start 0x1000006CC
2026-08-18 12:17:37.916013+0000 0x5db      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOFilterInterruptEventSource *AppleANS2NVMeController::CreateDeviceInterrupt(IOInterruptEventSource::Action, IOFilterInterruptEventSource::Filter, IOService *)::2756:ANS2 NVMe interrupt index - 0x4
2026-08-18 12:17:37.916048+0000 0x5db      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual uint32_t AppleANS2CGv2Controller::GetNVMeSPTMQueueEntries()::164:NVMe Queue Entries=253
2026-08-18 12:17:37.970189+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) static AppleNVMeRequestPoolTagReserve *AppleNVMeRequestPoolTagReserve::Create(AppleNVMeWorkLoop *, uint8_t, uint16_t, uint32_t, bool, NVMeBufferAllocator *, lck_mtx_t *, NVMeCGType_t, IOMapper *)::138:NVMe Request Pool Init (Tag Reservation Case). First phase, RequestCount = 1
2026-08-18 12:17:37.970198+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=0 entrysize=64
2026-08-18 12:17:37.970201+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=1 entrysize=64
2026-08-18 12:17:37.970218+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:17:37.970221+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:17:38.464483+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeRequestPoolTagReserve::Rebuild(uint8_t, uint32_t, bool, NVMeCGType_t, IOMapper *)::181:NVMe Request Pool Init (Tag Reservation Case). Second phase, RequestCount = 253
2026-08-18 12:17:38.465074+0000 0xafd      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1966:nvme: Vendor ID     : 0x106b
2026-08-18 12:17:38.465079+0000 0xafd      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1967:nvme: Model Number  : APPLE SSD AP0512Z
2026-08-18 12:17:38.465082+0000 0xafd      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1968:nvme: Serial Number : [REDACTED]
2026-08-18 12:17:38.465087+0000 0xafd      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1969:nvme: Firmware Rev  : 561.100.
2026-08-18 12:17:38.465090+0000 0xafd      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2038:nvme: S5E A0 Toshiba 5th Gen Lithography tlc 3D 2 plane 512GB
2026-08-18 12:17:38.465096+0000 0xafd      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2058:ECCVersion   : 1
2026-08-18 12:17:38.465099+0000 0xafd      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2062:FTL Rev      : 36.1
2026-08-18 12:17:38.465102+0000 0xafd      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2063:DM_Version   : 179
2026-08-18 12:17:38.465105+0000 0xb36      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2064:=======================
2026-08-18 12:17:38.465107+0000 0xb36      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2071:Found 3 namespaces in current NAND
2026-08-18 12:17:38.465285+0000 0xb36      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[1] as nstype[1]
2026-08-18 12:17:38.465489+0000 0xb36      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[2] as nstype[8]
2026-08-18 12:17:38.465718+0000 0xb36      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[3] as nstype[13]
2026-08-18 12:17:38.467071+0000 0xb36      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1580:allocateAll 1
2026-08-18 12:17:38.467388+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:17:38.474933+0000 0x996      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:17:38.474936+0000 0x996      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s1 device_handle block size 4096 block count 128000 features 0 internal
2026-08-18 12:17:38.475287+0000 0x8b3      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:17:38.475825+0000 0x996      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s3 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:17:38.475828+0000 0x996      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s3 device_handle block size 4096 block count 1310709 features 0 internal
2026-08-18 12:17:38.476011+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s3 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:17:38.477279+0000 0x996      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s2 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:17:38.477285+0000 0x996      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s2 device_handle block size 4096 block count 120699413 features 0 internal
2026-08-18 12:17:38.477496+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:17:38.487931+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s1 checkpoint search: largest xid 9056, best xid 9056 @ 15
2026-08-18 12:17:38.487936+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1550: disk0s1 reloading after unclean unmount, checkpoint xid 9056, superblock xid 9055
2026-08-18 12:17:38.487940+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s1 stable checkpoint indices: desc 14 data 382
2026-08-18 12:17:38.492690+0000 0x8b3      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s3 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:17:38.492693+0000 0x8b3      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s3 stable checkpoint indices: desc 36 data 285
2026-08-18 12:17:38.521683+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s2 checkpoint search: largest xid 4069568, best xid 4069568 @ 159
2026-08-18 12:17:38.521688+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s2 stable checkpoint indices: desc 158 data 9727
2026-08-18 12:17:38.521702+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:17:38.521703+0000 0x996      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:17:38.523668+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:17:38.523670+0000 0x996      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:17:38.525005+0000 0x5db      Default     0x0                  0      0    kernel: (AppleFileSystemDriver) AppleFileSystemDriver: publishing boot-uuid-media=disk3s1 (Macintosh HD)
2026-08-18 12:17:38.525153+0000 0xb36      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 2, NSTYPE - 8
2026-08-18 12:17:38.525264+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:17:38.525266+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 768
2026-08-18 12:17:38.525303+0000 0xb36      Default     0x0                  0      0    kernel: BSD root: disk3s1
2026-08-18 12:17:38.525344+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 2, NSTYPE: 8
2026-08-18 12:17:38.525346+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 3, NSTYPE - 13
2026-08-18 12:17:38.525488+0000 0xac       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk3 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:17:38.525491+0000 0xac       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk3 device_handle block size 4096 block count 120699413 features 22 internal solidstate
2026-08-18 12:17:38.525518+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:17:38.525519+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 32768
2026-08-18 12:17:38.525614+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk3 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:17:38.525813+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeEAN::StartDevice(IOService *)::249:EAN StartDevice Done
2026-08-18 12:17:38.525859+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 3, NSTYPE: 13
2026-08-18 12:17:38.525861+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::StartController()::1549:Setting NAND status to Ready
2026-08-18 12:17:38.525868+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::816:Successfully initialized NVMe drive 0x1000006CC
+ 2026-08-18 12:17:38.528243+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00d000c2 DWORD10=0x00000000 NVMeStatus=0xc0
+ 2026-08-18 12:17:38.528256+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100D0
2026-08-18 12:17:38.528265+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:17:38.528275+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:17:38.528283+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:17:38.528461+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00d000c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:17:38.528462+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100D0
2026-08-18 12:17:38.528464+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:17:38.528465+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:17:38.528467+0000 0x996      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:17:38.581332+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk3 checkpoint search: largest xid 4069568, best xid 4069568 @ 159
2026-08-18 12:17:38.581337+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk3 stable checkpoint indices: desc 158 data 9727
2026-08-18 12:17:38.587634+0000 0xac       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s1 No ER state object for volume Macintosh HD - rolling is not happening, nothing to recover.
2026-08-18 12:17:38.588487+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2916: disk3s1 Rooting from snapshot with xid 3094032.
2026-08-18 12:17:38.588490+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:17:38.588511+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1222: disk3s1 mounting snapshot w/snap_xid 3094032 and sblock oid 0xbcade
2026-08-18 12:17:38.591189+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk3 volume groups tree is not setup yet
2026-08-18 12:17:38.591191+0000 0xac       Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk3 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:17:38.591470+0000 0xac       Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:17:38.591472+0000 0xac       Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:17:38.591474+0000 0xac       Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk3s1 successfully validated on-disk root hash
2026-08-18 12:17:38.591476+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1407: disk3s1 setting dev block size to 4096 from 512
2026-08-18 12:17:38.591479+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 12:17:38.594677+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:960: disk3s1 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
2026-08-18 12:17:38.594680+0000 0xac       Default     0x0                  0      0    kernel: (apfs) fs_setup_shadow_fs_root_tree:3501: disk3s1 Created the shadow_fs_root tree <private>
2026-08-18 12:17:38.594695+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s1 Set volume (role 0x1) to 402 xid 2f3610
2026-08-18 12:17:38.594714+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:17:38.595635+0000 0xac       Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:17:38.595638+0000 0xac       Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:17:38.607200+0000 0xac       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 12:17:38.607237+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:17:38.608025+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 12:17:38.608030+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:17:38.618626+0000 0x996      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk4s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:17:38.618628+0000 0x996      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk4s1 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:17:38.618637+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk4s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:17:38.621693+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk4s1 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:17:38.621696+0000 0x996      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk4s1 stable checkpoint indices: desc 6 data 14
2026-08-18 12:17:38.622644+0000 0xac       Default     0x0                  0      0    kernel: imageboot_pivot_image: attached disk image /System/Volumes/Recovery/398F441C-CCE1-471E-AA2A-F804CABE8548/boot/B23324F57C2EF64EDC38BD8F5EB06D534A249B64D931D892147D98B70E9A9A76C2CEAFDC629D9D9C877585940336718D/usr/standalone/firmware/arm64eBaseSystem.dmg as disk4s1
2026-08-18 12:17:38.622709+0000 0xac       Default     0x0                  0      0    kernel: (HFS) hfs_mount: hfs_mountfs returned error=22 for device disk4s1
2026-08-18 12:17:38.622813+0000 0xac       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk5 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:17:38.622816+0000 0xac       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk5 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:17:38.622825+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk5 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:17:38.623075+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk5 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:17:38.623078+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk5 stable checkpoint indices: desc 6 data 14
2026-08-18 12:17:38.624982+0000 0xac       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk5s1 No ER state object for volume macOS Base System - rolling is not happening, nothing to recover.
2026-08-18 12:17:38.624988+0000 0xac       Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:17:38.624990+0000 0xac       Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:17:38.624992+0000 0xac       Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk5s1 successfully validated on-disk root hash
2026-08-18 12:17:38.625005+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mounting volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:17:38.625027+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk5s1 vol-uuid: 98E2569B-8C5F-43FB-BAC5-FD0129260DF4 block size: 4096 block count: 385536 (unencrypted; flags: 0x1; features: 21.0.12)
2026-08-18 12:17:38.626600+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk5s1 setting dev block size to 4096 from 512
2026-08-18 12:17:38.626605+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:17:38.626610+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mount-complete volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:17:38.626684+0000 0xac       Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:17:38.626686+0000 0xac       Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:17:38.630363+0000 0xac       Default     0x0                  0      0    kernel: (BootCache) BootCache: Root disk is an SSD, not caching
2026-08-18 12:17:39.786465+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:173: disk3 metazone for device 0 of size 1540803 blocks (encrypted: 0-770401 unencrypted: 770401-1540803)
2026-08-18 12:17:39.786469+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 24674304
2026-08-18 12:17:39.786471+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 24870912
2026-08-18 12:17:39.786473+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 102662144
2026-08-18 12:17:39.786474+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 90144768
2026-08-18 12:17:39.790731+0000 0xac       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s6 No ER state object for volume VM - rolling is not happening, nothing to recover.
2026-08-18 12:17:39.790736+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mounting volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.790777+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s6 vol-uuid: D5740DA5-764A-4EE1-A679-9DA5755A8249 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:17:39.790788+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s6 setting dev block size to 4096 from 512
2026-08-18 12:17:39.790791+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s6 Volume VM role 0x8 is not a System or Data volume
2026-08-18 12:17:39.790803+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mount-complete volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.793666+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
2026-08-18 12:17:39.793671+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mounting volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.793689+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s2 vol-uuid: 336B630F-3720-42B7-9A54-AC333F292FBD block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:17:39.794177+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s2 setting dev block size to 4096 from 512
2026-08-18 12:17:39.794179+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
2026-08-18 12:17:39.794187+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s2 volume with role 16 will be mounted until system shutdown
2026-08-18 12:17:39.794190+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mount-complete volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.796208+0000 0xac       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s4 No ER state object for volume Update - rolling is not happening, nothing to recover.
2026-08-18 12:17:39.796214+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mounting volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.796244+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s4 vol-uuid: F01A451D-5CDC-4F27-9387-42805AB04770 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:17:39.796568+0000 0xac       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s4 setting dev block size to 4096 from 512
2026-08-18 12:17:39.796570+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s4 Volume Update role 0xc0 is not a System or Data volume
2026-08-18 12:17:39.796577+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s4 volume with role 192 will be mounted until system shutdown
2026-08-18 12:17:39.796580+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mount-complete volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.797072+0000 0xac       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk1 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:17:39.797074+0000 0xac       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk1 device_handle block size 4096 block count 128000 features 22 internal solidstate
2026-08-18 12:17:39.797266+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:17:39.808087+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk1 checkpoint search: largest xid 9056, best xid 9056 @ 15
2026-08-18 12:17:39.808092+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1550: disk1 reloading after unclean unmount, checkpoint xid 9056, superblock xid 9055
2026-08-18 12:17:39.808095+0000 0xac       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk1 stable checkpoint indices: desc 14 data 382
2026-08-18 12:17:39.808104+0000 0xac       Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:111: disk1 no metazone for device 0, of size 524288000 bytes, block_size 4096
2026-08-18 12:17:39.810047+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk1 scan took 0.001443 s (no trims)
2026-08-18 12:17:39.810052+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk1 dev 0 smfree 122738/128000 table 19/127 blocks 122738 2:6459:122619 100.00% range 3022:124978 97.63% scans 1
2026-08-18 12:17:39.810156+0000 0x996      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk1 scan took 0.000101 s, trims took 0.000096 s
2026-08-18 12:17:39.810160+0000 0x996      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk1 122738 blocks free in 20 extents, avg 6136.90
2026-08-18 12:17:39.810162+0000 0x996      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk1 122738 blocks trimmed in 20 extents (4 us/trim, 208333 trims/s)
2026-08-18 12:17:39.810164+0000 0x996      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk1 trim distribution 1:0 2+:4 4+:14 16+:0 64+:0 256+:2
2026-08-18 12:17:39.810332+0000 0x996      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s2 No ER state object for volume xART - rolling is not happening, nothing to recover.
2026-08-18 12:17:39.810335+0000 0x996      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mounting volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.810357+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s2 vol-uuid: 8E16CEF3-ED64-4D4E-BBA7-A3B59511C2AA block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:17:39.810367+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s2 setting dev block size to 4096 from 512
2026-08-18 12:17:39.810369+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s2 Volume xART role 0x100 is not a System or Data volume
2026-08-18 12:17:39.810373+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s2 volume with role 256 will be mounted until system shutdown
2026-08-18 12:17:39.810377+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mount-complete volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.838091+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s1 No ER state object for volume iSCPreboot - rolling is not happening, nothing to recover.
2026-08-18 12:17:39.838095+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mounting volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.838108+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s1 vol-uuid: 68EF6EF8-2323-4896-9123-2894BDE8CA21 block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:17:39.838756+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s1 setting dev block size to 4096 from 512
2026-08-18 12:17:39.838761+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s1 Volume iSCPreboot role 0x10 is not a System or Data volume
2026-08-18 12:17:39.838766+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s1 volume with role 16 will be mounted until system shutdown
2026-08-18 12:17:39.838770+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mount-complete volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.852615+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s3 No ER state object for volume Hardware - rolling is not happening, nothing to recover.
2026-08-18 12:17:39.852618+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mounting volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:39.852637+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s3 vol-uuid: 26639779-A201-4A4B-90DA-1A7F4141453B block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:17:39.852825+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s3 setting dev block size to 4096 from 512
2026-08-18 12:17:39.852831+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s3 Volume Hardware role 0x140 is not a System or Data volume
2026-08-18 12:17:39.852836+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s3 volume with role 320 will be mounted until system shutdown
2026-08-18 12:17:39.852840+0000 0x24d      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mount-complete volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:17:40.070258+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_rawdev_create:708: disk1s2 Enable bypass mode on inode 16 on xART@disk1 as 2.0, tidemark 2771
2026-08-18 12:17:40.528759+0000 0xac       Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk3 scan took 0.742273 s (no trims)
2026-08-18 12:17:40.528766+0000 0xac       Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk3 dev 0 smfree 19288502/120699413 table 587/587 blocks 2115226 1661:3603:40391 10.96% range 527346:119965700 99.39% scans 1
2026-08-18 12:17:40.528770+0000 0xac       Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:496: disk3 dev 0 scan_stats[2]: foundmax 40391 extents 820908 blocks 17173276 long 1660 avg 20 89.03% range 48993:120650420 99.95%
2026-08-18 12:17:40.863593+0000 0x9f5      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:17:40.873490+0000 0x9f5      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:17:40.873494+0000 0x9f5      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:17:41.166369+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:17:41.175868+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:17:41.175871+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:17:41.192433+0000 0xac       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 updating mounted volume macOS Base System, requested by: mount_apfs (pid 25); parent: mount (pid 24)
2026-08-18 12:17:32.508892+0000 0x8b3      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk3 scan took 2.007782 s, trims took 1.850132 s
2026-08-18 12:17:32.508900+0000 0x8b3      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk3 19288503 blocks free in 821510 extents, avg 23.47
2026-08-18 12:17:32.508905+0000 0x8b3      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk3 19288503 blocks trimmed in 821510 extents (2 us/trim, 444027 trims/s)
2026-08-18 12:17:32.508908+0000 0x8b3      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk3 trim distribution 1:283945 2+:153723 4+:240506 16+:82579 64+:50594 256+:10163
2026-08-18 12:17:32.508911+0000 0x8b3      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4455: disk3 trims dropped: 20020 blocks 19454 extents, avg 1.02
2026-08-18 12:17:33.070044+0000 0xa30      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 12:17:33.070051+0000 0xa30      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 12:17:33.083782+0000 0xc3d      Default     0x0                  0      0    kernel: (apfs) apfs_mount:30540: disk3s5 Failed to unwrap metadata crypto state: 1
2026-08-18 12:17:33.184239+0000 0xc3d      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2842: disk3 apfs_mount failed, err: 1
2026-08-18 12:17:33.267356+0000 0xc62      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:17:33.267368+0000 0xc62      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 12:17:33.267570+0000 0xc62      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:17:33.340174+0000 0xc62      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:17:33.340197+0000 0xc62      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 12:17:36.059526+0000 0xac8      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:17:36.078420+0000 0xc94      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] 10 duplicate reports for Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:17:42.956731+0000 0xb0e      Default     0x0                  0      0    kernel: (apfs) handle_get_dev_by_role:13150: disk3s1 This operation needs entitlement
2026-08-18 12:17:47.971933+0000 0x8a6      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:17:47.971946+0000 0x8a6      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:17:48.012238+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 12:17:48.020260+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 os.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 12:17:48.020263+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 os.dmg device_handle block size 4096 real block size 4096 block count 1736704 features 0 internal
2026-08-18 12:17:48.049474+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: os.dmgs1 successfully validated on-disk root hash
2026-08-18 12:17:48.049478+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 12:17:48.049480+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99116, jobj_id range 100687+12489
2026-08-18 12:17:48.049660+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99116 on dir 17, dev_name [os.dmg]
2026-08-18 12:17:48.050373+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 12:17:48.050384+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 app.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 12:17:48.050386+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 app.dmg device_handle block size 4096 real block size 4096 block count 12800 features 0 internal
2026-08-18 12:17:48.053956+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: app.dmgs1 successfully validated on-disk root hash
2026-08-18 12:17:48.053960+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 12:17:48.053961+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99120, jobj_id range 113176+5406
2026-08-18 12:17:48.054109+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99120 on dir 18, dev_name [app.dmg]
2026-08-18 12:17:48.054477+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 12:17:48.054479+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:849: disk3s2 Grafting a clone, share blockmap lut with os.dmg
2026-08-18 12:17:48.054480+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 os.clone.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 12:17:48.054481+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 os.clone.dmg device_handle block size 4096 real block size 4096 block count 1736704 features 0 internal
2026-08-18 12:17:48.057177+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: os.clone.dmgs1 successfully validated on-disk root hash
2026-08-18 12:17:48.057180+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 12:17:48.057181+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99117, jobj_id range 118582+12489
2026-08-18 12:17:48.057497+0000 0xecf      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99117 on dir 20, dev_name [os.clone.dmg]
2026-08-18 12:17:48.433414+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s5 No ER state object for volume Data - rolling is not happening, nothing to recover.
2026-08-18 12:17:48.437505+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s5 mounting volume Data, requested by: apfs_boot_util (pid 239); parent: launchd (pid 1)
2026-08-18 12:17:48.437535+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s5 vol-uuid: 398F441C-CCE1-471E-AA2A-F804CABE8548 block size: 4096 block count: 120699413 (encrypted; flags: 0x100; features: 41.0.2)
2026-08-18 12:17:48.437704+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s5 setting dev block size to 4096 from 512
2026-08-18 12:17:48.437706+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s5 Set volume (role 0x40) to 8a99 xid 0
2026-08-18 12:17:48.437740+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s5 mount-complete volume Data, requested by: apfs_boot_util (pid 239); parent: launchd (pid 1)
2026-08-18 12:17:48.437767+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) apfs_kbn_handler_start:7700: disk3s5 keybag notification handler started
2026-08-18 12:17:48.492366+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 unmounting volume macOS Base System, requested by: apfs_boot_util (pid 239); parent: launchd (pid 1)
2026-08-18 12:17:48.492381+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:17:48.492443+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk5 nx_num_vols_mounted is 0
2026-08-18 12:17:48.494267+0000 0xedb      Default     0x0                  0      0    kernel: (apfs) container_get_dangling_mounts:4766: Found 0 dangling mounts on /dev/disk5
2026-08-18 12:17:48.503488+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: apfs_boot_util (pid 239); parent: launchd (pid 1)
2026-08-18 12:17:48.503495+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:17:48.503685+0000 0xed7      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 12:17:48.583523+0000 0xee0      Default     0x0                  0      0    kernel: (apfs) authorize_purge:4154: disk3s5 failed to authorize rmdir for ino 23126050 (parent 23125507): 1 (Operation not permitted)
2026-08-18 12:17:48.588812+0000 0xed2      Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29717766 size back to 2916530 (from 2928089)
2026-08-18 12:17:49.392969+0000 0x101d     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 18560 size back to 14965863 (from 14966377)
2026-08-18 12:17:49.399052+0000 0x101d     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29726433 size back to 1688840 (from 1742144)
2026-08-18 12:17:49.420434+0000 0xffb      Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29793296 size back to 8412792 (from 8520152)
2026-08-18 12:17:49.474324+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29795233 size back to 1020112 (from 1139368)
2026-08-18 21:17:50.220324+0900 0x10eb     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 1056814 size back to 2331952 (from 2406112)
2026-08-18 21:17:50.282905+0900 0x1105     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 1060889 size back to 2542072 (from 2669792)
2026-08-18 21:17:50.389153+0900 0x1041     Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 21:17:50.389160+0900 0x1041     Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 21:17:48.717837+0900 0x12e5     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: mDNSResponder(407) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:17:48.717845+0900 0x12e5     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 407, mDNSResponder
2026-08-18 21:17:49.956898+0900 0xfba      Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29718395 size back to 72398 (from 72514)
2026-08-18 21:17:49.998690+0900 0x118a     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s2 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 347
2026-08-18 21:17:50.016219+0900 0x11de     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.016266+0900 0x11de     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.016271+0900 0x11de     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.018982+0900 0x11de     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PHOT successfully validated on-disk root hash
2026-08-18 21:17:50.020851+0900 0x11de     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a06e2 type 3
2026-08-18 21:17:50.020860+0900 0x11de     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1615250, jobj_id range 1705579+116
2026-08-18 21:17:50.021132+0900 0x11de     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1615250 on dir 1705578, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.068519+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.068564+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.068568+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.070793+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MAGI successfully validated on-disk root hash
2026-08-18 21:17:50.070807+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc56d type 3
2026-08-18 21:17:50.070811+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14390412, jobj_id range 14468344+116
2026-08-18 21:17:50.071078+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14390412 on dir 14468343, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.113130+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.113195+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.113200+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.116108+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MESS successfully validated on-disk root hash
2026-08-18 21:17:50.116126+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0ca2 type 3
2026-08-18 21:17:50.116129+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1683674, jobj_id range 1707051+116
2026-08-18 21:17:50.116330+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1683674 on dir 1707050, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.157064+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.157111+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.157114+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.160624+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PHOT successfully validated on-disk root hash
2026-08-18 21:17:50.160644+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a084a type 3
2026-08-18 21:17:50.160653+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1625731, jobj_id range 1705939+116
2026-08-18 21:17:50.161036+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1625731 on dir 1705938, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.200980+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.201046+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.201051+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.206037+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MESS successfully validated on-disk root hash
2026-08-18 21:17:50.206065+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc5e3 type 3
2026-08-18 21:17:50.206069+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14397120, jobj_id range 14468462+116
2026-08-18 21:17:50.206517+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14397120 on dir 14468461, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.255852+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.255991+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.256032+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.261113+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_AUTO successfully validated on-disk root hash
2026-08-18 21:17:50.261133+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0f7f type 3
2026-08-18 21:17:50.261138+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1703896, jobj_id range 1707784+116
2026-08-18 21:17:50.261629+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1703896 on dir 1707783, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.303880+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.303926+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.303930+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.308607+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PROO successfully validated on-disk root hash
2026-08-18 21:17:50.308629+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc8a7 type 3
2026-08-18 21:17:50.308633+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14466627, jobj_id range 14469170+116
2026-08-18 21:17:50.309052+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14466627 on dir 14469169, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.313494+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069588 tx stats: # 20 owait 1 445us finish 20 bar2 20 f 1 enter 88 fq 74 93 709us close 0us prep 947us flush 1224us
2026-08-18 21:17:50.350554+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.350704+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.350720+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 13312 features 0 internal  VEK
2026-08-18 21:17:50.356101+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SHOR successfully validated on-disk root hash
2026-08-18 21:17:50.356124+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a12be type 3
2026-08-18 21:17:50.356129+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1704058, jobj_id range 1707904+150
2026-08-18 21:17:50.356514+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1704058 on dir 1707903, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.397208+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.397273+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.397279+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.402320+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SUGG successfully validated on-disk root hash
2026-08-18 21:17:50.402343+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0f07 type 3
2026-08-18 21:17:50.402349+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1700875, jobj_id range 1707543+116
2026-08-18 21:17:50.402843+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1700875 on dir 1707542, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.444055+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.444116+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.444123+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.449138+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_FM_A successfully validated on-disk root hash
2026-08-18 21:17:50.449155+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc745 type 3
2026-08-18 21:17:50.449160+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14461068, jobj_id range 14468816+116
2026-08-18 21:17:50.449567+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14461068 on dir 14468815, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.513712+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.513807+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.513813+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 77312 features 0 internal  VEK
2026-08-18 21:17:50.524788+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_BA successfully validated on-disk root hash
2026-08-18 21:17:50.524813+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a066a type 3
2026-08-18 21:17:50.524818+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1588657, jobj_id range 1705440+135
2026-08-18 21:17:50.525482+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1588657 on dir 1705439, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.566220+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.566274+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.566277+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.570122+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PROF successfully validated on-disk root hash
2026-08-18 21:17:50.571660+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a07d2 type 3
2026-08-18 21:17:50.571677+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1618299, jobj_id range 1705699+116
2026-08-18 21:17:50.572239+0900 0x1076     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s1 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 347
2026-08-18 21:17:50.574638+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1618299 on dir 1705698, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.604522+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.604634+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.604637+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 166400 features 0 internal  VEK
2026-08-18 21:17:50.610836+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SIRI_ASR_ASSISTANT_EN_US_EN_ successfully validated on-disk root hash
2026-08-18 21:17:50.610857+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcadcb type 3
2026-08-18 21:17:50.610862+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14460120, jobj_id range 14461832+458
2026-08-18 21:17:50.611235+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14460120 on dir 14461831, dev_name [UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg]
2026-08-18 21:17:50.615710+0900 0xfba      Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29797758 size back to 296362 (from 296664)
2026-08-18 21:17:50.691800+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.691892+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.691897+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 7168 features 0 internal  VEK
2026-08-18 21:17:50.695372+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MAIL successfully validated on-disk root hash
2026-08-18 21:17:50.695414+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0c0a type 3
2026-08-18 21:17:50.695419+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1679841, jobj_id range 1706899+116
2026-08-18 21:17:50.695806+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1679841 on dir 1706898, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.843723+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.843808+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.843813+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.847770+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_OPEN successfully validated on-disk root hash
2026-08-18 21:17:50.847795+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc659 type 3
2026-08-18 21:17:50.847800+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14403375, jobj_id range 14468580+116
2026-08-18 21:17:50.848134+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14403375 on dir 14468579, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.900123+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.900203+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.900210+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.905764+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_TEXT successfully validated on-disk root hash
2026-08-18 21:17:50.905795+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc831 type 3
2026-08-18 21:17:50.905805+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14466449, jobj_id range 14469052+116
2026-08-18 21:17:50.906223+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14466449 on dir 14469051, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:50.960329+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:50.960378+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:50.960381+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:50.962870+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MACH successfully validated on-disk root hash
2026-08-18 21:17:50.962898+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc7bb type 3
2026-08-18 21:17:50.962903+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14465641, jobj_id range 14468934+116
2026-08-18 21:17:50.963206+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14465641 on dir 14468933, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.020080+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.020186+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.020191+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:51.023423+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_TEXT successfully validated on-disk root hash
2026-08-18 21:17:51.023464+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0b1a type 3
2026-08-18 21:17:51.023469+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1655456, jobj_id range 1706539+116
2026-08-18 21:17:51.023767+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1655456 on dir 1706538, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.062092+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069608 tx stats: # 40 owait 3 1246us finish 40 bar2 40 f 2 enter 56 fq 52 61 366us close 0us prep 494us flush 331us
2026-08-18 21:17:51.062270+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.062338+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.062341+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 7168 features 0 internal  VEK
2026-08-18 21:17:51.067625+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SUMM successfully validated on-disk root hash
2026-08-18 21:17:51.067647+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc91d type 3
2026-08-18 21:17:51.067655+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14467237, jobj_id range 14469288+116
2026-08-18 21:17:51.067989+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14467237 on dir 14469287, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.213331+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.213458+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.213462+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 253952 features 0 internal  VEK
2026-08-18 21:17:51.219437+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_BASE successfully validated on-disk root hash
2026-08-18 21:17:51.219474+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0e16 type 3
2026-08-18 21:17:51.219479+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1685582, jobj_id range 1707411+128
2026-08-18 21:17:51.219893+0900 0x12bc     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1685582 on dir 1707410, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.257375+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.257506+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.257510+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 62464 features 0 internal  VEK
2026-08-18 21:17:51.260872+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_IF_PLANNER_NLROUTER_BASE_KO_ successfully validated on-disk root hash
2026-08-18 21:17:51.260897+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x187c28 type 3
2026-08-18 21:17:51.260903+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1586107, jobj_id range 1604598+46
2026-08-18 21:17:51.261434+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1586107 on dir 1604597, dev_name [UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.301907+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.301996+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.301999+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 41472 features 0 internal  VEK
2026-08-18 21:17:51.304871+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SPEECH_ASR_TRANSCRIPTION_KO_ successfully validated on-disk root hash
2026-08-18 21:17:51.304887+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xde19e8 type 3
2026-08-18 21:17:51.304891+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14553470, jobj_id range 14555507+68
2026-08-18 21:17:51.305158+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14553470 on dir 14555503, dev_name [UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.354529+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.354586+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.354590+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 1024 features 0 internal  VEK
2026-08-18 21:17:51.357746+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: SECUREPKITRUSTSTOREASSETS_SECUR successfully validated on-disk root hash
2026-08-18 21:17:51.357767+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x37ecf3 type 3
2026-08-18 21:17:51.357771+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 3664701, jobj_id range 3664795+34
2026-08-18 21:17:51.358113+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 3664701 on dir 3664794, dev_name [SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg]
2026-08-18 21:17:51.570025+0900 0x1618     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: talagentd(623) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:17:51.620382+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.620448+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.620450+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 324096 features 0 internal  VEK
2026-08-18 21:17:51.624023+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_VISUAL_IMAGE_DIFFUSION_V1 successfully validated on-disk root hash
2026-08-18 21:17:51.624033+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x197f9e type 3
2026-08-18 21:17:51.624035+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1604359, jobj_id range 1670854+196
2026-08-18 21:17:51.624373+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1604359 on dir 1670851, dev_name [UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.654230+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.654247+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.654249+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:51.655973+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_CONC successfully validated on-disk root hash
2026-08-18 21:17:51.655998+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a093a type 3
2026-08-18 21:17:51.656000+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1641368, jobj_id range 1706059+116
2026-08-18 21:17:51.656101+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1641368 on dir 1706058, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.718078+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.718100+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.718102+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 50176 features 0 internal  VEK
2026-08-18 21:17:51.721435+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_IMAG successfully validated on-disk root hash
2026-08-18 21:17:51.721443+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdccc13 type 3
2026-08-18 21:17:51.721445+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14467978, jobj_id range 14469406+28
2026-08-18 21:17:51.721711+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14467978 on dir 14469405, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.724223+0900 0x16b1     Default     0x0                  0      0    kernel: (apfs) get_purgeable_record_id_for_lookup:889: disk3s5 ino 29799953 did not have a source-purge-id
2026-08-18 21:17:51.725067+0900 0x16b1     Default     0x0                  0      0    kernel: (apfs) lookup_purgeable_drec:1213: disk3s5 Failed to find host inode (id 29799898) for purgeable drec lookup, falling back to ino 29799953
2026-08-18 21:17:51.725078+0900 0x16b1     Default     0x0                  0      0    kernel: (apfs) merge_ino_purgeable_flags:3615: disk3s5 Failed to find purgeable record (ino 29799953) for flags merging: 2
2026-08-18 21:17:51.746738+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.746767+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.746769+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 55808 features 0 internal  VEK
2026-08-18 21:17:51.750102+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_IM successfully validated on-disk root hash
2026-08-18 21:17:51.750114+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0c2a type 3
2026-08-18 21:17:51.750117+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1681663, jobj_id range 1707019+28
2026-08-18 21:17:51.750491+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1681663 on dir 1707018, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.769277+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.769377+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.769382+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 133120 features 0 internal  VEK
2026-08-18 21:17:51.773713+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SIRI_ASR_ASSISTANT_KO_KR_KO_ successfully validated on-disk root hash
2026-08-18 21:17:51.773734+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcab87 type 3
2026-08-18 21:17:51.773739+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14398070, jobj_id range 14461497+331
2026-08-18 21:17:51.774011+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14398070 on dir 14461496, dev_name [UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg]
2026-08-18 21:17:51.828508+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.828526+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.828528+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:51.830773+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SHOR successfully validated on-disk root hash
2026-08-18 21:17:51.830780+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0d92 type 3
2026-08-18 21:17:51.830782+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1684620, jobj_id range 1707291+116
2026-08-18 21:17:51.830886+0900 0x11fe     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1684620 on dir 1707290, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:51.949554+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:51.949583+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:51.949585+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:51.951552+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_REMI successfully validated on-disk root hash
2026-08-18 21:17:51.951560+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0d1a type 3
2026-08-18 21:17:51.951562+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1684144, jobj_id range 1707171+116
2026-08-18 21:17:51.951667+0900 0x134e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1684144 on dir 1707170, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:52.008756+0900 0x1843     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: routined(652) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:17:52.008761+0900 0x1843     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 652, routined
2026-08-18 21:17:52.065141+0900 0x1734     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: sharingd(632) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:17:52.065144+0900 0x1734     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 632, sharingd
2026-08-18 21:17:52.185698+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:52.185786+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:52.185791+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:52.188254+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_OP successfully validated on-disk root hash
2026-08-18 21:17:52.188264+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc6cf type 3
2026-08-18 21:17:52.188269+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14459878, jobj_id range 14468698+116
2026-08-18 21:17:52.188371+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14459878 on dir 14468697, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:52.330187+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:52.330250+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:52.330253+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:52.332313+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_AD successfully validated on-disk root hash
2026-08-18 21:17:52.332323+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0a2a type 3
2026-08-18 21:17:52.332326+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1645820, jobj_id range 1706299+116
2026-08-18 21:17:52.332420+0900 0x11ee     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1645820 on dir 1706298, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:52.336398+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069628 tx stats: # 60 owait 3 1246us finish 60 bar2 60 f 3 enter 414 fq 37 81 353us close 0us prep 1615us flush 1481us
2026-08-18 21:17:52.361715+0900 0x18cf     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:17:52.403421+0900 0x1920     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:17:53.262848+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069648 tx stats: # 80 owait 3 1246us finish 80 bar2 80 f 3 enter 107 fq 113 272 900us close 0us prep 350us flush 320us
2026-08-18 21:17:53.291911+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069668 tx stats: # 100 owait 9 618us finish 100 bar2 100 f 3 enter 9 fq 37 42 410us close 2us prep 196us flush 335us
2026-08-18 21:17:53.340658+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069688 tx stats: # 120 owait 11 651us finish 120 bar2 120 f 3 enter 4 fq 30 34 237us close 0us prep 148us flush 108us
2026-08-18 21:17:53.431711+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069708 tx stats: # 140 owait 13 703us finish 140 bar2 140 f 3 enter 4 fq 14 17 133us close 19us prep 162us flush 307us
2026-08-18 21:17:54.099083+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069728 tx stats: # 160 owait 15 788us finish 160 bar2 160 f 3 enter 5 fq 24 43 272us close 0us prep 92us flush 232us
2026-08-18 21:17:54.324091+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069748 tx stats: # 180 owait 15 788us finish 180 bar2 180 f 3 enter 3 fq 21 26 234us close 0us prep 76us flush 200us
2026-08-18 21:17:54.596054+0900 0x167b     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 164950 size back to 1236032 (from 1281352)
2026-08-18 21:17:54.763704+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069768 tx stats: # 200 owait 16 760us finish 200 bar2 200 f 3 enter 62 fq 43 75 509us close 0us prep 256us flush 508us
2026-08-18 21:17:54.873442+0900 0xed3      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(655) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:17:54.898297+0900 0x1c7b     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: ctkd(655) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:17:55.272548+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069788 tx stats: # 220 owait 17 831us finish 220 bar2 220 f 3 enter 24 fq 24 30 223us close 0us prep 194us flush 183us
2026-08-18 21:17:55.829786+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:17:55.829813+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:17:55.829814+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:17:55.833666+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_FRIE successfully validated on-disk root hash
2026-08-18 21:17:55.833676+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0b92 type 3
2026-08-18 21:17:55.833678+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1666752, jobj_id range 1706779+116
2026-08-18 21:17:55.833868+0900 0x11d4     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1666752 on dir 1706778, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:17:56.065093+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069808 tx stats: # 240 owait 18 789us finish 240 bar2 240 f 3 enter 497 fq 54 117 506us close 0us prep 11669us flush 582us
2026-08-18 21:17:56.129328+0900 0x1954     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:17:56.286726+0900 0x1b13     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AudiovisualThumbnailExtension(817) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:17:56.364295+0900 0x1bf4     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:17:56.450698+0900 0x194a     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:17:56.854826+0900 0x1797     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29726517 size back to 1866431 (from 1867833)
2026-08-18 21:17:57.029788+0900 0x20d8     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 1590598 size back to 2467912 (from 2476152)
2026-08-18 21:17:57.079594+0900 0x10cd     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29800112 size back to 0 (from 1724)
2026-08-18 21:17:57.082045+0900 0x10cd     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29800113 size back to 16384 (from 65536)
2026-08-18 21:17:57.147872+0900 0x20b8     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29800144 size back to 0 (from 212)
2026-08-18 21:17:57.147978+0900 0x20b8     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29800145 size back to 16384 (from 65536)
2026-08-18 21:17:57.501509+0900 0x1b13     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AuthenticationServicesAgent(854) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:17:57.528542+0900 0x1618     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: AuthenticationServicesAgent(854) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:17:57.759046+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069828 tx stats: # 260 owait 23 838us finish 260 bar2 260 f 3 enter 203 fq 20 38 224us close 0us prep 106us flush 243us
2026-08-18 21:18:00.121645+0900 0x1070     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s5 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 347
2026-08-18 21:18:01.132437+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069848 tx stats: # 280 owait 23 838us finish 280 bar2 280 f 4 enter 224 fq 37 47 370us close 0us prep 925us flush 1157us
2026-08-18 21:18:01.178594+0900 0x1949     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:18:01.559544+0900 0x23ac     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 21:18:02.426130+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069868 tx stats: # 300 owait 25 878us finish 300 bar2 300 f 5 enter 484 fq 62 77 824us close 0us prep 2750us flush 2443us
2026-08-18 21:18:02.692131+0900 0x1954     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:18:03.004089+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069888 tx stats: # 320 owait 26 852us finish 320 bar2 320 f 8 enter 9 fq 22 29 215us close 0us prep 181us flush 259us
2026-08-18 21:18:03.026515+0900 0x1ac7     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(943) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:18:03.093980+0900 0x256f     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(943) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:18:03.940604+0900 0x26a6     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:18:04.261276+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069908 tx stats: # 340 owait 28 881us finish 340 bar2 340 f 15 enter 106 fq 29 36 289us close 1us prep 441us flush 9140us
2026-08-18 21:18:04.541881+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069928 tx stats: # 360 owait 29 858us finish 360 bar2 360 f 15 enter 49 fq 19 31 138us close 0us prep 110us flush 273us
2026-08-18 21:18:04.597230+0900 0x23dc     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 10296648 size back to 0 (from 8720)
2026-08-18 21:18:04.598708+0900 0x2543     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29543793 size back to 1006222 (from 1006384)
2026-08-18 21:18:04.790784+0900 0x1618     Default     0x0                  0      0    kernel: (Sandbox) Sandbox: icdd(1012) allow mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:18:05.053847+0900 0x18d8     Default     0x0                  0      0    kernel: (Sandbox) 2 duplicate reports for Sandbox: icdd(1012) allow mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:18:05.315638+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069948 tx stats: # 380 owait 29 858us finish 380 bar2 380 f 29 enter 93 fq 53 130 465us close 0us prep 574us flush 3301us
2026-08-18 21:18:05.978343+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069968 tx stats: # 400 owait 29 858us finish 400 bar2 400 f 42 enter 31 fq 47 82 577us close 0us prep 283us flush 2563us
2026-08-18 21:18:06.658865+0900 0x23a4     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 324560 size back to 8720 (from 12824)
2026-08-18 21:18:07.657440+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4069988 tx stats: # 420 owait 29 858us finish 420 bar2 420 f 47 enter 38 fq 74 142 784us close 2us prep 221us flush 2419us
2026-08-18 21:18:08.544235+0900 0x2868     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 29797682 size back to 182423 (from 184514)
2026-08-18 21:18:09.123253+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070008 tx stats: # 440 owait 29 858us finish 440 bar2 440 f 57 enter 224 fq 51 73 554us close 0us prep 307us flush 4822us
2026-08-18 21:18:09.753189+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070028 tx stats: # 460 owait 32 978us finish 460 bar2 460 f 74 enter 692 fq 23 27 297us close 2us prep 786us flush 3244us
2026-08-18 21:18:10.367914+0900 0x32c7     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:18:10.367921+0900 0x32c7     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 2179); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:10.367929+0900 0x32c7     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070046)
2026-08-18 21:18:10.370956+0900 0x32c7     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:18:10.371015+0900 0x32c7     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:18:10.371064+0900 0x32c7     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:18:10.371105+0900 0x32c7     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 2179); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:10.405293+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070048 tx stats: # 480 owait 33 963us finish 480 bar2 480 f 90 enter 929 fq 39 57 750us close 0us prep 376us flush 2964us
2026-08-18 21:18:11.111605+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070068 tx stats: # 500 owait 34 941us finish 500 bar2 500 f 104 enter 882 fq 50 61 567us close 0us prep 1005us flush 4834us
2026-08-18 21:18:12.132274+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070088 tx stats: # 520 owait 34 941us finish 520 bar2 520 f 124 enter 1274 fq 36 43 342us close 0us prep 768us flush 3716us
2026-08-18 21:18:13.000619+0900 0x1618     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(2316) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:18:13.029659+0900 0x2099     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(2316) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:18:13.216679+0900 0x1618     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(2336) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:18:13.299742+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 21:18:13.299753+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 21:18:13.299782+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 21:18:13.299789+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 21:18:13.300125+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_stop_bg_work_ext:928: disk3s1 Volume Macintosh HD is unmounting, stop any bg work
2026-08-18 21:18:13.302685+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 571); parent: launchd (pid 1)
2026-08-18 21:18:13.302700+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:18:13.304736+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:18:13.304863+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:18:13.333608+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:18:13.333618+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 2352); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:13.333625+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070108)
2026-08-18 21:18:13.336408+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070108 tx stats: # 540 owait 35 1236us finish 540 bar2 540 f 135 enter 149 fq 42 49 421us close 240us prep 939us flush 2163us
2026-08-18 21:18:13.336571+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:18:13.336666+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 21:18:13.338252+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 770515
2026-08-18 21:18:13.338277+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 21:18:13.614468+0900 0x179f     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(2336) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:18:13.729441+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 772007 -> 770412
2026-08-18 21:18:13.784404+0900 0x377c     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4070109-4070109
2026-08-18 21:18:13.830543+0900 0x377c     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4070109, om_snap_count 1 om_most_recent_snap 4070109
2026-08-18 21:18:13.830550+0900 0x377c     Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4070109
2026-08-18 21:18:13.831435+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 21:18:13.832582+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070120)
2026-08-18 21:18:13.834475+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:18:13.834522+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:18:13.834561+0900 0x3695     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 2352); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:13.845572+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 571); parent: launchd (pid 1)
2026-08-18 21:18:13.845585+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:18:13.849360+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:18:13.850751+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:18:14.023338+0900 0x38c8     Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 21:18:14.023348+0900 0x38c8     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mounting volume Recovery, requested by: mount_apfs (pid 2681); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:14.023446+0900 0x38c8     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 21:18:14.023568+0900 0x38c8     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 21:18:14.023574+0900 0x38c8     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 21:18:14.023616+0900 0x38c8     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mount-complete volume Recovery, requested by: mount_apfs (pid 2681); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:14.047956+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_stop_bg_work_ext:928: disk3s3 Volume Recovery is unmounting, stop any bg work
2026-08-18 21:18:14.050362+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: com.apple.MobileSoftwareUpdate. (pid 571); parent: launchd (pid 1)
2026-08-18 21:18:14.050375+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s3 waiting for purgatory cleaner to finish
2026-08-18 21:18:14.052585+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 21:18:14.052816+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:18:14.129617+0900 0x393d     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:18:14.129627+0900 0x393d     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 2752); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:14.129637+0900 0x393d     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070128)
2026-08-18 21:18:14.133777+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070128 tx stats: # 560 owait 44 3726us finish 560 bar2 560 f 148 enter 159 fq 15 18 153us close 2us prep 1128us flush 1670us
2026-08-18 21:18:14.133917+0900 0x393d     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:18:14.133977+0900 0x393d     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:18:14.134032+0900 0x393d     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:18:14.134073+0900 0x393d     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 2752); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:14.148201+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 21:18:14.148212+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 21:18:14.148233+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 21:18:14.148239+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 21:18:14.149215+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 571); parent: launchd (pid 1)
2026-08-18 21:18:14.149232+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:18:14.150541+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:18:14.151912+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:18:14.176938+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:18:14.176950+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 2800); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:14.176956+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070130)
2026-08-18 21:18:14.180783+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:18:14.180838+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 21:18:14.181310+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 802715
2026-08-18 21:18:14.181334+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 21:18:14.219846+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 770412 -> 772479
2026-08-18 21:18:14.230589+0900 0x39fb     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4070131-4070131
2026-08-18 21:18:14.270792+0900 0x39fb     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4070131, om_snap_count 1 om_most_recent_snap 4070131
2026-08-18 21:18:14.270799+0900 0x39fb     Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4070131
2026-08-18 21:18:14.271699+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 21:18:14.271859+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070132)
2026-08-18 21:18:14.273851+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:18:14.273957+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:18:14.273997+0900 0x3995     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 2800); parent: com.apple.Mobile (pid 571)
2026-08-18 21:18:14.295612+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 571); parent: launchd (pid 1)
2026-08-18 21:18:14.295627+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:18:14.314291+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:18:14.314732+0900 0x249a     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:18:14.625200+0900 0x3182     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 1104868 size back to 51184292 (from 51184821)
2026-08-18 21:18:16.284932+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070148 tx stats: # 580 owait 46 3657us finish 579 bar2 580 f 156 enter 347 fq 195 340 1964us close 0us prep 619us flush 831us
2026-08-18 21:18:17.655360+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070168 tx stats: # 600 owait 46 3657us finish 599 bar2 600 f 161 enter 1509 fq 90 135 600us close 0us prep 1530us flush 22372us
2026-08-18 21:18:18.036785+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070188 tx stats: # 620 owait 50 3461us finish 619 bar2 620 f 173 enter 132 fq 58 71 568us close 8us prep 505us flush 7106us
2026-08-18 21:18:18.463144+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070208 tx stats: # 640 owait 56 3430us finish 640 bar2 640 f 178 enter 843 fq 188 200 1431us close 72us prep 824us flush 1192us
2026-08-18 21:18:19.584521+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070228 tx stats: # 660 owait 62 3300us finish 660 bar2 660 f 185 enter 819 fq 119 196 1217us close 0us prep 811us flush 2175us
2026-08-18 21:18:21.263973+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070248 tx stats: # 680 owait 71 3135us finish 680 bar2 680 f 191 enter 845 fq 315 724 2810us close 0us prep 913us flush 901us
2026-08-18 21:18:23.286205+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070268 tx stats: # 700 owait 72 3144us finish 700 bar2 700 f 191 enter 47 fq 33 63 356us close 0us prep 502us flush 452us
2026-08-18 21:18:23.718762+0900 0x473a     Default     0x0                  0      0    kernel: (HFS) hfs: mounted JetBrains Toolbox on device disk4s1
2026-08-18 21:18:24.031242+0900 0x4719     Default     0x0                  0      0    kernel: (apfs) apfs_trim_to_prev_fsize:180: disk3s5 *** reset ino 1593847 size back to 2430832 (from 2459672)
2026-08-18 21:18:24.376734+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070288 tx stats: # 720 owait 77 2991us finish 720 bar2 720 f 191 enter 864 fq 54 71 349us close 61us prep 853us flush 703us
2026-08-18 21:18:26.124257+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070308 tx stats: # 740 owait 80 2897us finish 751 bar2 740 f 191 enter 26 fq 80 90 690us close 0us prep 424us flush 506us
2026-08-18 21:18:26.372079+0900 0x47b9     Default     0x0                  0      0    kernel: (HFS) hfs: unmount initiated on JetBrains Toolbox on device disk4s1
2026-08-18 21:18:26.910517+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070328 tx stats: # 760 owait 81 2873us finish 771 bar2 760 f 191 enter 189 fq 29 51 378us close 1us prep 1336us flush 907us
2026-08-18 21:18:27.473705+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070348 tx stats: # 780 owait 85 2792us finish 791 bar2 780 f 195 enter 60 fq 44 208 553us close 0us prep 248us flush 288us
2026-08-18 21:18:28.043745+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070368 tx stats: # 800 owait 91 2697us finish 812 bar2 800 f 204 enter 13 fq 71 99 579us close 40us prep 255us flush 967us
2026-08-18 21:18:28.399817+0900 0xba       Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6525: disk3s5 apfs is being LOCKED!
2026-08-18 21:18:28.399820+0900 0xba       Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6664: disk3s5 apfs is now LOCKED (flags 0x441000d6)!
2026-08-18 21:18:28.406554+0900 0xeda      Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_lock_notification:6949: disk3s5 done processing lock keybag notification, err 0, (flags 0x441000c6)
2026-08-18 21:18:28.665906+0900 0x911      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070388 tx stats: # 820 owait 95 2678us finish 832 bar2 820 f 212 enter 52 fq 149 164 1113us close 469us prep 379us flush 3543us
2026-08-18 21:18:31.586352+0900 0x4f49     Default     0x0                  0      0    kernel: (AppleMobileFileIntegrity) macOSTaskPolicy: (com.apple.swift-inspect) may not get the task control port of (diskarbitrationd) (pid: 350): (diskarbitrationd) is hardened, (diskarbitrationd) doesn't have get-task-allow, (com.apple.swift-inspect) is not a declared debugger(com.apple.swift-inspect) is not a declared read-only debugger
2026-08-18 12:19:01.629339+0000 0x80       Default     0x0                  0      0    kernel: (AppleDiskImages2) [0 (ctx)] virtual bool AppleDiskImagesController::start(IOService *)::163: kext version: 524.120.8
2026-08-18 12:19:01.972945+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS2NVMeController::probe(IOService *, SInt32 *)::248:Found (ANS2) provider, returning score 100000
2026-08-18 12:19:01.973007+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS3NVMeController::probe(IOService *, SInt32 *)::82:Found (ANS2) provider and linear-sq, returning score 300000
2026-08-18 12:19:01.974362+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleANS2NVMeController::start(IOService *)::430:Found the ANS2Endpoint1
2026-08-18 12:19:01.975056+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::SetNamespacesStruct()::196:Obtained 3 namespaces from DT
2026-08-18 12:19:01.975064+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::756:start 0x1000004BD
2026-08-18 12:19:01.975130+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOFilterInterruptEventSource *AppleANS2NVMeController::CreateDeviceInterrupt(IOInterruptEventSource::Action, IOFilterInterruptEventSource::Filter, IOService *)::2756:ANS2 NVMe interrupt index - 0x4
2026-08-18 12:19:01.975206+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual uint32_t AppleANS2CGv2Controller::GetNVMeSPTMQueueEntries()::164:NVMe Queue Entries=253
2026-08-18 12:19:02.132700+0000 0x789      Default     0x0                  0      0    kernel: (AppleH13CameraInterface) AppleH13amIn::start - fInRamdisk=0
2026-08-18 12:19:02.207882+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) static AppleNVMeRequestPoolTagReserve *AppleNVMeRequestPoolTagReserve::Create(AppleNVMeWorkLoop *, uint8_t, uint16_t, uint32_t, bool, NVMeBufferAllocator *, lck_mtx_t *, NVMeCGType_t, IOMapper *)::138:NVMe Request Pool Init (Tag Reservation Case). First phase, RequestCount = 1
2026-08-18 12:19:02.207891+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=0 entrysize=64
2026-08-18 12:19:02.207894+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=1 entrysize=64
2026-08-18 12:19:02.207913+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:19:02.207915+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:19:02.227662+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeRequestPoolTagReserve::Rebuild(uint8_t, uint32_t, bool, NVMeCGType_t, IOMapper *)::181:NVMe Request Pool Init (Tag Reservation Case). Second phase, RequestCount = 253
2026-08-18 12:19:02.283413+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1966:nvme: Vendor ID     : 0x106b
2026-08-18 12:19:02.283416+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1967:nvme: Model Number  : APPLE SSD AP0512Z
2026-08-18 12:19:02.283417+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1968:nvme: Serial Number : [REDACTED]
2026-08-18 12:19:02.283419+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1969:nvme: Firmware Rev  : 561.100.
2026-08-18 12:19:02.283421+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2038:nvme: S5E A0 Toshiba 5th Gen Lithography tlc 3D 2 plane 512GB
2026-08-18 12:19:02.283424+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2058:ECCVersion   : 1
2026-08-18 12:19:02.283426+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2062:FTL Rev      : 36.1
2026-08-18 12:19:02.283428+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2063:DM_Version   : 179
2026-08-18 12:19:02.283430+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2064:=======================
2026-08-18 12:19:02.283437+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2071:Found 3 namespaces in current NAND
2026-08-18 12:19:02.283476+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[1] as nstype[1]
2026-08-18 12:19:02.283511+0000 0x990      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[2] as nstype[8]
2026-08-18 12:19:02.283537+0000 0x9f9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[3] as nstype[13]
2026-08-18 12:19:02.310800+0000 0xa1b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1580:allocateAll 1
2026-08-18 12:19:02.311001+0000 0xa58      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:19:02.324497+0000 0xb2b      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:19:02.324499+0000 0xb2b      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s1 device_handle block size 4096 block count 128000 features 0 internal
2026-08-18 12:19:02.324714+0000 0xb2b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:19:02.325224+0000 0xa1b      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s2 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:19:02.325226+0000 0xa1b      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s2 device_handle block size 4096 block count 120699413 features 0 internal
2026-08-18 12:19:02.325255+0000 0xb2b      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s3 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:19:02.325257+0000 0xb2b      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s3 device_handle block size 4096 block count 1310709 features 0 internal
2026-08-18 12:19:02.325314+0000 0xa1b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:19:02.325554+0000 0xb2b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s3 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:19:02.332334+0000 0xa1b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s1 checkpoint search: largest xid 9062, best xid 9062 @ 11
2026-08-18 12:19:02.332340+0000 0xa1b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s1 stable checkpoint indices: desc 10 data 406
2026-08-18 12:19:02.339333+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s3 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:19:02.339339+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s3 stable checkpoint indices: desc 36 data 285
2026-08-18 12:19:02.370113+0000 0x7fb      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s2 checkpoint search: largest xid 4070412, best xid 4070412 @ 167
2026-08-18 12:19:02.370120+0000 0x7fb      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s2 stable checkpoint indices: desc 166 data 15019
2026-08-18 12:19:02.370141+0000 0x7fb      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:19:02.370143+0000 0x7fb      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:19:02.372321+0000 0xa1b      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:19:02.372325+0000 0xa1b      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:19:02.373046+0000 0xa1b      Default     0x0                  0      0    kernel: (AppleFileSystemDriver) AppleFileSystemDriver: publishing boot-uuid-media=disk3s1 (Macintosh HD)
2026-08-18 12:19:02.373733+0000 0xa1b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 2, NSTYPE - 8
2026-08-18 12:19:02.373788+0000 0xa1b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:19:02.373789+0000 0xa1b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 768
2026-08-18 12:19:02.373839+0000 0x990      Default     0x0                  0      0    kernel: BSD root: disk3s1
2026-08-18 12:19:02.373854+0000 0xa1b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 2, NSTYPE: 8
2026-08-18 12:19:02.373855+0000 0xa1b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 3, NSTYPE - 13
2026-08-18 12:19:02.373976+0000 0x990      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk3 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:19:02.373979+0000 0x990      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk3 device_handle block size 4096 block count 120699413 features 22 internal solidstate
2026-08-18 12:19:02.374058+0000 0xa1b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:19:02.374060+0000 0xa1b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 32768
2026-08-18 12:19:02.374417+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk3 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:19:02.374440+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeEAN::StartDevice(IOService *)::249:EAN StartDevice Done
2026-08-18 12:19:02.374549+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 3, NSTYPE: 13
2026-08-18 12:19:02.374551+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::StartController()::1549:Setting NAND status to Ready
2026-08-18 12:19:02.374558+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::816:Successfully initialized NVMe drive 0x1000004BD
2026-08-18 12:19:02.377460+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cc00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:19:02.377462+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CC
2026-08-18 12:19:02.377463+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:19:02.377465+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:19:02.377466+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:19:02.378287+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cc00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:19:02.378288+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CC
2026-08-18 12:19:02.378290+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:19:02.378291+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:19:02.378292+0000 0x7fb      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:19:02.418398+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk3 checkpoint search: largest xid 4070412, best xid 4070412 @ 167
2026-08-18 12:19:02.418404+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk3 stable checkpoint indices: desc 166 data 15019
2026-08-18 12:19:02.420314+0000 0x990      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s1 No ER state object for volume Macintosh HD - rolling is not happening, nothing to recover.
2026-08-18 12:19:02.420503+0000 0x990      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2916: disk3s1 Rooting from snapshot with xid 3094032.
2026-08-18 12:19:02.420505+0000 0x990      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:19:02.420533+0000 0x990      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1222: disk3s1 mounting snapshot w/snap_xid 3094032 and sblock oid 0xbcade
2026-08-18 12:19:02.421442+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk3 volume groups tree is not setup yet
2026-08-18 12:19:02.421444+0000 0x990      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk3 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:19:02.421718+0000 0x990      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:19:02.421720+0000 0x990      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:19:02.421722+0000 0x990      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk3s1 successfully validated on-disk root hash
2026-08-18 12:19:02.421724+0000 0x990      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1407: disk3s1 setting dev block size to 4096 from 512
2026-08-18 12:19:02.421728+0000 0x990      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 12:19:02.423129+0000 0x990      Default     0x0                  0      0    kernel: (apfs) handle_mount:960: disk3s1 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
2026-08-18 12:19:02.423132+0000 0x990      Default     0x0                  0      0    kernel: (apfs) fs_setup_shadow_fs_root_tree:3501: disk3s1 Created the shadow_fs_root tree <private>
2026-08-18 12:19:02.423146+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s1 Set volume (role 0x1) to 402 xid 2f3610
2026-08-18 12:19:02.423165+0000 0x990      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:19:02.423737+0000 0x990      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:19:02.423740+0000 0x990      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:19:02.428704+0000 0x459      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 12:19:02.428743+0000 0x459      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:19:02.428887+0000 0x459      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 12:19:02.428889+0000 0x459      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:19:02.437407+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk4s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:19:02.437409+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk4s1 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:19:02.437419+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk4s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:19:02.441330+0000 0x243      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk4s1 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:19:02.441333+0000 0x243      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk4s1 stable checkpoint indices: desc 6 data 14
2026-08-18 12:19:02.442298+0000 0x459      Default     0x0                  0      0    kernel: imageboot_pivot_image: attached disk image /System/Volumes/Recovery/398F441C-CCE1-471E-AA2A-F804CABE8548/boot/B23324F57C2EF64EDC38BD8F5EB06D534A249B64D931D892147D98B70E9A9A76C2CEAFDC629D9D9C877585940336718D/usr/standalone/firmware/arm64eBaseSystem.dmg as disk4s1
2026-08-18 12:19:02.442361+0000 0x459      Default     0x0                  0      0    kernel: (HFS) hfs_mount: hfs_mountfs returned error=22 for device disk4s1
2026-08-18 12:19:02.442465+0000 0x990      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk5 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:19:02.442467+0000 0x990      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk5 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:19:02.442477+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk5 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:19:02.442734+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk5 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:19:02.442737+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk5 stable checkpoint indices: desc 6 data 14
2026-08-18 12:19:02.444781+0000 0x990      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk5s1 No ER state object for volume macOS Base System - rolling is not happening, nothing to recover.
2026-08-18 12:19:02.444788+0000 0x990      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:19:02.444790+0000 0x990      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:19:02.444792+0000 0x990      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk5s1 successfully validated on-disk root hash
2026-08-18 12:19:02.444806+0000 0x990      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mounting volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:19:02.444831+0000 0x990      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk5s1 vol-uuid: 98E2569B-8C5F-43FB-BAC5-FD0129260DF4 block size: 4096 block count: 385536 (unencrypted; flags: 0x1; features: 21.0.12)
2026-08-18 12:19:02.446529+0000 0x990      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk5s1 setting dev block size to 4096 from 512
2026-08-18 12:19:02.446531+0000 0x990      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:19:02.446539+0000 0x990      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mount-complete volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:19:02.446621+0000 0x990      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:19:02.446623+0000 0x990      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:19:02.451207+0000 0xae9      Default     0x0                  0      0    kernel: (BootCache) BootCache: Root disk is an SSD, not caching
2026-08-18 12:19:02.921959+0000 0x459      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:173: disk3 metazone for device 0 of size 1540803 blocks (encrypted: 0-770401 unencrypted: 770401-1540803)
2026-08-18 12:19:02.921963+0000 0x459      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 24674304
2026-08-18 12:19:02.921965+0000 0x651      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 24870912
2026-08-18 12:19:02.921967+0000 0x651      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 102662144
2026-08-18 12:19:02.921969+0000 0x651      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 84672512
2026-08-18 12:19:02.925336+0000 0x70       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s6 No ER state object for volume VM - rolling is not happening, nothing to recover.
2026-08-18 12:19:02.925341+0000 0x70       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mounting volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.925383+0000 0x70       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s6 vol-uuid: D5740DA5-764A-4EE1-A679-9DA5755A8249 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:19:02.925394+0000 0x70       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s6 setting dev block size to 4096 from 512
2026-08-18 12:19:02.925397+0000 0x70       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s6 Volume VM role 0x8 is not a System or Data volume
2026-08-18 12:19:02.925412+0000 0x70       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mount-complete volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.928834+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
2026-08-18 12:19:02.928839+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mounting volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.928854+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s2 vol-uuid: 336B630F-3720-42B7-9A54-AC333F292FBD block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:19:02.930686+0000 0x651      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s2 setting dev block size to 4096 from 512
2026-08-18 12:19:02.930689+0000 0x651      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
2026-08-18 12:19:02.930698+0000 0x651      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s2 volume with role 16 will be mounted until system shutdown
2026-08-18 12:19:02.930701+0000 0x651      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mount-complete volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.932692+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s4 No ER state object for volume Update - rolling is not happening, nothing to recover.
2026-08-18 12:19:02.932694+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mounting volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.932714+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s4 vol-uuid: F01A451D-5CDC-4F27-9387-42805AB04770 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:19:02.933557+0000 0xb2a      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s4 setting dev block size to 4096 from 512
2026-08-18 12:19:02.933562+0000 0xb2a      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s4 Volume Update role 0xc0 is not a System or Data volume
2026-08-18 12:19:02.933572+0000 0xb2a      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s4 volume with role 192 will be mounted until system shutdown
2026-08-18 12:19:02.933576+0000 0xb2a      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mount-complete volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.934091+0000 0xb2a      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk1 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:19:02.934093+0000 0xb2a      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk1 device_handle block size 4096 block count 128000 features 22 internal solidstate
2026-08-18 12:19:02.934891+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:19:02.952559+0000 0xb2a      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk1 checkpoint search: largest xid 9062, best xid 9062 @ 11
2026-08-18 12:19:02.952566+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk1 stable checkpoint indices: desc 10 data 406
2026-08-18 12:19:02.952576+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:111: disk1 no metazone for device 0, of size 524288000 bytes, block_size 4096
2026-08-18 12:19:02.953404+0000 0x651      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk1 scan took 0.000811 s (no trims)
2026-08-18 12:19:02.953410+0000 0x651      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk1 dev 0 smfree 122768/128000 table 28/127 blocks 122768 1:4384:122625 100.00% range 1211:126789 99.05% scans 1
2026-08-18 12:19:02.953914+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk1 scan took 0.000500 s, trims took 0.000496 s
2026-08-18 12:19:02.953917+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk1 122768 blocks free in 29 extents, avg 4233.37
2026-08-18 12:19:02.953919+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk1 122768 blocks trimmed in 29 extents (17 us/trim, 58467 trims/s)
2026-08-18 12:19:02.953921+0000 0x6c8      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk1 trim distribution 1:5 2+:5 4+:17 16+:0 64+:0 256+:2
2026-08-18 12:19:02.954268+0000 0x651      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s2 No ER state object for volume xART - rolling is not happening, nothing to recover.
2026-08-18 12:19:02.954271+0000 0x651      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mounting volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.954292+0000 0x651      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s2 vol-uuid: 8E16CEF3-ED64-4D4E-BBA7-A3B59511C2AA block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:19:02.954300+0000 0x651      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s2 setting dev block size to 4096 from 512
2026-08-18 12:19:02.954301+0000 0x651      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s2 Volume xART role 0x100 is not a System or Data volume
2026-08-18 12:19:02.954304+0000 0x651      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s2 volume with role 256 will be mounted until system shutdown
2026-08-18 12:19:02.954307+0000 0x651      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mount-complete volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.957428+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s1 No ER state object for volume iSCPreboot - rolling is not happening, nothing to recover.
2026-08-18 12:19:02.957434+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mounting volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.957447+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s1 vol-uuid: 68EF6EF8-2323-4896-9123-2894BDE8CA21 block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:19:02.958291+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s1 setting dev block size to 4096 from 512
2026-08-18 12:19:02.958298+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s1 Volume iSCPreboot role 0x10 is not a System or Data volume
2026-08-18 12:19:02.958303+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s1 volume with role 16 will be mounted until system shutdown
2026-08-18 12:19:02.958307+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mount-complete volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.960438+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s3 No ER state object for volume Hardware - rolling is not happening, nothing to recover.
2026-08-18 12:19:02.960441+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mounting volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.960458+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s3 vol-uuid: 26639779-A201-4A4B-90DA-1A7F4141453B block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:19:02.961260+0000 0x651      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s3 setting dev block size to 4096 from 512
2026-08-18 12:19:02.961263+0000 0x651      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s3 Volume Hardware role 0x140 is not a System or Data volume
2026-08-18 12:19:02.961267+0000 0x651      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s3 volume with role 320 will be mounted until system shutdown
2026-08-18 12:19:02.961271+0000 0x651      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mount-complete volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:19:02.988778+0000 0xa2f      Default     0x0                  0      0    kernel: (apfs) apfs_rawdev_create:708: disk1s2 Enable bypass mode on inode 16 on xART@disk1 as 2.0, tidemark 2771
2026-08-18 12:19:03.056807+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk3 scan took 0.134827 s (no trims)
2026-08-18 12:19:03.056814+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk3 dev 0 smfree 19035023/120699413 table 587/587 blocks 2040497 1507:3476:40391 10.71% range 527346:119965700 99.39% scans 1
2026-08-18 12:19:03.056818+0000 0xb39      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:496: disk3 dev 0 scan_stats[2]: foundmax 40391 extents 817131 blocks 16994526 long 1505 avg 20 89.28% range 39149:120660264 99.96%
2026-08-18 12:19:04.964547+0000 0x968      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:19:04.974612+0000 0x968      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:19:04.974616+0000 0x968      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:19:05.153544+0000 0xaed      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk3 scan took 2.096722 s, trims took 1.908142 s
2026-08-18 12:19:05.153548+0000 0xaed      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk3 19035023 blocks free in 817726 extents, avg 23.27
2026-08-18 12:19:05.153550+0000 0xaed      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk3 19035023 blocks trimmed in 817726 extents (2 us/trim, 428545 trims/s)
2026-08-18 12:19:05.153552+0000 0xaed      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk3 trim distribution 1:281015 2+:153264 4+:240250 16+:82529 64+:50615 256+:10053
2026-08-18 12:19:05.153554+0000 0xaed      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4455: disk3 trims dropped: 26155 blocks 26019 extents, avg 1.00
2026-08-18 12:19:05.228047+0000 0xb47      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:19:05.235223+0000 0xb47      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:19:05.235240+0000 0xb47      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:19:05.244996+0000 0x96a      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 updating mounted volume macOS Base System, requested by: mount_apfs (pid 25); parent: mount (pid 24)
2026-08-18 12:18:58.339494+0000 0x9af      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 12:18:58.339501+0000 0x9af      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 12:18:58.360988+0000 0xc08      Default     0x0                  0      0    kernel: (apfs) apfs_mount:30540: disk3s5 Failed to unwrap metadata crypto state: 1
2026-08-18 12:18:58.382697+0000 0xc08      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2842: disk3 apfs_mount failed, err: 1
2026-08-18 12:18:58.537487+0000 0xc18      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:18:58.537494+0000 0xc18      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 12:18:58.537673+0000 0xc18      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:18:58.568262+0000 0xc18      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:18:58.568279+0000 0xc18      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 12:19:01.542452+0000 0x89b      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:19:01.718514+0000 0xc39      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] 10 duplicate reports for Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:19:08.339242+0000 0xb1b      Default     0x0                  0      0    kernel: (apfs) handle_get_dev_by_role:13150: disk3s1 This operation needs entitlement
2026-08-18 12:20:09.487559+0000 0x80       Default     0x0                  0      0    kernel: (AppleDiskImages2) [0 (ctx)] virtual bool AppleDiskImagesController::start(IOService *)::163: kext version: 524.120.8
2026-08-18 12:20:09.795362+0000 0x151      Default     0x0                  0      0    kernel: (AppleH13CameraInterface) AppleH13amIn::start - fInRamdisk=0
2026-08-18 12:20:10.298274+0000 0x6bb      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS2NVMeController::probe(IOService *, SInt32 *)::248:Found (ANS2) provider, returning score 100000
2026-08-18 12:20:10.298459+0000 0x6bb      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS3NVMeController::probe(IOService *, SInt32 *)::82:Found (ANS2) provider and linear-sq, returning score 300000
2026-08-18 12:20:10.419123+0000 0x6cb      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleANS2NVMeController::start(IOService *)::430:Found the ANS2Endpoint1
2026-08-18 12:20:10.442087+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::SetNamespacesStruct()::196:Obtained 3 namespaces from DT
2026-08-18 12:20:10.442096+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::756:start 0x100000727
2026-08-18 12:20:10.442225+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOFilterInterruptEventSource *AppleANS2NVMeController::CreateDeviceInterrupt(IOInterruptEventSource::Action, IOFilterInterruptEventSource::Filter, IOService *)::2756:ANS2 NVMe interrupt index - 0x4
2026-08-18 12:20:10.442309+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual uint32_t AppleANS2CGv2Controller::GetNVMeSPTMQueueEntries()::164:NVMe Queue Entries=253
2026-08-18 12:20:10.443007+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) static AppleNVMeRequestPoolTagReserve *AppleNVMeRequestPoolTagReserve::Create(AppleNVMeWorkLoop *, uint8_t, uint16_t, uint32_t, bool, NVMeBufferAllocator *, lck_mtx_t *, NVMeCGType_t, IOMapper *)::138:NVMe Request Pool Init (Tag Reservation Case). First phase, RequestCount = 1
2026-08-18 12:20:10.443047+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=0 entrysize=64
2026-08-18 12:20:10.443063+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=1 entrysize=64
2026-08-18 12:20:10.443121+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:20:10.443130+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:20:10.465318+0000 0x9d2      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeRequestPoolTagReserve::Rebuild(uint8_t, uint32_t, bool, NVMeCGType_t, IOMapper *)::181:NVMe Request Pool Init (Tag Reservation Case). Second phase, RequestCount = 253
2026-08-18 12:20:10.518688+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1966:nvme: Vendor ID     : 0x106b
2026-08-18 12:20:10.518691+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1967:nvme: Model Number  : APPLE SSD AP0512Z
2026-08-18 12:20:10.518693+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1968:nvme: Serial Number : [REDACTED]
2026-08-18 12:20:10.518695+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1969:nvme: Firmware Rev  : 561.100.
2026-08-18 12:20:10.518697+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2038:nvme: S5E A0 Toshiba 5th Gen Lithography tlc 3D 2 plane 512GB
2026-08-18 12:20:10.518701+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2058:ECCVersion   : 1
2026-08-18 12:20:10.518702+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2062:FTL Rev      : 36.1
2026-08-18 12:20:10.518704+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2063:DM_Version   : 179
2026-08-18 12:20:10.518706+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2064:=======================
2026-08-18 12:20:10.518707+0000 0x983      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2071:Found 3 namespaces in current NAND
2026-08-18 12:20:10.518755+0000 0x9ce      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[1] as nstype[1]
2026-08-18 12:20:10.518806+0000 0x9ea      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[2] as nstype[8]
2026-08-18 12:20:10.518831+0000 0x6bb      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[3] as nstype[13]
2026-08-18 12:20:10.520628+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1580:allocateAll 1
2026-08-18 12:20:10.525503+0000 0x6bb      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:20:10.588306+0000 0x957      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s2 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:10.588308+0000 0x957      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s2 device_handle block size 4096 block count 120699413 features 0 internal
2026-08-18 12:20:10.588457+0000 0x957      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:10.593693+0000 0x74f      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s3 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:10.593695+0000 0x74f      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s3 device_handle block size 4096 block count 1310709 features 0 internal
2026-08-18 12:20:10.593744+0000 0x983      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s3 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:10.596453+0000 0x74f      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:10.596455+0000 0x74f      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s1 device_handle block size 4096 block count 128000 features 0 internal
2026-08-18 12:20:10.596574+0000 0x74f      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:10.604040+0000 0x6bb      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s1 checkpoint search: largest xid 9067, best xid 9067 @ 5
2026-08-18 12:20:10.604044+0000 0x6bb      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s1 stable checkpoint indices: desc 4 data 426
2026-08-18 12:20:10.607204+0000 0x983      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s3 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:20:10.607207+0000 0x983      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s3 stable checkpoint indices: desc 36 data 285
2026-08-18 12:20:10.636630+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s2 checkpoint search: largest xid 4070420, best xid 4070420 @ 183
2026-08-18 12:20:10.636634+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s2 stable checkpoint indices: desc 182 data 15059
2026-08-18 12:20:10.636656+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:20:10.636658+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:20:10.637799+0000 0xa18      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:20:10.637801+0000 0xa18      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:20:10.640128+0000 0x813      Default     0x0                  0      0    kernel: (AppleFileSystemDriver) AppleFileSystemDriver: publishing boot-uuid-media=disk3s1 (Macintosh HD)
2026-08-18 12:20:10.640707+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 2, NSTYPE - 8
2026-08-18 12:20:10.640721+0000 0x813      Default     0x0                  0      0    kernel: BSD root: disk3s1
2026-08-18 12:20:10.640756+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:20:10.640757+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 768
2026-08-18 12:20:10.640825+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 2, NSTYPE: 8
2026-08-18 12:20:10.640827+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 3, NSTYPE - 13
2026-08-18 12:20:10.640890+0000 0x813      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk3 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:10.640892+0000 0x813      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk3 device_handle block size 4096 block count 120699413 features 22 internal solidstate
2026-08-18 12:20:10.641056+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:20:10.641057+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 32768
2026-08-18 12:20:10.641181+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk3 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:20:10.641199+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeEAN::StartDevice(IOService *)::249:EAN StartDevice Done
2026-08-18 12:20:10.641260+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 3, NSTYPE: 13
2026-08-18 12:20:10.641261+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::StartController()::1549:Setting NAND status to Ready
2026-08-18 12:20:10.641268+0000 0x6ed      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::816:Successfully initialized NVMe drive 0x100000727
2026-08-18 12:20:10.643788+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cc00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:20:10.643791+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CC
2026-08-18 12:20:10.643792+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:20:10.643794+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:20:10.643796+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:20:10.644003+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cc00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:20:10.644004+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CC
2026-08-18 12:20:10.644006+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:20:10.644007+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:20:10.644008+0000 0x957      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:20:10.683529+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk3 checkpoint search: largest xid 4070420, best xid 4070420 @ 183
2026-08-18 12:20:10.683535+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk3 stable checkpoint indices: desc 182 data 15059
2026-08-18 12:20:10.685258+0000 0x813      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s1 No ER state object for volume Macintosh HD - rolling is not happening, nothing to recover.
2026-08-18 12:20:10.685744+0000 0x813      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2916: disk3s1 Rooting from snapshot with xid 3094032.
2026-08-18 12:20:10.685747+0000 0x813      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:20:10.685771+0000 0x813      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1222: disk3s1 mounting snapshot w/snap_xid 3094032 and sblock oid 0xbcade
2026-08-18 12:20:10.686397+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk3 volume groups tree is not setup yet
2026-08-18 12:20:10.686399+0000 0x813      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk3 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:20:10.686649+0000 0x813      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:20:10.686651+0000 0x813      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:20:10.686653+0000 0x813      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk3s1 successfully validated on-disk root hash
2026-08-18 12:20:10.686655+0000 0x813      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1407: disk3s1 setting dev block size to 4096 from 512
2026-08-18 12:20:10.686658+0000 0x813      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 12:20:10.688327+0000 0x813      Default     0x0                  0      0    kernel: (apfs) handle_mount:960: disk3s1 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
2026-08-18 12:20:10.688330+0000 0x813      Default     0x0                  0      0    kernel: (apfs) fs_setup_shadow_fs_root_tree:3501: disk3s1 Created the shadow_fs_root tree <private>
2026-08-18 12:20:10.688347+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s1 Set volume (role 0x1) to 402 xid 2f3610
2026-08-18 12:20:10.688366+0000 0x813      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:20:10.688981+0000 0x813      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:20:10.688983+0000 0x813      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:20:10.693361+0000 0x813      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 12:20:10.693395+0000 0x813      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:10.693806+0000 0x813      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 12:20:10.693809+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:20:10.702409+0000 0xa18      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk4s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:10.702411+0000 0xa18      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk4s1 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:20:10.702420+0000 0xa18      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk4s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:10.706332+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk4s1 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:20:10.706335+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk4s1 stable checkpoint indices: desc 6 data 14
2026-08-18 12:20:10.707318+0000 0x813      Default     0x0                  0      0    kernel: imageboot_pivot_image: attached disk image /System/Volumes/Recovery/398F441C-CCE1-471E-AA2A-F804CABE8548/boot/B23324F57C2EF64EDC38BD8F5EB06D534A249B64D931D892147D98B70E9A9A76C2CEAFDC629D9D9C877585940336718D/usr/standalone/firmware/arm64eBaseSystem.dmg as disk4s1
2026-08-18 12:20:10.707385+0000 0x813      Default     0x0                  0      0    kernel: (HFS) hfs_mount: hfs_mountfs returned error=22 for device disk4s1
2026-08-18 12:20:10.707490+0000 0x813      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk5 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:10.707492+0000 0x813      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk5 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:20:10.707502+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk5 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:20:10.707742+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk5 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:20:10.707745+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk5 stable checkpoint indices: desc 6 data 14
2026-08-18 12:20:10.709497+0000 0x813      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk5s1 No ER state object for volume macOS Base System - rolling is not happening, nothing to recover.
2026-08-18 12:20:10.709503+0000 0x813      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:20:10.709505+0000 0x813      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:20:10.709507+0000 0x813      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk5s1 successfully validated on-disk root hash
2026-08-18 12:20:10.709519+0000 0x813      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mounting volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:20:10.709542+0000 0x813      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk5s1 vol-uuid: 98E2569B-8C5F-43FB-BAC5-FD0129260DF4 block size: 4096 block count: 385536 (unencrypted; flags: 0x1; features: 21.0.12)
2026-08-18 12:20:10.710859+0000 0x813      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk5s1 setting dev block size to 4096 from 512
2026-08-18 12:20:10.710864+0000 0x813      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:20:10.710869+0000 0x813      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mount-complete volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:20:10.710946+0000 0x813      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:20:10.710948+0000 0x813      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:20:10.714283+0000 0xa18      Default     0x0                  0      0    kernel: (BootCache) BootCache: Root disk is an SSD, not caching
2026-08-18 12:20:11.186977+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:173: disk3 metazone for device 0 of size 1540803 blocks (encrypted: 0-770401 unencrypted: 770401-1540803)
2026-08-18 12:20:11.186980+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 24674304
2026-08-18 12:20:11.186982+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 24870912
2026-08-18 12:20:11.186984+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 102662144
2026-08-18 12:20:11.186986+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 84672512
2026-08-18 12:20:11.191270+0000 0x983      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s6 No ER state object for volume VM - rolling is not happening, nothing to recover.
2026-08-18 12:20:11.191276+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mounting volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.191328+0000 0x983      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s6 vol-uuid: D5740DA5-764A-4EE1-A679-9DA5755A8249 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:11.191339+0000 0x983      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s6 setting dev block size to 4096 from 512
2026-08-18 12:20:11.191341+0000 0x983      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s6 Volume VM role 0x8 is not a System or Data volume
2026-08-18 12:20:11.191355+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mount-complete volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.193755+0000 0x983      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
2026-08-18 12:20:11.193761+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mounting volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.193776+0000 0x983      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s2 vol-uuid: 336B630F-3720-42B7-9A54-AC333F292FBD block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:11.195410+0000 0x983      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s2 setting dev block size to 4096 from 512
2026-08-18 12:20:11.195414+0000 0x983      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
2026-08-18 12:20:11.195422+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s2 volume with role 16 will be mounted until system shutdown
2026-08-18 12:20:11.195426+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mount-complete volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.196811+0000 0x957      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s4 No ER state object for volume Update - rolling is not happening, nothing to recover.
2026-08-18 12:20:11.196815+0000 0x957      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mounting volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.196844+0000 0x957      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s4 vol-uuid: F01A451D-5CDC-4F27-9387-42805AB04770 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:11.197093+0000 0x957      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s4 setting dev block size to 4096 from 512
2026-08-18 12:20:11.197096+0000 0x957      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s4 Volume Update role 0xc0 is not a System or Data volume
2026-08-18 12:20:11.197105+0000 0x957      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s4 volume with role 192 will be mounted until system shutdown
2026-08-18 12:20:11.197109+0000 0x957      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mount-complete volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.197614+0000 0x957      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk1 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:11.197616+0000 0x957      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk1 device_handle block size 4096 block count 128000 features 22 internal solidstate
2026-08-18 12:20:11.197883+0000 0x957      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:11.222277+0000 0x983      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk1 checkpoint search: largest xid 9067, best xid 9067 @ 5
2026-08-18 12:20:11.222281+0000 0x983      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk1 stable checkpoint indices: desc 4 data 426
2026-08-18 12:20:11.222290+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:111: disk1 no metazone for device 0, of size 524288000 bytes, block_size 4096
2026-08-18 12:20:11.222892+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk1 scan took 0.000587 s (no trims)
2026-08-18 12:20:11.222898+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk1 dev 0 smfree 122768/128000 table 30/127 blocks 122768 1:4092:122629 100.00% range 1219:126781 99.04% scans 1
2026-08-18 12:20:11.223207+0000 0x957      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk1 scan took 0.000304 s, trims took 0.000297 s
2026-08-18 12:20:11.223211+0000 0x957      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk1 122768 blocks free in 31 extents, avg 3960.25
2026-08-18 12:20:11.223214+0000 0x957      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk1 122768 blocks trimmed in 31 extents (9 us/trim, 104377 trims/s)
2026-08-18 12:20:11.223219+0000 0x957      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk1 trim distribution 1:11 2+:4 4+:13 16+:1 64+:0 256+:2
2026-08-18 12:20:11.224347+0000 0x957      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s2 No ER state object for volume xART - rolling is not happening, nothing to recover.
2026-08-18 12:20:11.224350+0000 0x957      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mounting volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.224366+0000 0x957      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s2 vol-uuid: 8E16CEF3-ED64-4D4E-BBA7-A3B59511C2AA block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:11.224374+0000 0x957      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s2 setting dev block size to 4096 from 512
2026-08-18 12:20:11.224376+0000 0x957      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s2 Volume xART role 0x100 is not a System or Data volume
2026-08-18 12:20:11.224379+0000 0x957      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s2 volume with role 256 will be mounted until system shutdown
2026-08-18 12:20:11.224382+0000 0x957      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mount-complete volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.226573+0000 0x957      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s1 No ER state object for volume iSCPreboot - rolling is not happening, nothing to recover.
2026-08-18 12:20:11.226579+0000 0x957      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mounting volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.226593+0000 0x957      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s1 vol-uuid: 68EF6EF8-2323-4896-9123-2894BDE8CA21 block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:11.227440+0000 0x983      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s1 setting dev block size to 4096 from 512
2026-08-18 12:20:11.227445+0000 0x983      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s1 Volume iSCPreboot role 0x10 is not a System or Data volume
2026-08-18 12:20:11.227449+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s1 volume with role 16 will be mounted until system shutdown
2026-08-18 12:20:11.227453+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mount-complete volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.230037+0000 0x983      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s3 No ER state object for volume Hardware - rolling is not happening, nothing to recover.
2026-08-18 12:20:11.230043+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mounting volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.230062+0000 0x983      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s3 vol-uuid: 26639779-A201-4A4B-90DA-1A7F4141453B block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:11.231327+0000 0x983      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s3 setting dev block size to 4096 from 512
2026-08-18 12:20:11.231335+0000 0x983      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s3 Volume Hardware role 0x140 is not a System or Data volume
2026-08-18 12:20:11.231340+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s3 volume with role 320 will be mounted until system shutdown
2026-08-18 12:20:11.231343+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mount-complete volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:11.260119+0000 0x983      Default     0x0                  0      0    kernel: (apfs) apfs_rawdev_create:708: disk1s2 Enable bypass mode on inode 16 on xART@disk1 as 2.0, tidemark 2771
2026-08-18 12:20:11.328981+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk3 scan took 0.141980 s (no trims)
2026-08-18 12:20:11.328988+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk3 dev 0 smfree 19034432/120699413 table 587/587 blocks 2040494 1505:3476:40391 10.72% range 527346:119965700 99.39% scans 1
2026-08-18 12:20:11.328992+0000 0x983      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:496: disk3 dev 0 scan_stats[2]: foundmax 40391 extents 817125 blocks 16993938 long 1504 avg 20 89.27% range 39149:120660264 99.96%
2026-08-18 12:20:13.104562+0000 0x960      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:20:13.115150+0000 0x9dd      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:20:13.115155+0000 0x9dd      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:20:13.370310+0000 0x957      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk3 scan took 2.041314 s, trims took 1.859043 s
2026-08-18 12:20:13.370313+0000 0x957      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk3 19034432 blocks free in 817720 extents, avg 23.27
2026-08-18 12:20:13.370315+0000 0x957      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk3 19034432 blocks trimmed in 817720 extents (2 us/trim, 439860 trims/s)
2026-08-18 12:20:13.370317+0000 0x957      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk3 trim distribution 1:281007 2+:153266 4+:240250 16+:82529 64+:50615 256+:10053
2026-08-18 12:20:13.370318+0000 0x957      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4455: disk3 trims dropped: 25531 blocks 25395 extents, avg 1.00
2026-08-18 12:20:13.378177+0000 0xade      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:20:13.385857+0000 0xade      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:20:13.385874+0000 0xade      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:20:13.396889+0000 0xae3      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 updating mounted volume macOS Base System, requested by: mount_apfs (pid 25); parent: mount (pid 24)
2026-08-18 12:20:06.499923+0000 0x9a3      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 12:20:06.499928+0000 0x9a3      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 12:20:06.528661+0000 0xbf7      Default     0x0                  0      0    kernel: (apfs) apfs_mount:30540: disk3s5 Failed to unwrap metadata crypto state: 1
2026-08-18 12:20:06.555249+0000 0xbf7      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2842: disk3 apfs_mount failed, err: 1
2026-08-18 12:20:06.577878+0000 0xc14      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 12:20:06.577883+0000 0xc14      Default     0x0                  0      0    kernel: (IOStorageFamily) disk1s1: device is not readable.
2026-08-18 12:20:06.588218+0000 0xc19      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] System Policy: diskarbitrationd(64) deny(1) file-unmount /System/Volumes/iSCPreboot
2026-08-18 12:20:06.595741+0000 0xc1b      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 12:20:06.595748+0000 0xc1b      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s2: device is not readable.
2026-08-18 12:20:06.599854+0000 0xc1c      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] System Policy: diskarbitrationd(64) deny(1) file-unmount /System/Volumes/Preboot
2026-08-18 12:20:06.806071+0000 0xbda      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:06.806081+0000 0xbda      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 12:20:06.806376+0000 0xbda      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:06.813073+0000 0xbda      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:20:06.813088+0000 0xbda      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 12:20:09.639547+0000 0xabc      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:20:09.827228+0000 0xc50      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] 10 duplicate reports for Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:20:37.430317+0000 0x80       Default     0x0                  0      0    kernel: (AppleDiskImages2) [0 (ctx)] virtual bool AppleDiskImagesController::start(IOService *)::163: kext version: 524.120.8
2026-08-18 12:20:37.816304+0000 0x86c      Default     0x0                  0      0    kernel: (AppleH13CameraInterface) AppleH13amIn::start - fInRamdisk=0
2026-08-18 12:20:38.127027+0000 0x95a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS2NVMeController::probe(IOService *, SInt32 *)::248:Found (ANS2) provider, returning score 100000
2026-08-18 12:20:38.127062+0000 0x95a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS3NVMeController::probe(IOService *, SInt32 *)::82:Found (ANS2) provider and linear-sq, returning score 300000
2026-08-18 12:20:38.150828+0000 0x98e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleANS2NVMeController::start(IOService *)::430:Found the ANS2Endpoint1
2026-08-18 12:20:38.151151+0000 0x98e      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::SetNamespacesStruct()::196:Obtained 3 namespaces from DT
2026-08-18 12:20:38.151154+0000 0x98e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::756:start 0x10000065C
2026-08-18 12:20:38.151202+0000 0x98e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOFilterInterruptEventSource *AppleANS2NVMeController::CreateDeviceInterrupt(IOInterruptEventSource::Action, IOFilterInterruptEventSource::Filter, IOService *)::2756:ANS2 NVMe interrupt index - 0x4
2026-08-18 12:20:38.151238+0000 0x98e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual uint32_t AppleANS2CGv2Controller::GetNVMeSPTMQueueEntries()::164:NVMe Queue Entries=253
2026-08-18 12:20:38.151512+0000 0x169      Default     0x0                  0      0    kernel: (IONVMeFamily) static AppleNVMeRequestPoolTagReserve *AppleNVMeRequestPoolTagReserve::Create(AppleNVMeWorkLoop *, uint8_t, uint16_t, uint32_t, bool, NVMeBufferAllocator *, lck_mtx_t *, NVMeCGType_t, IOMapper *)::138:NVMe Request Pool Init (Tag Reservation Case). First phase, RequestCount = 1
2026-08-18 12:20:38.151525+0000 0x169      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=0 entrysize=64
2026-08-18 12:20:38.151531+0000 0x169      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=1 entrysize=64
2026-08-18 12:20:38.151553+0000 0x169      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:20:38.151556+0000 0x169      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:20:38.171470+0000 0x7e6      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeRequestPoolTagReserve::Rebuild(uint8_t, uint32_t, bool, NVMeCGType_t, IOMapper *)::181:NVMe Request Pool Init (Tag Reservation Case). Second phase, RequestCount = 253
2026-08-18 12:20:38.227036+0000 0xa17      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1966:nvme: Vendor ID     : 0x106b
2026-08-18 12:20:38.227039+0000 0xa17      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1967:nvme: Model Number  : APPLE SSD AP0512Z
2026-08-18 12:20:38.227041+0000 0xa17      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1968:nvme: Serial Number : [REDACTED]
2026-08-18 12:20:38.227043+0000 0xa17      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1969:nvme: Firmware Rev  : 561.100.
2026-08-18 12:20:38.227045+0000 0xa08      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2038:nvme: S5E A0 Toshiba 5th Gen Lithography tlc 3D 2 plane 512GB
2026-08-18 12:20:38.227047+0000 0xa08      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2058:ECCVersion   : 1
2026-08-18 12:20:38.227049+0000 0xa08      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2062:FTL Rev      : 36.1
2026-08-18 12:20:38.227050+0000 0xa08      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2063:DM_Version   : 179
2026-08-18 12:20:38.227051+0000 0xa08      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2064:=======================
2026-08-18 12:20:38.227052+0000 0xa08      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2071:Found 3 namespaces in current NAND
2026-08-18 12:20:38.227102+0000 0xa08      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[1] as nstype[1]
2026-08-18 12:20:38.227145+0000 0xa08      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[2] as nstype[8]
2026-08-18 12:20:38.227182+0000 0x989      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[3] as nstype[13]
2026-08-18 12:20:38.228233+0000 0x989      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1580:allocateAll 1
2026-08-18 12:20:38.238397+0000 0x989      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:20:38.312368+0000 0x7c5      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s3 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:38.312370+0000 0x7c5      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s3 device_handle block size 4096 block count 1310709 features 0 internal
2026-08-18 12:20:38.312373+0000 0x7ef      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:38.312376+0000 0x7ef      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s1 device_handle block size 4096 block count 128000 features 0 internal
2026-08-18 12:20:38.312561+0000 0x989      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s3 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:38.312562+0000 0x989      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:38.316774+0000 0x989      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s2 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:38.316776+0000 0x989      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s2 device_handle block size 4096 block count 120699413 features 0 internal
2026-08-18 12:20:38.316906+0000 0x989      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:38.319572+0000 0x989      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s1 checkpoint search: largest xid 9072, best xid 9072 @ 15
2026-08-18 12:20:38.319575+0000 0x989      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s1 stable checkpoint indices: desc 14 data 446
2026-08-18 12:20:38.325467+0000 0x989      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s3 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:20:38.325470+0000 0x989      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s3 stable checkpoint indices: desc 36 data 285
2026-08-18 12:20:38.361282+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s2 checkpoint search: largest xid 4070425, best xid 4070425 @ 193
2026-08-18 12:20:38.361286+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s2 stable checkpoint indices: desc 192 data 15084
2026-08-18 12:20:38.361308+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:20:38.361310+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:20:38.362456+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:20:38.362459+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:20:38.363450+0000 0x989      Default     0x0                  0      0    kernel: (AppleFileSystemDriver) AppleFileSystemDriver: publishing boot-uuid-media=disk3s1 (Macintosh HD)
2026-08-18 12:20:38.364019+0000 0x9ee      Default     0x0                  0      0    kernel: BSD root: disk3s1
2026-08-18 12:20:38.364044+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 2, NSTYPE - 8
2026-08-18 12:20:38.364119+0000 0x989      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:20:38.364122+0000 0x989      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 768
2026-08-18 12:20:38.364198+0000 0x989      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 2, NSTYPE: 8
2026-08-18 12:20:38.364201+0000 0x989      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 3, NSTYPE - 13
2026-08-18 12:20:38.364214+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk3 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:38.364216+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk3 device_handle block size 4096 block count 120699413 features 22 internal solidstate
2026-08-18 12:20:38.364400+0000 0x989      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:20:38.364401+0000 0x989      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 32768
2026-08-18 12:20:38.364545+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk3 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:20:38.364565+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeEAN::StartDevice(IOService *)::249:EAN StartDevice Done
2026-08-18 12:20:38.364616+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 3, NSTYPE: 13
2026-08-18 12:20:38.364619+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::StartController()::1549:Setting NAND status to Ready
2026-08-18 12:20:38.364626+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::816:Successfully initialized NVMe drive 0x10000065C
2026-08-18 12:20:38.366967+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cc00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:20:38.366970+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CC
2026-08-18 12:20:38.366973+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:20:38.366975+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:20:38.366977+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:20:38.367826+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cc00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:20:38.367832+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CC
2026-08-18 12:20:38.367834+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:20:38.367836+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:20:38.367838+0000 0x9ee      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:20:38.406998+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk3 checkpoint search: largest xid 4070425, best xid 4070425 @ 193
2026-08-18 12:20:38.407002+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk3 stable checkpoint indices: desc 192 data 15084
2026-08-18 12:20:38.408663+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s1 No ER state object for volume Macintosh HD - rolling is not happening, nothing to recover.
2026-08-18 12:20:38.409144+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2916: disk3s1 Rooting from snapshot with xid 3094032.
2026-08-18 12:20:38.409241+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:20:38.409271+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1222: disk3s1 mounting snapshot w/snap_xid 3094032 and sblock oid 0xbcade
2026-08-18 12:20:38.410260+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk3 volume groups tree is not setup yet
2026-08-18 12:20:38.410266+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk3 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:20:38.411978+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:20:38.411981+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:20:38.411983+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk3s1 successfully validated on-disk root hash
2026-08-18 12:20:38.411985+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1407: disk3s1 setting dev block size to 4096 from 512
2026-08-18 12:20:38.411988+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 12:20:38.413102+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_mount:960: disk3s1 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
2026-08-18 12:20:38.413105+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) fs_setup_shadow_fs_root_tree:3501: disk3s1 Created the shadow_fs_root tree <private>
2026-08-18 12:20:38.413120+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s1 Set volume (role 0x1) to 402 xid 2f3610
2026-08-18 12:20:38.413140+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:20:38.413823+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:20:38.413825+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:20:38.417848+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 12:20:38.417880+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:38.418056+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 12:20:38.418058+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:20:38.426298+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk4s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:38.426301+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk4s1 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:20:38.426309+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk4s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:38.428856+0000 0x7ef      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk4s1 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:20:38.428862+0000 0x7ef      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk4s1 stable checkpoint indices: desc 6 data 14
2026-08-18 12:20:38.429882+0000 0x9ee      Default     0x0                  0      0    kernel: imageboot_pivot_image: attached disk image /System/Volumes/Recovery/398F441C-CCE1-471E-AA2A-F804CABE8548/boot/B23324F57C2EF64EDC38BD8F5EB06D534A249B64D931D892147D98B70E9A9A76C2CEAFDC629D9D9C877585940336718D/usr/standalone/firmware/arm64eBaseSystem.dmg as disk4s1
2026-08-18 12:20:38.429946+0000 0x9ee      Default     0x0                  0      0    kernel: (HFS) hfs_mount: hfs_mountfs returned error=22 for device disk4s1
2026-08-18 12:20:38.430048+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk5 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:38.430050+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk5 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:20:38.430060+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk5 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:20:38.430313+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk5 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:20:38.430316+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk5 stable checkpoint indices: desc 6 data 14
2026-08-18 12:20:38.432235+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk5s1 No ER state object for volume macOS Base System - rolling is not happening, nothing to recover.
2026-08-18 12:20:38.432241+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:20:38.432243+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:20:38.432244+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk5s1 successfully validated on-disk root hash
2026-08-18 12:20:38.432256+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mounting volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:20:38.432279+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk5s1 vol-uuid: 98E2569B-8C5F-43FB-BAC5-FD0129260DF4 block size: 4096 block count: 385536 (unencrypted; flags: 0x1; features: 21.0.12)
2026-08-18 12:20:38.433366+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk5s1 setting dev block size to 4096 from 512
2026-08-18 12:20:38.433368+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:20:38.433372+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mount-complete volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:20:38.433447+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:20:38.433449+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:20:38.436854+0000 0x9ee      Default     0x0                  0      0    kernel: (BootCache) BootCache: Root disk is an SSD, not caching
2026-08-18 12:20:38.906643+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:173: disk3 metazone for device 0 of size 1540803 blocks (encrypted: 0-770401 unencrypted: 770401-1540803)
2026-08-18 12:20:38.906647+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 24674304
2026-08-18 12:20:38.906650+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 24870912
2026-08-18 12:20:38.906652+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 102662144
2026-08-18 12:20:38.906654+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 84672512
2026-08-18 12:20:38.909677+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s6 No ER state object for volume VM - rolling is not happening, nothing to recover.
2026-08-18 12:20:38.909682+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mounting volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.909728+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s6 vol-uuid: D5740DA5-764A-4EE1-A679-9DA5755A8249 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:38.909738+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s6 setting dev block size to 4096 from 512
2026-08-18 12:20:38.909744+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s6 Volume VM role 0x8 is not a System or Data volume
2026-08-18 12:20:38.909756+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mount-complete volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.913462+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
2026-08-18 12:20:38.913465+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mounting volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.913484+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s2 vol-uuid: 336B630F-3720-42B7-9A54-AC333F292FBD block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:38.914180+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s2 setting dev block size to 4096 from 512
2026-08-18 12:20:38.914183+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
2026-08-18 12:20:38.914192+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s2 volume with role 16 will be mounted until system shutdown
2026-08-18 12:20:38.914196+0000 0x1ec      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mount-complete volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.916322+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s4 No ER state object for volume Update - rolling is not happening, nothing to recover.
2026-08-18 12:20:38.916325+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mounting volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.916350+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s4 vol-uuid: F01A451D-5CDC-4F27-9387-42805AB04770 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:38.916710+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s4 setting dev block size to 4096 from 512
2026-08-18 12:20:38.916712+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s4 Volume Update role 0xc0 is not a System or Data volume
2026-08-18 12:20:38.916719+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s4 volume with role 192 will be mounted until system shutdown
2026-08-18 12:20:38.916723+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mount-complete volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.917221+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk1 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:38.917224+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk1 device_handle block size 4096 block count 128000 features 22 internal solidstate
2026-08-18 12:20:38.917517+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:38.933497+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk1 checkpoint search: largest xid 9072, best xid 9072 @ 15
2026-08-18 12:20:38.933503+0000 0x953      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk1 stable checkpoint indices: desc 14 data 446
2026-08-18 12:20:38.933511+0000 0x953      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:111: disk1 no metazone for device 0, of size 524288000 bytes, block_size 4096
2026-08-18 12:20:38.935871+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk1 scan took 0.002349 s (no trims)
2026-08-18 12:20:38.935876+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk1 dev 0 smfree 122768/128000 table 30/127 blocks 122768 1:4092:122629 100.00% range 1211:126789 99.05% scans 1
2026-08-18 12:20:38.936697+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk1 scan took 0.000816 s, trims took 0.000810 s
2026-08-18 12:20:38.936699+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk1 122768 blocks free in 31 extents, avg 3960.25
2026-08-18 12:20:38.936703+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk1 122768 blocks trimmed in 31 extents (26 us/trim, 38271 trims/s)
2026-08-18 12:20:38.936705+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk1 trim distribution 1:10 2+:5 4+:13 16+:1 64+:0 256+:2
2026-08-18 12:20:38.937109+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s2 No ER state object for volume xART - rolling is not happening, nothing to recover.
2026-08-18 12:20:38.937112+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mounting volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.937136+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s2 vol-uuid: 8E16CEF3-ED64-4D4E-BBA7-A3B59511C2AA block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:38.937145+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s2 setting dev block size to 4096 from 512
2026-08-18 12:20:38.937147+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s2 Volume xART role 0x100 is not a System or Data volume
2026-08-18 12:20:38.937151+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s2 volume with role 256 will be mounted until system shutdown
2026-08-18 12:20:38.937155+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mount-complete volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.939353+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s1 No ER state object for volume iSCPreboot - rolling is not happening, nothing to recover.
2026-08-18 12:20:38.939356+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mounting volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.939365+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s1 vol-uuid: 68EF6EF8-2323-4896-9123-2894BDE8CA21 block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:38.939605+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s1 setting dev block size to 4096 from 512
2026-08-18 12:20:38.939607+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s1 Volume iSCPreboot role 0x10 is not a System or Data volume
2026-08-18 12:20:38.939611+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s1 volume with role 16 will be mounted until system shutdown
2026-08-18 12:20:38.939614+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mount-complete volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.942203+0000 0x953      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s3 No ER state object for volume Hardware - rolling is not happening, nothing to recover.
2026-08-18 12:20:38.942207+0000 0x953      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mounting volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.942229+0000 0x953      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s3 vol-uuid: 26639779-A201-4A4B-90DA-1A7F4141453B block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:20:38.942908+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s3 setting dev block size to 4096 from 512
2026-08-18 12:20:38.942911+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s3 Volume Hardware role 0x140 is not a System or Data volume
2026-08-18 12:20:38.942916+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s3 volume with role 320 will be mounted until system shutdown
2026-08-18 12:20:38.942920+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mount-complete volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:20:38.972488+0000 0x9ee      Default     0x0                  0      0    kernel: (apfs) apfs_rawdev_create:708: disk1s2 Enable bypass mode on inode 16 on xART@disk1 as 2.0, tidemark 2771
2026-08-18 12:20:39.037755+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk3 scan took 0.131085 s (no trims)
2026-08-18 12:20:39.037761+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk3 dev 0 smfree 19034329/120699413 table 587/587 blocks 2040467 1504:3476:40391 10.71% range 527346:119965700 99.39% scans 1
2026-08-18 12:20:39.037764+0000 0xae1      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:496: disk3 dev 0 scan_stats[2]: foundmax 40391 extents 817126 blocks 16993862 long 1502 avg 20 89.28% range 39149:120660264 99.96%
2026-08-18 12:20:41.025081+0000 0xa8f      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:20:41.035952+0000 0xb9c      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:20:41.035956+0000 0xb9c      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:20:41.098968+0000 0x795      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk3 scan took 2.061200 s, trims took 1.850799 s
2026-08-18 12:20:41.098974+0000 0x795      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk3 19034329 blocks free in 817721 extents, avg 23.27
2026-08-18 12:20:41.098976+0000 0x795      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk3 19034329 blocks trimmed in 817721 extents (2 us/trim, 441820 trims/s)
2026-08-18 12:20:41.098978+0000 0x795      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk3 trim distribution 1:281010 2+:153264 4+:240250 16+:82529 64+:50615 256+:10053
2026-08-18 12:20:41.098981+0000 0x795      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4455: disk3 trims dropped: 25531 blocks 25395 extents, avg 1.00
2026-08-18 12:20:41.261564+0000 0x795      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:20:41.271092+0000 0x953      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:20:41.271095+0000 0x953      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:20:41.281113+0000 0x795      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 updating mounted volume macOS Base System, requested by: mount_apfs (pid 25); parent: mount (pid 24)
2026-08-18 12:20:34.246060+0000 0xaf7      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 12:20:34.246067+0000 0xaf7      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 12:20:34.257087+0000 0xb8b      Default     0x0                  0      0    kernel: (apfs) apfs_mount:30540: disk3s5 Failed to unwrap metadata crypto state: 1
2026-08-18 12:20:34.264060+0000 0xb8b      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2842: disk3 apfs_mount failed, err: 1
2026-08-18 12:20:34.471454+0000 0xc01      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:20:34.471466+0000 0xc01      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 12:20:34.471639+0000 0xc01      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:20:34.483772+0000 0xc01      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:20:34.483789+0000 0xc01      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 12:20:37.248802+0000 0xad9      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] Sandbox: ctkd(206) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:20:37.471895+0000 0xc47      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] 10 duplicate reports for Sandbox: ctkd(206) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:20:44.404652+0000 0xb5d      Default     0x0                  0      0    kernel: (apfs) handle_get_dev_by_role:13150: disk3s1 This operation needs entitlement
2026-08-18 12:22:34.617436+0000 0x80       Default     0x0                  0      0    kernel: (AppleDiskImages2) [0 (ctx)] virtual bool AppleDiskImagesController::start(IOService *)::163: kext version: 524.120.8
2026-08-18 12:22:34.924303+0000 0x823      Default     0x0                  0      0    kernel: (AppleH13CameraInterface) AppleH13amIn::start - fInRamdisk=0
2026-08-18 12:22:35.033948+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS2NVMeController::probe(IOService *, SInt32 *)::248:Found (ANS2) provider, returning score 100000
2026-08-18 12:22:35.034009+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS3NVMeController::probe(IOService *, SInt32 *)::82:Found (ANS2) provider and linear-sq, returning score 300000
2026-08-18 12:22:35.035446+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleANS2NVMeController::start(IOService *)::430:Found the ANS2Endpoint1
2026-08-18 12:22:35.036044+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::SetNamespacesStruct()::196:Obtained 3 namespaces from DT
2026-08-18 12:22:35.036052+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::756:start 0x10000058C
2026-08-18 12:22:35.036118+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOFilterInterruptEventSource *AppleANS2NVMeController::CreateDeviceInterrupt(IOInterruptEventSource::Action, IOFilterInterruptEventSource::Filter, IOService *)::2756:ANS2 NVMe interrupt index - 0x4
2026-08-18 12:22:35.036184+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual uint32_t AppleANS2CGv2Controller::GetNVMeSPTMQueueEntries()::164:NVMe Queue Entries=253
2026-08-18 12:22:35.319682+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) static AppleNVMeRequestPoolTagReserve *AppleNVMeRequestPoolTagReserve::Create(AppleNVMeWorkLoop *, uint8_t, uint16_t, uint32_t, bool, NVMeBufferAllocator *, lck_mtx_t *, NVMeCGType_t, IOMapper *)::138:NVMe Request Pool Init (Tag Reservation Case). First phase, RequestCount = 1
2026-08-18 12:22:35.319690+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=0 entrysize=64
2026-08-18 12:22:35.319695+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=1 entrysize=64
2026-08-18 12:22:35.319709+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:22:35.319711+0000 0x827      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:22:35.340169+0000 0x9fd      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeRequestPoolTagReserve::Rebuild(uint8_t, uint32_t, bool, NVMeCGType_t, IOMapper *)::181:NVMe Request Pool Init (Tag Reservation Case). Second phase, RequestCount = 253
2026-08-18 12:22:35.395168+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1966:nvme: Vendor ID     : 0x106b
2026-08-18 12:22:35.395173+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1967:nvme: Model Number  : APPLE SSD AP0512Z
2026-08-18 12:22:35.395176+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1968:nvme: Serial Number : [REDACTED]
2026-08-18 12:22:35.395179+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1969:nvme: Firmware Rev  : 561.100.
2026-08-18 12:22:35.395181+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2038:nvme: S5E A0 Toshiba 5th Gen Lithography tlc 3D 2 plane 512GB
2026-08-18 12:22:35.395195+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2058:ECCVersion   : 1
2026-08-18 12:22:35.395197+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2062:FTL Rev      : 36.1
2026-08-18 12:22:35.395199+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2063:DM_Version   : 179
2026-08-18 12:22:35.395201+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2064:=======================
2026-08-18 12:22:35.395203+0000 0x9d9      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2071:Found 3 namespaces in current NAND
2026-08-18 12:22:35.395282+0000 0xa07      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[1] as nstype[1]
2026-08-18 12:22:35.395318+0000 0x9c6      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[2] as nstype[8]
2026-08-18 12:22:35.395352+0000 0x9d0      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[3] as nstype[13]
2026-08-18 12:22:35.396623+0000 0x56d      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1580:allocateAll 1
2026-08-18 12:22:35.397243+0000 0x56d      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:22:35.438749+0000 0x942      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:22:35.438751+0000 0x942      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s1 device_handle block size 4096 block count 128000 features 0 internal
2026-08-18 12:22:35.438878+0000 0xad1      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:22:35.445631+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s1 checkpoint search: largest xid 9077, best xid 9077 @ 9
2026-08-18 12:22:35.445634+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s1 stable checkpoint indices: desc 8 data 466
2026-08-18 12:22:35.445787+0000 0x9d0      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s3 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:22:35.445792+0000 0x9d0      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s3 device_handle block size 4096 block count 1310709 features 0 internal
2026-08-18 12:22:35.446594+0000 0x942      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s3 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:22:35.447682+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s2 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:22:35.447684+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s2 device_handle block size 4096 block count 120699413 features 0 internal
2026-08-18 12:22:35.447985+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:22:35.459131+0000 0xacf      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s3 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:22:35.459134+0000 0xacf      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s3 stable checkpoint indices: desc 36 data 285
2026-08-18 12:22:35.493370+0000 0x942      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s2 checkpoint search: largest xid 4070433, best xid 4070433 @ 209
2026-08-18 12:22:35.493373+0000 0x942      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s2 stable checkpoint indices: desc 208 data 15124
2026-08-18 12:22:35.493398+0000 0x942      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:22:35.493400+0000 0x942      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:22:35.494522+0000 0xacf      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:22:35.494523+0000 0xacf      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:22:35.496122+0000 0xacf      Default     0x0                  0      0    kernel: (AppleFileSystemDriver) AppleFileSystemDriver: publishing boot-uuid-media=disk3s1 (Macintosh HD)
2026-08-18 12:22:35.496164+0000 0xb20      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 2, NSTYPE - 8
2026-08-18 12:22:35.496209+0000 0xb20      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:22:35.496211+0000 0xb20      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 768
2026-08-18 12:22:35.496286+0000 0xb20      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 2, NSTYPE: 8
2026-08-18 12:22:35.496288+0000 0xb20      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 3, NSTYPE - 13
2026-08-18 12:22:35.496401+0000 0x974      Default     0x0                  0      0    kernel: BSD root: disk3s1
2026-08-18 12:22:35.496501+0000 0x6d1      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:22:35.496503+0000 0x6d1      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 32768
2026-08-18 12:22:35.496578+0000 0x974      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk3 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:22:35.496581+0000 0x974      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk3 device_handle block size 4096 block count 120699413 features 22 internal solidstate
2026-08-18 12:22:35.496849+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk3 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:22:35.496858+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeEAN::StartDevice(IOService *)::249:EAN StartDevice Done
2026-08-18 12:22:35.496914+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 3, NSTYPE: 13
2026-08-18 12:22:35.496916+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::StartController()::1549:Setting NAND status to Ready
2026-08-18 12:22:35.496925+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::816:Successfully initialized NVMe drive 0x10000058C
2026-08-18 12:22:35.499618+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00ca00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:22:35.499621+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CA
2026-08-18 12:22:35.499622+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:22:35.499624+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:22:35.499625+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:22:35.500677+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00ca00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:22:35.500679+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CA
2026-08-18 12:22:35.500681+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:22:35.500682+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:22:35.500683+0000 0x942      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:22:35.540990+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk3 checkpoint search: largest xid 4070433, best xid 4070433 @ 209
2026-08-18 12:22:35.540994+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk3 stable checkpoint indices: desc 208 data 15124
2026-08-18 12:22:35.542788+0000 0x974      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s1 No ER state object for volume Macintosh HD - rolling is not happening, nothing to recover.
2026-08-18 12:22:35.543266+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2916: disk3s1 Rooting from snapshot with xid 3094032.
2026-08-18 12:22:35.543269+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:22:35.543296+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1222: disk3s1 mounting snapshot w/snap_xid 3094032 and sblock oid 0xbcade
2026-08-18 12:22:35.543910+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk3 volume groups tree is not setup yet
2026-08-18 12:22:35.543912+0000 0x974      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk3 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:22:35.544194+0000 0x974      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:22:35.544197+0000 0x974      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:22:35.544199+0000 0x974      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk3s1 successfully validated on-disk root hash
2026-08-18 12:22:35.544201+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1407: disk3s1 setting dev block size to 4096 from 512
2026-08-18 12:22:35.544208+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 12:22:35.545794+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:960: disk3s1 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
2026-08-18 12:22:35.545797+0000 0x974      Default     0x0                  0      0    kernel: (apfs) fs_setup_shadow_fs_root_tree:3501: disk3s1 Created the shadow_fs_root tree <private>
2026-08-18 12:22:35.545812+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s1 Set volume (role 0x1) to 402 xid 2f3610
2026-08-18 12:22:35.545836+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:22:35.546429+0000 0x974      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:22:35.546431+0000 0x974      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:22:35.550790+0000 0x974      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 12:22:35.550833+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:22:35.551237+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 12:22:35.551243+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:22:35.560864+0000 0x942      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk4s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:22:35.560867+0000 0x942      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk4s1 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:22:35.560877+0000 0x942      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk4s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:22:35.564498+0000 0x942      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk4s1 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:22:35.564504+0000 0x942      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk4s1 stable checkpoint indices: desc 6 data 14
2026-08-18 12:22:35.565504+0000 0x974      Default     0x0                  0      0    kernel: imageboot_pivot_image: attached disk image /System/Volumes/Recovery/398F441C-CCE1-471E-AA2A-F804CABE8548/boot/B23324F57C2EF64EDC38BD8F5EB06D534A249B64D931D892147D98B70E9A9A76C2CEAFDC629D9D9C877585940336718D/usr/standalone/firmware/arm64eBaseSystem.dmg as disk4s1
2026-08-18 12:22:35.565579+0000 0x974      Default     0x0                  0      0    kernel: (HFS) hfs_mount: hfs_mountfs returned error=22 for device disk4s1
2026-08-18 12:22:35.565685+0000 0x974      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk5 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:22:35.565687+0000 0x974      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk5 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:22:35.565697+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk5 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:22:35.566004+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk5 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:22:35.566007+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk5 stable checkpoint indices: desc 6 data 14
2026-08-18 12:22:35.567988+0000 0x974      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk5s1 No ER state object for volume macOS Base System - rolling is not happening, nothing to recover.
2026-08-18 12:22:35.567994+0000 0x974      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:22:35.567995+0000 0x974      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:22:35.567997+0000 0x974      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk5s1 successfully validated on-disk root hash
2026-08-18 12:22:35.568012+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mounting volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:22:35.568042+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk5s1 vol-uuid: 98E2569B-8C5F-43FB-BAC5-FD0129260DF4 block size: 4096 block count: 385536 (unencrypted; flags: 0x1; features: 21.0.12)
2026-08-18 12:22:35.569710+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk5s1 setting dev block size to 4096 from 512
2026-08-18 12:22:35.569712+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:22:35.569720+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mount-complete volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:22:35.569806+0000 0x974      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:22:35.569808+0000 0x974      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:22:35.574377+0000 0x974      Default     0x0                  0      0    kernel: (BootCache) BootCache: Root disk is an SSD, not caching
2026-08-18 12:22:36.060341+0000 0xade      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:173: disk3 metazone for device 0 of size 1540803 blocks (encrypted: 0-770401 unencrypted: 770401-1540803)
2026-08-18 12:22:36.060347+0000 0xade      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 24674304
2026-08-18 12:22:36.060350+0000 0xade      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 24870912
2026-08-18 12:22:36.060352+0000 0xade      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 102662144
2026-08-18 12:22:36.060354+0000 0xade      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 84672512
2026-08-18 12:22:36.063734+0000 0x974      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s6 No ER state object for volume VM - rolling is not happening, nothing to recover.
2026-08-18 12:22:36.063740+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mounting volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.063787+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s6 vol-uuid: D5740DA5-764A-4EE1-A679-9DA5755A8249 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:22:36.063800+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s6 setting dev block size to 4096 from 512
2026-08-18 12:22:36.063803+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s6 Volume VM role 0x8 is not a System or Data volume
2026-08-18 12:22:36.063817+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mount-complete volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.066722+0000 0xade      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
2026-08-18 12:22:36.066728+0000 0xade      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mounting volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.066746+0000 0xade      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s2 vol-uuid: 336B630F-3720-42B7-9A54-AC333F292FBD block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:22:36.068594+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s2 setting dev block size to 4096 from 512
2026-08-18 12:22:36.068597+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
2026-08-18 12:22:36.068606+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s2 volume with role 16 will be mounted until system shutdown
2026-08-18 12:22:36.068610+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mount-complete volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.070039+0000 0xade      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s4 No ER state object for volume Update - rolling is not happening, nothing to recover.
2026-08-18 12:22:36.070041+0000 0xade      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mounting volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.070063+0000 0xade      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s4 vol-uuid: F01A451D-5CDC-4F27-9387-42805AB04770 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:22:36.070309+0000 0xade      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s4 setting dev block size to 4096 from 512
2026-08-18 12:22:36.070312+0000 0xade      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s4 Volume Update role 0xc0 is not a System or Data volume
2026-08-18 12:22:36.070319+0000 0xade      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s4 volume with role 192 will be mounted until system shutdown
2026-08-18 12:22:36.070322+0000 0xade      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mount-complete volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.070810+0000 0xb04      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk1 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:22:36.070812+0000 0xb04      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk1 device_handle block size 4096 block count 128000 features 22 internal solidstate
2026-08-18 12:22:36.071085+0000 0xb04      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:22:36.090121+0000 0xb04      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk1 checkpoint search: largest xid 9077, best xid 9077 @ 9
2026-08-18 12:22:36.090127+0000 0xb04      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk1 stable checkpoint indices: desc 8 data 466
2026-08-18 12:22:36.090134+0000 0xb04      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:111: disk1 no metazone for device 0, of size 524288000 bytes, block_size 4096
2026-08-18 12:22:36.091164+0000 0x974      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk1 scan took 0.001019 s (no trims)
2026-08-18 12:22:36.091167+0000 0x974      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk1 dev 0 smfree 122768/128000 table 28/127 blocks 122768 1:4384:122629 100.00% range 1219:126781 99.04% scans 1
2026-08-18 12:22:36.091655+0000 0x974      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk1 scan took 0.000485 s, trims took 0.000481 s
2026-08-18 12:22:36.091657+0000 0x974      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk1 122768 blocks free in 29 extents, avg 4233.37
2026-08-18 12:22:36.091659+0000 0x974      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk1 122768 blocks trimmed in 29 extents (16 us/trim, 60291 trims/s)
2026-08-18 12:22:36.091661+0000 0x974      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk1 trim distribution 1:7 2+:5 4+:14 16+:1 64+:0 256+:2
2026-08-18 12:22:36.092246+0000 0x974      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s2 No ER state object for volume xART - rolling is not happening, nothing to recover.
2026-08-18 12:22:36.092251+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mounting volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.092272+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s2 vol-uuid: 8E16CEF3-ED64-4D4E-BBA7-A3B59511C2AA block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:22:36.092280+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s2 setting dev block size to 4096 from 512
2026-08-18 12:22:36.092282+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s2 Volume xART role 0x100 is not a System or Data volume
2026-08-18 12:22:36.092286+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s2 volume with role 256 will be mounted until system shutdown
2026-08-18 12:22:36.092289+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mount-complete volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.095376+0000 0xb04      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s1 No ER state object for volume iSCPreboot - rolling is not happening, nothing to recover.
2026-08-18 12:22:36.095379+0000 0xb04      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mounting volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.095389+0000 0xb04      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s1 vol-uuid: 68EF6EF8-2323-4896-9123-2894BDE8CA21 block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:22:36.096367+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s1 setting dev block size to 4096 from 512
2026-08-18 12:22:36.096371+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s1 Volume iSCPreboot role 0x10 is not a System or Data volume
2026-08-18 12:22:36.096375+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s1 volume with role 16 will be mounted until system shutdown
2026-08-18 12:22:36.096379+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mount-complete volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.098581+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s3 No ER state object for volume Hardware - rolling is not happening, nothing to recover.
2026-08-18 12:22:36.098584+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mounting volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.098606+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s3 vol-uuid: 26639779-A201-4A4B-90DA-1A7F4141453B block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:22:36.098828+0000 0x974      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s3 setting dev block size to 4096 from 512
2026-08-18 12:22:36.098830+0000 0x974      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s3 Volume Hardware role 0x140 is not a System or Data volume
2026-08-18 12:22:36.098835+0000 0x974      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s3 volume with role 320 will be mounted until system shutdown
2026-08-18 12:22:36.098840+0000 0x330      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mount-complete volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:22:36.125871+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_rawdev_create:708: disk1s2 Enable bypass mode on inode 16 on xART@disk1 as 2.0, tidemark 2771
2026-08-18 12:22:36.190439+0000 0x330      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk3 scan took 0.130066 s (no trims)
2026-08-18 12:22:36.190445+0000 0x330      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk3 dev 0 smfree 19033752/120699413 table 587/587 blocks 2040377 1502:3475:40391 10.71% range 527346:119965700 99.39% scans 1
2026-08-18 12:22:36.190449+0000 0x330      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:496: disk3 dev 0 scan_stats[2]: foundmax 40391 extents 817121 blocks 16993375 long 1502 avg 20 89.28% range 39149:120660264 99.96%
2026-08-18 12:22:38.150844+0000 0x9c6      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:22:38.161482+0000 0x9c6      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:22:38.161486+0000 0x9c6      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:22:38.261375+0000 0xad2      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk3 scan took 2.070923 s, trims took 1.875993 s
2026-08-18 12:22:38.261379+0000 0xad2      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk3 19033752 blocks free in 817716 extents, avg 23.27
2026-08-18 12:22:38.261382+0000 0xad2      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk3 19033752 blocks trimmed in 817716 extents (2 us/trim, 435884 trims/s)
2026-08-18 12:22:38.261385+0000 0xad2      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk3 trim distribution 1:281006 2+:153263 4+:240250 16+:82529 64+:50616 256+:10052
2026-08-18 12:22:38.261387+0000 0xad2      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4455: disk3 trims dropped: 25531 blocks 25395 extents, avg 1.00
2026-08-18 12:22:38.393167+0000 0xad2      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:22:38.404209+0000 0xad0      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:22:38.404225+0000 0xad0      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:22:38.413407+0000 0xad0      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 updating mounted volume macOS Base System, requested by: mount_apfs (pid 25); parent: mount (pid 24)
2026-08-18 12:22:31.344892+0000 0x999      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 12:22:31.344900+0000 0x999      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 12:22:31.356882+0000 0xbf7      Default     0x0                  0      0    kernel: (apfs) apfs_mount:30540: disk3s5 Failed to unwrap metadata crypto state: 1
2026-08-18 12:22:31.367475+0000 0xbf7      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2842: disk3 apfs_mount failed, err: 1
2026-08-18 12:22:31.602338+0000 0xbfe      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:22:31.602345+0000 0xbfe      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 12:22:31.602514+0000 0xbfe      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:22:31.616783+0000 0xbfe      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:22:31.616800+0000 0xbfe      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 12:22:34.871611+0000 0xa9e      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:22:35.062962+0000 0xc2f      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] 10 duplicate reports for Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:23:42.922324+0000 0x80       Default     0x0                  0      0    kernel: (AppleDiskImages2) [0 (ctx)] virtual bool AppleDiskImagesController::start(IOService *)::163: kext version: 524.120.8
2026-08-18 12:23:43.411131+0000 0x7c2      Default     0x0                  0      0    kernel: (AppleH13CameraInterface) AppleH13amIn::start - fInRamdisk=0
2026-08-18 12:23:43.785613+0000 0x7c2      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS2NVMeController::probe(IOService *, SInt32 *)::248:Found (ANS2) provider, returning score 100000
2026-08-18 12:23:43.786002+0000 0x7c2      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS3NVMeController::probe(IOService *, SInt32 *)::82:Found (ANS2) provider and linear-sq, returning score 300000
2026-08-18 12:23:43.811373+0000 0x99a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleANS2NVMeController::start(IOService *)::430:Found the ANS2Endpoint1
2026-08-18 12:23:43.812889+0000 0x99a      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::SetNamespacesStruct()::196:Obtained 3 namespaces from DT
2026-08-18 12:23:43.812899+0000 0x99a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::756:start 0x1000006C6
2026-08-18 12:23:43.813055+0000 0x99a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOFilterInterruptEventSource *AppleANS2NVMeController::CreateDeviceInterrupt(IOInterruptEventSource::Action, IOFilterInterruptEventSource::Filter, IOService *)::2756:ANS2 NVMe interrupt index - 0x4
2026-08-18 12:23:43.813152+0000 0x99a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual uint32_t AppleANS2CGv2Controller::GetNVMeSPTMQueueEntries()::164:NVMe Queue Entries=253
2026-08-18 12:23:43.819202+0000 0x968      Default     0x0                  0      0    kernel: (IONVMeFamily) static AppleNVMeRequestPoolTagReserve *AppleNVMeRequestPoolTagReserve::Create(AppleNVMeWorkLoop *, uint8_t, uint16_t, uint32_t, bool, NVMeBufferAllocator *, lck_mtx_t *, NVMeCGType_t, IOMapper *)::138:NVMe Request Pool Init (Tag Reservation Case). First phase, RequestCount = 1
2026-08-18 12:23:43.819260+0000 0x968      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=0 entrysize=64
2026-08-18 12:23:43.819283+0000 0x968      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=1 entrysize=64
2026-08-18 12:23:43.819377+0000 0x968      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:23:43.819388+0000 0x968      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:23:43.839798+0000 0x99a      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeRequestPoolTagReserve::Rebuild(uint8_t, uint32_t, bool, NVMeCGType_t, IOMapper *)::181:NVMe Request Pool Init (Tag Reservation Case). Second phase, RequestCount = 253
2026-08-18 12:23:43.894961+0000 0x7c2      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1966:nvme: Vendor ID     : 0x106b
2026-08-18 12:23:43.894973+0000 0x7c2      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1967:nvme: Model Number  : APPLE SSD AP0512Z
2026-08-18 12:23:43.894980+0000 0x7c2      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1968:nvme: Serial Number : [REDACTED]
2026-08-18 12:23:43.894986+0000 0x7c2      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1969:nvme: Firmware Rev  : 561.100.
2026-08-18 12:23:43.894992+0000 0x7c2      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2038:nvme: S5E A0 Toshiba 5th Gen Lithography tlc 3D 2 plane 512GB
2026-08-18 12:23:43.895005+0000 0xa2c      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2058:ECCVersion   : 1
2026-08-18 12:23:43.895010+0000 0xa2c      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2062:FTL Rev      : 36.1
2026-08-18 12:23:43.895016+0000 0xa2c      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2063:DM_Version   : 179
2026-08-18 12:23:43.895022+0000 0xa2c      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2064:=======================
2026-08-18 12:23:43.895027+0000 0xa2c      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2071:Found 3 namespaces in current NAND
2026-08-18 12:23:43.895093+0000 0xa2c      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[1] as nstype[1]
2026-08-18 12:23:43.895135+0000 0xa2c      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[2] as nstype[8]
2026-08-18 12:23:43.895178+0000 0xa2c      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[3] as nstype[13]
2026-08-18 12:23:43.960142+0000 0xa07      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1580:allocateAll 1
2026-08-18 12:23:43.966392+0000 0x7c2      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:23:44.029602+0000 0xae7      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:23:44.029604+0000 0xae7      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s1 device_handle block size 4096 block count 128000 features 0 internal
2026-08-18 12:23:44.029664+0000 0x70       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s2 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:23:44.029666+0000 0x70       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s2 device_handle block size 4096 block count 120699413 features 0 internal
2026-08-18 12:23:44.029900+0000 0xae4      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:23:44.029900+0000 0x70       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:23:44.030235+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s3 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:23:44.030237+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s3 device_handle block size 4096 block count 1310709 features 0 internal
2026-08-18 12:23:44.030469+0000 0x70       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s3 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:23:44.036688+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s1 checkpoint search: largest xid 9082, best xid 9082 @ 3
2026-08-18 12:23:44.036691+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s1 stable checkpoint indices: desc 2 data 486
2026-08-18 12:23:44.043589+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s3 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:23:44.043592+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s3 stable checkpoint indices: desc 36 data 285
2026-08-18 12:23:44.076652+0000 0xa82      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s2 checkpoint search: largest xid 4070438, best xid 4070438 @ 219
2026-08-18 12:23:44.076655+0000 0xa82      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s2 stable checkpoint indices: desc 218 data 15149
2026-08-18 12:23:44.076679+0000 0xa82      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:23:44.076680+0000 0xa82      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:23:44.077874+0000 0xa82      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:23:44.077875+0000 0x6d3      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:23:44.078864+0000 0x788      Default     0x0                  0      0    kernel: (AppleFileSystemDriver) AppleFileSystemDriver: publishing boot-uuid-media=disk3s1 (Macintosh HD)
2026-08-18 12:23:44.079332+0000 0xa10      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 2, NSTYPE - 8
2026-08-18 12:23:44.079334+0000 0x788      Default     0x0                  0      0    kernel: BSD root: disk3s1
2026-08-18 12:23:44.079597+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:23:44.079599+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 768
2026-08-18 12:23:44.079671+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 2, NSTYPE: 8
2026-08-18 12:23:44.079673+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 3, NSTYPE - 13
2026-08-18 12:23:44.079678+0000 0x788      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk3 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:23:44.079680+0000 0x788      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk3 device_handle block size 4096 block count 120699413 features 22 internal solidstate
2026-08-18 12:23:44.079714+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:23:44.079715+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 32768
2026-08-18 12:23:44.079846+0000 0x788      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk3 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:23:44.079860+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeEAN::StartDevice(IOService *)::249:EAN StartDevice Done
2026-08-18 12:23:44.079917+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 3, NSTYPE: 13
2026-08-18 12:23:44.079919+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::StartController()::1549:Setting NAND status to Ready
2026-08-18 12:23:44.079927+0000 0xb1e      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::816:Successfully initialized NVMe drive 0x1000006C6
2026-08-18 12:23:44.082743+0000 0xa07      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cc00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:23:44.082749+0000 0xa07      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CC
2026-08-18 12:23:44.082752+0000 0xa07      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:23:44.082755+0000 0xa07      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:23:44.082757+0000 0xa07      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:23:44.082952+0000 0x6d3      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00cc00c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:23:44.082954+0000 0x6d3      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100CC
2026-08-18 12:23:44.082956+0000 0x6d3      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:23:44.082957+0000 0x6d3      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:23:44.082959+0000 0x6d3      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:23:44.127705+0000 0x958      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk3 checkpoint search: largest xid 4070438, best xid 4070438 @ 219
2026-08-18 12:23:44.127726+0000 0x958      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk3 stable checkpoint indices: desc 218 data 15149
2026-08-18 12:23:44.129096+0000 0x958      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s1 No ER state object for volume Macintosh HD - rolling is not happening, nothing to recover.
2026-08-18 12:23:44.129532+0000 0x958      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2916: disk3s1 Rooting from snapshot with xid 3094032.
2026-08-18 12:23:44.129534+0000 0x958      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:23:44.129561+0000 0x958      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1222: disk3s1 mounting snapshot w/snap_xid 3094032 and sblock oid 0xbcade
2026-08-18 12:23:44.130392+0000 0x958      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk3 volume groups tree is not setup yet
2026-08-18 12:23:44.130394+0000 0x958      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk3 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:23:44.130661+0000 0x958      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:23:44.130663+0000 0x958      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:23:44.130665+0000 0x958      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk3s1 successfully validated on-disk root hash
2026-08-18 12:23:44.130667+0000 0x958      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1407: disk3s1 setting dev block size to 4096 from 512
2026-08-18 12:23:44.130670+0000 0x958      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 12:23:44.131811+0000 0x958      Default     0x0                  0      0    kernel: (apfs) handle_mount:960: disk3s1 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
2026-08-18 12:23:44.131816+0000 0x958      Default     0x0                  0      0    kernel: (apfs) fs_setup_shadow_fs_root_tree:3501: disk3s1 Created the shadow_fs_root tree <private>
2026-08-18 12:23:44.131831+0000 0x958      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s1 Set volume (role 0x1) to 402 xid 2f3610
2026-08-18 12:23:44.131856+0000 0x958      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:23:44.132456+0000 0x958      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:23:44.132459+0000 0x958      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:23:44.136435+0000 0x958      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 12:23:44.136472+0000 0x958      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:23:44.136652+0000 0x958      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 12:23:44.136655+0000 0x958      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:23:44.145555+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk4s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:23:44.145558+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk4s1 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:23:44.145571+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk4s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:23:44.149420+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk4s1 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:23:44.149423+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk4s1 stable checkpoint indices: desc 6 data 14
2026-08-18 12:23:44.150207+0000 0x958      Default     0x0                  0      0    kernel: imageboot_pivot_image: attached disk image /System/Volumes/Recovery/398F441C-CCE1-471E-AA2A-F804CABE8548/boot/B23324F57C2EF64EDC38BD8F5EB06D534A249B64D931D892147D98B70E9A9A76C2CEAFDC629D9D9C877585940336718D/usr/standalone/firmware/arm64eBaseSystem.dmg as disk4s1
2026-08-18 12:23:44.150318+0000 0x958      Default     0x0                  0      0    kernel: (HFS) hfs_mount: hfs_mountfs returned error=22 for device disk4s1
2026-08-18 12:23:44.150452+0000 0x958      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk5 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:23:44.150454+0000 0x958      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk5 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:23:44.150466+0000 0x958      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk5 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:23:44.150744+0000 0x958      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk5 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:23:44.150751+0000 0x958      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk5 stable checkpoint indices: desc 6 data 14
2026-08-18 12:23:44.152661+0000 0x958      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk5s1 No ER state object for volume macOS Base System - rolling is not happening, nothing to recover.
2026-08-18 12:23:44.152670+0000 0x958      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:23:44.152672+0000 0x958      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:23:44.152674+0000 0x958      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk5s1 successfully validated on-disk root hash
2026-08-18 12:23:44.152688+0000 0x958      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mounting volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:23:44.152712+0000 0x958      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk5s1 vol-uuid: 98E2569B-8C5F-43FB-BAC5-FD0129260DF4 block size: 4096 block count: 385536 (unencrypted; flags: 0x1; features: 21.0.12)
2026-08-18 12:23:44.153942+0000 0x958      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk5s1 setting dev block size to 4096 from 512
2026-08-18 12:23:44.153944+0000 0x958      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:23:44.153950+0000 0x958      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mount-complete volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:23:44.154066+0000 0x958      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:23:44.154068+0000 0x958      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:23:44.157714+0000 0x958      Default     0x0                  0      0    kernel: (BootCache) BootCache: Root disk is an SSD, not caching
2026-08-18 12:23:44.634849+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:173: disk3 metazone for device 0 of size 1540803 blocks (encrypted: 0-770401 unencrypted: 770401-1540803)
2026-08-18 12:23:44.634852+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 24674304
2026-08-18 12:23:44.634854+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 24870912
2026-08-18 12:23:44.634856+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 102662144
2026-08-18 12:23:44.634858+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 84672512
2026-08-18 12:23:44.644929+0000 0xa3d      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s6 No ER state object for volume VM - rolling is not happening, nothing to recover.
2026-08-18 12:23:44.644933+0000 0xa3d      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mounting volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.644974+0000 0xa3d      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s6 vol-uuid: D5740DA5-764A-4EE1-A679-9DA5755A8249 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:23:44.644989+0000 0xa3d      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s6 setting dev block size to 4096 from 512
2026-08-18 12:23:44.644991+0000 0xa3d      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s6 Volume VM role 0x8 is not a System or Data volume
2026-08-18 12:23:44.645005+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mount-complete volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.646908+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
2026-08-18 12:23:44.646913+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mounting volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.646933+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s2 vol-uuid: 336B630F-3720-42B7-9A54-AC333F292FBD block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:23:44.648323+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s2 setting dev block size to 4096 from 512
2026-08-18 12:23:44.648329+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
2026-08-18 12:23:44.648340+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s2 volume with role 16 will be mounted until system shutdown
2026-08-18 12:23:44.648344+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mount-complete volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.650962+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s4 No ER state object for volume Update - rolling is not happening, nothing to recover.
2026-08-18 12:23:44.650966+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mounting volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.650991+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s4 vol-uuid: F01A451D-5CDC-4F27-9387-42805AB04770 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:23:44.651210+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s4 setting dev block size to 4096 from 512
2026-08-18 12:23:44.651214+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s4 Volume Update role 0xc0 is not a System or Data volume
2026-08-18 12:23:44.651223+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s4 volume with role 192 will be mounted until system shutdown
2026-08-18 12:23:44.651227+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mount-complete volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.651725+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk1 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:23:44.651728+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk1 device_handle block size 4096 block count 128000 features 22 internal solidstate
2026-08-18 12:23:44.652046+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:23:44.668721+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk1 checkpoint search: largest xid 9082, best xid 9082 @ 3
2026-08-18 12:23:44.668724+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk1 stable checkpoint indices: desc 2 data 486
2026-08-18 12:23:44.668740+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:111: disk1 no metazone for device 0, of size 524288000 bytes, block_size 4096
2026-08-18 12:23:44.671280+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk1 scan took 0.002524 s (no trims)
2026-08-18 12:23:44.671283+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk1 dev 0 smfree 122768/128000 table 31/127 blocks 122768 1:3960:122629 100.00% range 1211:126789 99.05% scans 1
2026-08-18 12:23:44.672002+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk1 scan took 0.000714 s, trims took 0.000710 s
2026-08-18 12:23:44.672008+0000 0xb16      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk1 122768 blocks free in 32 extents, avg 3836.50
2026-08-18 12:23:44.672010+0000 0xb17      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk1 122768 blocks trimmed in 32 extents (22 us/trim, 45070 trims/s)
2026-08-18 12:23:44.672012+0000 0xb17      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk1 trim distribution 1:10 2+:6 4+:13 16+:1 64+:0 256+:2
2026-08-18 12:23:44.672094+0000 0xb17      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s2 No ER state object for volume xART - rolling is not happening, nothing to recover.
2026-08-18 12:23:44.672099+0000 0xb17      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mounting volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.672118+0000 0xb17      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s2 vol-uuid: 8E16CEF3-ED64-4D4E-BBA7-A3B59511C2AA block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:23:44.672127+0000 0xb17      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s2 setting dev block size to 4096 from 512
2026-08-18 12:23:44.672129+0000 0xb17      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s2 Volume xART role 0x100 is not a System or Data volume
2026-08-18 12:23:44.672132+0000 0xb17      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s2 volume with role 256 will be mounted until system shutdown
2026-08-18 12:23:44.672136+0000 0xb17      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mount-complete volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.674484+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s1 No ER state object for volume iSCPreboot - rolling is not happening, nothing to recover.
2026-08-18 12:23:44.674488+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mounting volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.674505+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s1 vol-uuid: 68EF6EF8-2323-4896-9123-2894BDE8CA21 block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:23:44.674822+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s1 setting dev block size to 4096 from 512
2026-08-18 12:23:44.674827+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s1 Volume iSCPreboot role 0x10 is not a System or Data volume
2026-08-18 12:23:44.674832+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s1 volume with role 16 will be mounted until system shutdown
2026-08-18 12:23:44.674837+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mount-complete volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.676701+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s3 No ER state object for volume Hardware - rolling is not happening, nothing to recover.
2026-08-18 12:23:44.676706+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mounting volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.676723+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s3 vol-uuid: 26639779-A201-4A4B-90DA-1A7F4141453B block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:23:44.676931+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s3 setting dev block size to 4096 from 512
2026-08-18 12:23:44.676933+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s3 Volume Hardware role 0x140 is not a System or Data volume
2026-08-18 12:23:44.676936+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s3 volume with role 320 will be mounted until system shutdown
2026-08-18 12:23:44.676939+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mount-complete volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:23:44.706647+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) apfs_rawdev_create:708: disk1s2 Enable bypass mode on inode 16 on xART@disk1 as 2.0, tidemark 2771
2026-08-18 12:23:44.772782+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk3 scan took 0.137908 s (no trims)
2026-08-18 12:23:44.772788+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk3 dev 0 smfree 19033360/120699413 table 587/587 blocks 2040375 1502:3475:40391 10.71% range 527346:119965700 99.39% scans 1
2026-08-18 12:23:44.772792+0000 0x98e      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:496: disk3 dev 0 scan_stats[2]: foundmax 40391 extents 817122 blocks 16992985 long 1501 avg 20 89.28% range 39149:120660264 99.96%
2026-08-18 12:23:46.712151+0000 0x965      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:23:46.722203+0000 0x965      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:23:46.722209+0000 0x965      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:23:46.747982+0000 0xae6      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk3 scan took 1.975187 s, trims took 1.762361 s
2026-08-18 12:23:46.747987+0000 0xae6      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk3 19033360 blocks free in 817717 extents, avg 23.27
2026-08-18 12:23:46.747990+0000 0xae6      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk3 19033360 blocks trimmed in 817717 extents (2 us/trim, 463989 trims/s)
2026-08-18 12:23:46.747993+0000 0xae6      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk3 trim distribution 1:281007 2+:153264 4+:240249 16+:82529 64+:50616 256+:10052
2026-08-18 12:23:46.747996+0000 0xae6      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4455: disk3 trims dropped: 25234 blocks 25098 extents, avg 1.00
2026-08-18 12:23:46.939288+0000 0xb12      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:23:46.948922+0000 0xb12      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:23:46.948925+0000 0xb12      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:23:46.957919+0000 0xae6      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 updating mounted volume macOS Base System, requested by: mount_apfs (pid 25); parent: mount (pid 24)
2026-08-18 12:23:39.577705+0000 0x9aa      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 12:23:39.577711+0000 0x9aa      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 12:23:39.598160+0000 0xc06      Default     0x0                  0      0    kernel: (apfs) apfs_mount:30540: disk3s5 Failed to unwrap metadata crypto state: 1
2026-08-18 12:23:39.617028+0000 0xc06      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2842: disk3 apfs_mount failed, err: 1
2026-08-18 12:23:39.670275+0000 0xc1b      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:23:39.670284+0000 0xc1b      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 12:23:39.670465+0000 0xc1b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:23:39.699503+0000 0xc1b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:23:39.699521+0000 0xc1b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 12:23:42.633175+0000 0xabd      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:23:42.674438+0000 0xc4d      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] 10 duplicate reports for Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:23:49.575314+0000 0xb1f      Default     0x0                  0      0    kernel: (apfs) handle_get_dev_by_role:13150: disk3s1 This operation needs entitlement
2026-08-18 12:23:56.008230+0000 0xabd      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:23:56.008243+0000 0xabd      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:23:56.048690+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 12:23:56.056067+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 os.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 12:23:56.056073+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 os.dmg device_handle block size 4096 real block size 4096 block count 1736704 features 0 internal
2026-08-18 12:23:56.084782+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: os.dmgs1 successfully validated on-disk root hash
2026-08-18 12:23:56.084787+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 12:23:56.084788+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99116, jobj_id range 100687+12489
2026-08-18 12:23:56.084990+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99116 on dir 17, dev_name [os.dmg]
2026-08-18 12:23:56.085708+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 12:23:56.085719+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 app.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 12:23:56.085720+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 app.dmg device_handle block size 4096 real block size 4096 block count 12800 features 0 internal
2026-08-18 12:23:56.088382+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: app.dmgs1 successfully validated on-disk root hash
2026-08-18 12:23:56.088386+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 12:23:56.088387+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99120, jobj_id range 113176+5406
2026-08-18 12:23:56.088539+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99120 on dir 18, dev_name [app.dmg]
2026-08-18 12:23:56.088922+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 12:23:56.088924+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:849: disk3s2 Grafting a clone, share blockmap lut with os.dmg
2026-08-18 12:23:56.088925+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 os.clone.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 12:23:56.088926+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 os.clone.dmg device_handle block size 4096 real block size 4096 block count 1736704 features 0 internal
2026-08-18 12:23:56.091640+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: os.clone.dmgs1 successfully validated on-disk root hash
2026-08-18 12:23:56.091643+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 12:23:56.091644+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99117, jobj_id range 118582+12489
2026-08-18 12:23:56.091961+0000 0xefa      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99117 on dir 20, dev_name [os.clone.dmg]
2026-08-18 12:23:56.465910+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s5 No ER state object for volume Data - rolling is not happening, nothing to recover.
2026-08-18 12:23:56.469937+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s5 mounting volume Data, requested by: apfs_boot_util (pid 240); parent: launchd (pid 1)
2026-08-18 12:23:56.469976+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s5 vol-uuid: 398F441C-CCE1-471E-AA2A-F804CABE8548 block size: 4096 block count: 120699413 (encrypted; flags: 0x100; features: 41.0.2)
2026-08-18 12:23:56.470172+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s5 setting dev block size to 4096 from 512
2026-08-18 12:23:56.470175+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s5 Set volume (role 0x40) to 8a99 xid 0
2026-08-18 12:23:56.470214+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s5 mount-complete volume Data, requested by: apfs_boot_util (pid 240); parent: launchd (pid 1)
2026-08-18 12:23:56.470244+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) apfs_kbn_handler_start:7700: disk3s5 keybag notification handler started
2026-08-18 12:23:56.523758+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 unmounting volume macOS Base System, requested by: apfs_boot_util (pid 240); parent: launchd (pid 1)
2026-08-18 12:23:56.523773+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:23:56.523831+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk5 nx_num_vols_mounted is 0
2026-08-18 12:23:56.525617+0000 0xf06      Default     0x0                  0      0    kernel: (apfs) container_get_dangling_mounts:4766: Found 0 dangling mounts on /dev/disk5
2026-08-18 12:23:56.535015+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: apfs_boot_util (pid 240); parent: launchd (pid 1)
2026-08-18 12:23:56.535023+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:23:56.535217+0000 0xf02      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 12:23:56.614840+0000 0xf0b      Default     0x0                  0      0    kernel: (apfs) authorize_purge:4154: disk3s5 failed to authorize rmdir for ino 23126050 (parent 23125507): 1 (Operation not permitted)
2026-08-18 21:23:58.202155+0900 0x1026     Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 21:23:58.202160+0900 0x1026     Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 21:23:59.020877+0900 0x142f     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: mDNSResponder(421) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:23:59.020882+0900 0x142f     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 421, mDNSResponder
2026-08-18 21:24:00.501572+0900 0x10db     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s2 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 350
2026-08-18 21:24:00.519656+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:00.519687+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:00.519690+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:00.522154+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PHOT successfully validated on-disk root hash
2026-08-18 21:24:00.522171+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a06e2 type 3
2026-08-18 21:24:00.522175+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1615250, jobj_id range 1705579+116
2026-08-18 21:24:00.522350+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1615250 on dir 1705578, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:00.557616+0900 0x1200     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s1 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 350
2026-08-18 21:24:00.566320+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:00.566353+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:00.566358+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:00.569464+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MAGI successfully validated on-disk root hash
2026-08-18 21:24:00.569488+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc56d type 3
2026-08-18 21:24:00.569493+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14390412, jobj_id range 14468344+116
2026-08-18 21:24:00.569780+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14390412 on dir 14468343, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:00.603300+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:00.603324+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:00.603328+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:00.605846+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MESS successfully validated on-disk root hash
2026-08-18 21:24:00.605860+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0ca2 type 3
2026-08-18 21:24:00.605868+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1683674, jobj_id range 1707051+116
2026-08-18 21:24:00.606068+0900 0x1325     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1683674 on dir 1707050, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:00.640365+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:00.640440+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:00.640445+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:00.643720+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PHOT successfully validated on-disk root hash
2026-08-18 21:24:00.643744+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a084a type 3
2026-08-18 21:24:00.643748+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1625731, jobj_id range 1705939+116
2026-08-18 21:24:00.644086+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1625731 on dir 1705938, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:00.715425+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:00.715485+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:00.715489+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:00.717663+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MESS successfully validated on-disk root hash
2026-08-18 21:24:00.717694+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc5e3 type 3
2026-08-18 21:24:00.717698+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14397120, jobj_id range 14468462+116
2026-08-18 21:24:00.717937+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14397120 on dir 14468461, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:00.719559+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070458 tx stats: # 20 owait 3 1895us finish 20 bar2 20 f 2 enter 27 fq 72 266 644us close 136us prep 300us flush 244us
2026-08-18 21:24:00.753826+0900 0x1052     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s5 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 350
2026-08-18 21:24:00.760008+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:00.760063+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:00.760066+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:00.764756+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_AUTO successfully validated on-disk root hash
2026-08-18 21:24:00.764777+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0f7f type 3
2026-08-18 21:24:00.764782+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1703896, jobj_id range 1707784+116
2026-08-18 21:24:00.765034+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1703896 on dir 1707783, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:00.836700+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:00.836741+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:00.836744+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:00.839455+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PROO successfully validated on-disk root hash
2026-08-18 21:24:00.839497+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc8a7 type 3
2026-08-18 21:24:00.839502+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14466627, jobj_id range 14469170+116
2026-08-18 21:24:00.839757+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14466627 on dir 14469169, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:00.993706+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:00.993806+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:00.993811+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 13312 features 0 internal  VEK
2026-08-18 21:24:00.997433+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SHOR successfully validated on-disk root hash
2026-08-18 21:24:00.997453+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a12be type 3
2026-08-18 21:24:00.997459+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1704058, jobj_id range 1707904+150
2026-08-18 21:24:00.997692+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1704058 on dir 1707903, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:01.036889+0900 0xefe      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: talagentd(618) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:24:01.125881+0900 0x16d2     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:24:01.212189+0900 0x174d     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:24:01.819326+0900 0xf57      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(697) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:24:01.858740+0900 0x1619     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(697) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:24:02.054541+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070478 tx stats: # 40 owait 4 1458us finish 40 bar2 40 f 3 enter 6 fq 19 29 180us close 0us prep 75us flush 209us
2026-08-18 21:24:02.162353+0900 0x19ad     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: routined(690) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:24:02.162359+0900 0x19ad     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 690, routined
2026-08-18 21:24:02.214489+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070498 tx stats: # 60 owait 4 1458us finish 60 bar2 60 f 3 enter 2 fq 14 16 140us close 0us prep 66us flush 188us
2026-08-18 21:24:02.335496+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070518 tx stats: # 80 owait 8 790us finish 80 bar2 80 f 3 enter 5 fq 18 32 170us close 0us prep 88us flush 233us
2026-08-18 21:24:02.520832+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070538 tx stats: # 100 owait 10 690us finish 100 bar2 100 f 3 enter 31 fq 88 99 766us close 0us prep 183us flush 304us
2026-08-18 21:24:02.853093+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070558 tx stats: # 120 owait 11 730us finish 120 bar2 120 f 3 enter 33 fq 44 309 400us close 0us prep 158us flush 376us
2026-08-18 21:24:03.185626+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:03.185698+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:03.185702+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:03.190505+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SUGG successfully validated on-disk root hash
2026-08-18 21:24:03.190535+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0f07 type 3
2026-08-18 21:24:03.190539+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1700875, jobj_id range 1707543+116
2026-08-18 21:24:03.190815+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1700875 on dir 1707542, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:03.669925+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070578 tx stats: # 140 owait 14 664us finish 140 bar2 140 f 3 enter 25 fq 60 99 518us close 0us prep 220us flush 413us
2026-08-18 21:24:03.757628+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:03.757675+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:03.757679+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:03.759684+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_FM_A successfully validated on-disk root hash
2026-08-18 21:24:03.759700+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc745 type 3
2026-08-18 21:24:03.759702+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14461068, jobj_id range 14468816+116
2026-08-18 21:24:03.759823+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14461068 on dir 14468815, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:03.779855+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:03.779900+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:03.779903+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 77312 features 0 internal  VEK
2026-08-18 21:24:03.782295+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_BA successfully validated on-disk root hash
2026-08-18 21:24:03.782306+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a066a type 3
2026-08-18 21:24:03.782308+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1588657, jobj_id range 1705440+135
2026-08-18 21:24:03.782542+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1588657 on dir 1705439, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:03.837520+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:03.837567+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:03.837571+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:03.839667+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PROF successfully validated on-disk root hash
2026-08-18 21:24:03.839681+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a07d2 type 3
2026-08-18 21:24:03.839683+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1618299, jobj_id range 1705699+116
2026-08-18 21:24:03.839803+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1618299 on dir 1705698, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:03.859591+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:03.859643+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:03.859648+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 166400 features 0 internal  VEK
2026-08-18 21:24:03.863153+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SIRI_ASR_ASSISTANT_EN_US_EN_ successfully validated on-disk root hash
2026-08-18 21:24:03.863163+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcadcb type 3
2026-08-18 21:24:03.863165+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14460120, jobj_id range 14461832+458
2026-08-18 21:24:03.863314+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14460120 on dir 14461831, dev_name [UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg]
2026-08-18 21:24:03.893380+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:03.893401+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:03.893403+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 7168 features 0 internal  VEK
2026-08-18 21:24:03.895814+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MAIL successfully validated on-disk root hash
2026-08-18 21:24:03.895822+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0c0a type 3
2026-08-18 21:24:03.895824+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1679841, jobj_id range 1706899+116
2026-08-18 21:24:03.895937+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1679841 on dir 1706898, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:03.966472+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:03.966634+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:03.966640+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:03.970925+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_OPEN successfully validated on-disk root hash
2026-08-18 21:24:03.970939+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc659 type 3
2026-08-18 21:24:03.970940+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14403375, jobj_id range 14468580+116
2026-08-18 21:24:03.971143+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14403375 on dir 14468579, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:03.972623+0900 0x1949     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: sharingd(701) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:24:03.972629+0900 0x1949     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 701, sharingd
2026-08-18 21:24:04.192815+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:04.192833+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:04.192836+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:04.197147+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_TEXT successfully validated on-disk root hash
2026-08-18 21:24:04.200231+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc831 type 3
2026-08-18 21:24:04.200237+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14466449, jobj_id range 14469052+116
2026-08-18 21:24:04.200355+0900 0x1441     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14466449 on dir 14469051, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:04.282953+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:04.282987+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:04.282991+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:04.284709+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MACH successfully validated on-disk root hash
2026-08-18 21:24:04.284720+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc7bb type 3
2026-08-18 21:24:04.284722+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14465641, jobj_id range 14468934+116
2026-08-18 21:24:04.284828+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14465641 on dir 14468933, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:04.672391+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:04.672420+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:04.672425+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:04.674673+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_TEXT successfully validated on-disk root hash
2026-08-18 21:24:04.674682+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0b1a type 3
2026-08-18 21:24:04.674684+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1655456, jobj_id range 1706539+116
2026-08-18 21:24:04.674798+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1655456 on dir 1706538, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:04.835531+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:04.835553+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:04.835555+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 7168 features 0 internal  VEK
2026-08-18 21:24:04.837282+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SUMM successfully validated on-disk root hash
2026-08-18 21:24:04.837293+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc91d type 3
2026-08-18 21:24:04.837295+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14467237, jobj_id range 14469288+116
2026-08-18 21:24:04.837400+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14467237 on dir 14469287, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:04.926774+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070598 tx stats: # 160 owait 15 738us finish 160 bar2 160 f 3 enter 320 fq 100 414 939us close 8us prep 942us flush 875us
2026-08-18 21:24:04.942765+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:04.942908+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:04.942912+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 253952 features 0 internal  VEK
2026-08-18 21:24:04.947146+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_BASE successfully validated on-disk root hash
2026-08-18 21:24:04.947156+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0e16 type 3
2026-08-18 21:24:04.947158+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1685582, jobj_id range 1707411+128
2026-08-18 21:24:04.947623+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1685582 on dir 1707410, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:04.957512+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:04.957540+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:04.957542+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 62464 features 0 internal  VEK
2026-08-18 21:24:04.960188+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_IF_PLANNER_NLROUTER_BASE_KO_ successfully validated on-disk root hash
2026-08-18 21:24:04.960209+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x187c28 type 3
2026-08-18 21:24:04.960215+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1586107, jobj_id range 1604598+46
2026-08-18 21:24:04.960450+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1586107 on dir 1604597, dev_name [UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:04.972850+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:04.972920+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:04.972922+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 41472 features 0 internal  VEK
2026-08-18 21:24:04.974780+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SPEECH_ASR_TRANSCRIPTION_KO_ successfully validated on-disk root hash
2026-08-18 21:24:04.974791+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xde19e8 type 3
2026-08-18 21:24:04.974793+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14553470, jobj_id range 14555507+68
2026-08-18 21:24:04.974915+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14553470 on dir 14555503, dev_name [UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:05.202822+0900 0x19f4     Default     0x0                  0      0    kernel: (Sandbox) Sandbox: icdd(805) allow mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:24:05.204653+0900 0x1e43     Default     0x0                  0      0    kernel: (Sandbox) 2 duplicate reports for Sandbox: icdd(805) allow mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:24:05.689713+0900 0x1788     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_truncate_locked : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:24:06.022948+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.022965+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.022967+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 1024 features 0 internal  VEK
2026-08-18 21:24:06.024680+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: SECUREPKITRUSTSTOREASSETS_SECUR successfully validated on-disk root hash
2026-08-18 21:24:06.024689+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x37ecf3 type 3
2026-08-18 21:24:06.024691+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 3664701, jobj_id range 3664795+34
2026-08-18 21:24:06.024802+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 3664701 on dir 3664794, dev_name [SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg]
2026-08-18 21:24:06.048188+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.048301+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.048305+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 324096 features 0 internal  VEK
2026-08-18 21:24:06.053256+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_VISUAL_IMAGE_DIFFUSION_V1 successfully validated on-disk root hash
2026-08-18 21:24:06.053265+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x197f9e type 3
2026-08-18 21:24:06.053268+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1604359, jobj_id range 1670854+196
2026-08-18 21:24:06.055037+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1604359 on dir 1670851, dev_name [UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:06.115147+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.115169+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.115171+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:06.118359+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_CONC successfully validated on-disk root hash
2026-08-18 21:24:06.118371+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a093a type 3
2026-08-18 21:24:06.118373+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1641368, jobj_id range 1706059+116
2026-08-18 21:24:06.118565+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1641368 on dir 1706058, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:06.119548+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070618 tx stats: # 180 owait 17 769us finish 180 bar2 180 f 3 enter 59 fq 33 50 216us close 3us prep 227us flush 213us
2026-08-18 21:24:06.153822+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.153844+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.153846+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 50176 features 0 internal  VEK
2026-08-18 21:24:06.158718+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_IMAG successfully validated on-disk root hash
2026-08-18 21:24:06.158727+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdccc13 type 3
2026-08-18 21:24:06.158729+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14467978, jobj_id range 14469406+28
2026-08-18 21:24:06.159682+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14467978 on dir 14469405, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:06.210364+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.210429+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.210432+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 55808 features 0 internal  VEK
2026-08-18 21:24:06.214044+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_IM successfully validated on-disk root hash
2026-08-18 21:24:06.214056+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0c2a type 3
2026-08-18 21:24:06.214059+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1681663, jobj_id range 1707019+28
2026-08-18 21:24:06.214609+0900 0x163d     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1681663 on dir 1707018, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:06.231719+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.231767+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.231770+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 133120 features 0 internal  VEK
2026-08-18 21:24:06.235785+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SIRI_ASR_ASSISTANT_KO_KR_KO_ successfully validated on-disk root hash
2026-08-18 21:24:06.235795+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcab87 type 3
2026-08-18 21:24:06.235797+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14398070, jobj_id range 14461497+331
2026-08-18 21:24:06.236234+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14398070 on dir 14461496, dev_name [UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg]
2026-08-18 21:24:06.266255+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.266314+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.266317+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:06.269375+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SHOR successfully validated on-disk root hash
2026-08-18 21:24:06.269386+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0d92 type 3
2026-08-18 21:24:06.269388+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1684620, jobj_id range 1707291+116
2026-08-18 21:24:06.269511+0900 0x132a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1684620 on dir 1707290, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:06.296155+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.296183+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.296185+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:06.297568+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_REMI successfully validated on-disk root hash
2026-08-18 21:24:06.297577+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0d1a type 3
2026-08-18 21:24:06.297579+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1684144, jobj_id range 1707171+116
2026-08-18 21:24:06.297686+0900 0x1532     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1684144 on dir 1707170, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:06.335807+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.335865+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.335870+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:06.337512+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_OP successfully validated on-disk root hash
2026-08-18 21:24:06.337521+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc6cf type 3
2026-08-18 21:24:06.337523+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14459878, jobj_id range 14468698+116
2026-08-18 21:24:06.337628+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14459878 on dir 14468697, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:06.354298+0900 0x212d     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 21:24:06.364662+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.364687+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.364689+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:06.366477+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_AD successfully validated on-disk root hash
2026-08-18 21:24:06.366486+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0a2a type 3
2026-08-18 21:24:06.366489+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1645820, jobj_id range 1706299+116
2026-08-18 21:24:06.366594+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1645820 on dir 1706298, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:06.397356+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:24:06.397388+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:24:06.397390+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:24:06.399172+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_FRIE successfully validated on-disk root hash
2026-08-18 21:24:06.402581+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0b92 type 3
2026-08-18 21:24:06.402589+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1666752, jobj_id range 1706779+116
2026-08-18 21:24:06.402708+0900 0x1330     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1666752 on dir 1706778, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:24:06.668539+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070638 tx stats: # 200 owait 19 752us finish 200 bar2 200 f 14 enter 171 fq 47 116 475us close 1us prep 999us flush 3620us
2026-08-18 21:24:07.871835+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070658 tx stats: # 220 owait 21 716us finish 220 bar2 220 f 29 enter 394 fq 28 36 296us close 0us prep 1562us flush 1570us
2026-08-18 21:24:07.880182+0900 0x19f4     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(971) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:24:07.951742+0900 0x22cb     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(971) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:24:08.086218+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070678 tx stats: # 240 owait 24 694us finish 240 bar2 240 f 29 enter 47 fq 18 23 255us close 0us prep 313us flush 584us
2026-08-18 21:24:08.802614+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070698 tx stats: # 260 owait 24 694us finish 260 bar2 260 f 42 enter 116 fq 21 24 267us close 0us prep 695us flush 976us
2026-08-18 21:24:09.681631+0900 0x247e     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:24:09.681637+0900 0x247e     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 994); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:09.681645+0900 0x247e     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070707)
2026-08-18 21:24:09.685356+0900 0x247e     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:24:09.685414+0900 0x247e     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:24:09.685455+0900 0x247e     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:24:09.685487+0900 0x247e     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 994); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:09.860778+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070718 tx stats: # 280 owait 25 742us finish 280 bar2 280 f 47 enter 28 fq 32 38 311us close 0us prep 251us flush 396us
2026-08-18 21:24:10.229675+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070738 tx stats: # 300 owait 29 724us finish 300 bar2 300 f 61 enter 403 fq 23 26 288us close 0us prep 1876us flush 2295us
2026-08-18 21:24:10.367550+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 21:24:10.367561+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 21:24:10.367583+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 21:24:10.367590+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 21:24:10.367739+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_stop_bg_work_ext:928: disk3s1 Volume Macintosh HD is unmounting, stop any bg work
2026-08-18 21:24:10.369282+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 979); parent: launchd (pid 1)
2026-08-18 21:24:10.369298+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:24:10.374303+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:24:10.374487+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:24:10.432188+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:24:10.432198+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 1015); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:10.432204+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070741)
2026-08-18 21:24:10.441371+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:24:10.441433+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 21:24:10.442173+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 772055
2026-08-18 21:24:10.442192+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 21:24:10.832433+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 772479 -> 772508
2026-08-18 21:24:10.888959+0900 0x2629     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4070742-4070742
2026-08-18 21:24:10.931268+0900 0x2629     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4070742, om_snap_count 1 om_most_recent_snap 4070742
2026-08-18 21:24:10.931274+0900 0x2629     Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4070742
2026-08-18 21:24:10.931791+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 21:24:10.932568+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070743)
2026-08-18 21:24:10.937521+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:24:10.937565+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:24:10.937617+0900 0x25c8     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 1015); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:11.118935+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 979); parent: launchd (pid 1)
2026-08-18 21:24:11.118947+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:24:11.122538+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:24:11.122647+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:24:11.207434+0900 0x266a     Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 21:24:11.207445+0900 0x266a     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mounting volume Recovery, requested by: mount_apfs (pid 1031); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:11.207542+0900 0x266a     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 21:24:11.207753+0900 0x266a     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 21:24:11.207762+0900 0x266a     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 21:24:11.207802+0900 0x266a     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mount-complete volume Recovery, requested by: mount_apfs (pid 1031); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:11.226894+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_stop_bg_work_ext:928: disk3s3 Volume Recovery is unmounting, stop any bg work
2026-08-18 21:24:11.227289+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: com.apple.MobileSoftwareUpdate. (pid 979); parent: launchd (pid 1)
2026-08-18 21:24:11.227301+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s3 waiting for purgatory cleaner to finish
2026-08-18 21:24:11.230502+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 21:24:11.230964+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:24:11.291125+0900 0x2680     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:24:11.291134+0900 0x2680     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 1033); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:11.291146+0900 0x2680     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070756)
2026-08-18 21:24:11.295377+0900 0x2680     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:24:11.295428+0900 0x2680     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:24:11.295462+0900 0x2680     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:24:11.295498+0900 0x2680     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 1033); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:11.306575+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 21:24:11.306586+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 21:24:11.306611+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 21:24:11.306617+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 21:24:11.308798+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 979); parent: launchd (pid 1)
2026-08-18 21:24:11.308810+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:24:11.317244+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070758 tx stats: # 320 owait 34 5414us finish 319 bar2 320 f 68 enter 177 fq 188 12630 2883us close 1us prep 674us flush 1953us
2026-08-18 21:24:11.317275+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:24:11.317722+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:24:11.356087+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:24:11.356097+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 1034); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:11.356102+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070759)
2026-08-18 21:24:11.360476+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:24:11.360537+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 21:24:11.363258+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 771946
2026-08-18 21:24:11.363352+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 21:24:11.400498+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 772508 -> 771519
2026-08-18 21:24:11.420083+0900 0x269a     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4070760-4070760
2026-08-18 21:24:11.448837+0900 0x269a     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4070760, om_snap_count 1 om_most_recent_snap 4070760
2026-08-18 21:24:11.448843+0900 0x269a     Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4070760
2026-08-18 21:24:11.449338+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 21:24:11.449462+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4070761)
2026-08-18 21:24:11.453495+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:24:11.453544+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:24:11.453589+0900 0x268c     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 1034); parent: com.apple.Mobile (pid 979)
2026-08-18 21:24:11.504872+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 979); parent: launchd (pid 1)
2026-08-18 21:24:11.504885+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:24:11.509593+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:24:11.510286+0900 0x2472     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:24:11.895134+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070778 tx stats: # 340 owait 35 5348us finish 338 bar2 340 f 71 enter 6 fq 25 33 242us close 0us prep 145us flush 237us
2026-08-18 21:24:11.966247+0900 0x19f4     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(1055) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:24:12.060585+0900 0xffe      Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(1055) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:24:12.742194+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070798 tx stats: # 360 owait 38 4975us finish 358 bar2 360 f 87 enter 1225 fq 42 65 386us close 3us prep 555us flush 4029us
2026-08-18 21:24:14.073518+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070818 tx stats: # 380 owait 38 4975us finish 378 bar2 380 f 94 enter 74 fq 108 157 1115us close 9us prep 520us flush 436us
2026-08-18 21:24:14.217286+0900 0x2848     Default     0x0                  0      0    kernel: (HFS) hfs: mounted JetBrains Toolbox on device disk4s1
2026-08-18 21:24:14.611730+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070838 tx stats: # 400 owait 42 4552us finish 398 bar2 400 f 94 enter 52 fq 87 124 797us close 0us prep 262us flush 442us
2026-08-18 21:24:14.849983+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070858 tx stats: # 420 owait 47 4152us finish 418 bar2 420 f 94 enter 42 fq 78 111 746us close 24us prep 897us flush 462us
2026-08-18 21:24:15.428883+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070878 tx stats: # 440 owait 50 3959us finish 438 bar2 440 f 94 enter 85 fq 56 218 596us close 0us prep 365us flush 405us
2026-08-18 21:24:15.481818+0900 0x2890     Default     0x0                  0      0    kernel: (HFS) hfs: unmount initiated on JetBrains Toolbox on device disk4s1
2026-08-18 21:24:15.905451+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070898 tx stats: # 460 owait 50 3959us finish 458 bar2 460 f 94 enter 46 fq 37 139 379us close 0us prep 207us flush 522us
2026-08-18 21:24:16.721114+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070918 tx stats: # 480 owait 50 3959us finish 478 bar2 480 f 94 enter 217 fq 40 87 377us close 0us prep 470us flush 693us
2026-08-18 21:24:18.788398+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070938 tx stats: # 500 owait 51 3887us finish 498 bar2 500 f 94 enter 145 fq 97 1259 862us close 0us prep 246us flush 454us
2026-08-18 21:24:19.617872+0900 0x1af9     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(707) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 21:24:20.140079+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070958 tx stats: # 520 owait 52 3836us finish 518 bar2 520 f 95 enter 816 fq 103 756 936us close 0us prep 670us flush 668us
2026-08-18 21:24:23.368238+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070978 tx stats: # 540 owait 54 3718us finish 538 bar2 540 f 95 enter 1788 fq 125 1297 1290us close 0us prep 477us flush 756us
2026-08-18 21:24:25.069918+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4070998 tx stats: # 560 owait 56 3599us finish 558 bar2 560 f 96 enter 71 fq 48 354 300us close 15us prep 101us flush 148us
2026-08-18 21:24:34.661070+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071018 tx stats: # 580 owait 59 3460us finish 579 bar2 580 f 96 enter 725 fq 142 244 923us close 1us prep 1236us flush 1020us
2026-08-18 21:24:46.294076+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071038 tx stats: # 600 owait 61 3382us finish 612 bar2 600 f 100 enter 155 fq 38 50 979us close 0us prep 526us flush 1366us
2026-08-18 21:24:54.058830+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071058 tx stats: # 620 owait 62 3361us finish 631 bar2 620 f 100 enter 54 fq 65 77 548us close 3us prep 190us flush 348us
2026-08-18 21:24:59.665768+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071078 tx stats: # 640 owait 69 3167us finish 652 bar2 640 f 105 enter 22 fq 41 54 366us close 265us prep 282us flush 2461us
2026-08-18 21:24:59.958214+0900 0xba       Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6525: disk3s5 apfs is being LOCKED!
2026-08-18 21:24:59.958220+0900 0xba       Default     0x0                  0      0    kernel: (apfs) handle_async_keybag_lock:6664: disk3s5 apfs is now LOCKED (flags 0x441000d6)!
2026-08-18 21:24:59.970527+0900 0xf05      Default     0x0                  0      0    kernel: (apfs) kbnh_keybag_lock_notification:6949: disk3s5 done processing lock keybag notification, err 0, (flags 0x441000c6)
2026-08-18 21:25:00.131723+0900 0x909      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071098 tx stats: # 660 owait 70 3135us finish 672 bar2 660 f 113 enter 29 fq 20 24 167us close 0us prep 172us flush 1907us
2026-08-18 12:34:25.359248+0000 0x14e      Default     0x0                  0      0    kernel: (AppleH13CameraInterface) AppleH13amIn::start - fInRamdisk=0
2026-08-18 12:34:25.417766+0000 0xa1a      Default     0x0                  0      0    kernel: (AppleDiskImages2) [0 (ctx)] virtual bool AppleDiskImagesController::start(IOService *)::163: kext version: 524.120.8
2026-08-18 12:34:25.511310+0000 0xa1d      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS2NVMeController::probe(IOService *, SInt32 *)::248:Found (ANS2) provider, returning score 100000
2026-08-18 12:34:25.511384+0000 0xa1d      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOService *AppleANS3NVMeController::probe(IOService *, SInt32 *)::82:Found (ANS2) provider and linear-sq, returning score 300000
2026-08-18 12:34:25.512743+0000 0xa1d      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleANS2NVMeController::start(IOService *)::430:Found the ANS2Endpoint1
2026-08-18 12:34:25.513254+0000 0xa1d      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::SetNamespacesStruct()::196:Obtained 3 namespaces from DT
2026-08-18 12:34:25.513262+0000 0xa1d      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::756:start 0x1000004C8
2026-08-18 12:34:25.513332+0000 0xa1d      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOFilterInterruptEventSource *AppleANS2NVMeController::CreateDeviceInterrupt(IOInterruptEventSource::Action, IOFilterInterruptEventSource::Filter, IOService *)::2756:ANS2 NVMe interrupt index - 0x4
2026-08-18 12:34:25.513403+0000 0xa1d      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual uint32_t AppleANS2CGv2Controller::GetNVMeSPTMQueueEntries()::164:NVMe Queue Entries=253
2026-08-18 12:34:25.725028+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) static AppleNVMeRequestPoolTagReserve *AppleNVMeRequestPoolTagReserve::Create(AppleNVMeWorkLoop *, uint8_t, uint16_t, uint32_t, bool, NVMeBufferAllocator *, lck_mtx_t *, NVMeCGType_t, IOMapper *)::138:NVMe Request Pool Init (Tag Reservation Case). First phase, RequestCount = 1
2026-08-18 12:34:25.725038+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=0 entrysize=64
2026-08-18 12:34:25.725043+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn IONVMeController::CreateSubmissionQueue(uint16_t, uint8_t)::2948:SQ index=1 entrysize=64
2026-08-18 12:34:25.725060+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2CGv2Controller::SetupAdminQueue()::439:Successfully enabled NVMe CoastGuard
2026-08-18 12:34:25.725063+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual void AppleANS2NVMeController::SetModeselRegister(uint32_t)::1137:Setting modesel to 0
2026-08-18 12:34:25.752599+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeRequestPoolTagReserve::Rebuild(uint8_t, uint32_t, bool, NVMeCGType_t, IOMapper *)::181:NVMe Request Pool Init (Tag Reservation Case). Second phase, RequestCount = 253
2026-08-18 12:34:25.800510+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1966:nvme: Vendor ID     : 0x106b
2026-08-18 12:34:25.800512+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1967:nvme: Model Number  : APPLE SSD AP0512Z
2026-08-18 12:34:25.800514+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1968:nvme: Serial Number : [REDACTED]
2026-08-18 12:34:25.800515+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::1969:nvme: Firmware Rev  : 561.100.
2026-08-18 12:34:25.800517+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2038:nvme: S5E A0 Toshiba 5th Gen Lithography tlc 3D 2 plane 512GB
2026-08-18 12:34:25.800520+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2058:ECCVersion   : 1
2026-08-18 12:34:25.800521+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2062:FTL Rev      : 36.1
2026-08-18 12:34:25.800523+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2063:DM_Version   : 179
2026-08-18 12:34:25.800524+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2064:=======================
2026-08-18 12:34:25.800526+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::IdentifyNamespaces()::2071:Found 3 namespaces in current NAND
2026-08-18 12:34:25.800565+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[1] as nstype[1]
2026-08-18 12:34:25.800605+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[2] as nstype[8]
2026-08-18 12:34:25.800632+0000 0x8a3      Default     0x0                  0      0    kernel: (IONVMeFamily) bool AppleEmbeddedNVMeController::DetermineNamespaces()::2520:Identified nsid[3] as nstype[13]
2026-08-18 12:34:25.822954+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1580:allocateAll 1
2026-08-18 12:34:25.825985+0000 0xb3f      Default     0x0                  0      0    kernel: (IONVMeFamily) IOReturn IONVMeBlockStorageDevice::PowerDownHandler(void *, uint32_t, IOService *, void *, vm_size_t)::5739:fProvider: 0x<private> messageType: 0xE0000340
2026-08-18 12:34:25.841610+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:34:25.841612+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s1 device_handle block size 4096 block count 128000 features 0 internal
2026-08-18 12:34:25.841616+0000 0x2c0      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s3 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:34:25.841619+0000 0x2c0      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s3 device_handle block size 4096 block count 1310709 features 0 internal
2026-08-18 12:34:25.842284+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:34:25.842285+0000 0xb49      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s3 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:34:25.842607+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk0s2 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:34:25.842609+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk0s2 device_handle block size 4096 block count 120699413 features 0 internal
2026-08-18 12:34:25.842792+0000 0xb49      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk0s2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:34:25.849610+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s1 checkpoint search: largest xid 9099, best xid 9099 @ 5
2026-08-18 12:34:25.849613+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s1 stable checkpoint indices: desc 4 data 554
2026-08-18 12:34:25.856133+0000 0x2c0      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s3 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:34:25.856136+0000 0x2c0      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s3 stable checkpoint indices: desc 36 data 285
2026-08-18 12:34:25.887801+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk0s2 checkpoint search: largest xid 4071129, best xid 4071129 @ 201
2026-08-18 12:34:25.887804+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk0s2 stable checkpoint indices: desc 200 data 19381
2026-08-18 12:34:25.887822+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:34:25.887824+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:34:25.888906+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk0s2 volume groups tree is not setup yet
2026-08-18 12:34:25.888908+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk0s2 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:34:25.890129+0000 0x7f       Default     0x0                  0      0    kernel: (AppleFileSystemDriver) AppleFileSystemDriver: publishing boot-uuid-media=disk3s1 (Macintosh HD)
2026-08-18 12:34:25.890664+0000 0x2c0      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 2, NSTYPE - 8
2026-08-18 12:34:25.890673+0000 0x7f       Default     0x0                  0      0    kernel: BSD root: disk3s1
2026-08-18 12:34:25.890814+0000 0x2c0      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:34:25.890816+0000 0x2c0      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 768
2026-08-18 12:34:25.890885+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk3 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:34:25.890887+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk3 device_handle block size 4096 block count 120699413 features 22 internal solidstate
2026-08-18 12:34:25.890901+0000 0x2c0      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 2, NSTYPE: 8
2026-08-18 12:34:25.890903+0000 0x2c0      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::AllocateNodes(bool)::1607:Creating blockdevice with NSID - 3, NSTYPE - 13
2026-08-18 12:34:25.891440+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk3 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:34:25.891976+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::266: Logical Blocks Size = 4096
2026-08-18 12:34:25.891979+0000 0x99b      Default     0x0                  0      0    kernel: (IONVMeFamily) virtual IOReturn AppleNVMeNamespaceDevice::GetDeviceProperties()::269: Block Count = 32768
2026-08-18 12:34:25.893250+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeEAN::StartDevice(IOService *)::249:EAN StartDevice Done
2026-08-18 12:34:25.893313+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleNVMeNamespaceDevice::start(IOService *)::109:NVMe Namespace Device registration done for NSID: 3, NSTYPE: 13
2026-08-18 12:34:25.893315+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool AppleEmbeddedNVMeController::StartController()::1549:Setting NAND status to Ready
2026-08-18 12:34:25.893326+0000 0x7f       Default     0x0                  0      0    kernel: (IONVMeFamily) virtual bool IONVMeController::start(IOService *)::816:Successfully initialized NVMe drive 0x1000004C8
2026-08-18 12:34:25.895291+0000 0xb49      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00c500c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:34:25.895294+0000 0xb49      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100C5
2026-08-18 12:34:25.895296+0000 0xb49      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:34:25.895297+0000 0xb49      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:34:25.895299+0000 0xb49      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:34:25.895364+0000 0xb49      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00c500c2 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 12:34:25.895366+0000 0xb4a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x018100C5
2026-08-18 12:34:25.895368+0000 0xb4a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 12:34:25.895369+0000 0xb4a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 12:34:25.895370+0000 0xb4a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 12:34:25.935457+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk3 checkpoint search: largest xid 4071129, best xid 4071129 @ 201
2026-08-18 12:34:25.935461+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk3 stable checkpoint indices: desc 200 data 19381
2026-08-18 12:34:25.937533+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s1 No ER state object for volume Macintosh HD - rolling is not happening, nothing to recover.
2026-08-18 12:34:25.937651+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2916: disk3s1 Rooting from snapshot with xid 3094032.
2026-08-18 12:34:25.937654+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:34:25.937678+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1222: disk3s1 mounting snapshot w/snap_xid 3094032 and sblock oid 0xbcade
2026-08-18 12:34:25.938643+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) nx_get_volume_group:669: disk3 volume groups tree is not setup yet
2026-08-18 12:34:25.938645+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) getVolumeGroupMountFrom:10097: disk3 nx_get_volume_group(398F441C-CCE1-471E-AA2A-F804CABE8548) failed with error 2
2026-08-18 12:34:25.938901+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:34:25.938903+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:34:25.938905+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk3s1 successfully validated on-disk root hash
2026-08-18 12:34:25.938906+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) handle_snapshot_mount:1407: disk3s1 setting dev block size to 4096 from 512
2026-08-18 12:34:25.938909+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 12:34:25.940002+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) handle_mount:960: disk3s1 ROSV: apfs mounted RO and is the system volume of a volume group and mounted as the root fs: creating the shadow fs_root
2026-08-18 12:34:25.940005+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) fs_setup_shadow_fs_root_tree:3501: disk3s1 Created the shadow_fs_root tree <private>
2026-08-18 12:34:25.940021+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s1 Set volume (role 0x1) to 402 xid 2f3610
2026-08-18 12:34:25.940046+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:34:25.940631+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:34:25.940633+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:34:25.945478+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 12:34:25.945511+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:34:25.945680+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 12:34:25.945681+0000 0xa58      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:34:25.954340+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk4s1 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:34:25.954342+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk4s1 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:34:25.954355+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk4s1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:34:25.958430+0000 0x845      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk4s1 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:34:25.958436+0000 0x845      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk4s1 stable checkpoint indices: desc 6 data 14
2026-08-18 12:34:25.959447+0000 0x845      Default     0x0                  0      0    kernel: imageboot_pivot_image: attached disk image /System/Volumes/Recovery/398F441C-CCE1-471E-AA2A-F804CABE8548/boot/B23324F57C2EF64EDC38BD8F5EB06D534A249B64D931D892147D98B70E9A9A76C2CEAFDC629D9D9C877585940336718D/usr/standalone/firmware/arm64eBaseSystem.dmg as disk4s1
2026-08-18 12:34:25.959511+0000 0x845      Default     0x0                  0      0    kernel: (HFS) hfs_mount: hfs_mountfs returned error=22 for device disk4s1
2026-08-18 12:34:25.959622+0000 0x845      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk5 device accelerated crypto: 0 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:34:25.959624+0000 0x845      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk5 device_handle block size 4096 block count 385536 features 0 internal
2026-08-18 12:34:25.959634+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk5 initializing cache w/hash_size 16384 and cache size 40960
2026-08-18 12:34:25.959919+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk5 checkpoint search: largest xid 105, best xid 105 @ 7
2026-08-18 12:34:25.959922+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk5 stable checkpoint indices: desc 6 data 14
2026-08-18 12:34:25.961954+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk5s1 No ER state object for volume macOS Base System - rolling is not happening, nothing to recover.
2026-08-18 12:34:25.961960+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:34:25.961962+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:34:25.961964+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: disk5s1 successfully validated on-disk root hash
2026-08-18 12:34:25.961976+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mounting volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:34:25.962000+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk5s1 vol-uuid: 98E2569B-8C5F-43FB-BAC5-FD0129260DF4 block size: 4096 block count: 385536 (unencrypted; flags: 0x1; features: 21.0.12)
2026-08-18 12:34:25.963681+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk5s1 setting dev block size to 4096 from 512
2026-08-18 12:34:25.963683+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:34:25.963689+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 mount-complete volume macOS Base System, requested by: kernel_task (pid 0); parent: kernel_task (pid 0)
2026-08-18 12:34:25.963768+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk5s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:34:25.963770+0000 0x99b      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk5s1 BaseSystem, root hash authentication is required
2026-08-18 12:34:25.968799+0000 0x99b      Default     0x0                  0      0    kernel: (BootCache) BootCache: Root disk is an SSD, not caching
2026-08-18 12:34:26.464409+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:173: disk3 metazone for device 0 of size 1540803 blocks (encrypted: 0-770401 unencrypted: 770401-1540803)
2026-08-18 12:34:26.464413+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 1 blocks starting at paddr 24674304
2026-08-18 12:34:26.464415+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 2 blocks starting at paddr 24870912
2026-08-18 12:34:26.464417+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 3 blocks starting at paddr 102662144
2026-08-18 12:34:26.464419+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) spaceman_datazone_init:611: disk3 allocation zone on dev 0 for allocations of 4 blocks starting at paddr 84672512
2026-08-18 12:34:26.468805+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s6 No ER state object for volume VM - rolling is not happening, nothing to recover.
2026-08-18 12:34:26.468811+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mounting volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.468858+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s6 vol-uuid: D5740DA5-764A-4EE1-A679-9DA5755A8249 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:34:26.468869+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s6 setting dev block size to 4096 from 512
2026-08-18 12:34:26.468872+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s6 Volume VM role 0x8 is not a System or Data volume
2026-08-18 12:34:26.468888+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s6 mount-complete volume VM, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.471242+0000 0x972      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s2 No ER state object for volume Preboot - rolling is not happening, nothing to recover.
2026-08-18 12:34:26.471247+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mounting volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.471271+0000 0x972      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s2 vol-uuid: 336B630F-3720-42B7-9A54-AC333F292FBD block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:34:26.473118+0000 0x972      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s2 setting dev block size to 4096 from 512
2026-08-18 12:34:26.473121+0000 0x972      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s2 Volume Preboot role 0x10 is not a System or Data volume
2026-08-18 12:34:26.473131+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s2 volume with role 16 will be mounted until system shutdown
2026-08-18 12:34:26.473135+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s2 mount-complete volume Preboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.475170+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s4 No ER state object for volume Update - rolling is not happening, nothing to recover.
2026-08-18 12:34:26.475173+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mounting volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.475200+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s4 vol-uuid: F01A451D-5CDC-4F27-9387-42805AB04770 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:34:26.476174+0000 0x972      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s4 setting dev block size to 4096 from 512
2026-08-18 12:34:26.476180+0000 0x972      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s4 Volume Update role 0xc0 is not a System or Data volume
2026-08-18 12:34:26.476188+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk3s4 volume with role 192 will be mounted until system shutdown
2026-08-18 12:34:26.476191+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s4 mount-complete volume Update, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.476694+0000 0x972      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk1 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:34:26.476697+0000 0x972      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk1 device_handle block size 4096 block count 128000 features 22 internal solidstate
2026-08-18 12:34:26.477589+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk1 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:34:26.491659+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk1 checkpoint search: largest xid 9099, best xid 9099 @ 5
2026-08-18 12:34:26.491663+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk1 stable checkpoint indices: desc 4 data 554
2026-08-18 12:34:26.491673+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) spaceman_metazone_init:111: disk1 no metazone for device 0, of size 524288000 bytes, block_size 4096
2026-08-18 12:34:26.492760+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk1 scan took 0.001074 s (no trims)
2026-08-18 12:34:26.492766+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk1 dev 0 smfree 122739/128000 table 25/127 blocks 122739 1:4909:122597 100.00% range 1211:126789 99.05% scans 1
2026-08-18 12:34:26.493331+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk1 scan took 0.000561 s, trims took 0.000555 s
2026-08-18 12:34:26.493334+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk1 122739 blocks free in 26 extents, avg 4720.73
2026-08-18 12:34:26.493336+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk1 122739 blocks trimmed in 26 extents (21 us/trim, 46846 trims/s)
2026-08-18 12:34:26.493338+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk1 trim distribution 1:4 2+:5 4+:15 16+:0 64+:0 256+:2
2026-08-18 12:34:26.493444+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s2 No ER state object for volume xART - rolling is not happening, nothing to recover.
2026-08-18 12:34:26.493448+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mounting volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.493473+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s2 vol-uuid: 8E16CEF3-ED64-4D4E-BBA7-A3B59511C2AA block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:34:26.493482+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s2 setting dev block size to 4096 from 512
2026-08-18 12:34:26.493484+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s2 Volume xART role 0x100 is not a System or Data volume
2026-08-18 12:34:26.493488+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s2 volume with role 256 will be mounted until system shutdown
2026-08-18 12:34:26.493491+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s2 mount-complete volume xART, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.495733+0000 0x972      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s1 No ER state object for volume iSCPreboot - rolling is not happening, nothing to recover.
2026-08-18 12:34:26.495739+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mounting volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.495752+0000 0x972      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s1 vol-uuid: 68EF6EF8-2323-4896-9123-2894BDE8CA21 block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:34:26.496002+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s1 setting dev block size to 4096 from 512
2026-08-18 12:34:26.496006+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s1 Volume iSCPreboot role 0x10 is not a System or Data volume
2026-08-18 12:34:26.496011+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s1 volume with role 16 will be mounted until system shutdown
2026-08-18 12:34:26.496014+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s1 mount-complete volume iSCPreboot, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.498221+0000 0x972      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk1s3 No ER state object for volume Hardware - rolling is not happening, nothing to recover.
2026-08-18 12:34:26.498225+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mounting volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.498244+0000 0x972      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk1s3 vol-uuid: 26639779-A201-4A4B-90DA-1A7F4141453B block size: 4096 block count: 128000 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 12:34:26.498528+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk1s3 setting dev block size to 4096 from 512
2026-08-18 12:34:26.498530+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk1s3 Volume Hardware role 0x140 is not a System or Data volume
2026-08-18 12:34:26.498534+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) apfs_should_be_system_mount:735: disk1s3 volume with role 320 will be mounted until system shutdown
2026-08-18 12:34:26.498537+0000 0xb38      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk1s3 mount-complete volume Hardware, requested by: apfs_boot_util (pid 2); parent: launchd (pid 1)
2026-08-18 12:34:26.527801+0000 0x7f       Default     0x0                  0      0    kernel: (apfs) apfs_rawdev_create:708: disk1s2 Enable bypass mode on inode 16 on xART@disk1 as 2.0, tidemark 2771
2026-08-18 12:34:26.599699+0000 0x972      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4461: disk3 scan took 0.135268 s (no trims)
2026-08-18 12:34:26.599705+0000 0x972      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:477: disk3 dev 0 smfree 19000697/120699413 table 587/587 blocks 2019720 1455:3440:40391 10.62% range 527346:119965700 99.39% scans 1
2026-08-18 12:34:26.599709+0000 0x972      Default     0x0                  0      0    kernel: (apfs) spaceman_fxc_print_stats:496: disk3 dev 0 scan_stats[2]: foundmax 40391 extents 817078 blocks 16980977 long 1452 avg 20 89.37% range 39149:120660264 99.96%
2026-08-18 12:34:28.550449+0000 0x9f0      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:34:28.560184+0000 0x9f0      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:34:28.560188+0000 0x9f0      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:34:28.731743+0000 0x972      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4431: disk3 scan took 2.132030 s, trims took 1.944867 s
2026-08-18 12:34:28.731747+0000 0x972      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4435: disk3 19000697 blocks free in 817673 extents, avg 23.23
2026-08-18 12:34:28.731750+0000 0x972      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4444: disk3 19000697 blocks trimmed in 817673 extents (2 us/trim, 420426 trims/s)
2026-08-18 12:34:28.731751+0000 0x972      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4447: disk3 trim distribution 1:280978 2+:153257 4+:240065 16+:82576 64+:50721 256+:10076
2026-08-18 12:34:28.731753+0000 0x972      Default     0x0                  0      0    kernel: (apfs) spaceman_scan_free_blocks:4455: disk3 trims dropped: 25369 blocks 25220 extents, avg 1.00
2026-08-18 12:34:28.804697+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16640: attempt to cache vek from stashed kek (if present) for volume /dev/disk3s5
2026-08-18 12:34:28.820457+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_cache_vek_from_stashed_kek:16670: disk3s5 failed to unlock volume using stashed kek, error = 1
2026-08-18 12:34:28.820460+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_is_volume_locked:16730: warning: could not cache vek, kek may not be stashed, error = 1 dev_path = /dev/disk3s5
2026-08-18 12:34:28.829692+0000 0x972      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 updating mounted volume macOS Base System, requested by: mount_apfs (pid 25); parent: mount (pid 24)
2026-08-18 12:34:23.079881+0000 0xb8b      Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 12:34:23.079889+0000 0xb8b      Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 12:34:23.092443+0000 0xc20      Default     0x0                  0      0    kernel: (apfs) apfs_mount:30540: disk3s5 Failed to unwrap metadata crypto state: 1
2026-08-18 12:34:23.107791+0000 0xc20      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_mount:2842: disk3 apfs_mount failed, err: 1
2026-08-18 12:34:23.306655+0000 0xc52      Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 12:34:23.306664+0000 0xc52      Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 12:34:23.306818+0000 0xc52      Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 12:34:23.318400+0000 0xc52      Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 12:34:23.318417+0000 0xc52      Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 12:34:26.290223+0000 0xad0      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:34:26.464049+0000 0xc42      Error       0x0                  0      0    kernel: (Sandbox) [com.apple.sandbox.reporting:violation] 10 duplicate reports for Sandbox: ctkd(203) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 12:34:33.029640+0000 0xb1e      Default     0x0                  0      0    kernel: (apfs) handle_get_dev_by_role:13150: disk3s1 This operation needs entitlement
2026-08-18 12:35:02.814941+0000 0xacf      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required_osx:444: disk3s1 Release kext with internal build: 0, ARV disabled: 0, booting xid: 0
2026-08-18 12:35:02.814948+0000 0xacf      Default     0x0                  0      0    kernel: (apfs) is_root_hash_authentication_required:614: disk3s1 Root Volume, root hash authentication is required
2026-08-18 12:35:02.840543+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 12:35:02.847426+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 os.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 12:35:02.847428+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 os.dmg device_handle block size 4096 real block size 4096 block count 1736704 features 0 internal
2026-08-18 12:35:02.874476+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: os.dmgs1 successfully validated on-disk root hash
2026-08-18 12:35:02.874481+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 12:35:02.874482+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99116, jobj_id range 100687+12489
2026-08-18 12:35:02.874663+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99116 on dir 17, dev_name [os.dmg]
2026-08-18 12:35:02.875361+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 12:35:02.875372+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 app.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 12:35:02.875373+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 app.dmg device_handle block size 4096 real block size 4096 block count 12800 features 0 internal
2026-08-18 12:35:02.877989+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: app.dmgs1 successfully validated on-disk root hash
2026-08-18 12:35:02.877993+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 12:35:02.877994+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99120, jobj_id range 113176+5406
2026-08-18 12:35:02.878138+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99120 on dir 18, dev_name [app.dmg]
2026-08-18 12:35:02.878504+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:721: disk3s2 Grafting on an UNENCRYPTED volume
2026-08-18 12:35:02.878505+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:849: disk3s2 Grafting a clone, share blockmap lut with os.dmg
2026-08-18 12:35:02.878507+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 os.clone.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 12:35:02.878508+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 os.clone.dmg device_handle block size 4096 real block size 4096 block count 1736704 features 0 internal
2026-08-18 12:35:02.881124+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: os.clone.dmgs1 successfully validated on-disk root hash
2026-08-18 12:35:02.881127+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s2 Found OBJID 0x1ffff type 3
2026-08-18 12:35:02.881128+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s2 Graft ino 99117, jobj_id range 118582+12489
2026-08-18 12:35:02.881443+0000 0xf76      Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s2 successfully grafted ino 99117 on dir 20, dev_name [os.clone.dmg]
2026-08-18 12:35:03.256574+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s5 No ER state object for volume Data - rolling is not happening, nothing to recover.
2026-08-18 12:35:03.260662+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s5 mounting volume Data, requested by: apfs_boot_util (pid 245); parent: launchd (pid 1)
2026-08-18 12:35:03.260704+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s5 vol-uuid: 398F441C-CCE1-471E-AA2A-F804CABE8548 block size: 4096 block count: 120699413 (encrypted; flags: 0x100; features: 41.0.2)
2026-08-18 12:35:03.260717+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s5 setting dev block size to 4096 from 512
2026-08-18 12:35:03.260720+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:795: disk3s5 Set volume (role 0x40) to 8a99 xid 0
2026-08-18 12:35:03.260751+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s5 mount-complete volume Data, requested by: apfs_boot_util (pid 245); parent: launchd (pid 1)
2026-08-18 12:35:03.260776+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) apfs_kbn_handler_start:7700: disk3s5 keybag notification handler started
2026-08-18 12:35:03.313651+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk5s1 unmounting volume macOS Base System, requested by: apfs_boot_util (pid 245); parent: launchd (pid 1)
2026-08-18 12:35:03.313662+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:712: disk5s1 Volume macOS Base System is not in a volume group
2026-08-18 12:35:03.313716+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk5 nx_num_vols_mounted is 0
2026-08-18 12:35:03.315530+0000 0xf82      Default     0x0                  0      0    kernel: (apfs) container_get_dangling_mounts:4766: Found 0 dangling mounts on /dev/disk5
2026-08-18 12:35:03.324807+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: apfs_boot_util (pid 245); parent: launchd (pid 1)
2026-08-18 12:35:03.324814+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 12:35:03.324838+0000 0xf7e      Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 12:35:03.404877+0000 0xf87      Default     0x0                  0      0    kernel: (apfs) authorize_purge:4154: disk3s5 failed to authorize rmdir for ino 23126050 (parent 23125507): 1 (Operation not permitted)
2026-08-18 21:35:04.854964+0900 0x11b2     Default     0x0                  0      0    kernel: (apfs) bufattr_get_apfs:9378: Only accept buf I/O, no raw disk access
2026-08-18 21:35:04.854970+0900 0x11b2     Default     0x0                  0      0    kernel: (IOStorageFamily) disk3s1s1: device is not readable.
2026-08-18 21:35:07.604473+0900 0x13a1     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: mDNSResponder(436) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:35:07.604480+0900 0x13a1     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 436, mDNSResponder
2026-08-18 21:35:09.115032+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:09.115080+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:09.115090+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:09.117911+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PHOT successfully validated on-disk root hash
2026-08-18 21:35:09.117929+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a06e2 type 3
2026-08-18 21:35:09.117933+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1615250, jobj_id range 1705579+116
2026-08-18 21:35:09.118163+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1615250 on dir 1705578, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_TITLE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:09.135031+0900 0x10d0     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s2 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 355
2026-08-18 21:35:09.154807+0900 0x152a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:09.154858+0900 0x152a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:09.154863+0900 0x152a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:09.158517+0900 0x152a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MAGI successfully validated on-disk root hash
2026-08-18 21:35:09.158543+0900 0x152a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc56d type 3
2026-08-18 21:35:09.158551+0900 0x152a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14390412, jobj_id range 14468344+116
2026-08-18 21:35:09.158894+0900 0x152a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14390412 on dir 14468343, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MAGIC_REWRITE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:09.178775+0900 0x10c9     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s1 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 355
2026-08-18 21:35:09.195639+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071149 tx stats: # 20 owait 2 3306us finish 20 bar2 20 f 2 enter 116 fq 160 235 1842us close 2us prep 831us flush 828us
2026-08-18 21:35:09.196397+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:09.196436+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:09.196441+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:09.200869+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MESS successfully validated on-disk root hash
2026-08-18 21:35:09.200893+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0ca2 type 3
2026-08-18 21:35:09.200900+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1683674, jobj_id range 1707051+116
2026-08-18 21:35:09.201171+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1683674 on dir 1707050, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_ACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:09.236316+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:09.236368+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:09.236372+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:09.239292+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PHOT successfully validated on-disk root hash
2026-08-18 21:35:09.239315+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a084a type 3
2026-08-18 21:35:09.239324+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1625731, jobj_id range 1705939+116
2026-08-18 21:35:09.239743+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1625731 on dir 1705938, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PHOTOS_MEMORIES_ASSET_CURATION_OUTLIER_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:09.273370+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:09.273414+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:09.273418+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:09.276064+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MESS successfully validated on-disk root hash
2026-08-18 21:35:09.276090+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc5e3 type 3
2026-08-18 21:35:09.276093+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14397120, jobj_id range 14468462+116
2026-08-18 21:35:09.276306+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14397120 on dir 14468461, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MESSAGES_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:09.573000+0900 0xf78      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: talagentd(616) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:35:09.612313+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:09.612362+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:09.612366+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:09.614506+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_AUTO successfully validated on-disk root hash
2026-08-18 21:35:09.614528+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0f7f type 3
2026-08-18 21:35:09.614534+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1703896, jobj_id range 1707784+116
2026-08-18 21:35:09.614717+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1703896 on dir 1707783, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_AUTONAMING_MESSAGES_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:09.637881+0900 0x171d     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:35:09.903193+0900 0x1774     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : com.apple.quicklook.ThumbnailsA clearing purgeability on ino 29721468 (thumbnails.data ; parent-id 29721345)
2026-08-18 21:35:10.341152+0900 0xf79      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: ctkd(694) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:35:10.367837+0900 0x1824     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: ctkd(694) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:35:10.557592+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071169 tx stats: # 40 owait 5 2544us finish 40 bar2 40 f 3 enter 47 fq 16 28 189us close 0us prep 133us flush 310us
2026-08-18 21:35:10.654879+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071189 tx stats: # 60 owait 7 1868us finish 60 bar2 60 f 3 enter 30 fq 13 15 152us close 0us prep 241us flush 362us
2026-08-18 21:35:10.682569+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071209 tx stats: # 80 owait 7 1868us finish 80 bar2 80 f 3 enter 2 fq 21 25 116us close 0us prep 47us flush 100us
2026-08-18 21:35:10.751803+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071229 tx stats: # 100 owait 9 1498us finish 100 bar2 100 f 3 enter 12 fq 46 54 315us close 7us prep 117us flush 131us
2026-08-18 21:35:10.872970+0900 0x1ae3     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: routined(715) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:35:10.872976+0900 0x1ae3     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 715, routined
2026-08-18 21:35:11.042074+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071249 tx stats: # 120 owait 12 1249us finish 120 bar2 120 f 3 enter 95 fq 19 24 291us close 4us prep 447us flush 398us
2026-08-18 21:35:11.510701+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071269 tx stats: # 140 owait 12 1249us finish 140 bar2 140 f 3 enter 24 fq 36 55 269us close 0us prep 197us flush 337us
2026-08-18 21:35:11.757969+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:11.757993+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:11.757995+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:11.761045+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PROO successfully validated on-disk root hash
2026-08-18 21:35:11.761055+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc8a7 type 3
2026-08-18 21:35:11.761056+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14466627, jobj_id range 14469170+116
2026-08-18 21:35:11.761166+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14466627 on dir 14469169, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PROOFREADING_REVIEW_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:11.776398+0900 0x199a     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: sharingd(702) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:35:11.776401+0900 0x199a     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 702, sharingd
2026-08-18 21:35:11.925106+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:11.925147+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:11.925149+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 13312 features 0 internal  VEK
2026-08-18 21:35:11.926794+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SHOR successfully validated on-disk root hash
2026-08-18 21:35:11.926801+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a12be type 3
2026-08-18 21:35:11.926803+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1704058, jobj_id range 1707904+150
2026-08-18 21:35:11.926899+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1704058 on dir 1707903, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_V2_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:11.974151+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:11.974189+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:11.974192+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:11.975822+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SUGG successfully validated on-disk root hash
2026-08-18 21:35:11.975830+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0f07 type 3
2026-08-18 21:35:11.975832+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1700875, jobj_id range 1707543+116
2026-08-18 21:35:11.975930+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1700875 on dir 1707542, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SUGGEST_RECIPE_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.010482+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.010505+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.010507+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:12.012137+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_FM_A successfully validated on-disk root hash
2026-08-18 21:35:12.012144+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc745 type 3
2026-08-18 21:35:12.012146+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14461068, jobj_id range 14468816+116
2026-08-18 21:35:12.012246+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14461068 on dir 14468815, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_FM_API_GENERIC_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.043658+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.043696+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.043698+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 77312 features 0 internal  VEK
2026-08-18 21:35:12.046195+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_BA successfully validated on-disk root hash
2026-08-18 21:35:12.046203+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a066a type 3
2026-08-18 21:35:12.046206+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1588657, jobj_id range 1705440+135
2026-08-18 21:35:12.046330+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1588657 on dir 1705439, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.067328+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.067356+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.067358+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:12.069201+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_PROF successfully validated on-disk root hash
2026-08-18 21:35:12.069212+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a07d2 type 3
2026-08-18 21:35:12.069214+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1618299, jobj_id range 1705699+116
2026-08-18 21:35:12.069310+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1618299 on dir 1705698, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_PROFESSIONAL_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.083851+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.083924+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.083927+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 166400 features 0 internal  VEK
2026-08-18 21:35:12.087240+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SIRI_ASR_ASSISTANT_EN_US_EN_ successfully validated on-disk root hash
2026-08-18 21:35:12.087252+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcadcb type 3
2026-08-18 21:35:12.087255+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14460120, jobj_id range 14461832+458
2026-08-18 21:35:12.087370+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14460120 on dir 14461831, dev_name [UC_SIRI_ASR_ASSISTANT_EN_US_EN_US_H15S_Cryptex.dmg]
2026-08-18 21:35:12.116223+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.116243+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.116245+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 7168 features 0 internal  VEK
2026-08-18 21:35:12.118431+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MAIL successfully validated on-disk root hash
2026-08-18 21:35:12.118444+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0c0a type 3
2026-08-18 21:35:12.118446+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1679841, jobj_id range 1706899+116
2026-08-18 21:35:12.118544+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1679841 on dir 1706898, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MAIL_REPLY_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.120243+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071289 tx stats: # 160 owait 13 1176us finish 160 bar2 160 f 3 enter 23 fq 51 63 288us close 0us prep 178us flush 262us
2026-08-18 21:35:12.148494+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.148538+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.148540+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:12.153366+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_OPEN successfully validated on-disk root hash
2026-08-18 21:35:12.153375+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc659 type 3
2026-08-18 21:35:12.153377+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14403375, jobj_id range 14468580+116
2026-08-18 21:35:12.153480+0900 0x12ba     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14403375 on dir 14468579, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.176593+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.176608+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.176610+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:12.181389+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_TEXT successfully validated on-disk root hash
2026-08-18 21:35:12.181398+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc831 type 3
2026-08-18 21:35:12.181401+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14466449, jobj_id range 14469052+116
2026-08-18 21:35:12.181509+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14466449 on dir 14469051, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_PERSON_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.213839+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.213856+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.213858+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:12.216171+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_MACH successfully validated on-disk root hash
2026-08-18 21:35:12.216179+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc7bb type 3
2026-08-18 21:35:12.216181+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14465641, jobj_id range 14468934+116
2026-08-18 21:35:12.216285+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14465641 on dir 14468933, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_MACHINE_TRANSLATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.248999+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.249021+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.249023+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:12.251007+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_TEXT successfully validated on-disk root hash
2026-08-18 21:35:12.251015+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0b1a type 3
2026-08-18 21:35:12.251017+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1655456, jobj_id range 1706539+116
2026-08-18 21:35:12.251118+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1655456 on dir 1706538, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_TEXT_EVENT_EXTRACTION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.278791+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.278808+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.278810+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 7168 features 0 internal  VEK
2026-08-18 21:35:12.281110+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SUMM successfully validated on-disk root hash
2026-08-18 21:35:12.281120+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc91d type 3
2026-08-18 21:35:12.281125+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14467237, jobj_id range 14469288+116
2026-08-18 21:35:12.281234+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14467237 on dir 14469287, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SUMMARIZATION_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.319889+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.319922+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.319924+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 253952 features 0 internal  VEK
2026-08-18 21:35:12.324435+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_BASE successfully validated on-disk root hash
2026-08-18 21:35:12.324446+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0e16 type 3
2026-08-18 21:35:12.324448+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1685582, jobj_id range 1707411+128
2026-08-18 21:35:12.324674+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1685582 on dir 1707410, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_BASE_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.337109+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.337147+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.337151+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 62464 features 0 internal  VEK
2026-08-18 21:35:12.339552+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_IF_PLANNER_NLROUTER_BASE_KO_ successfully validated on-disk root hash
2026-08-18 21:35:12.339558+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x187c28 type 3
2026-08-18 21:35:12.339561+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1586107, jobj_id range 1604598+46
2026-08-18 21:35:12.339750+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1586107 on dir 1604597, dev_name [UC_IF_PLANNER_NLROUTER_BASE_KO_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.355253+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.355297+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.355299+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 41472 features 0 internal  VEK
2026-08-18 21:35:12.357572+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SPEECH_ASR_TRANSCRIPTION_KO_ successfully validated on-disk root hash
2026-08-18 21:35:12.357580+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xde19e8 type 3
2026-08-18 21:35:12.357583+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14553470, jobj_id range 14555507+68
2026-08-18 21:35:12.357721+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14553470 on dir 14555503, dev_name [UC_SPEECH_ASR_TRANSCRIPTION_KO_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.387755+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.387772+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.387774+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 1024 features 0 internal  VEK
2026-08-18 21:35:12.390208+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: SECUREPKITRUSTSTOREASSETS_SECUR successfully validated on-disk root hash
2026-08-18 21:35:12.390217+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x37ecf3 type 3
2026-08-18 21:35:12.390221+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 3664701, jobj_id range 3664795+34
2026-08-18 21:35:12.390319+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 3664701 on dir 3664794, dev_name [SECUREPKITRUSTSTOREASSETS_SECUREPKITRUSTSTORE_Cryptex.dmg]
2026-08-18 21:35:12.406498+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.406584+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.406586+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 324096 features 0 internal  VEK
2026-08-18 21:35:12.410201+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_VISUAL_IMAGE_DIFFUSION_V1 successfully validated on-disk root hash
2026-08-18 21:35:12.410213+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x197f9e type 3
2026-08-18 21:35:12.410216+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1604359, jobj_id range 1670854+196
2026-08-18 21:35:12.410424+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1604359 on dir 1670851, dev_name [UC_FM_VISUAL_IMAGE_DIFFUSION_V1_BASE_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.474464+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.474482+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.474484+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:12.476515+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_CONC successfully validated on-disk root hash
2026-08-18 21:35:12.476523+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a093a type 3
2026-08-18 21:35:12.476525+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1641368, jobj_id range 1706059+116
2026-08-18 21:35:12.476628+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1641368 on dir 1706058, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_CONCISE_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.553668+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.553689+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.553691+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 50176 features 0 internal  VEK
2026-08-18 21:35:12.555915+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_IMAG successfully validated on-disk root hash
2026-08-18 21:35:12.555923+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdccc13 type 3
2026-08-18 21:35:12.555925+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14467978, jobj_id range 14469406+28
2026-08-18 21:35:12.556185+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14467978 on dir 14469405, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.598246+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.598270+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.598272+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 55808 features 0 internal  VEK
2026-08-18 21:35:12.600452+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_IM successfully validated on-disk root hash
2026-08-18 21:35:12.600460+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0c2a type 3
2026-08-18 21:35:12.600462+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1681663, jobj_id range 1707019+28
2026-08-18 21:35:12.600583+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1681663 on dir 1707018, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_IMAGE_TOKENIZER_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.742881+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.742933+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.742935+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 133120 features 0 internal  VEK
2026-08-18 21:35:12.743023+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071309 tx stats: # 180 owait 14 1145us finish 180 bar2 180 f 3 enter 658 fq 84 280 821us close 0us prep 1499us flush 1009us
2026-08-18 21:35:12.749004+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_SIRI_ASR_ASSISTANT_KO_KR_KO_ successfully validated on-disk root hash
2026-08-18 21:35:12.749014+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcab87 type 3
2026-08-18 21:35:12.749017+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14398070, jobj_id range 14461497+331
2026-08-18 21:35:12.749147+0900 0x1299     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14398070 on dir 14461496, dev_name [UC_SIRI_ASR_ASSISTANT_KO_KR_KO_KR_H15S_Cryptex.dmg]
2026-08-18 21:35:12.803953+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.803972+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.803974+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:12.805540+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_SHOR successfully validated on-disk root hash
2026-08-18 21:35:12.805549+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0d92 type 3
2026-08-18 21:35:12.805552+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1684620, jobj_id range 1707291+116
2026-08-18 21:35:12.805649+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1684620 on dir 1707290, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_SHORTCUTS_ASK_AFM_ACTION_3B_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:12.941890+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:12.941939+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:12.941943+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:12.943321+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_REMI successfully validated on-disk root hash
2026-08-18 21:35:12.943332+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0d1a type 3
2026-08-18 21:35:12.943334+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1684144, jobj_id range 1707171+116
2026-08-18 21:35:12.943432+0900 0x152b     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1684144 on dir 1707170, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_REMINDERS_SUGGEST_ACTION_ITEMS_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:13.165790+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:13.165827+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:13.165829+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:13.167789+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_OP successfully validated on-disk root hash
2026-08-18 21:35:13.167800+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0xdcc6cf type 3
2026-08-18 21:35:13.167805+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 14459878, jobj_id range 14468698+116
2026-08-18 21:35:13.167905+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 14459878 on dir 14468697, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_OPEN_ENDED_EXTRACT_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:13.219346+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:13.219370+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:13.219372+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:13.221178+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_300M_AD successfully validated on-disk root hash
2026-08-18 21:35:13.221188+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0a2a type 3
2026-08-18 21:35:13.221190+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1645820, jobj_id range 1706299+116
2026-08-18 21:35:13.221415+0900 0x128e     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1645820 on dir 1706298, dev_name [UC_FM_LANGUAGE_INSTRUCT_300M_ADM_PROMPT_REWRITING_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:13.228317+0900 0x122a     Default     0x0                  0      0    kernel: (apfs) print_unknown_ioctl:14288: disk3s5 unknown ioctl _IOW('X', 2, 48) (0x80305802), pid = 355
2026-08-18 21:35:13.503369+0900 0xf7a      Default     0x0                  0      0    kernel: (Sandbox) Sandbox: icdd(798) allow mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:35:13.527532+0900 0xf7a      Default     0x0                  0      0    kernel: (Sandbox) 2 duplicate reports for Sandbox: icdd(798) allow mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:35:13.791491+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:685: disk3s5 Grafting on a PFK volume
2026-08-18 21:35:13.791524+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:439: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg GRAFT (compiled @ Jun  9 2026 22:08:36)
2026-08-18 21:35:13.791526+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) graft_dev_init:443: disk3 UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg device_handle block size 4096 real block size 4096 block count 10752 features 0 internal  VEK
2026-08-18 21:35:13.794038+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) authenticate_root_hash:699: UC_FM_LANGUAGE_INSTRUCT_3B_FRIE successfully validated on-disk root hash
2026-08-18 21:35:13.794048+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_lookup_ge_jobj_id:5042: disk3s5 Found OBJID 0x1a0b92 type 3
2026-08-18 21:35:13.794050+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1035: disk3s5 Graft ino 1666752, jobj_id range 1706779+116
2026-08-18 21:35:13.794184+0900 0x153a     Default     0x0                  0      0    kernel: (apfs) apfs_graft:1128: disk3s5 successfully grafted ino 1666752 on dir 1706778, dev_name [UC_FM_LANGUAGE_INSTRUCT_3B_FRIENDLY_TONE_DRAFT_GENERIC_GENERIC_H15S_Cryptex.dmg]
2026-08-18 21:35:14.110168+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071329 tx stats: # 200 owait 15 1085us finish 200 bar2 200 f 3 enter 317 fq 54 384 373us close 0us prep 360us flush 253us
2026-08-18 21:35:14.894336+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071349 tx stats: # 220 owait 20 1110us finish 220 bar2 220 f 18 enter 126 fq 74 285 447us close 57us prep 120us flush 490us
2026-08-18 21:35:15.412221+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071369 tx stats: # 240 owait 23 1071us finish 241 bar2 240 f 28 enter 182 fq 72 179 698us close 1us prep 277us flush 1491us
2026-08-18 21:35:15.526525+0900 0x222c     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:35:15.526530+0900 0x222c     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 899); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:15.526538+0900 0x222c     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4071373)
2026-08-18 21:35:15.530488+0900 0x222c     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:35:15.530548+0900 0x222c     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:35:15.530592+0900 0x222c     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:35:15.530631+0900 0x222c     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 899); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:15.538227+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 21:35:15.538236+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 21:35:15.538290+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 21:35:15.538298+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 21:35:15.538468+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_stop_bg_work_ext:928: disk3s1 Volume Macintosh HD is unmounting, stop any bg work
2026-08-18 21:35:15.538967+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 593); parent: launchd (pid 1)
2026-08-18 21:35:15.538978+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:35:15.540573+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:35:15.541617+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:35:15.569267+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:35:15.569275+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 903); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:15.569281+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4071375)
2026-08-18 21:35:15.572343+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:35:15.572398+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 21:35:15.572428+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 792587
2026-08-18 21:35:15.572441+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 21:35:15.858599+0900 0x22a2     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 21:35:15.890380+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 771519 -> 774947
2026-08-18 21:35:15.954532+0900 0x22c2     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4071376-4071376
2026-08-18 21:35:16.006274+0900 0x22c2     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4071376, om_snap_count 1 om_most_recent_snap 4071376
2026-08-18 21:35:16.006281+0900 0x22c2     Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4071376
2026-08-18 21:35:16.006842+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 21:35:16.006981+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4071389)
2026-08-18 21:35:16.008471+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071389 tx stats: # 260 owait 36 11526us finish 261 bar2 260 f 33 enter 150 fq 44 54 260us close 311us prep 118us flush 736us
2026-08-18 21:35:16.008595+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:35:16.008645+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:35:16.008686+0900 0x224d     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 903); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:16.014603+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 593); parent: launchd (pid 1)
2026-08-18 21:35:16.014622+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:35:16.035588+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:35:16.036068+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:35:16.138783+0900 0x22ff     Default     0x0                  0      0    kernel: (apfs) er_state_obj_get_for_recovery:8414: disk3s3 No ER state object for volume Recovery - rolling is not happening, nothing to recover.
2026-08-18 21:35:16.138793+0900 0x22ff     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mounting volume Recovery, requested by: mount_apfs (pid 938); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:16.138878+0900 0x22ff     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s3 vol-uuid: AFF3FAD3-F8B8-4D30-93D2-AF57586E4C51 block size: 4096 block count: 120699413 (unencrypted; flags: 0x1; features: 1.0.2)
2026-08-18 21:35:16.148156+0900 0x22ff     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s3 setting dev block size to 4096 from 512
2026-08-18 21:35:16.148167+0900 0x22ff     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 21:35:16.148223+0900 0x22ff     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 mount-complete volume Recovery, requested by: mount_apfs (pid 938); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:16.173133+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_stop_bg_work_ext:928: disk3s3 Volume Recovery is unmounting, stop any bg work
2026-08-18 21:35:16.174015+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s3 unmounting volume Recovery, requested by: com.apple.MobileSoftwareUpdate. (pid 593); parent: launchd (pid 1)
2026-08-18 21:35:16.174027+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s3 waiting for purgatory cleaner to finish
2026-08-18 21:35:16.179834+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_update:706: disk3s3 Volume Recovery role 0x4 is not a System or Data volume
2026-08-18 21:35:16.180077+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:35:16.200080+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071409 tx stats: # 280 owait 38 10928us finish 281 bar2 280 f 38 enter 19 fq 31 43 136us close 2us prep 68us flush 130us
2026-08-18 21:35:16.214455+0900 0x231e     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:35:16.214465+0900 0x231e     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 939); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:16.214474+0900 0x231e     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4071416)
2026-08-18 21:35:16.223681+0900 0x231e     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:35:16.223728+0900 0x231e     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:35:16.223773+0900 0x231e     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:35:16.223808+0900 0x231e     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 939); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:16.236117+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5834: disk3 nx_global_extent_manipulation_lock(0, 1), (0, 0, 0, 0)
2026-08-18 21:35:16.236127+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_lock:5904: disk3 Shared global_extent_manipulation lock taken after 0 attempts
2026-08-18 21:35:16.236150+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) handle_revert_to_snapshot:8149: disk3s1 On next mount, volume will revert to snapshot 'com.apple.os.update-5B92CE4BA1034457A0921532291F4A4AD939CBE48D3A1381163A9AD3687D5694' w/snap xid 3094032
2026-08-18 21:35:16.236155+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) nx_global_extent_manipulation_unlock:5929: disk3 nx_global_extent_manipulation_unlock(0, 1), (0, 0, 1, 1)
2026-08-18 21:35:16.236691+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 593); parent: launchd (pid 1)
2026-08-18 21:35:16.236702+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:35:16.242398+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:35:16.242519+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:35:16.264538+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) apfs_mount:30318: disk3s1 EALREADY; rooted from snap, apfs <private>
2026-08-18 21:35:16.264546+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mounting volume Macintosh HD, requested by: mount_apfs (pid 947); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:16.264875+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4071426)
2026-08-18 21:35:16.266308+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) apfs_mount_livefs:30015: disk3 mount no firmlinks
2026-08-18 21:35:16.266370+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1614: disk3s1 Reverting to snapshot w/xid 3094032 and old sblock oid 772830.
2026-08-18 21:35:16.266402+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) revert_extents_to_snapshot:1426: disk3s1 free'ing extents in main extentref tree 772421
2026-08-18 21:35:16.266416+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) free_allocated_snapshot_extents:1338: disk3s1 processed 0 extents and free'd 0 blocks
2026-08-18 21:35:16.297818+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) supplemental_tree_revert:311: disk3s1 reverted supplemental tree (type 5): 774947 -> 778436
2026-08-18 21:35:16.310613+0900 0x2355     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1560: disk3s1 started cleaning snapshots 4071427-4071427
2026-08-18 21:35:16.325354+0900 0x2355     Default     0x0                  0      0    kernel: (apfs) omap_cleanup:1785: disk3s1 completed cleaning snapshot 4071427, om_snap_count 1 om_most_recent_snap 4071427
2026-08-18 21:35:16.325359+0900 0x2355     Default     0x0                  0      0    kernel: (apfs) obj_cache_remove_reverted_fs_objects:1870: disk3s1 removing reverted fs objects for fs 1026: 3094033 - 4071427
2026-08-18 21:35:16.383069+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) revert_to_snapshot:1718: disk3s1 DONE reverting to snapshot w/xid 3094032
2026-08-18 21:35:16.383667+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_break:504: disk3s1 integrity protection will be disabled (from xid: 4071429)
2026-08-18 21:35:16.386238+0900 0xf7a      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(935) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:35:16.389881+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071429 tx stats: # 300 owait 42 10540us finish 300 bar2 300 f 46 enter 353 fq 31 36 162us close 1992us prep 1260us flush 11898us
2026-08-18 21:35:16.390636+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) handle_mount:890: disk3s1 vol-uuid: 9AE693C3-3AF8-479E-98D6-C002F42730D1 block size: 4096 block count: 120699413 (unencrypted; flags: 0x201; features: 21.0.12)
2026-08-18 21:35:16.390677+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) handle_mount:903: disk3s1 setting dev block size to 4096 from 512
2026-08-18 21:35:16.390722+0900 0x234a     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 mount-complete volume Macintosh HD, requested by: mount_apfs (pid 947); parent: com.apple.Mobile (pid 593)
2026-08-18 21:35:16.408149+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_log_op_with_proc:3227: disk3s1 unmounting volume Macintosh HD, requested by: com.apple.MobileSoftwareUpdate. (pid 593); parent: launchd (pid 1)
2026-08-18 21:35:16.408163+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3378: disk3s1 waiting for purgatory cleaner to finish
2026-08-18 21:35:16.408778+0900 0xfd3      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(935) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:35:16.426313+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) authapfs_seal_restore:604: disk3s1 integrity protection will be re-enabled
2026-08-18 21:35:16.426598+0900 0x2202     Default     0x0                  0      0    kernel: (apfs) apfs_vfsop_unmount:3708: disk3 nx_num_vols_mounted is 5
2026-08-18 21:35:16.597735+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071449 tx stats: # 320 owait 45 10109us finish 320 bar2 320 f 56 enter 1260 fq 68 2732 463us close 0us prep 1699us flush 3638us
2026-08-18 21:35:17.075072+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071469 tx stats: # 340 owait 47 9692us finish 340 bar2 340 f 73 enter 185 fq 71 96 569us close 2us prep 263us flush 2145us
2026-08-18 21:35:18.346962+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071489 tx stats: # 360 owait 49 9341us finish 360 bar2 360 f 76 enter 114 fq 48 3156 802us close 5us prep 637us flush 820us
2026-08-18 21:35:18.449548+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071509 tx stats: # 380 owait 55 8357us finish 381 bar2 380 f 85 enter 9 fq 31 35 263us close 2us prep 124us flush 2454us
2026-08-18 21:35:18.571806+0900 0xf78      Error       0x0                  0      0    kernel: (Sandbox) Sandbox: SetStoreUpdateService(1012) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:35:18.609739+0900 0x2366     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: SetStoreUpdateService(1012) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:35:21.119372+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071529 tx stats: # 400 owait 58 7950us finish 401 bar2 400 f 91 enter 1569 fq 84 326 701us close 0us prep 957us flush 3390us
2026-08-18 21:35:22.315609+0900 0x285c     Default     0x0                  0      0    kernel: (HFS) hfs: mounted JetBrains Toolbox on device disk4s1
2026-08-18 21:35:23.657966+0900 0x28a3     Default     0x0                  0      0    kernel: (HFS) hfs: unmount initiated on JetBrains Toolbox on device disk4s1
2026-08-18 21:35:24.135328+0900 0x22e9     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 21:35:24.165026+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071549 tx stats: # 420 owait 58 7950us finish 421 bar2 420 f 92 enter 296 fq 110 658 1127us close 0us prep 594us flush 701us
2026-08-18 21:35:25.345190+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071569 tx stats: # 440 owait 58 7950us finish 441 bar2 440 f 92 enter 41 fq 38 66 908us close 1us prep 698us flush 867us
2026-08-18 21:35:25.553960+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071589 tx stats: # 460 owait 58 7950us finish 461 bar2 460 f 92 enter 8 fq 18 21 276us close 0us prep 177us flush 460us
2026-08-18 21:35:25.876732+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071609 tx stats: # 480 owait 62 7467us finish 481 bar2 480 f 92 enter 34 fq 40 48 375us close 0us prep 240us flush 342us
2026-08-18 21:35:26.031801+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071629 tx stats: # 500 owait 64 7242us finish 501 bar2 500 f 92 enter 34 fq 29 39 262us close 0us prep 196us flush 327us
2026-08-18 21:35:26.442715+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071649 tx stats: # 520 owait 64 7242us finish 521 bar2 520 f 92 enter 53 fq 75 447 686us close 6us prep 263us flush 397us
2026-08-18 21:35:27.604720+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071669 tx stats: # 540 owait 65 7139us finish 541 bar2 540 f 92 enter 51 fq 32 64 249us close 1us prep 176us flush 335us
2026-08-18 21:35:27.809279+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071689 tx stats: # 560 owait 70 6695us finish 561 bar2 560 f 92 enter 52 fq 56 74 483us close 0us prep 128us flush 222us
2026-08-18 21:35:31.726116+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071709 tx stats: # 580 owait 71 6603us finish 581 bar2 580 f 93 enter 314 fq 116 2145 1085us close 0us prep 602us flush 6050us
2026-08-18 21:35:33.611292+0900 0x1d0e     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(709) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 21:35:54.475220+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071729 tx stats: # 600 owait 71 6603us finish 614 bar2 600 f 97 enter 13 fq 16 22 373us close 1us prep 580us flush 557us
2026-08-18 21:36:01.017506+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071749 tx stats: # 620 owait 71 6603us finish 634 bar2 620 f 97 enter 1 fq 11 14 196us close 0us prep 189us flush 373us
2026-08-18 21:36:09.750670+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071769 tx stats: # 640 owait 71 6603us finish 654 bar2 640 f 98 enter 217 fq 19 22 233us close 0us prep 818us flush 837us
2026-08-18 21:36:10.564769+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071789 tx stats: # 660 owait 71 6603us finish 674 bar2 660 f 98 enter 6 fq 53 80 1059us close 0us prep 239us flush 384us
2026-08-18 21:36:11.926051+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071809 tx stats: # 680 owait 71 6603us finish 694 bar2 680 f 98 enter 26 fq 136 151 1611us close 0us prep 276us flush 335us
2026-08-18 21:36:12.008244+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071829 tx stats: # 700 owait 74 6353us finish 714 bar2 700 f 98 enter 35 fq 22 27 227us close 6us prep 452us flush 660us
2026-08-18 21:36:20.561448+0900 0x2f97     Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29831734/29831734 pl_offset 0 f_offset 0 size 16384 file size 0 error 22 (mds_stores)
2026-08-18 21:36:20.595207+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071849 tx stats: # 720 owait 75 6272us finish 734 bar2 720 f 108 enter 46 fq 70 5010 1387us close 0us prep 430us flush 858us
2026-08-18 21:36:23.867138+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071869 tx stats: # 740 owait 75 6272us finish 754 bar2 740 f 108 enter 77 fq 83 124 2318us close 0us prep 507us flush 652us
2026-08-18 21:36:36.724887+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071889 tx stats: # 760 owait 75 6272us finish 775 bar2 759 f 109 enter 30 fq 50 69 626us close 0us prep 453us flush 1932us
2026-08-18 21:36:37.882952+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071909 tx stats: # 780 owait 76 6197us finish 794 bar2 779 f 113 enter 23 fq 52 67 772us close 0us prep 289us flush 2586us
2026-08-18 21:36:38.876025+0900 0x2f97     Default     0x0                  0      0    kernel: (apfs) apfs_pagein:15352: disk3s5 ino 29831819/29831819 pl_offset 0 f_offset 0 size 16384 file size 0 error 22 (mds_stores)
2026-08-18 21:36:38.916505+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071929 tx stats: # 800 owait 77 6118us finish 814 bar2 799 f 124 enter 36 fq 56 2493 453us close 103us prep 194us flush 407us
2026-08-18 21:36:39.037045+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071949 tx stats: # 820 owait 77 6118us finish 834 bar2 819 f 125 enter 15 fq 83 5502 656us close 0us prep 226us flush 277us
2026-08-18 21:36:46.331869+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071969 tx stats: # 840 owait 79 6014us finish 854 bar2 839 f 127 enter 31 fq 86 116 1926us close 0us prep 524us flush 558us
2026-08-18 21:36:47.696505+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4071989 tx stats: # 860 owait 80 5960us finish 872 bar2 857 f 127 enter 455 fq 48 64 655us close 0us prep 1350us flush 2201us
2026-08-18 21:36:53.420021+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072009 tx stats: # 880 owait 82 5837us finish 889 bar2 873 f 128 enter 171 fq 56 102 950us close 2us prep 815us flush 686us
2026-08-18 21:37:14.146955+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072029 tx stats: # 900 owait 82 5837us finish 909 bar2 893 f 132 enter 361 fq 112 2156 1916us close 0us prep 317us flush 477us
2026-08-18 21:37:30.925149+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072049 tx stats: # 920 owait 83 5769us finish 929 bar2 913 f 138 enter 4380 fq 21 24 415us close 0us prep 1650us flush 1285us
2026-08-18 21:37:38.643637+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072069 tx stats: # 940 owait 83 5769us finish 949 bar2 933 f 143 enter 287 fq 22 220 541us close 0us prep 1482us flush 4147us
2026-08-18 21:37:51.219974+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072089 tx stats: # 960 owait 84 5704us finish 970 bar2 953 f 143 enter 113 fq 107 132 1001us close 0us prep 421us flush 465us
2026-08-18 21:38:14.124673+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072109 tx stats: # 980 owait 84 5704us finish 990 bar2 973 f 147 enter 44 fq 24 40 356us close 0us prep 298us flush 1212us
2026-08-18 21:38:17.804162+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072129 tx stats: # 1000 owait 85 5644us finish 1012 bar2 993 f 148 enter 46 fq 45 59 290us close 0us prep 344us flush 1192us
2026-08-18 21:38:28.533793+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072149 tx stats: # 1020 owait 85 5644us finish 1032 bar2 1013 f 155 enter 467 fq 53 277 626us close 0us prep 955us flush 6630us
2026-08-18 21:38:36.414756+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072169 tx stats: # 1040 owait 85 5644us finish 1052 bar2 1033 f 156 enter 531 fq 140 181 1227us close 0us prep 529us flush 848us
2026-08-18 21:38:38.546241+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072189 tx stats: # 1060 owait 85 5644us finish 1072 bar2 1053 f 156 enter 165 fq 24 34 187us close 0us prep 2209us flush 1874us
2026-08-18 21:38:44.341864+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072209 tx stats: # 1080 owait 85 5644us finish 1092 bar2 1073 f 160 enter 23 fq 36 49 649us close 0us prep 375us flush 679us
2026-08-18 21:39:02.841787+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072229 tx stats: # 1100 owait 86 5583us finish 1112 bar2 1093 f 160 enter 461 fq 53 399 858us close 0us prep 743us flush 744us
2026-08-18 21:39:11.439597+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072249 tx stats: # 1120 owait 87 5525us finish 1132 bar2 1113 f 165 enter 2808 fq 56 184 883us close 2us prep 1413us flush 1086us
2026-08-18 21:39:18.853764+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072269 tx stats: # 1140 owait 87 5525us finish 1152 bar2 1133 f 171 enter 23 fq 27 41 422us close 0us prep 190us flush 616us
2026-08-18 21:39:21.045815+0900 0x445e     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(2050) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:39:21.747254+0900 0x41f7     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: nsattributedstringagent(2057) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:39:29.000299+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072289 tx stats: # 1160 owait 87 5525us finish 1172 bar2 1153 f 171 enter 24 fq 55 79 487us close 0us prep 258us flush 423us
2026-08-18 21:39:43.809195+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072309 tx stats: # 1180 owait 87 5525us finish 1192 bar2 1173 f 175 enter 30 fq 20 60 261us close 0us prep 173us flush 370us
2026-08-18 21:39:46.799870+0900 0x291d     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 21:40:05.334290+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072329 tx stats: # 1200 owait 89 5464us finish 1212 bar2 1193 f 176 enter 161 fq 177 262 1458us close 0us prep 524us flush 2024us
2026-08-18 21:40:22.102892+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072349 tx stats: # 1220 owait 89 5464us finish 1232 bar2 1213 f 186 enter 613 fq 27 98 401us close 0us prep 7861us flush 2311us
2026-08-18 21:40:25.025352+0900 0x49f3     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: MessagesBlastDoorService(2085) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:40:25.037439+0900 0x4c84     Error       0x0                  0      0    kernel: (Sandbox) 1 duplicate report for Sandbox: MessagesBlastDoorService(2085) deny(1) mach-lookup com.apple.DiskArbitration.diskarbitrationd
2026-08-18 21:40:36.157910+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072369 tx stats: # 1240 owait 89 5464us finish 1252 bar2 1233 f 186 enter 179 fq 18 72 327us close 0us prep 4744us flush 1995us
2026-08-18 21:40:54.384629+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072389 tx stats: # 1260 owait 90 5406us finish 1272 bar2 1253 f 190 enter 254 fq 19 25 282us close 0us prep 754us flush 994us
2026-08-18 21:41:20.616579+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072409 tx stats: # 1280 owait 90 5406us finish 1292 bar2 1273 f 198 enter 31 fq 15 19 324us close 0us prep 283us flush 1701us
2026-08-18 21:41:37.699685+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072429 tx stats: # 1300 owait 90 5406us finish 1312 bar2 1293 f 201 enter 165 fq 64 204 1766us close 0us prep 1299us flush 1355us
2026-08-18 21:41:40.440317+0900 0x48be     Default     0x0                  0      0    kernel: (apfs) clear_purgeability_log:1797: disk3s5 apfs_vnop_mmap : coresymbolicationd clearing purgeability on ino 27680891 (data ; parent-id 23130522)
2026-08-18 21:41:50.664030+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072449 tx stats: # 1320 owait 92 5309us finish 1332 bar2 1313 f 201 enter 80 fq 32 198 524us close 2us prep 549us flush 571us
2026-08-18 21:42:19.060329+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072469 tx stats: # 1340 owait 92 5309us finish 1352 bar2 1333 f 206 enter 268 fq 128 195 1564us close 0us prep 1057us flush 2558us
2026-08-18 21:42:46.491492+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072489 tx stats: # 1360 owait 92 5309us finish 1372 bar2 1353 f 214 enter 776 fq 33 46 596us close 0us prep 862us flush 1026us
2026-08-18 21:43:05.040889+0900 0x5a81     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(709) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 21:43:11.460523+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072509 tx stats: # 1380 owait 92 5309us finish 1392 bar2 1373 f 221 enter 33 fq 38 237 684us close 0us prep 345us flush 1671us
2026-08-18 21:43:59.819022+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072529 tx stats: # 1400 owait 93 5274us finish 1412 bar2 1393 f 233 enter 59 fq 22 32 318us close 0us prep 414us flush 622us
2026-08-18 21:44:33.469782+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072549 tx stats: # 1420 owait 95 5169us finish 1432 bar2 1413 f 243 enter 103 fq 31 107 243us close 0us prep 407us flush 573us
2026-08-18 21:45:08.034880+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072569 tx stats: # 1440 owait 100 4952us finish 1452 bar2 1433 f 247 enter 74 fq 30 257 560us close 0us prep 479us flush 793us
2026-08-18 21:45:23.468123+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072589 tx stats: # 1460 owait 103 4842us finish 1472 bar2 1453 f 253 enter 498 fq 59 71 511us close 1073us prep 897us flush 1227us
2026-08-18 21:45:27.565555+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072609 tx stats: # 1480 owait 104 4799us finish 1492 bar2 1473 f 253 enter 1565 fq 84 122 1119us close 0us prep 3137us flush 1510us
2026-08-18 21:45:34.678193+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072629 tx stats: # 1500 owait 104 4799us finish 1512 bar2 1493 f 257 enter 146 fq 46 144 693us close 0us prep 806us flush 848us
2026-08-18 21:45:56.491404+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072649 tx stats: # 1520 owait 104 4799us finish 1532 bar2 1513 f 261 enter 675 fq 21 562 472us close 0us prep 989us flush 2500us
2026-08-18 21:46:19.487038+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072669 tx stats: # 1540 owait 104 4799us finish 1552 bar2 1533 f 269 enter 17 fq 46 285 722us close 0us prep 223us flush 2359us
2026-08-18 21:46:46.745634+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072689 tx stats: # 1560 owait 104 4799us finish 1573 bar2 1553 f 280 enter 411 fq 25 33 582us close 0us prep 652us flush 1368us
2026-08-18 21:47:22.831471+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072709 tx stats: # 1580 owait 104 4799us finish 1593 bar2 1573 f 287 enter 30 fq 19 25 476us close 0us prep 375us flush 3498us
2026-08-18 21:48:25.564229+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072729 tx stats: # 1600 owait 104 4799us finish 1613 bar2 1593 f 296 enter 108 fq 115 217 1795us close 0us prep 483us flush 729us
2026-08-18 21:49:19.710426+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072749 tx stats: # 1620 owait 104 4799us finish 1633 bar2 1613 f 305 enter 123 fq 137 173 1438us close 0us prep 376us flush 2424us
2026-08-18 21:50:28.503922+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072769 tx stats: # 1640 owait 104 4799us finish 1653 bar2 1633 f 318 enter 124 fq 17 22 132us close 0us prep 796us flush 1321us
2026-08-18 21:50:52.630412+0900 0x7510     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: duetexpertd(709) deny(1) file-read-xattr /Users/[REDACTED]/Library/Mobile Documents/.Trash/[REDACTED]
2026-08-18 21:51:19.894129+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072789 tx stats: # 1660 owait 104 4799us finish 1673 bar2 1653 f 329 enter 7 fq 27 66 447us close 0us prep 219us flush 1995us
2026-08-18 21:51:28.811117+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:28.811128+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:28.811326+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:28.815918+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:28.815955+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:28.864397+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00f800c5 DWORD10=0x00000000 NVMeStatus=0x2
2026-08-18 21:51:28.864415+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x000500F8
2026-08-18 21:51:28.864424+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 21:51:28.864433+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0x2
2026-08-18 21:51:28.864440+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 21:51:28.864557+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x00f800c5 DWORD10=0x00000000 NVMeStatus=0x2
2026-08-18 21:51:28.864570+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x000500F8
2026-08-18 21:51:28.864578+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 21:51:28.864588+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0x2
2026-08-18 21:51:28.864596+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 21:51:28.905256+0900 0x76aa     Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: ( isKeyUsed == true )
2026-08-18 21:51:28.905280+0900 0x76aa     Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleNVMeEAN.cpp
2026-08-18 21:51:28.905535+0900 0x76aa     Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: ( isKeyUsed == true )
2026-08-18 21:51:28.905549+0900 0x76aa     Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleNVMeEAN.cpp
2026-08-18 21:51:28.906547+0900 0x76aa     Default     0x0                  0      0    kernel: (IONVMeFamily) AppleNVMe Assert failed: ( isKeyUsed == true )
2026-08-18 21:51:28.906559+0900 0x76aa     Default     0x0                  0      0    kernel: (IONVMeFamily) file: /AppleInternal/Library/BuildRoots/4~CReXugDZ44ggbwoqqFAxaUBjhu9dMSlTjvVjgPw/Library/Caches/com.apple.xbs/TemporaryDirectory.ufu3gE/Sources/IONVMeFamily/Embedded/AppleNVMeEAN.cpp
2026-08-18 21:51:29.024243+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.024264+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.024411+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.027843+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.027863+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.156200+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.156220+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.156505+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.159660+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.159685+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.263040+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.263063+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.263253+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.267152+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.267168+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.373304+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.373324+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.373607+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.377558+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.377586+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.523570+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.523598+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.523825+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.528512+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.528543+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.622445+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.622473+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.622778+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.628148+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.628192+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.677934+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.677967+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.678144+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.682685+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.682712+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.755863+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.755892+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.756230+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.760839+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.760865+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.827870+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.827890+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.828046+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.830919+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.830943+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.897324+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.897344+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.897637+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.902629+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.902656+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:29.984275+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:29.984302+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:29.984528+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:29.987724+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:29.987748+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:30.057487+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:30.057512+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:30.057927+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:30.064677+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:30.064717+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:30.131669+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:30.131702+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:30.131942+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:30.136187+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:30.136214+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:30.204253+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:30.204273+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:30.204582+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:30.211130+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:30.211178+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:30.285600+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:30.285619+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:30.285826+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:30.290577+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:30.290615+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:30.357954+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:30.357977+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:30.358237+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:30.363524+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:30.363548+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:30.441311+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:30.441324+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:30.441468+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:30.444435+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:30.444455+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:30.488602+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:296: disk2 device accelerated crypto: 3 (compiled @ Jun  9 2026 22:08:35)
2026-08-18 21:51:30.488617+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) dev_init:299: disk2 device_handle block size 4096 block count 1310709 features 22 internal solidstate
2026-08-18 21:51:30.488828+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1230: disk2 initializing cache w/hash_size 8192 and cache size 32768
2026-08-18 21:51:30.492407+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1548: disk2 checkpoint search: largest xid 71, best xid 71 @ 37
2026-08-18 21:51:30.492430+0900 0x76aa     Default     0x0                  0      0    kernel: (apfs) nx_mount:1575: disk2 stable checkpoint indices: desc 36 data 285
2026-08-18 21:51:30.545325+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::HandleCompletionErrors(AppleNVMeRequest *, uint32_t)::5994:DWORD0=0x000400c5 DWORD10=0x00000000 NVMeStatus=0xc0
2026-08-18 21:51:30.545347+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5939:DW3: 0x01810004
2026-08-18 21:51:30.545351+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5944:Status Code Type: 0x0 (Generic Command Status)
2026-08-18 21:51:30.545355+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5948:Status Code: 0xC0
2026-08-18 21:51:30.545357+0900 0x26a      Default     0x0                  0      0    kernel: (IONVMeFamily) void IONVMeController::PrintCompletionErrorDetail(AppleNVMeRequest *, uint32_t)::5949:DNR: 0x0 M: 0x0
2026-08-18 21:52:19.957765+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072809 tx stats: # 1680 owait 104 4799us finish 1693 bar2 1673 f 339 enter 59 fq 97 1124 1024us close 0us prep 631us flush 1949us
2026-08-18 21:53:10.220788+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072829 tx stats: # 1700 owait 104 4799us finish 1713 bar2 1693 f 351 enter 68 fq 36 95 643us close 0us prep 592us flush 1982us
2026-08-18 21:53:15.555973+0900 0x390d     Error       0x0                  0      0    kernel: (Sandbox) Sandbox: iconservicesagent(653) deny(1) iokit-open-user-client AppleNVMeEANUC
2026-08-18 21:53:15.555974+0900 0x390d     Default     0x0                  0      0    kernel: IOUC AppleNVMeEANUC failed MACF in process pid 653, iconservicesagen
2026-08-18 21:53:17.022265+0900 0x7db1     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:53:17.357411+0900 0x7ee2     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:53:17.449112+0900 0x7f0a     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:53:17.557820+0900 0x7f33     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:53:18.196780+0900 0x7f76     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:53:19.019370+0900 0x7f86     Default     0x0                  0      0    kernel: (apfs) nx_volume_group_get_firmlinks:581: disk3 Found 17 firmlinks in group 398F441C-CCE1-471E-AA2A-F804CABE8548
2026-08-18 21:53:21.099975+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072849 tx stats: # 1720 owait 105 4762us finish 1733 bar2 1713 f 360 enter 12 fq 17 22 161us close 0us prep 260us flush 539us
2026-08-18 21:53:52.841377+0900 0xefa      Default     0x0                  0      0    kernel: (apfs) tx_flush:1344: disk3 xid 4072869 tx stats: # 1740 owait 105 4762us finish 1754 bar2 1733 f 365 enter 77 fq 91 136 1760us close 16us prep 390us flush 1844us
--------------------------------------------------------------------------------------------------------------------
Log      - Default:      8,072, Info:                0, Debug:             0, Error:        185, Fault:          0
Activity - Create:           0, Transition:          0, Actions:           0

Apple-Mac 시리즈

댓글