Add CentralLogging stack, Covance/EDC sources, email import + IWRS scripts

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-08 16:06:21 +02:00
parent af787d9f02
commit 5545f05eee
173 changed files with 21334 additions and 1 deletions
+1
View File
@@ -7,3 +7,4 @@ EmailsImport/SouboryRůznéVelikosti/
IWRS/Patients/Incoming/
Outlook/downloads/
Outlook/outlook_profile/
/OutlookVBCZ/
+158
View File
@@ -0,0 +1,158 @@
# CentralLogging — centrální logování (Loki + Grafana + FastAPI gateway)
**Verze:** 1.0 · **Datum:** 2026-06-08 · **Autor:** Vladimír Buzalka
Řešení pro sjednocení logů z rozházených skriptů projektu Janssen do jednoho
centrálního místa na Unraidu, **bez zrušení stávajícího souborového logování**.
Soubory a centrál běží paralelně; po ~měsíci ověřování se souborové logování
vypne jedním přepínačem.
---
## 1. Architektura
```
┌────────────────┐ HTTP POST /log/batch ┌──────────────┐ push ┌────────┐
│ Python skript │ ── Bearer token, JSON ──────▶ │ Log Gateway │ ───────▶ │ Loki │
│ (central_ │ (na pozadí, v dávkách) │ (FastAPI) │ /push │ (90 d) │
│ logging.py) │ └──────────────┘ └────┬───┘
│ │ │
│ + soubor .log │ (stávající RotatingFileHandler — zatím zůstává) │
└────────────────┘ ┌─────▼────┐
│ Grafana │
Při výpadku gateway → lokální spool .ndjson, přehraje se po obnovení. │ (dashbrd)│
└──────────┘
```
**Proč takhle:**
- **Loki** — průmyslový standard pro centrální logy, levné úložiště (chunky na
Unraid share), retence vynucená automaticky, vizualizace v Grafaně.
- **FastAPI gateway** (jako tvůj `msgreceiver`) — skripty neznají interní detaily
Loki ani DB hesla, jen jednoduchý JSON + sdílený token. Backend lze kdykoli
vyměnit beze změny skriptů.
- **Klient jen stdlib** (`urllib`) — žádné `pip install` do desítek skriptů.
- **Neblokující + odolné** — emit jen vloží do fronty, odesílá vlákno na pozadí
v dávkách; při výpadku spool soubor → žádný log se neztratí.
---
## 2. Adresářová struktura
```
CentralLogging/
├── README.md ← tento soubor
├── docker/
│ ├── docker-compose.yml Loki + Grafana + Gateway
│ ├── loki-config.yml Loki, retence 90 dní
│ └── grafana-datasource.yml auto-přidání Loki do Grafany
├── gateway/
│ ├── log_gateway_v1.0.py FastAPI brána
│ ├── log_gateway_v1.0.md dokumentace brány
│ ├── requirements.txt
│ └── Dockerfile
└── client/
├── central_logging.py stabilní import shim
├── central_logging_v1.0.py implementace (verze ve jméně)
├── central_logging_v1.0.md dokumentace knihovny
└── example_usage_v1.0.py ukázka integrace
```
---
## 3. Nasazení na Unraid
1. Zkopíruj adresář `CentralLogging/` na Unraid (např. do
`/mnt/user/appdata/central-logging/src`).
2. Uprav cesty volumes v `docker-compose.yml` (výchozí
`/mnt/user/appdata/central-logging/{loki,grafana}`).
3. Nastav tajemství (soubor `.env` vedle compose, NE do gitu):
```env
LOG_TOKEN=nejaky-dlouhy-nahodny-retezec
GRAFANA_PASSWORD=silne-heslo
```
4. Spusť:
```bash
cd docker
docker compose up -d
docker compose ps
```
5. Kontrola:
- Gateway health: `curl http://192.168.1.76:8770/health`
→ očekávané `{"status":"ok","loki":"ready",...}`
- Grafana: `http://192.168.1.76:3001` (admin / GRAFANA_PASSWORD)
→ Explore → datasource Loki → dotaz `{app="..."}`
> Porty: Loki 3100 (interní), Grafana 3001 (3000 drží Gitea), Gateway 8770. Uprav, pokud kolidují
> (msgreceiver běží na 8765).
---
## 4. Integrace do stávajících skriptů
Typický skript dnes obsahuje:
```python
import logging
logging.basicConfig(filename=str(LOG_FILE), level=logging.ERROR,
format="%(asctime)s | %(message)s",
datefmt="%Y-%m-%d %H:%M:%S", encoding="utf-8")
```
Nahradíš celý blok `basicConfig(...)` jedním voláním — **zbytek skriptu
(`logging.error(...)`, `log.info(...)`) zůstává beze změny:**
```python
import sys
sys.path.insert(0, r"U:\PythonProject\Janssen\CentralLogging\client")
from central_logging import setup_logging
log = setup_logging("nazev_skriptu") # label aplikace v Loki
```
Konfigurace přes ENV (nebo argumenty `setup_logging`):
| ENV | Default | Význam |
|-------------------------|-----------------------------|---------------------------------------|
| `CENTRAL_LOG_GATEWAY` | `http://192.168.1.76:8770` | URL brány |
| `CENTRAL_LOG_TOKEN` | `change-this-shared-secret` | sdílené tajemství (musí sedět s bránou)|
| `CENTRAL_LOG_ENV` | `prod` | label prostředí |
| `CENTRAL_LOG_KEEP_FILE` | `1` | psát i do souboru (po měsíci → `0`) |
| `CENTRAL_LOG_LEVEL` | `INFO` | min. úroveň |
---
## 5. Plán migrace (souběh → vypnutí souborů)
1. **Fáze A — souběh (cca 1 měsíc):** `keep_file=True` (default). Logy jdou do
souboru i do Loki. Ověřuješ úplnost, ladíš dashboardy, labely, úrovně.
2. **Fáze B — ověření:** porovnáš soubor vs. Loki na vybraných skriptech, že
nic nechybí (spool funguje i při výpadcích).
3. **Fáze C — vypnutí souborů:** nastav globálně `CENTRAL_LOG_KEEP_FILE=0`
(nebo `setup_logging(..., keep_file=False)`). Skripty pak píší jen do
centrálu. Staré `.log` soubory přesuň do `TRASH/` (nemazat — konvence).
---
## 6. Dotazy v Grafaně (LogQL)
```logql
{app="parse_emails_graph"} # vše z jednoho skriptu
{app="parse_emails_graph", level="ERROR"} # jen chyby
{env="prod"} |= "bulk_write" # fulltext napříč skripty
{app="edc_import"} | json | line > 100 # parsování JSON pole z těla
sum by (app) (count_over_time({level="ERROR"}[1h])) # počet chyb / skript / h
```
Labely (nízká kardinalita): `app`, `host`, `level`, `env`.
Vše ostatní (`logger`, `func`, `line`, `exc`, `extra`) je v těle řádku jako
JSON → v Grafaně dostupné přes `| json`.
---
## 7. Bezpečnost a poznámky
- Token je sdílené tajemství; drž ho v `.env` / ENV, ne v gitu.
- Gateway běží v interní docker síti; ven publikuje jen port 8770. Pokud má být
dostupná i mimo LAN, dej před ni reverzní proxy s TLS.
- Loki má `auth_enabled: false` (single-tenant, interní). Pro veřejné vystavení
přidej autentizaci na proxy.
- Spool soubory (`_log_spool/*.ndjson`) vznikají jen při výpadku brány a samy
se po obnovení spojení vyprázdní.
+31
View File
@@ -0,0 +1,31 @@
# ============================================================================
# central_logging.py — stabilní import shim
# Verze: 1.0
# Datum: 2026-06-08
# Popis: Importovatelný název pro knihovnu centrálního logování.
# Vlastní implementace je ve verzovaném souboru
# central_logging_v1.0.py (konvence: verze ve jméně). Python však
# neumí importovat název s tečkou, takže ho zde načteme přes
# importlib a re-exportujeme veřejné API.
#
# Při vydání nové verze stačí přepnout VERSION_FILE níže.
#
# Použití ve skriptech:
# from central_logging import setup_logging
# log = setup_logging("muj_skript")
# ============================================================================
import importlib.util
from pathlib import Path
VERSION_FILE = "central_logging_v1.0.py" # <- při upgrade přepni sem novou verzi
_path = Path(__file__).resolve().parent / VERSION_FILE
_spec = importlib.util.spec_from_file_location("central_logging_impl", _path)
_mod = importlib.util.module_from_spec(_spec)
_spec.loader.exec_module(_mod)
# re-export veřejného API
setup_logging = _mod.setup_logging
CentralLogHandler = _mod.CentralLogHandler
__all__ = ["setup_logging", "CentralLogHandler"]
@@ -0,0 +1,56 @@
# central_logging — drop-in klient pro centrální logování
**Verze:** 1.0 · **Datum:** 2026-06-08
**Soubory:** `central_logging.py` (import shim) + `central_logging_v1.0.py` (impl)
Knihovna, která ke stávajícímu souborovému logování přidá odesílání logů do
Loki přes bránu `log_gateway`. Jen standardní knihovna — žádné `pip install`.
## Rychlý start
```python
from central_logging import setup_logging
log = setup_logging("nazev_skriptu")
log.info("start")
log.error("chyba: %s", err)
```
## `setup_logging(...)` — parametry
| Argument | Default | Popis |
|-------------|------------------------|---------------------------------------------|
| `app_name` | (povinný) | label aplikace v Loki |
| `log_file` | `<app_name>.log` | cesta souborového logu |
| `keep_file` | ENV / `True` | psát i do souboru? po měsíci → `False` |
| `level` | ENV / `INFO` | min. úroveň |
| `gateway` | ENV / `192.168.1.76:8770` | URL brány |
| `token` | ENV | sdílené tajemství |
| `env` | ENV / `prod` | label prostředí |
## Jak to funguje
1. `emit()` jen vloží záznam do fronty (neblokuje skript).
2. Vlákno na pozadí každé ~2 s pošle dávku (max 200 záznamů) na
`POST /log/batch`.
3. **Výpadek brány** → dávka se zapíše do `_log_spool/central_logging_spool_<app>.ndjson`
a přehraje se při příštím úspěšném spojení. Žádný log se neztratí.
4. `atexit` při ukončení skriptu dolije zbytek fronty.
Handler je psaný tak, aby **nikdy neshodil aplikaci** — všechny chyby logování
se polykají.
## Import a konvence verzí
Konvence projektu = verze ve jméně (`central_logging_v1.0.py`). Python ale neumí
import názvu s tečkou, proto je tu shim `central_logging.py`, který verzovaný
soubor načte přes `importlib` a re-exportuje `setup_logging`. Při vydání v1.1
stačí v shimu přepnout `VERSION_FILE` a starou verzi přesunout do `TRASH/`.
## Vypnutí souborů (fáze C migrace)
Globálně:
```bash
set CENTRAL_LOG_KEEP_FILE=0 # Windows
export CENTRAL_LOG_KEEP_FILE=0 # Linux
```
nebo v kódu `setup_logging(..., keep_file=False)`.
@@ -0,0 +1,320 @@
# ============================================================================
# central_logging_v1.0.py
# Verze: 1.0
# Datum: 2026-06-08
# Autor: Vladimír Buzalka
# Popis: Drop-in knihovna pro centrální logování do Grafana Loki přes
# FastAPI bránu (log_gateway). Přidává se VEDLE stávajícího
# souborového logování — jediným voláním setup_logging().
#
# Návrh (proč takhle):
# - JEN standardní knihovna (urllib) — nevyžaduje pip install ve všech
# skriptech projektu.
# - Neblokující: emit() jen vloží záznam do fronty, odesílá vlákno na
# pozadí v dávkách (batch). Skript se logováním nezdrží.
# - Odolné proti výpadku: když je gateway nedostupná, dávka spadne do
# lokálního spool souboru (.ndjson) a pošle se při příštím úspěchu.
# => žádné logy se neztratí, i kdyby server byl chvíli dole.
# - keep_file=True ponechá původní souborové logování. Po měsíci, až
# bude centrál ověřený, stačí zavolat s keep_file=False (nebo nastavit
# ENV CENTRAL_LOG_KEEP_FILE=0) a soubory se přestanou psát.
#
# Použití (minimum):
# from central_logging_v1.0 import setup_logging
# log = setup_logging("parse_emails_graph")
# log.info("start")
# log.error("něco selhalo: %s", err)
#
# Konfigurace přes ENV (s rozumnými defaulty):
# CENTRAL_LOG_GATEWAY http://192.168.1.76:8770
# CENTRAL_LOG_TOKEN sdílené tajemství (musí sedět s gateway)
# CENTRAL_LOG_ENV prod | test | dev (default prod)
# CENTRAL_LOG_KEEP_FILE 1 | 0 (default 1 = piš i soubory)
# CENTRAL_LOG_LEVEL INFO | ERROR | ... (default INFO)
# CENTRAL_LOG_SPOOL_DIR adresář pro spool (default vedle skriptu)
# ============================================================================
from __future__ import annotations
import os
import sys
import json
import time
import atexit
import socket
import logging
import threading
import urllib.request
import urllib.error
from collections import deque
from logging.handlers import RotatingFileHandler
from pathlib import Path
from typing import Any, Deque, Dict, List, Optional
# ---------------------------------------------------------------------------
# Výchozí konfigurace
# ---------------------------------------------------------------------------
DEFAULT_GATEWAY = os.environ.get("CENTRAL_LOG_GATEWAY", "http://192.168.1.76:8770")
DEFAULT_TOKEN = os.environ.get("CENTRAL_LOG_TOKEN", "change-this-shared-secret")
DEFAULT_ENV = os.environ.get("CENTRAL_LOG_ENV", "prod")
DEFAULT_LEVEL = os.environ.get("CENTRAL_LOG_LEVEL", "INFO").upper()
FLUSH_INTERVAL = 2.0 # s — jak často odeslat nasbíranou dávku
BATCH_MAX = 200 # max záznamů v jedné dávce
QUEUE_MAX = 50_000 # ochrana proti přetečení paměti
HTTP_TIMEOUT = 5.0 # s — timeout odeslání do gateway
SPOOL_REPLAY_MAX = 1000 # max záznamů přehraných ze spoolu na jeden cyklus
class _GatewaySender:
"""Vlákno na pozadí: sbírá záznamy z fronty a posílá je do gateway
v dávkách. Při neúspěchu zapisuje do spool souboru a později přehraje."""
def __init__(self, app_name: str, gateway: str, token: str, env: str, spool_dir: Path):
self.app_name = app_name
self.host = socket.gethostname()
self.gateway = gateway.rstrip("/")
self.token = token
self.env = env
self.spool_file = spool_dir / f"central_logging_spool_{app_name}.ndjson"
spool_dir.mkdir(parents=True, exist_ok=True)
self._queue: Deque[Dict[str, Any]] = deque(maxlen=QUEUE_MAX)
self._lock = threading.Lock()
self._stop = threading.Event()
self._thread = threading.Thread(target=self._run, name=f"central-log-{app_name}", daemon=True)
self._thread.start()
# -- veřejné --------------------------------------------------------
def submit(self, record: Dict[str, Any]) -> None:
with self._lock:
self._queue.append(record)
def flush_and_stop(self, timeout: float = 5.0) -> None:
self._stop.set()
self._thread.join(timeout=timeout)
# poslední pokus o odeslání toho, co zbylo
self._drain_once(final=True)
# -- vnitřní --------------------------------------------------------
def _run(self) -> None:
while not self._stop.is_set():
time.sleep(FLUSH_INTERVAL)
try:
self._replay_spool()
self._drain_once()
except Exception: # noqa: BLE001 — logování se nikdy nesmí zhroutit
pass
def _pop_batch(self) -> List[Dict[str, Any]]:
batch: List[Dict[str, Any]] = []
with self._lock:
while self._queue and len(batch) < BATCH_MAX:
batch.append(self._queue.popleft())
return batch
def _drain_once(self, final: bool = False) -> None:
while True:
batch = self._pop_batch()
if not batch:
return
ok = self._send(batch)
if not ok:
self._spool(batch)
if final and not self._queue:
return
def _send(self, records: List[Dict[str, Any]]) -> bool:
payload = json.dumps({
"app": self.app_name,
"host": self.host,
"env": self.env,
"records": records,
}, ensure_ascii=False).encode("utf-8")
req = urllib.request.Request(
f"{self.gateway}/log/batch",
data=payload,
method="POST",
headers={
"Content-Type": "application/json",
"Authorization": f"Bearer {self.token}",
},
)
try:
with urllib.request.urlopen(req, timeout=HTTP_TIMEOUT) as resp:
return 200 <= resp.status < 300
except Exception: # noqa: BLE001 — síť/timeout/HTTP error -> spool
return False
# -- spool (fallback při výpadku) -----------------------------------
def _spool(self, records: List[Dict[str, Any]]) -> None:
try:
with open(self.spool_file, "a", encoding="utf-8") as f:
for r in records:
f.write(json.dumps(r, ensure_ascii=False) + "\n")
except Exception: # noqa: BLE001
pass
def _replay_spool(self) -> None:
if not self.spool_file.exists() or self.spool_file.stat().st_size == 0:
return
# načti dávku ze spoolu
try:
with open(self.spool_file, "r", encoding="utf-8") as f:
lines = f.readlines()
except Exception: # noqa: BLE001
return
if not lines:
return
chunk = lines[:SPOOL_REPLAY_MAX]
records = []
for ln in chunk:
ln = ln.strip()
if ln:
try:
records.append(json.loads(ln))
except Exception: # noqa: BLE001
pass
if records and self._send(records):
# úspěch -> odeber přehrané řádky ze spoolu
remaining = lines[SPOOL_REPLAY_MAX:]
try:
if remaining:
with open(self.spool_file, "w", encoding="utf-8") as f:
f.writelines(remaining)
else:
self.spool_file.unlink(missing_ok=True)
except Exception: # noqa: BLE001
pass
class CentralLogHandler(logging.Handler):
"""logging.Handler, který předává záznamy senderu na pozadí."""
def __init__(self, sender: _GatewaySender):
super().__init__()
self._sender = sender
def emit(self, record: logging.LogRecord) -> None:
try:
# msg = jen samotná zpráva; čas/úroveň/logger jdou do labelů a polí
rec: Dict[str, Any] = {
"ts": record.created,
"level": record.levelname,
"msg": record.getMessage(),
"logger": record.name,
"func": record.funcName,
"line": record.lineno,
}
# POZOR: formatException je metoda Formatteru, ne Handleru —
# proto použij vlastní Formatter, jinak by AttributeError shodil
# celý záznam (a tracebacky by se ztrácely).
if record.exc_info:
rec["exc"] = logging.Formatter().formatException(record.exc_info)
self._sender.submit(rec)
except Exception: # noqa: BLE001 — handler nikdy nesmí shodit aplikaci
pass
def setup_logging(
app_name: str,
*,
log_file: Optional[str] = None,
keep_file: Optional[bool] = None,
level: Optional[str] = None,
gateway: Optional[str] = None,
token: Optional[str] = None,
env: Optional[str] = None,
quiet_loggers: Optional[List[str]] = None,
fmt: str = "%(asctime)s | %(levelname)s | %(name)s | %(message)s",
datefmt: str = "%Y-%m-%d %H:%M:%S",
spool_dir: Optional[str] = None,
) -> logging.Logger:
"""Nastaví root logger se dvěma cíli:
1) souborový handler (RotatingFileHandler) — stávající chování,
2) centrální handler do Loki přes gateway (na pozadí).
Args:
app_name: label aplikace v Loki (např. "parse_emails_graph").
log_file: cesta k log souboru. Default <app_name>.log vedle skriptu.
keep_file: piš i do souboru? Default z ENV CENTRAL_LOG_KEEP_FILE (1).
Po měsíci ověřování nastav False -> jen centrál.
level: min. úroveň, default ENV CENTRAL_LOG_LEVEL nebo INFO.
gateway/token/env: override ENV defaultů.
Returns:
nakonfigurovaný root logger (lze i logging.getLogger()).
"""
# Konfiguraci čteme z os.environ AŽ TADY (call-time), ne při importu modulu.
# Důvod: skripty často načítají vlastní .env (do os.environ) až po importu
# této knihovny — kdybychom četli při importu, token/gateway bychom minuli.
gw = gateway or os.environ.get("CENTRAL_LOG_GATEWAY", "http://192.168.1.76:8770")
tok = token or os.environ.get("CENTRAL_LOG_TOKEN", "change-this-shared-secret")
ev = env or os.environ.get("CENTRAL_LOG_ENV", "prod")
lvl_name = (level or os.environ.get("CENTRAL_LOG_LEVEL", "INFO")).upper()
lvl = getattr(logging, lvl_name, logging.INFO)
if keep_file is None:
keep_file = os.environ.get("CENTRAL_LOG_KEEP_FILE", "1") not in ("0", "false", "False")
root = logging.getLogger()
root.setLevel(lvl)
# Ztiš upovídané knihovny (jinak root@INFO chytá jejich šum do centrálu).
# Předej quiet_loggers=[] pro vypnutí, nebo vlastní seznam.
_default_quiet = ["httpx", "httpcore", "urllib3", "anthropic", "openai",
"PIL", "asyncio", "fdb", "fontTools", "pdfminer"]
for _name in (_default_quiet if quiet_loggers is None else quiet_loggers):
logging.getLogger(_name).setLevel(logging.WARNING)
# odstraň případné staré handlery (idempotentní setup)
for h in list(root.handlers):
root.removeHandler(h)
formatter = logging.Formatter(fmt=fmt, datefmt=datefmt)
# 1) Souborový handler (stávající způsob) -------------------------------
if keep_file:
if log_file is None:
base = Path(sys.argv[0]).resolve().parent if sys.argv and sys.argv[0] else Path.cwd()
log_file = str(base / f"{app_name}.log")
fh = RotatingFileHandler(log_file, maxBytes=10 * 1024 * 1024, backupCount=5, encoding="utf-8")
fh.setLevel(lvl)
fh.setFormatter(formatter)
root.addHandler(fh)
# 2) Centrální handler do Loki (na pozadí) ------------------------------
spool_base = Path(spool_dir) if spool_dir else (
Path(sys.argv[0]).resolve().parent if sys.argv and sys.argv[0] else Path.cwd()
)
sender = _GatewaySender(
app_name=app_name,
gateway=gw,
token=tok,
env=ev,
spool_dir=spool_base / "_log_spool",
)
ch = CentralLogHandler(sender)
ch.setLevel(lvl)
ch.setFormatter(formatter)
root.addHandler(ch)
# při ukončení skriptu dolij frontu
atexit.register(sender.flush_and_stop)
root.info("central_logging v1.0 inicializováno (app=%s, keep_file=%s, gateway=%s)",
app_name, keep_file, gw)
return root
if __name__ == "__main__":
# rychlý self-test
log = setup_logging("central_logging_selftest", level="DEBUG")
log.info("ahoj z self-testu")
log.warning("varování %d", 42)
try:
1 / 0
except ZeroDivisionError:
log.exception("zachycená výjimka")
print("Self-test odeslán. Zkontroluj Grafanu / spool soubor.")
@@ -0,0 +1,40 @@
# ============================================================================
# example_usage_v1.0.py
# Verze: 1.0
# Datum: 2026-06-08
# Popis: Ukázka, jak do stávajícího skriptu přidat centrální logování.
#
# PŘED (typický skript v projektu):
# import logging
# logging.basicConfig(
# filename=str(LOG_FILE), level=logging.ERROR,
# format="%(asctime)s | %(message)s", datefmt="%Y-%m-%d %H:%M:%S",
# encoding="utf-8")
# logging.error("něco selhalo: %s", e)
#
# PO (přidáme centrál, soubor zůstává):
# celý blok basicConfig nahradíš jediným řádkem setup_logging(...)
# — zbytek skriptu (logging.error / log.info) zůstává beze změny.
# ============================================================================
import sys
from pathlib import Path
# Knihovna leží v tomto adresáři. V praxi přidej CentralLogging/client do
# sys.path (viz níže) nebo zkopíruj central_logging.py + central_logging_v1.0.py
# vedle svého skriptu.
sys.path.insert(0, str(Path(__file__).resolve().parent))
from central_logging import setup_logging # stabilní import shim
log = setup_logging("priklad_skript") # keep_file=True (default)
log.info("Skript odstartoval")
log.warning("Pozor, %d nezpracovaných položek", 5)
try:
raise ValueError("ukázková chyba")
except ValueError:
log.exception("Zachycená výjimka při zpracování")
log.info("Hotovo")
print("Logy odeslány do souboru i do centrálu (Loki).")
@@ -0,0 +1,171 @@
{
"annotations": { "list": [] },
"editable": true,
"graphTooltip": 1,
"schemaVersion": 39,
"tags": ["central-logging"],
"title": "Central Logs — přehled",
"uid": "central-logs",
"time": { "from": "now-24h", "to": "now" },
"refresh": "30s",
"templating": {
"list": [
{
"name": "env",
"label": "Prostředí",
"type": "query",
"datasource": { "type": "loki", "uid": "loki" },
"query": "label_values(env)",
"refresh": 2,
"includeAll": true,
"allValue": ".+",
"multi": true,
"current": { "text": "All", "value": "$__all" }
},
{
"name": "app",
"label": "Skript (app)",
"type": "query",
"datasource": { "type": "loki", "uid": "loki" },
"query": "label_values({env=~\"$env\"}, app)",
"refresh": 2,
"includeAll": true,
"allValue": ".+",
"multi": true,
"current": { "text": "All", "value": "$__all" }
},
{
"name": "level",
"label": "Úroveň",
"type": "custom",
"query": "DEBUG,INFO,WARNING,ERROR,CRITICAL",
"includeAll": true,
"allValue": ".+",
"multi": true,
"current": { "text": "All", "value": "$__all" }
},
{
"name": "search",
"label": "Hledat v textu",
"type": "textbox",
"current": { "text": "", "value": "" }
}
]
},
"panels": [
{
"id": 1,
"type": "stat",
"title": "Logů celkem (rozsah)",
"datasource": { "type": "loki", "uid": "loki" },
"gridPos": { "h": 4, "w": 8, "x": 0, "y": 0 },
"options": { "colorMode": "value", "graphMode": "area", "reduceOptions": { "calcs": ["lastNotNull"] } },
"targets": [
{
"refId": "A",
"datasource": { "type": "loki", "uid": "loki" },
"expr": "sum(count_over_time({app=~\"$app\", env=~\"$env\", level=~\"$level\"} |~ \"(?i)$search\" [$__range]))",
"queryType": "instant"
}
]
},
{
"id": 2,
"type": "stat",
"title": "Chyby (ERROR+CRITICAL, rozsah)",
"datasource": { "type": "loki", "uid": "loki" },
"gridPos": { "h": 4, "w": 8, "x": 8, "y": 0 },
"fieldConfig": {
"defaults": {
"color": { "mode": "thresholds" },
"thresholds": { "mode": "absolute", "steps": [
{ "color": "green", "value": null },
{ "color": "red", "value": 1 }
] }
}
},
"options": { "colorMode": "background", "graphMode": "area", "reduceOptions": { "calcs": ["lastNotNull"] } },
"targets": [
{
"refId": "A",
"datasource": { "type": "loki", "uid": "loki" },
"expr": "sum(count_over_time({app=~\"$app\", env=~\"$env\", level=~\"ERROR|CRITICAL\"} |~ \"(?i)$search\" [$__range]))",
"queryType": "instant"
}
]
},
{
"id": 3,
"type": "stat",
"title": "Aktivních skriptů",
"datasource": { "type": "loki", "uid": "loki" },
"gridPos": { "h": 4, "w": 8, "x": 16, "y": 0 },
"options": { "colorMode": "value", "graphMode": "none", "reduceOptions": { "calcs": ["lastNotNull"] } },
"targets": [
{
"refId": "A",
"datasource": { "type": "loki", "uid": "loki" },
"expr": "count(sum by (app) (count_over_time({env=~\"$env\"} [$__range])))",
"queryType": "instant"
}
]
},
{
"id": 4,
"type": "timeseries",
"title": "Tok logů podle úrovně",
"datasource": { "type": "loki", "uid": "loki" },
"gridPos": { "h": 8, "w": 12, "x": 0, "y": 4 },
"fieldConfig": { "defaults": { "custom": { "drawStyle": "bars", "fillOpacity": 60, "stacking": { "mode": "normal" } } } },
"targets": [
{
"refId": "A",
"datasource": { "type": "loki", "uid": "loki" },
"expr": "sum by (level) (count_over_time({app=~\"$app\", env=~\"$env\", level=~\"$level\"} |~ \"(?i)$search\" [$__interval]))",
"legendFormat": "{{level}}"
}
]
},
{
"id": 5,
"type": "timeseries",
"title": "Chyby podle skriptu",
"datasource": { "type": "loki", "uid": "loki" },
"gridPos": { "h": 8, "w": 12, "x": 12, "y": 4 },
"fieldConfig": { "defaults": { "custom": { "drawStyle": "bars", "fillOpacity": 70, "stacking": { "mode": "normal" } } } },
"targets": [
{
"refId": "A",
"datasource": { "type": "loki", "uid": "loki" },
"expr": "sum by (app) (count_over_time({app=~\"$app\", env=~\"$env\", level=~\"ERROR|CRITICAL\"} |~ \"(?i)$search\" [$__interval]))",
"legendFormat": "{{app}}"
}
]
},
{
"id": 6,
"type": "logs",
"title": "Poslední logy",
"datasource": { "type": "loki", "uid": "loki" },
"gridPos": { "h": 14, "w": 24, "x": 0, "y": 12 },
"options": {
"showTime": true,
"showLabels": false,
"showCommonLabels": false,
"wrapLogMessage": true,
"prettifyLogMessage": true,
"enableLogDetails": true,
"dedupStrategy": "none",
"sortOrder": "Descending"
},
"targets": [
{
"refId": "A",
"datasource": { "type": "loki", "uid": "loki" },
"expr": "{app=~\"$app\", env=~\"$env\", level=~\"$level\"} |~ \"(?i)$search\" | json",
"maxLines": 1000
}
]
}
]
}
+73
View File
@@ -0,0 +1,73 @@
# ============================================================================
# CentralLogging — docker-compose (Loki + Grafana + Log Gateway)
# Verze: 1.0
# Datum: 2026-06-08
# Popis: Stack pro centrální logování na Unraidu.
# - loki : úložiště logů (HTTP push API), retence 90 dní
# - grafana : prohlížení a dashboardy nad Loki
# - gateway : FastAPI brána, kam posílají logy klientské skripty
#
# Spuštění na Unraidu:
# docker compose -f docker-compose.yml up -d
#
# Porty (uprav dle potřeby):
# 3100 Loki HTTP (interní, klienti na něj nesahají přímo)
# 3000 Grafana web UI
# 8770 Log Gateway (sem posílají skripty)
# ============================================================================
services:
loki:
image: grafana/loki:3.1.1
container_name: central-loki
restart: unless-stopped
command: -config.file=/etc/loki/loki-config.yml
ports:
- "3100:3100"
volumes:
- ./loki-config.yml:/etc/loki/loki-config.yml:ro
# Persistentní data na Unraid share (desítky TB) — uprav cestu:
- /mnt/user/appdata/central-logging/loki:/loki
networks:
- logging
grafana:
image: grafana/grafana:11.2.0
container_name: central-grafana
restart: unless-stopped
ports:
- "3001:3000" # 3000 na Unraidu drží Gitea -> Grafana na 3001
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=${GRAFANA_PASSWORD:-changeme}
- GF_USERS_ALLOW_SIGN_UP=false
volumes:
- /mnt/user/appdata/central-logging/grafana:/var/lib/grafana
- ./grafana-datasource.yml:/etc/grafana/provisioning/datasources/loki.yml:ro
- ./grafana-dashboards.yml:/etc/grafana/provisioning/dashboards/central.yml:ro
- ./dashboards:/etc/grafana/provisioning/dashboards/json:ro
depends_on:
- loki
networks:
- logging
gateway:
build:
context: ../gateway
image: central-log-gateway:1.0
container_name: central-log-gateway
restart: unless-stopped
ports:
- "8770:8770"
environment:
- LOKI_URL=http://loki:3100
- LOG_TOKEN=${LOG_TOKEN:-change-this-shared-secret}
- GATEWAY_ENV=prod
depends_on:
- loki
networks:
- logging
networks:
logging:
driver: bridge
@@ -0,0 +1,20 @@
# ============================================================================
# CentralLogging — Grafana dashboard provisioning
# Verze: 1.0
# Datum: 2026-06-08
# Popis: Automaticky načte dashboardy z /etc/grafana/provisioning/dashboards/json
# (mountováno z ./dashboards). Soubor .json = jeden dashboard.
# ============================================================================
apiVersion: 1
providers:
- name: CentralLogging
orgId: 1
folder: CentralLogging
type: file
disableDeletion: false
updateIntervalSeconds: 30
allowUiUpdates: true
options:
path: /etc/grafana/provisioning/dashboards/json
foldersFromFilesStructure: false
@@ -0,0 +1,17 @@
# ============================================================================
# CentralLogging — Grafana datasource provisioning
# Verze: 1.0
# Datum: 2026-06-08
# Popis: Automaticky přidá Loki jako datasource při startu Grafany.
# ============================================================================
apiVersion: 1
datasources:
- name: Loki
type: loki
uid: loki # pevné uid, na které odkazuje dashboard
access: proxy
url: http://loki:3100
isDefault: true
jsonData:
maxLines: 5000
+62
View File
@@ -0,0 +1,62 @@
# ============================================================================
# CentralLogging — Loki konfigurace
# Verze: 1.0
# Datum: 2026-06-08
# Popis: Single-binary Loki, filesystem storage, retence 90 dní.
# Retenci vynucuje compactor (delete_request + retention_period).
# ============================================================================
auth_enabled: false
server:
http_listen_port: 3100
grpc_listen_port: 9096
log_level: info
common:
instance_addr: 127.0.0.1
path_prefix: /loki
storage:
filesystem:
chunks_directory: /loki/chunks
rules_directory: /loki/rules
replication_factor: 1
ring:
kvstore:
store: inmemory
schema_config:
configs:
- from: 2024-01-01
store: tsdb
object_store: filesystem
schema: v13
index:
prefix: index_
period: 24h
storage_config:
tsdb_shipper:
active_index_directory: /loki/tsdb-index
cache_location: /loki/tsdb-cache
filesystem:
directory: /loki/chunks
limits_config:
retention_period: 2160h # 90 dní
reject_old_samples: true
reject_old_samples_max_age: 168h # 7 dní (logy starší se odmítnou)
max_label_names_per_series: 15
ingestion_rate_mb: 16
ingestion_burst_size_mb: 32
allow_structured_metadata: true
compactor:
working_directory: /loki/compactor
compaction_interval: 10m
retention_enabled: true # zapne mazání dle retention_period
retention_delete_delay: 2h
delete_request_store: filesystem
# Analytika do Grafana Labs vypnuta
analytics:
reporting_enabled: false
+20
View File
@@ -0,0 +1,20 @@
# ============================================================================
# CentralLogging — Log Gateway image
# Verze: 1.0
# Datum: 2026-06-08
# ============================================================================
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY log_gateway_v1.0.py .
COPY main.py .
EXPOSE 8770
# main.py je shim, který přes importlib načte verzovaný log_gateway_v1.0.py
# (uvicorn neumí import názvu s tečkou).
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8770"]
@@ -0,0 +1,57 @@
# log_gateway — FastAPI brána pro centrální logování
**Verze:** 1.0 · **Datum:** 2026-06-08 · **Soubor:** `log_gateway_v1.0.py`
FastAPI služba, která přijímá logy od klientských skriptů a přeposílá je do
Grafana Loki přes jeho HTTP push API.
## Endpoints
| Metoda | Cesta | Popis |
|--------|---------------|--------------------------------------------------|
| GET | `/health` | liveness + dostupnost Loki (`/ready`) |
| POST | `/log/batch` | dávka záznamů (klient používá toto) |
| POST | `/log` | jeden záznam (query: `app_name`, `host`, `env`) |
Autorizace: hlavička `Authorization: Bearer <LOG_TOKEN>`.
## Payload `/log/batch`
```json
{
"app": "parse_emails_graph",
"host": "PC-VB",
"env": "prod",
"records": [
{"ts": 1780921433.81, "level": "ERROR", "msg": "bulk_write: ...",
"logger": "root", "func": "save_batch", "line": 542, "exc": "Traceback ..."}
]
}
```
Brána seskupí záznamy podle `(app, host, level, env)` do Loki streamů, převede
`ts` na nanosekundy, tělo řádku uloží jako JSON (kvůli `| json` v Grafaně) a
pošle na `POST {LOKI_URL}/loki/api/v1/push`.
## ENV
| ENV | Default | Popis |
|--------------|------------------------|------------------------------------|
| `LOKI_URL` | `http://loki:3100` | adresa Loki (uvnitř docker sítě) |
| `LOG_TOKEN` | `change-this-...` | sdílené tajemství (= klientův token)|
| `GATEWAY_ENV`| `prod` | výchozí label env, když klient neuvede|
## Lokální běh (mimo docker)
```bash
pip install -r requirements.txt
LOKI_URL=http://192.168.1.76:3100 LOG_TOKEN=tajne \
uvicorn log_gateway_v1.0:app --host 0.0.0.0 --port 8770
```
## Návrhové poznámky
- Labely držíme nízkokardinální (`ALLOWED_LABELS`). Nikdy nedávat do labelů
např. ID zprávy / pacienta — explodovala by kardinalita sérií v Loki.
- Při chybě Loki vrací brána 502; klient si záznam uloží do spoolu a zkusí
znovu → data se neztratí.
+162
View File
@@ -0,0 +1,162 @@
# ============================================================================
# log_gateway_v1.0.py
# Verze: 1.0
# Datum: 2026-06-08
# Autor: Vladimír Buzalka
# Popis: FastAPI brána pro centrální logování. Přijímá jednoduchý JSON
# od klientských skriptů (knihovna central_logging) a přeposílá
# do Grafana Loki přes jeho HTTP push API.
#
# Proč brána a ne push přímo do Loki:
# - klient nezná interní detaily Loki (ns timestampy, streamy)
# - jeden sdílený token (Bearer) místo přístupu do DB/Loki
# - lze kdykoli vyměnit backend bez zásahu do skriptů
# - centrální místo pro normalizaci labelů a rate-limit
#
# Endpoints:
# GET /health — liveness + dostupnost Loki
# POST /log — jeden log záznam
# POST /log/batch — dávka záznamů (preferováno klientem)
#
# Autorizace: hlavička Authorization: Bearer <LOG_TOKEN>
#
# ENV:
# LOKI_URL výchozí http://loki:3100
# LOG_TOKEN sdílené tajemství (musí sedět s klientem)
# GATEWAY_ENV label env, výchozí "prod"
# ============================================================================
from __future__ import annotations
import os
import time
import json
import logging
from typing import Any, Dict, List, Optional
import httpx
from fastapi import FastAPI, Header, HTTPException
from pydantic import BaseModel, Field
LOKI_URL = os.environ.get("LOKI_URL", "http://loki:3100").rstrip("/")
LOG_TOKEN = os.environ.get("LOG_TOKEN", "change-this-shared-secret")
DEFAULT_ENV = os.environ.get("GATEWAY_ENV", "prod")
# Loki: labely držíme s nízkou kardinalitou (jinak exploze sérií).
# Vše ostatní (logger, func, line, exc) jde do těla log řádku jako JSON.
ALLOWED_LABELS = ("app", "host", "level", "env")
logging.basicConfig(level=logging.INFO, format="%(asctime)s | %(levelname)s | %(message)s")
log = logging.getLogger("log_gateway")
app = FastAPI(title="Central Log Gateway", version="1.0")
class LogRecord(BaseModel):
ts: Optional[float] = Field(None, description="Unix čas v sekundách (float). Když chybí, doplní brána.")
level: str = "INFO"
msg: str = ""
logger: Optional[str] = None
func: Optional[str] = None
line: Optional[int] = None
exc: Optional[str] = None
extra: Optional[Dict[str, Any]] = None
class BatchPayload(BaseModel):
app: str
host: str = "unknown"
env: Optional[str] = None
records: List[LogRecord]
def _check_token(authorization: Optional[str]) -> None:
expected = f"Bearer {LOG_TOKEN}"
if not authorization or authorization != expected:
raise HTTPException(status_code=401, detail="Neplatný nebo chybějící token.")
def _to_loki_streams(payload: BatchPayload) -> Dict[str, Any]:
"""Seskupí záznamy podle (app, host, level, env) do Loki streamů.
Hodnota každé položky = [unix_nano_str, json_řádek]."""
env = payload.env or DEFAULT_ENV
streams: Dict[tuple, List[List[str]]] = {}
for r in payload.records:
ts = r.ts if r.ts is not None else time.time()
ts_nano = str(int(ts * 1_000_000_000))
line_obj: Dict[str, Any] = {"msg": r.msg}
if r.logger:
line_obj["logger"] = r.logger
if r.func:
line_obj["func"] = r.func
if r.line is not None:
line_obj["line"] = r.line
if r.exc:
line_obj["exc"] = r.exc
if r.extra:
line_obj["extra"] = r.extra
key = (payload.app, payload.host, (r.level or "INFO").upper(), env)
streams.setdefault(key, []).append([ts_nano, json.dumps(line_obj, ensure_ascii=False)])
out_streams = []
for (app_name, host, level, env_v), values in streams.items():
# Loki vyžaduje values seřazené vzestupně dle času v rámci streamu
values.sort(key=lambda v: v[0])
out_streams.append({
"stream": {"app": app_name, "host": host, "level": level, "env": env_v},
"values": values,
})
return {"streams": out_streams}
async def _push_to_loki(body: Dict[str, Any]) -> None:
url = f"{LOKI_URL}/loki/api/v1/push"
async with httpx.AsyncClient(timeout=10.0) as client:
resp = await client.post(url, json=body, headers={"Content-Type": "application/json"})
if resp.status_code >= 300:
log.error("Loki push selhal %s: %s", resp.status_code, resp.text[:500])
raise HTTPException(status_code=502, detail=f"Loki push selhal: {resp.status_code}")
@app.get("/health")
async def health() -> Dict[str, Any]:
loki_ok = False
try:
async with httpx.AsyncClient(timeout=3.0) as client:
r = await client.get(f"{LOKI_URL}/ready")
loki_ok = r.status_code == 200
except Exception as e: # noqa: BLE001
log.warning("Loki nedostupný: %s", e)
return {"status": "ok", "loki": "ready" if loki_ok else "unavailable", "version": "1.0"}
@app.post("/log/batch")
async def log_batch(payload: BatchPayload, authorization: Optional[str] = Header(None)) -> Dict[str, Any]:
_check_token(authorization)
if not payload.records:
return {"accepted": 0}
body = _to_loki_streams(payload)
await _push_to_loki(body)
return {"accepted": len(payload.records), "streams": len(body["streams"])}
@app.post("/log")
async def log_one(
record: LogRecord,
app_name: str,
host: str = "unknown",
env: Optional[str] = None,
authorization: Optional[str] = Header(None),
) -> Dict[str, Any]:
_check_token(authorization)
payload = BatchPayload(app=app_name, host=host, env=env, records=[record])
body = _to_loki_streams(payload)
await _push_to_loki(body)
return {"accepted": 1}
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8770)
+25
View File
@@ -0,0 +1,25 @@
# ============================================================================
# main.py — ASGI import shim pro uvicorn
# Verze: 1.0
# Datum: 2026-06-08
# Popis: Uvicorn neumí naimportovat modul s tečkou v názvu
# (log_gateway_v1.0 -> čte .0 jako submodul). Tento shim načte
# verzovaný soubor přes importlib a vystaví `app` pro uvicorn.
# Spouštění: uvicorn main:app
# Při upgrade přepni VERSION_FILE.
# ============================================================================
import sys
import importlib.util
from pathlib import Path
VERSION_FILE = "log_gateway_v1.0.py"
_path = Path(__file__).resolve().parent / VERSION_FILE
_spec = importlib.util.spec_from_file_location("log_gateway_impl", _path)
_mod = importlib.util.module_from_spec(_spec)
# Registrace do sys.modules je nutná, aby pydantic uměl dohledat forward-ref
# typy (Optional, ...) při `from __future__ import annotations`.
sys.modules[_spec.name] = _mod
_spec.loader.exec_module(_mod)
app = _mod.app
+4
View File
@@ -0,0 +1,4 @@
fastapi==0.115.0
uvicorn[standard]==0.30.6
httpx==0.27.2
pydantic==2.9.2
@@ -0,0 +1,79 @@
Site,Country,Visit,Visit Collection Date,Accession,Subject,eQueryId,Create Date,Response Date Time,Issue Type,Status,Time Before Response,User Name,Email,Study Role
CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Unscheduled,"Mar 13, 2026 8:40 AM",6227323295,CZ100222004,2047932,"Mar 17, 2026 3:49 PM","Mar 17, 2026 9:07 PM",VST,Closed,5h 17m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator
CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Unscheduled,"Mar 13, 2026 7:45 AM",6227323297,CZ100222005,2047949,"Mar 17, 2026 3:56 PM","Mar 17, 2026 9:09 PM",VST,Closed,5h 12m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator
CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 0,"Mar 9, 2026 8:50 AM",6227323270,CZ100222003,2038559,"Mar 11, 2026 4:39 PM","Mar 11, 2026 8:32 PM","AGE, ADT201, AMT58660, AMT3542",Closed,3h 53m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator
CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 2,"Mar 27, 2026 7:10 AM",6227323272,CZ100222003,2073305,"Apr 1, 2026 7:54 PM","Apr 2, 2026 7:37 AM",AMT58660,Closed,11h 43m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator
CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 4,"Apr 8, 2026 8:05 AM",6227323274,CZ100222003,2086982,"Apr 10, 2026 1:00 PM","Apr 10, 2026 1:06 PM",AMT58660,Closed,5m,Katerina Havlikova,katerina.havlikova@clinoxus.com,Investigator
CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 2, 2026 11:00 AM",6227810899,CZ100222003,2029805,"Mar 5, 2026 6:36 PM","Mar 6, 2026 9:01 AM","AMT58660, AMT3542",Closed,14h 24m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator
CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 4, 2026 9:20 AM",6227810900,CZ100222005,2031896,"Mar 6, 2026 6:45 PM","Mar 6, 2026 7:25 PM","AMT58660, AMT3542",Closed,40m,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator
CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Screening,"Mar 3, 2026 12:10 PM",6227810901,CZ100222004,2029774,"Mar 5, 2026 6:23 PM","Mar 6, 2026 7:24 PM","AMT58660, AMT3542",Closed,1d,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator
CZ10022 - Dr. Petr Hrabak,CZECH REPUBLIC,Induction Week 0,"Apr 9, 2026 10:35 AM",6228173397,CZ100222005,2089669,"Apr 13, 2026 2:06 PM","Apr 23, 2026 12:53 PM",PCFCOM,Closed,9d,Jana Pomahacova,jana.pomahacova@clinoxus.com,Investigator
CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Screening,"Feb 25, 2026 12:15 PM",6227635204,CZ100212001,2019716,"Feb 27, 2026 12:09 PM","Mar 3, 2026 11:11 AM","AMT58660, AMT3542",Closed,3d,Zdenka Dvorakova,dvorakova.zdenka@nemcb.cz,Investigator
CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 0,"Apr 7, 2026 10:37 AM",6227635207,CZ100212001,2085089,"Apr 9, 2026 2:54 PM","Apr 15, 2026 7:20 AM","AMT58660, AMT15602",Closed,5d,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator
CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 2,"Apr 20, 2026 8:43 AM",6227635208,CZ100212001,2106304,"Apr 22, 2026 7:04 PM","Apr 23, 2026 9:21 AM",AMT58660,Closed,14h 16m,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator
CZ10021 - Dr.Martin Bortlik,CZECH REPUBLIC,Induction Week 4,"May 5, 2026 10:00 AM",6227635211,CZ100212001,2133221,"May 9, 2026 6:24 PM","May 11, 2026 2:34 PM",AMT58660,Closed,1d,Tereza Hosnova,hosnova.tereza2@nemcb.cz,Investigator
CZ10020 - Dr.Lucie Gonsorcikova,CZECH REPUBLIC,Screening,"Apr 13, 2026 12:20 PM",6227993962,CZ100201001,2094721,"Apr 15, 2026 6:02 PM","Apr 21, 2026 12:47 PM","AMT58660, AMT3542",Closed,5d,Zuzana Zahradnikova,zuzana.zahradnikova@ftn.cz,Investigator
CZ10020 - Dr.Lucie Gonsorcikova,CZECH REPUBLIC,Induction Week 0,"May 18, 2026 9:28 AM",6227993966,CZ100201001,2156061,"May 22, 2026 9:37 PM","May 25, 2026 6:43 AM","ADT201, AMT58660, AMT3542",Closed,2d,Zuzana Zahradnikova,zuzana.zahradnikova@ftn.cz,Investigator
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"May 25, 2026 12:00 AM",6228501732,CZ100132003,2165892,"May 29, 2026 3:13 PM","May 31, 2026 9:26 PM",ADT8471,Closed,2d,David Stepek,dstepek@vnbrno.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Screening,"Mar 2, 2026 7:00 AM",6227323204,CZ100012002,2032628,"Mar 9, 2026 10:33 AM","Mar 9, 2026 11:58 AM",AMT58660,Closed,1h 24m,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Screening,"Mar 2, 2026 7:00 AM",6227323204,CZ100012002,2026645,"Mar 4, 2026 12:58 PM","Mar 6, 2026 6:01 PM","AMT58660, AMT3542",Closed,2d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 0,,6227323206,,2112374,"Apr 27, 2026 2:17 PM","May 5, 2026 11:24 AM","PCFCOM, ADT201, AMT58660, AMT3542",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 2,"Apr 23, 2026 7:40 AM",6227323207,CZ100012002,2113312,"Apr 27, 2026 6:35 PM","Apr 28, 2026 9:06 PM",AMT58660,Closed,1d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 2,"Mar 4, 2026 7:00 AM",6227323208,CZ100012001,2030545,"Mar 6, 2026 11:02 AM","Mar 6, 2026 11:42 AM","AMT58660, AMT688",Closed,39m,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 4,"Mar 18, 2026 7:05 AM",6227323210,CZ100012001,2053955,"Mar 20, 2026 2:50 PM","Mar 25, 2026 3:29 PM","SCD, AMT58660",Closed,5d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,CZ100012001,1976585,"Jan 30, 2026 1:21 PM","Feb 6, 2026 2:37 PM","VST, AGE",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,CZ100012001,1991148,"Feb 9, 2026 7:43 PM","Feb 13, 2026 8:04 AM",AGE,Closed,3d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Biopsy,"Feb 5, 2026 12:00 AM",6227323223,CZ100012001,1989998,"Feb 9, 2026 1:42 PM","Feb 10, 2026 6:46 PM",VST,Closed,1d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,,6227323231,,2053405,"Mar 20, 2026 12:14 PM","Mar 30, 2026 12:54 AM",PCFCOM,Closed,9d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2141856,"May 14, 2026 4:23 PM","May 19, 2026 12:54 PM","SCD, AGE",Closed,4d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2152157,"May 21, 2026 11:32 AM","May 26, 2026 8:15 AM",AGE,Closed,4d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2112413,"Apr 27, 2026 2:24 PM","May 5, 2026 11:25 AM","PSX, SCT, VST, AGE, ADT201",Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,"Apr 22, 2026 7:40 AM",6227323232,CZ100012001,2126904,"May 6, 2026 12:02 PM","May 12, 2026 4:58 PM","SCT, VST, AGE",Closed,6d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Unscheduled,,6227323233,,2053482,"Mar 20, 2026 12:40 PM","Mar 27, 2026 9:58 AM",PCFCOM,Closed,6d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 0,"Apr 8, 2026 7:10 AM",6228036554,CZ100012002,2089973,"Apr 13, 2026 3:26 PM","Apr 21, 2026 1:32 PM",AMT15602,Closed,7d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Biopsy,"May 13, 2026 12:00 AM",6228252073,CZ100012003,2147778,"May 19, 2026 10:13 AM","May 21, 2026 4:38 PM",VST,Closed,2d,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 4,"May 6, 2026 8:05 AM",6227933142,CZ100012002,2134478,"May 11, 2026 2:54 PM","May 11, 2026 3:11 PM","AMT58660, AMT3542",Closed,16m,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10001 - Dr. Matej Falc,CZECH REPUBLIC,Induction Week 12,"May 13, 2026 8:05 AM",6227933143,CZ100012001,2147202,"May 18, 2026 7:51 PM","May 19, 2026 8:38 AM",AMT58660,Closed,12h 47m,Matej Falc,matesfalc@seznam.cz,Investigator
CZ10003 - Dr. Leksa Vaclav,CZECH REPUBLIC,Screening,"May 13, 2026 8:15 AM",6227323299,CZ100032001,2154732,"May 22, 2026 12:36 PM","May 25, 2026 8:57 AM",AMT58660,Closed,2d,Leksa Vaclav,vaclav.leksa@seznam.cz,Investigator
CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Screening,"Apr 21, 2026 10:45 AM",6227635171,CZ100162001,2109874,"Apr 24, 2026 2:00 PM",,AMT58660,Closed,,,,
CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Screening,"Apr 21, 2026 10:45 AM",6227635171,CZ100162001,2123465,"May 4, 2026 7:16 PM","May 5, 2026 10:04 AM",AMT58660,Closed,14h 48m,Petr Pekny,petr.pekny@nmskb.cz,Investigator
CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Screening,"May 27, 2026 12:35 PM",6227635173,CZ100162002,2168473,"Jun 1, 2026 3:20 PM","Jun 1, 2026 3:50 PM",AMT58660,Closed,29m,Petr Pekny,petr.pekny@nmskb.cz,Investigator
CZ10016 - Dr.Robert Mudr,CZECH REPUBLIC,Induction Week 0,"May 28, 2026 10:45 AM",6227635174,CZ100162001,2173754,"Jun 3, 2026 7:23 PM","Jun 3, 2026 11:14 PM",AMT58660,Closed,3h 50m,Petr Pekny,petr.pekny@nmskb.cz,Investigator
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 0,"Mar 24, 2026 9:40 AM",6227635142,CZ100132001,2064220,"Mar 26, 2026 9:37 PM",,"AMT58660, AMT3542",Closed,,,,
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 0,"Mar 24, 2026 9:40 AM",6227635142,CZ100132001,2066330,"Mar 27, 2026 6:43 PM","Mar 30, 2026 10:41 PM",AMT58660,Closed,3d,David Stepek,dstepek@vnbrno.cz,Investigator
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 2,"Apr 7, 2026 8:50 AM",6227635144,CZ100132001,2087084,"Apr 10, 2026 1:27 PM",,AMT58660,Closed,,,,
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 2,"Apr 7, 2026 8:50 AM",6227635144,CZ100132001,2100086,"Apr 18, 2026 11:15 AM","Apr 22, 2026 7:51 PM",AMT58660,Closed,4d,David Stepek,dstepek@vnbrno.cz,Investigator
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 4,"Apr 21, 2026 8:45 AM",6227635146,CZ100132001,2108501,"Apr 23, 2026 6:55 PM",,AMT58660,Closed,,,,
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Induction Week 4,"Apr 21, 2026 8:45 AM",6227635146,CZ100132001,2123492,"May 4, 2026 7:24 PM","May 5, 2026 3:30 PM",AMT58660,Closed,20h 6m,David Stepek,dstepek@vnbrno.cz,Investigator
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2101883,"Apr 20, 2026 6:49 PM","Apr 22, 2026 7:51 PM",AMT58660,Closed,2d,David Stepek,dstepek@vnbrno.cz,Investigator
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2090916,"Apr 13, 2026 9:15 PM",,AMT58660,Closed,,,,
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Apr 1, 2026 8:00 AM",6227635139,CZ100132002,2079289,"Apr 6, 2026 3:21 PM",,AMT58660,Closed,,,,
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Feb 26, 2026 1:20 PM",6227635140,CZ100132001,2033901,"Mar 9, 2026 3:53 PM","Mar 16, 2026 10:08 PM","SCD, AMT58660, AMT3542",Closed,7d,David Stepek,dstepek@vnbrno.cz,Investigator
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"Feb 26, 2026 1:20 PM",6227635140,CZ100132001,2023257,"Mar 2, 2026 6:47 PM",,"SCD, AGE, AMT58660, AMT3542",Closed,,,,
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Screening,"May 6, 2026 10:45 AM",6227635141,CZ100132003,2137874,"May 12, 2026 8:03 PM","May 19, 2026 7:48 AM",AMT58660,Closed,6d,,,
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"Apr 21, 2026 12:00 AM",6227635159,CZ100132002,2109534,"Apr 24, 2026 12:45 PM",,ADT8471,Closed,,,,
CZ10013 - Dr.David Stepek,CZECH REPUBLIC,Biopsy,"Apr 21, 2026 12:00 AM",6227635159,CZ100132002,2123486,"May 4, 2026 7:23 PM","May 5, 2026 3:30 PM",ADT8471,Closed,20h 7m,David Stepek,dstepek@vnbrno.cz,Investigator
CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Unscheduled,,6227697745,,2140058,"May 13, 2026 7:02 PM","May 26, 2026 9:46 AM",PCFCOM,Response Received,12d,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator
CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Screening,"Mar 18, 2026 9:18 AM",6227697718,CZ100122001,2053959,"Mar 20, 2026 2:52 PM","Mar 23, 2026 12:00 PM","SCT, AMT58660",Closed,2d,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator
CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 0,"Apr 7, 2026 11:45 AM",6227697719,CZ100122001,2085069,"Apr 9, 2026 2:48 PM","Apr 9, 2026 6:28 PM",AMT58660,Closed,3h 39m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator
CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 2,"Apr 22, 2026 9:25 AM",6227697722,CZ100122001,2113315,"Apr 27, 2026 6:35 PM","Apr 27, 2026 8:50 PM",AMT58660,Closed,2h 14m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator
CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Induction Week 4,"May 7, 2026 12:40 PM",6227697723,CZ100122001,2142322,"May 14, 2026 7:10 PM","May 14, 2026 7:42 PM",AMT58660,Closed,31m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator
CZ10012 - Dr.Stefan Konecny,CZECH REPUBLIC,Biopsy,"Mar 23, 2026 12:00 AM",6227697736,CZ100122001,2060524,"Mar 25, 2026 12:53 PM","Mar 25, 2026 2:09 PM",AMT23260,Closed,1h 15m,Kristyna Hosova,hosova.kristyna@fnbrno.cz,Investigator
CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Mar 31, 2026 8:30 AM",6227323330,CZ100092001,2075611,"Apr 2, 2026 5:37 PM",,AMT58660,Closed,,,,
CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Mar 31, 2026 8:30 AM",6227323330,CZ100092001,2085558,"Apr 9, 2026 5:08 PM","Apr 10, 2026 2:06 PM",AMT58660,Closed,20h 58m,Jiri Pumprla,research@vilazdravi.cz,Investigator
CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Screening,"Apr 16, 2026 12:00 PM",6227323332,CZ100092002,2101792,"Apr 20, 2026 6:19 PM","Apr 23, 2026 1:22 PM",AMT58660,Closed,2d,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator
CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Induction Week 0,"May 5, 2026 11:30 AM",6227323334,CZ100092001,2133224,"May 9, 2026 6:30 PM","May 13, 2026 10:10 AM","AMT58660, ADT809",Closed,3d,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator
CZ10009 - Dr. Jiri Pumprla,CZECH REPUBLIC,Induction Week 2,"May 19, 2026 10:50 AM",6227323335,CZ100092001,2158952,"May 26, 2026 12:21 PM","May 27, 2026 9:03 AM",AMT58660,Closed,20h 42m,Marketa Menyhardova,menyhardova@vilazdravi.cz,Investigator
CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Unscheduled,"Mar 17, 2026 8:00 AM",6227323265,CZ100062001,2052144,"Mar 19, 2026 4:08 PM","Mar 24, 2026 9:29 AM","PSX, SCT, AGE",Closed,4d,Michal Konecny,konecnymi@seznam.cz,Investigator
CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Screening,"Apr 20, 2026 7:45 AM",6227323234,CZ100062002,2106334,"Apr 22, 2026 7:18 PM","Apr 22, 2026 7:36 PM",AMT58660,Closed,18m,Michal Konecny,konecnymi@seznam.cz,Investigator
CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 0,"Mar 20, 2026 8:00 AM",6227323237,CZ100062001,2064023,"Mar 26, 2026 7:00 PM","Mar 27, 2026 9:04 AM",PCFCOM,Closed,14h 3m,Michal Konecny,konecnymi@seznam.cz,Investigator
CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 0,"Mar 20, 2026 8:00 AM",6227323237,CZ100062001,2061456,"Mar 25, 2026 6:16 PM","Mar 26, 2026 8:38 AM",AMT58660,Closed,14h 22m,Michal Konecny,konecnymi@seznam.cz,Investigator
CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 0,"May 26, 2026 9:20 AM",6227323238,CZ100062002,2168534,"Jun 1, 2026 3:33 PM","Jun 6, 2026 6:19 PM","ADT201, AMT58660",Response Received,5d,Michal Konecny,konecnymi@seznam.cz,Investigator
CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 2,"Apr 8, 2026 7:10 AM",6227323240,CZ100062001,2086807,"Apr 10, 2026 12:21 PM","Apr 18, 2026 10:40 PM","AMT58660, ADT809",Closed,8d,Michal Konecny,konecnymi@seznam.cz,Investigator
CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Induction Week 4,"Apr 15, 2026 8:45 AM",6227323242,CZ100062001,2102704,"Apr 21, 2026 11:22 AM","Apr 22, 2026 7:36 PM",AMT58660,Closed,1d,Michal Konecny,konecnymi@seznam.cz,Investigator
CZ10006 - Dr. Michal Konecny,CZECH REPUBLIC,Biopsy,"Feb 19, 2026 12:00 AM",6227323254,CZ100062001,2014333,"Feb 24, 2026 4:13 PM","Feb 24, 2026 8:20 PM",VST,Closed,4h 6m,Michal Konecny,konecnymi@seznam.cz,Investigator
title,value,,,,,,,,,,,,,
Search,,,,,,,,,,,,,,
Site,"930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531",,,,,,,,,,,,,
Unresponded Only?,FALSE,,,,,,,,,,,,,
Posted,From - To - ,,,,,,,,,,,,,
1 Site Country Visit Visit Collection Date Accession Subject eQueryId Create Date Response Date Time Issue Type Status Time Before Response User Name Email Study Role
2 CZ10022 - Dr. Petr Hrabak CZECH REPUBLIC Unscheduled Mar 13, 2026 8:40 AM 6227323295 CZ100222004 2047932 Mar 17, 2026 3:49 PM Mar 17, 2026 9:07 PM VST Closed 5h 17m Jana Pomahacova jana.pomahacova@clinoxus.com Investigator
3 CZ10022 - Dr. Petr Hrabak CZECH REPUBLIC Unscheduled Mar 13, 2026 7:45 AM 6227323297 CZ100222005 2047949 Mar 17, 2026 3:56 PM Mar 17, 2026 9:09 PM VST Closed 5h 12m Jana Pomahacova jana.pomahacova@clinoxus.com Investigator
4 CZ10022 - Dr. Petr Hrabak CZECH REPUBLIC Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CZ100222003 2038559 Mar 11, 2026 4:39 PM Mar 11, 2026 8:32 PM AGE, ADT201, AMT58660, AMT3542 Closed 3h 53m Jana Pomahacova jana.pomahacova@clinoxus.com Investigator
5 CZ10022 - Dr. Petr Hrabak CZECH REPUBLIC Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CZ100222003 2073305 Apr 1, 2026 7:54 PM Apr 2, 2026 7:37 AM AMT58660 Closed 11h 43m Jana Pomahacova jana.pomahacova@clinoxus.com Investigator
6 CZ10022 - Dr. Petr Hrabak CZECH REPUBLIC Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CZ100222003 2086982 Apr 10, 2026 1:00 PM Apr 10, 2026 1:06 PM AMT58660 Closed 5m Katerina Havlikova katerina.havlikova@clinoxus.com Investigator
7 CZ10022 - Dr. Petr Hrabak CZECH REPUBLIC Screening Mar 2, 2026 11:00 AM 6227810899 CZ100222003 2029805 Mar 5, 2026 6:36 PM Mar 6, 2026 9:01 AM AMT58660, AMT3542 Closed 14h 24m Jana Pomahacova jana.pomahacova@clinoxus.com Investigator
8 CZ10022 - Dr. Petr Hrabak CZECH REPUBLIC Screening Mar 4, 2026 9:20 AM 6227810900 CZ100222005 2031896 Mar 6, 2026 6:45 PM Mar 6, 2026 7:25 PM AMT58660, AMT3542 Closed 40m Jana Pomahacova jana.pomahacova@clinoxus.com Investigator
9 CZ10022 - Dr. Petr Hrabak CZECH REPUBLIC Screening Mar 3, 2026 12:10 PM 6227810901 CZ100222004 2029774 Mar 5, 2026 6:23 PM Mar 6, 2026 7:24 PM AMT58660, AMT3542 Closed 1d Jana Pomahacova jana.pomahacova@clinoxus.com Investigator
10 CZ10022 - Dr. Petr Hrabak CZECH REPUBLIC Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CZ100222005 2089669 Apr 13, 2026 2:06 PM Apr 23, 2026 12:53 PM PCFCOM Closed 9d Jana Pomahacova jana.pomahacova@clinoxus.com Investigator
11 CZ10021 - Dr.Martin Bortlik CZECH REPUBLIC Screening Feb 25, 2026 12:15 PM 6227635204 CZ100212001 2019716 Feb 27, 2026 12:09 PM Mar 3, 2026 11:11 AM AMT58660, AMT3542 Closed 3d Zdenka Dvorakova dvorakova.zdenka@nemcb.cz Investigator
12 CZ10021 - Dr.Martin Bortlik CZECH REPUBLIC Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CZ100212001 2085089 Apr 9, 2026 2:54 PM Apr 15, 2026 7:20 AM AMT58660, AMT15602 Closed 5d Tereza Hosnova hosnova.tereza2@nemcb.cz Investigator
13 CZ10021 - Dr.Martin Bortlik CZECH REPUBLIC Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CZ100212001 2106304 Apr 22, 2026 7:04 PM Apr 23, 2026 9:21 AM AMT58660 Closed 14h 16m Tereza Hosnova hosnova.tereza2@nemcb.cz Investigator
14 CZ10021 - Dr.Martin Bortlik CZECH REPUBLIC Induction Week 4 May 5, 2026 10:00 AM 6227635211 CZ100212001 2133221 May 9, 2026 6:24 PM May 11, 2026 2:34 PM AMT58660 Closed 1d Tereza Hosnova hosnova.tereza2@nemcb.cz Investigator
15 CZ10020 - Dr.Lucie Gonsorcikova CZECH REPUBLIC Screening Apr 13, 2026 12:20 PM 6227993962 CZ100201001 2094721 Apr 15, 2026 6:02 PM Apr 21, 2026 12:47 PM AMT58660, AMT3542 Closed 5d Zuzana Zahradnikova zuzana.zahradnikova@ftn.cz Investigator
16 CZ10020 - Dr.Lucie Gonsorcikova CZECH REPUBLIC Induction Week 0 May 18, 2026 9:28 AM 6227993966 CZ100201001 2156061 May 22, 2026 9:37 PM May 25, 2026 6:43 AM ADT201, AMT58660, AMT3542 Closed 2d Zuzana Zahradnikova zuzana.zahradnikova@ftn.cz Investigator
17 CZ10013 - Dr.David Stepek CZECH REPUBLIC Biopsy May 25, 2026 12:00 AM 6228501732 CZ100132003 2165892 May 29, 2026 3:13 PM May 31, 2026 9:26 PM ADT8471 Closed 2d David Stepek dstepek@vnbrno.cz Investigator
18 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Screening Mar 2, 2026 7:00 AM 6227323204 CZ100012002 2032628 Mar 9, 2026 10:33 AM Mar 9, 2026 11:58 AM AMT58660 Closed 1h 24m Matej Falc matesfalc@seznam.cz Investigator
19 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Screening Mar 2, 2026 7:00 AM 6227323204 CZ100012002 2026645 Mar 4, 2026 12:58 PM Mar 6, 2026 6:01 PM AMT58660, AMT3542 Closed 2d Matej Falc matesfalc@seznam.cz Investigator
20 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Induction Week 0 6227323206 2112374 Apr 27, 2026 2:17 PM May 5, 2026 11:24 AM PCFCOM, ADT201, AMT58660, AMT3542 Closed 7d Matej Falc matesfalc@seznam.cz Investigator
21 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CZ100012002 2113312 Apr 27, 2026 6:35 PM Apr 28, 2026 9:06 PM AMT58660 Closed 1d Matej Falc matesfalc@seznam.cz Investigator
22 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CZ100012001 2030545 Mar 6, 2026 11:02 AM Mar 6, 2026 11:42 AM AMT58660, AMT688 Closed 39m Matej Falc matesfalc@seznam.cz Investigator
23 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CZ100012001 2053955 Mar 20, 2026 2:50 PM Mar 25, 2026 3:29 PM SCD, AMT58660 Closed 5d Matej Falc matesfalc@seznam.cz Investigator
24 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Stool Pathogens Jan 28, 2026 6:00 AM 6227323211 CZ100012001 1976585 Jan 30, 2026 1:21 PM Feb 6, 2026 2:37 PM VST, AGE Closed 7d Matej Falc matesfalc@seznam.cz Investigator
25 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Stool Pathogens Jan 28, 2026 6:00 AM 6227323211 CZ100012001 1991148 Feb 9, 2026 7:43 PM Feb 13, 2026 8:04 AM AGE Closed 3d Matej Falc matesfalc@seznam.cz Investigator
26 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Biopsy Feb 5, 2026 12:00 AM 6227323223 CZ100012001 1989998 Feb 9, 2026 1:42 PM Feb 10, 2026 6:46 PM VST Closed 1d Matej Falc matesfalc@seznam.cz Investigator
27 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Unscheduled 6227323231 2053405 Mar 20, 2026 12:14 PM Mar 30, 2026 12:54 AM PCFCOM Closed 9d Matej Falc matesfalc@seznam.cz Investigator
28 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Unscheduled Apr 22, 2026 7:40 AM 6227323232 CZ100012001 2141856 May 14, 2026 4:23 PM May 19, 2026 12:54 PM SCD, AGE Closed 4d Matej Falc matesfalc@seznam.cz Investigator
29 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Unscheduled Apr 22, 2026 7:40 AM 6227323232 CZ100012001 2152157 May 21, 2026 11:32 AM May 26, 2026 8:15 AM AGE Closed 4d Matej Falc matesfalc@seznam.cz Investigator
30 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Unscheduled Apr 22, 2026 7:40 AM 6227323232 CZ100012001 2112413 Apr 27, 2026 2:24 PM May 5, 2026 11:25 AM PSX, SCT, VST, AGE, ADT201 Closed 7d Matej Falc matesfalc@seznam.cz Investigator
31 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Unscheduled Apr 22, 2026 7:40 AM 6227323232 CZ100012001 2126904 May 6, 2026 12:02 PM May 12, 2026 4:58 PM SCT, VST, AGE Closed 6d Matej Falc matesfalc@seznam.cz Investigator
32 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Unscheduled 6227323233 2053482 Mar 20, 2026 12:40 PM Mar 27, 2026 9:58 AM PCFCOM Closed 6d Matej Falc matesfalc@seznam.cz Investigator
33 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CZ100012002 2089973 Apr 13, 2026 3:26 PM Apr 21, 2026 1:32 PM AMT15602 Closed 7d Matej Falc matesfalc@seznam.cz Investigator
34 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Biopsy May 13, 2026 12:00 AM 6228252073 CZ100012003 2147778 May 19, 2026 10:13 AM May 21, 2026 4:38 PM VST Closed 2d Matej Falc matesfalc@seznam.cz Investigator
35 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Induction Week 4 May 6, 2026 8:05 AM 6227933142 CZ100012002 2134478 May 11, 2026 2:54 PM May 11, 2026 3:11 PM AMT58660, AMT3542 Closed 16m Matej Falc matesfalc@seznam.cz Investigator
36 CZ10001 - Dr. Matej Falc CZECH REPUBLIC Induction Week 12 May 13, 2026 8:05 AM 6227933143 CZ100012001 2147202 May 18, 2026 7:51 PM May 19, 2026 8:38 AM AMT58660 Closed 12h 47m Matej Falc matesfalc@seznam.cz Investigator
37 CZ10003 - Dr. Leksa Vaclav CZECH REPUBLIC Screening May 13, 2026 8:15 AM 6227323299 CZ100032001 2154732 May 22, 2026 12:36 PM May 25, 2026 8:57 AM AMT58660 Closed 2d Leksa Vaclav vaclav.leksa@seznam.cz Investigator
38 CZ10016 - Dr.Robert Mudr CZECH REPUBLIC Screening Apr 21, 2026 10:45 AM 6227635171 CZ100162001 2109874 Apr 24, 2026 2:00 PM AMT58660 Closed
39 CZ10016 - Dr.Robert Mudr CZECH REPUBLIC Screening Apr 21, 2026 10:45 AM 6227635171 CZ100162001 2123465 May 4, 2026 7:16 PM May 5, 2026 10:04 AM AMT58660 Closed 14h 48m Petr Pekny petr.pekny@nmskb.cz Investigator
40 CZ10016 - Dr.Robert Mudr CZECH REPUBLIC Screening May 27, 2026 12:35 PM 6227635173 CZ100162002 2168473 Jun 1, 2026 3:20 PM Jun 1, 2026 3:50 PM AMT58660 Closed 29m Petr Pekny petr.pekny@nmskb.cz Investigator
41 CZ10016 - Dr.Robert Mudr CZECH REPUBLIC Induction Week 0 May 28, 2026 10:45 AM 6227635174 CZ100162001 2173754 Jun 3, 2026 7:23 PM Jun 3, 2026 11:14 PM AMT58660 Closed 3h 50m Petr Pekny petr.pekny@nmskb.cz Investigator
42 CZ10013 - Dr.David Stepek CZECH REPUBLIC Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CZ100132001 2064220 Mar 26, 2026 9:37 PM AMT58660, AMT3542 Closed
43 CZ10013 - Dr.David Stepek CZECH REPUBLIC Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CZ100132001 2066330 Mar 27, 2026 6:43 PM Mar 30, 2026 10:41 PM AMT58660 Closed 3d David Stepek dstepek@vnbrno.cz Investigator
44 CZ10013 - Dr.David Stepek CZECH REPUBLIC Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CZ100132001 2087084 Apr 10, 2026 1:27 PM AMT58660 Closed
45 CZ10013 - Dr.David Stepek CZECH REPUBLIC Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CZ100132001 2100086 Apr 18, 2026 11:15 AM Apr 22, 2026 7:51 PM AMT58660 Closed 4d David Stepek dstepek@vnbrno.cz Investigator
46 CZ10013 - Dr.David Stepek CZECH REPUBLIC Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CZ100132001 2108501 Apr 23, 2026 6:55 PM AMT58660 Closed
47 CZ10013 - Dr.David Stepek CZECH REPUBLIC Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CZ100132001 2123492 May 4, 2026 7:24 PM May 5, 2026 3:30 PM AMT58660 Closed 20h 6m David Stepek dstepek@vnbrno.cz Investigator
48 CZ10013 - Dr.David Stepek CZECH REPUBLIC Screening Apr 1, 2026 8:00 AM 6227635139 CZ100132002 2101883 Apr 20, 2026 6:49 PM Apr 22, 2026 7:51 PM AMT58660 Closed 2d David Stepek dstepek@vnbrno.cz Investigator
49 CZ10013 - Dr.David Stepek CZECH REPUBLIC Screening Apr 1, 2026 8:00 AM 6227635139 CZ100132002 2090916 Apr 13, 2026 9:15 PM AMT58660 Closed
50 CZ10013 - Dr.David Stepek CZECH REPUBLIC Screening Apr 1, 2026 8:00 AM 6227635139 CZ100132002 2079289 Apr 6, 2026 3:21 PM AMT58660 Closed
51 CZ10013 - Dr.David Stepek CZECH REPUBLIC Screening Feb 26, 2026 1:20 PM 6227635140 CZ100132001 2033901 Mar 9, 2026 3:53 PM Mar 16, 2026 10:08 PM SCD, AMT58660, AMT3542 Closed 7d David Stepek dstepek@vnbrno.cz Investigator
52 CZ10013 - Dr.David Stepek CZECH REPUBLIC Screening Feb 26, 2026 1:20 PM 6227635140 CZ100132001 2023257 Mar 2, 2026 6:47 PM SCD, AGE, AMT58660, AMT3542 Closed
53 CZ10013 - Dr.David Stepek CZECH REPUBLIC Screening May 6, 2026 10:45 AM 6227635141 CZ100132003 2137874 May 12, 2026 8:03 PM May 19, 2026 7:48 AM AMT58660 Closed 6d
54 CZ10013 - Dr.David Stepek CZECH REPUBLIC Biopsy Apr 21, 2026 12:00 AM 6227635159 CZ100132002 2109534 Apr 24, 2026 12:45 PM ADT8471 Closed
55 CZ10013 - Dr.David Stepek CZECH REPUBLIC Biopsy Apr 21, 2026 12:00 AM 6227635159 CZ100132002 2123486 May 4, 2026 7:23 PM May 5, 2026 3:30 PM ADT8471 Closed 20h 7m David Stepek dstepek@vnbrno.cz Investigator
56 CZ10012 - Dr.Stefan Konecny CZECH REPUBLIC Unscheduled 6227697745 2140058 May 13, 2026 7:02 PM May 26, 2026 9:46 AM PCFCOM Response Received 12d Kristyna Hosova hosova.kristyna@fnbrno.cz Investigator
57 CZ10012 - Dr.Stefan Konecny CZECH REPUBLIC Screening Mar 18, 2026 9:18 AM 6227697718 CZ100122001 2053959 Mar 20, 2026 2:52 PM Mar 23, 2026 12:00 PM SCT, AMT58660 Closed 2d Kristyna Hosova hosova.kristyna@fnbrno.cz Investigator
58 CZ10012 - Dr.Stefan Konecny CZECH REPUBLIC Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CZ100122001 2085069 Apr 9, 2026 2:48 PM Apr 9, 2026 6:28 PM AMT58660 Closed 3h 39m Kristyna Hosova hosova.kristyna@fnbrno.cz Investigator
59 CZ10012 - Dr.Stefan Konecny CZECH REPUBLIC Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CZ100122001 2113315 Apr 27, 2026 6:35 PM Apr 27, 2026 8:50 PM AMT58660 Closed 2h 14m Kristyna Hosova hosova.kristyna@fnbrno.cz Investigator
60 CZ10012 - Dr.Stefan Konecny CZECH REPUBLIC Induction Week 4 May 7, 2026 12:40 PM 6227697723 CZ100122001 2142322 May 14, 2026 7:10 PM May 14, 2026 7:42 PM AMT58660 Closed 31m Kristyna Hosova hosova.kristyna@fnbrno.cz Investigator
61 CZ10012 - Dr.Stefan Konecny CZECH REPUBLIC Biopsy Mar 23, 2026 12:00 AM 6227697736 CZ100122001 2060524 Mar 25, 2026 12:53 PM Mar 25, 2026 2:09 PM AMT23260 Closed 1h 15m Kristyna Hosova hosova.kristyna@fnbrno.cz Investigator
62 CZ10009 - Dr. Jiri Pumprla CZECH REPUBLIC Screening Mar 31, 2026 8:30 AM 6227323330 CZ100092001 2075611 Apr 2, 2026 5:37 PM AMT58660 Closed
63 CZ10009 - Dr. Jiri Pumprla CZECH REPUBLIC Screening Mar 31, 2026 8:30 AM 6227323330 CZ100092001 2085558 Apr 9, 2026 5:08 PM Apr 10, 2026 2:06 PM AMT58660 Closed 20h 58m Jiri Pumprla research@vilazdravi.cz Investigator
64 CZ10009 - Dr. Jiri Pumprla CZECH REPUBLIC Screening Apr 16, 2026 12:00 PM 6227323332 CZ100092002 2101792 Apr 20, 2026 6:19 PM Apr 23, 2026 1:22 PM AMT58660 Closed 2d Marketa Menyhardova menyhardova@vilazdravi.cz Investigator
65 CZ10009 - Dr. Jiri Pumprla CZECH REPUBLIC Induction Week 0 May 5, 2026 11:30 AM 6227323334 CZ100092001 2133224 May 9, 2026 6:30 PM May 13, 2026 10:10 AM AMT58660, ADT809 Closed 3d Marketa Menyhardova menyhardova@vilazdravi.cz Investigator
66 CZ10009 - Dr. Jiri Pumprla CZECH REPUBLIC Induction Week 2 May 19, 2026 10:50 AM 6227323335 CZ100092001 2158952 May 26, 2026 12:21 PM May 27, 2026 9:03 AM AMT58660 Closed 20h 42m Marketa Menyhardova menyhardova@vilazdravi.cz Investigator
67 CZ10006 - Dr. Michal Konecny CZECH REPUBLIC Unscheduled Mar 17, 2026 8:00 AM 6227323265 CZ100062001 2052144 Mar 19, 2026 4:08 PM Mar 24, 2026 9:29 AM PSX, SCT, AGE Closed 4d Michal Konecny konecnymi@seznam.cz Investigator
68 CZ10006 - Dr. Michal Konecny CZECH REPUBLIC Screening Apr 20, 2026 7:45 AM 6227323234 CZ100062002 2106334 Apr 22, 2026 7:18 PM Apr 22, 2026 7:36 PM AMT58660 Closed 18m Michal Konecny konecnymi@seznam.cz Investigator
69 CZ10006 - Dr. Michal Konecny CZECH REPUBLIC Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CZ100062001 2064023 Mar 26, 2026 7:00 PM Mar 27, 2026 9:04 AM PCFCOM Closed 14h 3m Michal Konecny konecnymi@seznam.cz Investigator
70 CZ10006 - Dr. Michal Konecny CZECH REPUBLIC Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CZ100062001 2061456 Mar 25, 2026 6:16 PM Mar 26, 2026 8:38 AM AMT58660 Closed 14h 22m Michal Konecny konecnymi@seznam.cz Investigator
71 CZ10006 - Dr. Michal Konecny CZECH REPUBLIC Induction Week 0 May 26, 2026 9:20 AM 6227323238 CZ100062002 2168534 Jun 1, 2026 3:33 PM Jun 6, 2026 6:19 PM ADT201, AMT58660 Response Received 5d Michal Konecny konecnymi@seznam.cz Investigator
72 CZ10006 - Dr. Michal Konecny CZECH REPUBLIC Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CZ100062001 2086807 Apr 10, 2026 12:21 PM Apr 18, 2026 10:40 PM AMT58660, ADT809 Closed 8d Michal Konecny konecnymi@seznam.cz Investigator
73 CZ10006 - Dr. Michal Konecny CZECH REPUBLIC Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CZ100062001 2102704 Apr 21, 2026 11:22 AM Apr 22, 2026 7:36 PM AMT58660 Closed 1d Michal Konecny konecnymi@seznam.cz Investigator
74 CZ10006 - Dr. Michal Konecny CZECH REPUBLIC Biopsy Feb 19, 2026 12:00 AM 6227323254 CZ100062001 2014333 Feb 24, 2026 4:13 PM Feb 24, 2026 8:20 PM VST Closed 4h 6m Michal Konecny konecnymi@seznam.cz Investigator
75 title value
76 Search
77 Site 930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531
78 Unresponded Only? FALSE
79 Posted From - To -
@@ -0,0 +1,9 @@
Site,Country,Visit,Visit Collection Date,Accession,Subject,eQueryId,Create Date,Response Date Time,Issue Type,Status,Time Before Response,User Name,Email,Study Role
,,,,,,,,,,,,,,
,,,,,,,,,,,,,,
,,,,,,,,,,,,,,
title,value,,,,,,,,,,,,,
Search,,,,,,,,,,,,,,
Site,"930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531",,,,,,,,,,,,,
Unresponded Only?,TRUE,,,,,,,,,,,,,
Posted,From - To - ,,,,,,,,,,,,,
1 Site Country Visit Visit Collection Date Accession Subject eQueryId Create Date Response Date Time Issue Type Status Time Before Response User Name Email Study Role
2
3
4
5 title value
6 Search
7 Site 930551, 930556, 930525, 930549, 930543, 930547, 930555, 930557, 930539, 930536, 930553, 930531
8 Unresponded Only? TRUE
9 Posted From - To -
@@ -0,0 +1,773 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Alkaline Phosphatase,,57,,,,,40 - 129,U/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,ALT (SGPT),,32,,,,,5 - 48,U/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,AST (SGOT),,35,,,,,8 - 40,U/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,LDH,,248,,H,,,53 - 234,U/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Urea Nitrogen,,8.2,,,,,1.4 - 8.6,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,97,,,,,40 - 110,umol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Serum Glucose,,5.0,,,,,3.9 - 5.6,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Serum Uric Acid,,395,,,,,125 - 488,umol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Creatine Kinase,,439,,H,,,39 - 308,U/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Serum Bicarbonate,,24.4,,,,,19.3 - 29.3,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CHEMISTRY PANEL,Magnesium,,0.77,,,,,0.66 - 1.07,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,88,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,FECAL COLLECTION D/T,Stool Collection Date,Y,01-Jun-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,FECAL COLLECTION D/T,Stool Collection Time,Y,05:00,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,129,,,,,127 - 181,g/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.38,,L,,,0.39 - 0.54,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,L,,,4.5 - 6.4,TI/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.82,,,,,3.8 - 10.7,GI/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.31,,,,,1.96 - 7.23,GI/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.93,,,,,0.91 - 4.28,GI/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.32,,,,,0 - 0.57,GI/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.1,,,,,40.5 - 75,%
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.4,,,,,15.4 - 48.5,%
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,3.3,,,,,2.6 - 10.1,%
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.7,,,,,0 - 6.8,%
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,%
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,251,,,,,140 - 400,GI/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,LIPID PANEL,Direct HDL-C 4th Generation,,1.53,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,LIPID PANEL,Triglycerides (GPO),,0.90,,,,,0.56 - 3.62,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,LIPID PANEL,Cholesterol (High Performance),,5.18,,,,,3.88 - 6.83,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,LIPID PANEL,LDL Chol Friedewald 4th,,3.24,,,,,0 - 3.34,mmol/L
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,01-Jun-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,14:55,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,01-Jun-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,16:05,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,01-Jun-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,14:55,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,01-Jun-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:00,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,01-Jun-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,05:00,,,,,,
CZ100222003,,,,,Male,Induction Week 12,,"Jun 1, 2026 2:55 PM",6228137355,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,20-May-2026,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,11:44,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,22-May-2026,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100222003,,,,,Male,Biopsy,,"May 20, 2026 12:00 AM",6228179945,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Alkaline Phosphatase,,68,,,,,40 - 129,U/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,ALT (SGPT),,10,,,,,5 - 48,U/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,GGT,,10,,,,,10 - 61,U/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,101,,,,,40 - 110,umol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Uric Acid,,255,,,,,125 - 488,umol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Creatine Kinase,,131,,,,,39 - 308,U/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 1.07,mmol/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,87,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,FECAL COLLECTION D/T,Stool Collection Time,Y,06:40,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,127 - 181,g/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.72,,,,,3.8 - 10.7,GI/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.17,,,,,1.96 - 7.23,GI/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.71,,,,,0.91 - 4.28,GI/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.36,,,,,0.12 - 0.92,GI/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.44,,,,,0 - 0.57,GI/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,55.4,,,,,40.5 - 75,%
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.0,,,,,15.4 - 48.5,%
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.3,,,,,2.6 - 10.1,%
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,7.7,,H,,,0 - 6.8,%
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,%
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,294,,,,,140 - 400,GI/L
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:40,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,05-May-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:50,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:40,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:40,,,,,,
CZ100222005,,,,,Male,Induction Week 4,,"May 5, 2026 7:40 AM",6228179936,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,40 - 129,U/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,ALT (SGPT),,7,,,,,5 - 48,U/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,GGT,,7,,L,,,10 - 61,U/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,LDH,,147,,,,,53 - 234,U/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,88,,,,,40 - 110,umol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Glucose,,4.5,,,,,3.9 - 5.6,mmol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Uric Acid,,261,,,,,125 - 488,umol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Creatine Kinase,,112,,,,,39 - 308,U/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CHEMISTRY PANEL,Magnesium,,0.76,,,,,0.66 - 1.07,mmol/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,102,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,FECAL COLLECTION D/T,Stool Collection Date,Y,22-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,FECAL COLLECTION D/T,Stool Collection Time,Y,05:40,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,127 - 181,g/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.39 - 0.54,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.68,,,,,3.8 - 10.7,GI/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.92,,,,,1.96 - 7.23,GI/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.94,,,,,0.91 - 4.28,GI/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.40,,,,,0 - 0.57,GI/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.7,,,,,40.5 - 75,%
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.0,,,,,15.4 - 48.5,%
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,%
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.9,,,,,0 - 6.8,%
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,308,,,,,140 - 400,GI/L
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,14:15,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,22-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,15:25,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,14:15,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,22-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:40,,,,,,
CZ100222005,,,,,Male,Induction Week 2,,"Apr 22, 2026 2:15 PM",6228179932,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.2,,,,,0 - 6.2,umol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,40 - 129,U/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,ALT (SGPT),,7,,,,,5 - 48,U/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,GGT,,7,,L,,,10 - 61,U/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,LDH,,153,,,,,53 - 234,U/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 8.6,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Glucose,,4.2,,,,,3.9 - 5.6,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Uric Acid,,299,,,,,125 - 488,umol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Creatine Kinase,,116,,,,,39 - 308,U/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CHEMISTRY PANEL,Magnesium,,0.80,,,,,0.66 - 1.07,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,106,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,FECAL COLLECTION D/T,Stool Collection Date,Y,09-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,FECAL COLLECTION D/T,Stool Collection Time,Y,05:55,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,127 - 181,g/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.07,,,,,3.8 - 10.7,GI/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.83,,,,,1.96 - 7.23,GI/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.67,,,,,0.91 - 4.28,GI/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.1,,,,,40.5 - 75,%
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.6,,,,,15.4 - 48.5,%
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,%
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.2,,,,,0 - 6.8,%
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,%
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,314,,,,,140 - 400,GI/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,Direct HDL-C 4th Generation,,1.90,,H,,,1.03 - 1.53,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,Triglycerides (GPO),,0.43,,L,,,0.56 - 3.62,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,Cholesterol (High Performance),,3.22,,L,,,3.88 - 6.83,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,LIPID PANEL,LDL Chol Friedewald 4th,,1.12,,,,,0 - 3.34,mmol/L
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,09-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:35,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,09-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:45,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,09-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:35,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,09-Apr-2026,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,05:55,,,,,,
CZ100222005,,,,,Male,Induction Week 0,,"Apr 9, 2026 10:35 AM",6228173397,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Alkaline Phosphatase,,64,,,,,40 - 129,U/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,ALT (SGPT),,42,,,,,5 - 48,U/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,GGT,,24,,,,,10 - 61,U/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,LDH,,225,,,,,53 - 234,U/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Urea Nitrogen,,10.1,,H,,,1.4 - 8.6,mmol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,110,,,,,40 - 110,umol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Uric Acid,,455,,,,,125 - 488,umol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Creatine Kinase,,367,,H,,,39 - 308,U/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Bicarbonate,,24.7,,,,,19.3 - 29.3,mmol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CHEMISTRY PANEL,Magnesium,,0.77,,,,,0.66 - 1.07,mmol/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,76,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,FECAL COLLECTION D/T,Stool Collection Date,Y,08-Apr-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,FECAL COLLECTION D/T,Stool Collection Time,Y,05:15,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,135,,,,,127 - 181,g/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 96,fL
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.70,,,,,3.8 - 10.7,GI/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.26,,,,,0.91 - 4.28,GI/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.67,R,H,,,0 - 0.57,GI/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,40.8,,,,,40.5 - 75,%
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,39.6,,,,,15.4 - 48.5,%
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,%
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,11.7,R,H,,,0 - 6.8,%
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,%
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,282,,,,,140 - 400,GI/L
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:05,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,08-Apr-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:15,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:05,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,08-Apr-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:15,,,,,,
CZ100222003,,,,,Male,Induction Week 4,,"Apr 8, 2026 8:05 AM",6227323274,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,01-Apr-2026,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:46,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,03-Apr-2026,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100222005,,,,,Male,Biopsy,,"Apr 1, 2026 12:00 AM",6228023951,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Alkaline Phosphatase,,58,,,,,40 - 129,U/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,ALT (SGPT),,26,,,,,5 - 48,U/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,LDH,,170,,,,,53 - 234,U/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Urea Nitrogen,,9.4,R,H,,,1.4 - 8.6,mmol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,104,,,,,40 - 110,umol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Glucose,,4.7,,,,,3.9 - 5.6,mmol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Uric Acid,,353,,,,,125 - 488,umol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Phosphorus,,1.32,,,,,0.71 - 1.65,mmol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Creatine Kinase,,167,,,,,39 - 308,U/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CHEMISTRY PANEL,Magnesium,,0.73,,,,,0.66 - 1.07,mmol/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,80,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,FECAL COLLECTION D/T,Stool Collection Date,Y,27-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,FECAL COLLECTION D/T,Stool Collection Time,Y,05:40,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,133,,,,,127 - 181,g/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.5 - 6.4,TI/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.92,,,,,3.8 - 10.7,GI/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.29,,,,,1.96 - 7.23,GI/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.57,,,,,0.91 - 4.28,GI/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.61,R,H,,,0 - 0.57,GI/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,38.7,R,L,,,40.5 - 75,%
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.4,,,,,15.4 - 48.5,%
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,%
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,10.3,R,H,,,0 - 6.8,%
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,%
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,252,,,,,140 - 400,GI/L
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,27-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:10,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,27-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:20,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,27-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:10,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,27-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:40,,,,,,
CZ100222003,,,,,Male,Induction Week 2,,"Mar 27, 2026 7:10 AM",6227323272,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Total Bilirubin,,3,,,,Result verified by repeat analysis,3 - 21,umol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,40 - 129,U/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,5 - 48,U/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,GGT,,19,,,,,10 - 50,U/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Urea Nitrogen,,5.5,,,,,1.4 - 8.6,mmol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,108,,,,,40 - 119,umol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Uric Acid,,429,,,,,149 - 494,umol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Calcium (EDTA),,2.07,,,,,2.07 - 2.64,mmol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Total Protein,,55,,L,,,60 - 80,g/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Albumin-BCG,,35,,,,,33 - 49,g/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Creatine Kinase,,49,,,,,39 - 308,U/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Sodium,,148,,H,,,135 - 145,mmol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Bicarbonate,,24.4,,,,,19.3 - 29.3,mmol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Serum Chloride,,110,,,,,94 - 112,mmol/L
CZ100222004,,,,,Male,Unscheduled,R,"Mar 13, 2026 8:40 AM",6227323295,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 0.98,mmol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,40 - 129,U/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,ALT (SGPT),,5,,,,,5 - 48,U/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,AST (SGOT),,15,,,,,8 - 40,U/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,GGT,,6,R,L,,,10 - 61,U/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 110,umol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,125 - 488,umol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Phosphorus,,1.23,,,,,0.71 - 1.65,mmol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Creatine Kinase,,119,,,,,39 - 308,U/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Bicarbonate,,27.4,,,,,19.3 - 29.3,mmol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100222005,,,,,Male,Unscheduled,R,"Mar 13, 2026 7:45 AM",6227323297,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,40 - 129,U/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,ALT (SGPT),,79,R,H,,,5 - 48,U/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,AST (SGOT),,51,R,H,,,8 - 40,U/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,GGT,,45,,,,,10 - 61,U/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,LDH,,228,,,,,53 - 234,U/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Urea Nitrogen,,8.3,,,,,1.4 - 8.6,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,106,,,,,40 - 110,umol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Uric Acid,,418,,,,,125 - 488,umol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Total Protein,,68,,,,,61 - 84,g/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Creatine Kinase,,250,,,,,39 - 308,U/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CHEMISTRY PANEL,Magnesium,,0.73,,,,,0.66 - 1.07,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,79,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,FECAL COLLECTION D/T,Stool Collection Date,Y,09-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,FECAL COLLECTION D/T,Stool Collection Time,Y,08:55,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,134,,,,,127 - 181,g/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.5 - 6.4,TI/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.70,,,,,3.8 - 10.7,GI/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.17,,,,,1.96 - 7.23,GI/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.01,,,,,0.91 - 4.28,GI/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,1.08,R,H,,,0 - 0.57,GI/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.4,,,,,40.5 - 75,%
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.9,,,,,15.4 - 48.5,%
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,%
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,16.1,R,H,,,0 - 6.8,%
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.8,,,,,0 - 2,%
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,262,,,,,140 - 400,GI/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,Direct HDL-C 4th Generation,,1.13,,,,,1.03 - 1.53,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,Triglycerides (GPO),,0.84,,,,,0.56 - 3.62,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,Cholesterol (High Performance),,5.14,,,,,3.88 - 6.83,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,LIPID PANEL,LDL Chol Friedewald 4th,,3.63,,H,,,0 - 3.34,mmol/L
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,09-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:50,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,09-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:05,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,09-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:50,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,09-Mar-2026,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,08:55,,,,,,
CZ100222003,,,,,Male,Induction Week 0,,"Mar 9, 2026 8:50 AM",6227323270,SUBJECT HEIGHT (CM),Height (cm),Y,190,,,,,cm,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Total Bilirubin,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,ALT (SGPT),,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,AST (SGOT),,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,GGT,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,LDH,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Urea Nitrogen,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Glucose,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Uric Acid,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Calcium (EDTA),,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Phosphorus,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Total Protein,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Albumin-BCG,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Creatine Kinase,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Sodium,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Potassium,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Bicarbonate,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Serum Chloride,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,CHEMISTRY PANEL,Magnesium,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,127 - 181,g/L
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.67,,,,,3.8 - 10.7,GI/L
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.96,,,,,1.96 - 7.23,GI/L
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.68,,,,,0.91 - 4.28,GI/L
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.51,,,,,0.12 - 0.92,GI/L
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.42,,,,,0 - 0.57,GI/L
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.3,,,,,40.5 - 75,%
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.2,,,,,15.4 - 48.5,%
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.7,,,,,2.6 - 10.1,%
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,6.3,,,,,0 - 6.8,%
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,%
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,341,,,,,140 - 400,GI/L
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100222005,,,,,Male,Screening,,"Mar 4, 2026 9:20 AM",6227810900,SUBJECT HEIGHT (CM),Height (cm),Y,188,,,,,cm,
CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,,
CZ100222005,,,,,Male,Stool Pathogens,,"Mar 4, 2026 9:10 AM",6227810904,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Stool Pathogens,,"Mar 3, 2026 12:20 PM",6227810905,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Total Bilirubin,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,ALT (SGPT),,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,AST (SGOT),,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,GGT,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,LDH,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Urea Nitrogen,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Glucose,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Uric Acid,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Calcium (EDTA),,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Phosphorus,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Total Protein,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Albumin-BCG,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Creatine Kinase,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Sodium,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Potassium,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Bicarbonate,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Serum Chloride,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CHEMISTRY PANEL,Magnesium,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,,,,Test group cancelled: No specimen received,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,91,,L,,,125 - 170,g/L
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.31,,L,,,0.37 - 0.51,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.7,,L,,,4 - 5.8,TI/L
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,25,,L,,,26 - 34,pg
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,80 - 100,fL
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,11.98,,H,,,3.8 - 10.7,GI/L
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,9.38,,H,,,1.96 - 7.23,GI/L
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.49,,,,,0.8 - 3,GI/L
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.88,,,,,0.12 - 0.92,GI/L
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.18,,,,,0 - 0.57,GI/L
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,78.4,,H,,,40.5 - 75,%
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,12.4,,L,,,15.4 - 48.5,%
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.3,,,,,2.6 - 10.1,%
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.5,,,,,0 - 6.8,%
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,465,,H,,,130 - 394,GI/L
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100222004,,,,,Male,Screening,,"Mar 3, 2026 12:10 PM",6227810901,SUBJECT HEIGHT (CM),Height (cm),Y,158,,,,,cm,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Alkaline Phosphatase,,78,,,,,40 - 129,U/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,ALT (SGPT),,69,,H,,,5 - 48,U/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,AST (SGOT),,33,,,,,8 - 40,U/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,GGT,,38,,,,,10 - 61,U/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,LDH,,213,,,,,53 - 234,U/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Urea Nitrogen,,8.9,,H,,,1.4 - 8.6,mmol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,105,,,,,40 - 110,umol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Uric Acid,,414,,,,,125 - 488,umol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Creatine Kinase,,157,,,,,39 - 308,U/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CHEMISTRY PANEL,Magnesium,,0.74,,,,,0.66 - 1.07,mmol/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,80,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,127 - 181,g/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.39 - 0.54,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.87,,,,,3.8 - 10.7,GI/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.24,,,,,1.96 - 7.23,GI/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.46,,,,,0.91 - 4.28,GI/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.34,,,,,0.12 - 0.92,GI/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.79,R,H,,,0 - 0.57,GI/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,38.2,R,L,,,40.5 - 75,%
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.9,,,,,15.4 - 48.5,%
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,%
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,13.5,R,H,,,0 - 6.8,%
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,%
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,302,,,,,140 - 400,GI/L
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,Test group cancelled: No specimen received,,,
CZ100222003,,,,,Male,Screening,,"Mar 2, 2026 11:00 AM",6227810899,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,18-Feb-2026,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:39,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,INFLAMED AREA,Inflamed area?,,No,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,20-Feb-2026,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100222001,,,,,Male,Biopsy,,"Feb 18, 2026 12:00 AM",6227323286,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,11-Feb-2026,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,14:38,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,13-Feb-2026,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100222003,,,,,Male,Biopsy,,"Feb 11, 2026 12:00 AM",6227323287,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,,
CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,,
CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,,
CZ100222002,,,,,Male,Stool Pathogens,,"Jan 23, 2026 10:10 AM",6227323277,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,40 - 129,U/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,5 - 48,U/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,GGT,,12,,,,,10 - 61,U/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,LDH,,190,,,,,53 - 234,U/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Urea Nitrogen,,8.5,,,,,1.4 - 8.6,mmol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,115,,H,,,40 - 110,umol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Uric Acid,,337,,,,,125 - 488,umol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Phosphorus,,0.86,,,,,0.71 - 1.65,mmol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Creatine Kinase,,144,,,,,39 - 308,U/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Bicarbonate,,27.5,,,,,19.3 - 29.3,mmol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CHEMISTRY PANEL,Magnesium,,0.75,,,,,0.66 - 1.07,mmol/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,CKD-EPI 2021,CKD-EPI 2021 Without Race,,72,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,136,,,,,127 - 181,g/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.82,,,,,3.8 - 10.7,GI/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.49,,,,,1.96 - 7.23,GI/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.54,,,,,0.91 - 4.28,GI/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.34,,,,,0 - 0.57,GI/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,42.7,,,,,40.5 - 75,%
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,43.7,,,,,15.4 - 48.5,%
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,%
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.9,,,,,0 - 6.8,%
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,%
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,224,,,,,140 - 400,GI/L
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222002,,,,,Male,Screening,,"Jan 23, 2026 10:00 AM",6227323268,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100222001,,,,,Male,Stool Pathogens,R,"Jan 15, 2026 4:55 PM",6227323276,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,,
CZ100222001,,,,,Male,Stool Pathogens,R,"Jan 15, 2026 4:55 PM",6227323276,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.4,,,,,0 - 6.2,umol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Alkaline Phosphatase,,140,,H,,,40 - 129,U/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,GGT,,136,,H,,,10 - 61,U/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,LDH,,186,,,,,53 - 234,U/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,78,,,,,40 - 110,umol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Uric Acid,,408,,,,,125 - 488,umol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Creatine Kinase,,131,,,,,39 - 308,U/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 1.07,mmol/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,CKD-EPI 2021,CKD-EPI 2021 Without Race,,111,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,85,,L,,,127 - 181,g/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.30,,L,,,0.39 - 0.54,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,L,,,4.5 - 6.4,TI/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,21,,L,,,26 - 34,pg
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Microcytic,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,74,,L,,,79 - 96,fL
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,15.03,,H,,,3.8 - 10.7,GI/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,11.38,,H,,,1.96 - 7.23,GI/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.59,,,,,0.91 - 4.28,GI/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.82,,,,,0.12 - 0.92,GI/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,75.7,,H,,,40.5 - 75,%
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.3,,,,,15.4 - 48.5,%
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,%
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,%
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,%
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,529,,H,,,140 - 400,GI/L
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100222001,,,,,Male,Screening,,"Jan 15, 2026 4:45 PM",6227323266,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 ALP<2XULN ALP<2XULN Criteria Met
4 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
5 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
6 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 AST>/=3XULN AST >/= 3 X ULN Criteria not met
7 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
8 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Total Bilirubin 5 3 - 21 umol/L
9 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.7 0 - 6.2 umol/L
10 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Alkaline Phosphatase 57 40 - 129 U/L
11 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL ALT (SGPT) 32 5 - 48 U/L
12 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL AST (SGOT) 35 8 - 40 U/L
13 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL GGT 14 10 - 61 U/L
14 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL LDH 248 H 53 - 234 U/L
15 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Urea Nitrogen 8.2 1.4 - 8.6 mmol/L
16 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 97 40 - 110 umol/L
17 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Serum Glucose 5.0 3.9 - 5.6 mmol/L
18 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Serum Uric Acid 395 125 - 488 umol/L
19 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Calcium (EDTA) 2.44 2.07 - 2.64 mmol/L
20 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Phosphorus 1.19 0.71 - 1.65 mmol/L
21 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Total Protein 71 61 - 84 g/L
22 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Albumin-BCG 44 33 - 49 g/L
23 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Creatine Kinase 439 H 39 - 308 U/L
24 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Serum Sodium 137 132 - 147 mmol/L
25 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Serum Potassium 4.6 3.5 - 5.2 mmol/L
26 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Serum Bicarbonate 24.4 19.3 - 29.3 mmol/L
27 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
28 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CHEMISTRY PANEL Magnesium 0.77 0.66 - 1.07 mmol/L
29 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 88 mL/min/1.73m^2$No Ref Rng
30 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 FECAL COLLECTION D/T Stool Collection Date Y 01-Jun-2026
31 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 FECAL COLLECTION D/T Stool Collection Time Y 05:00
32 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 129 127 - 181 g/L
33 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.38 L 0.39 - 0.54
34 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.3 L 4.5 - 6.4 TI/L
35 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
36 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
37 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL MCV 88 79 - 96 fL
38 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.82 3.8 - 10.7 GI/L
39 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.31 1.96 - 7.23 GI/L
40 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.93 0.91 - 4.28 GI/L
41 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.22 0.12 - 0.92 GI/L
42 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.32 0 - 0.57 GI/L
43 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
44 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 63.1 40.5 - 75 %
45 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 28.4 15.4 - 48.5 %
46 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 3.3 2.6 - 10.1 %
47 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 4.7 0 - 6.8 %
48 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.6 0 - 2 %
49 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 251 140 - 400 GI/L
50 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
51 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 LIPID PANEL Direct HDL-C 4th Generation 1.53 Result verified by repeat analysis 1.03 - 1.53 mmol/L
52 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 LIPID PANEL Triglycerides (GPO) 0.90 0.56 - 3.62 mmol/L
53 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 LIPID PANEL Cholesterol (High Performance) 5.18 3.88 - 6.83 mmol/L
54 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 LIPID PANEL LDL Chol Friedewald 4th 3.24 0 - 3.34 mmol/L
55 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 PA1 EEA-2? Approved to use EEA-2? Yes
56 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 01-Jun-2026
57 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 14:55
58 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 01-Jun-2026
59 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 16:05
60 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 01-Jun-2026
61 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 14:55
62 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM09/STOOL PK COLL D/T Stool Collection Date Y 01-Jun-2026
63 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM09/STOOL PK COLL D/T Stool Collection Time Y 05:00
64 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 01-Jun-2026
65 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 05:00
66 CZ100222003 Male Induction Week 12 Jun 1, 2026 2:55 PM 6228137355 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
67 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
68 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
69 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 BIOPSY FIXATIVE USED Fixative Used 10% NBF
70 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 20-May-2026
71 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 11:44
72 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
73 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 INFLAMED AREA Inflamed area? Yes
74 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
75 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
76 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 22-May-2026
77 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
78 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
79 CZ100222003 Male Biopsy May 20, 2026 12:00 AM 6228179945 ULCERATED AREA Is biopsy site ulcerated? Yes
80 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 ALP<2XULN ALP<2XULN Criteria Met
81 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
82 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
83 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 AST>/=3XULN AST >/= 3 X ULN Criteria not met
84 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
85 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Total Bilirubin 11 3 - 21 umol/L
86 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.5 0 - 6.2 umol/L
87 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Alkaline Phosphatase 68 40 - 129 U/L
88 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL ALT (SGPT) 10 5 - 48 U/L
89 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
90 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL GGT 10 10 - 61 U/L
91 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL LDH 164 53 - 234 U/L
92 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Urea Nitrogen 5.1 1.4 - 8.6 mmol/L
93 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 101 40 - 110 umol/L
94 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Serum Glucose 4.4 3.9 - 5.6 mmol/L
95 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Serum Uric Acid 255 125 - 488 umol/L
96 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Calcium (EDTA) 2.45 2.07 - 2.64 mmol/L
97 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Phosphorus 1.10 0.71 - 1.65 mmol/L
98 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Total Protein 66 61 - 84 g/L
99 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
100 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Creatine Kinase 131 39 - 308 U/L
101 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Serum Sodium 142 132 - 147 mmol/L
102 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Serum Potassium 4.5 3.5 - 5.2 mmol/L
103 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Serum Bicarbonate 25.4 19.3 - 29.3 mmol/L
104 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Serum Chloride 105 94 - 112 mmol/L
105 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CHEMISTRY PANEL Magnesium 0.82 0.66 - 1.07 mmol/L
106 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 87 mL/min/1.73m^2$No Ref Rng
107 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 FECAL COLLECTION D/T Stool Collection Date Y 05-May-2026
108 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 FECAL COLLECTION D/T Stool Collection Time Y 06:40
109 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 145 127 - 181 g/L
110 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.42 0.39 - 0.54
111 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.8 4.5 - 6.4 TI/L
112 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
113 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
114 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL MCV 88 79 - 96 fL
115 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.72 3.8 - 10.7 GI/L
116 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.17 1.96 - 7.23 GI/L
117 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.71 0.91 - 4.28 GI/L
118 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.36 0.12 - 0.92 GI/L
119 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.44 0 - 0.57 GI/L
120 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
121 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 55.4 40.5 - 75 %
122 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 30.0 15.4 - 48.5 %
123 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.3 2.6 - 10.1 %
124 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 7.7 H 0 - 6.8 %
125 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.6 0 - 2 %
126 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 294 140 - 400 GI/L
127 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 PA1 EEA-2? Approved to use EEA-2? Yes
128 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 05-May-2026
129 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:40
130 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 05-May-2026
131 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 08:50
132 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 05-May-2026
133 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:40
134 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 SM09/STOOL PK COLL D/T Stool Collection Date Y 05-May-2026
135 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 SM09/STOOL PK COLL D/T Stool Collection Time Y 06:40
136 CZ100222005 Male Induction Week 4 May 5, 2026 7:40 AM 6228179936 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
137 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 ALP<2XULN ALP<2XULN Criteria Met
138 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
139 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
140 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 AST>/=3XULN AST >/= 3 X ULN Criteria not met
141 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
142 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Total Bilirubin 4 3 - 21 umol/L
143 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.1 0 - 6.2 umol/L
144 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Alkaline Phosphatase 65 40 - 129 U/L
145 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL ALT (SGPT) 7 5 - 48 U/L
146 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
147 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL GGT 7 L 10 - 61 U/L
148 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL LDH 147 53 - 234 U/L
149 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Urea Nitrogen 5.2 1.4 - 8.6 mmol/L
150 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 88 40 - 110 umol/L
151 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Serum Glucose 4.5 3.9 - 5.6 mmol/L
152 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Serum Uric Acid 261 125 - 488 umol/L
153 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Calcium (EDTA) 2.31 2.07 - 2.64 mmol/L
154 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Phosphorus 1.13 0.71 - 1.65 mmol/L
155 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Total Protein 65 61 - 84 g/L
156 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Albumin-BCG 41 33 - 49 g/L
157 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Creatine Kinase 112 39 - 308 U/L
158 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
159 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Serum Potassium 4.0 3.5 - 5.2 mmol/L
160 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Serum Bicarbonate 23.2 19.3 - 29.3 mmol/L
161 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
162 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CHEMISTRY PANEL Magnesium 0.76 0.66 - 1.07 mmol/L
163 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 102 mL/min/1.73m^2$No Ref Rng
164 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 FECAL COLLECTION D/T Stool Collection Date Y 22-Apr-2026
165 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 FECAL COLLECTION D/T Stool Collection Time Y 05:40
166 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 143 127 - 181 g/L
167 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.41 0.39 - 0.54
168 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.8 4.5 - 6.4 TI/L
169 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
170 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
171 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL MCV 86 79 - 96 fL
172 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.68 3.8 - 10.7 GI/L
173 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.92 1.96 - 7.23 GI/L
174 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.94 0.91 - 4.28 GI/L
175 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.39 0.12 - 0.92 GI/L
176 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.40 0 - 0.57 GI/L
177 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
178 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 58.7 40.5 - 75 %
179 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 29.0 15.4 - 48.5 %
180 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.9 2.6 - 10.1 %
181 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 5.9 0 - 6.8 %
182 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
183 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 308 140 - 400 GI/L
184 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 PA1 EEA-2? Approved to use EEA-2? Yes
185 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 22-Apr-2026
186 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 14:15
187 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 22-Apr-2026
188 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 15:25
189 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 22-Apr-2026
190 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 14:15
191 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 SM09/STOOL PK COLL D/T Stool Collection Date Y 22-Apr-2026
192 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 SM09/STOOL PK COLL D/T Stool Collection Time Y 05:40
193 CZ100222005 Male Induction Week 2 Apr 22, 2026 2:15 PM 6228179932 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
194 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Total Bilirubin 8 3 - 21 umol/L
195 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 4.2 0 - 6.2 umol/L
196 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Alkaline Phosphatase 71 40 - 129 U/L
197 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL ALT (SGPT) 7 5 - 48 U/L
198 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL AST (SGOT) 16 8 - 40 U/L
199 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL GGT 7 L 10 - 61 U/L
200 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL LDH 153 53 - 234 U/L
201 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Urea Nitrogen 4.9 1.4 - 8.6 mmol/L
202 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 86 40 - 110 umol/L
203 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Serum Glucose 4.2 3.9 - 5.6 mmol/L
204 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Serum Uric Acid 299 125 - 488 umol/L
205 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Calcium (EDTA) 2.35 2.07 - 2.64 mmol/L
206 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Phosphorus 1.05 0.71 - 1.65 mmol/L
207 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Total Protein 68 61 - 84 g/L
208 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
209 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Creatine Kinase 116 39 - 308 U/L
210 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
211 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Serum Potassium 4.1 3.5 - 5.2 mmol/L
212 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Serum Bicarbonate 23.9 19.3 - 29.3 mmol/L
213 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
214 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CHEMISTRY PANEL Magnesium 0.80 0.66 - 1.07 mmol/L
215 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 106 mL/min/1.73m^2$No Ref Rng
216 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 FECAL COLLECTION D/T Stool Collection Date Y 09-Apr-2026
217 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 FECAL COLLECTION D/T Stool Collection Time Y 05:55
218 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 146 127 - 181 g/L
219 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.43 0.39 - 0.54
220 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.9 4.5 - 6.4 TI/L
221 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
222 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
223 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL MCV 88 79 - 96 fL
224 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.07 3.8 - 10.7 GI/L
225 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.83 1.96 - 7.23 GI/L
226 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.67 0.91 - 4.28 GI/L
227 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.32 0.12 - 0.92 GI/L
228 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.19 0 - 0.57 GI/L
229 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
230 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 63.1 40.5 - 75 %
231 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 27.6 15.4 - 48.5 %
232 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.2 2.6 - 10.1 %
233 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.2 0 - 6.8 %
234 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.8 0 - 2 %
235 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 314 140 - 400 GI/L
236 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
237 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 LIPID PANEL Direct HDL-C 4th Generation 1.90 H 1.03 - 1.53 mmol/L
238 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 LIPID PANEL Triglycerides (GPO) 0.43 L 0.56 - 3.62 mmol/L
239 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 LIPID PANEL Cholesterol (High Performance) 3.22 L 3.88 - 6.83 mmol/L
240 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 LIPID PANEL LDL Chol Friedewald 4th 1.12 0 - 3.34 mmol/L
241 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 PA1 EEA-2? Approved to use EEA-2? Yes
242 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 09-Apr-2026
243 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 10:35
244 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 09-Apr-2026
245 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 11:45
246 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 09-Apr-2026
247 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 10:35
248 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 09-Apr-2026
249 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 05:55
250 CZ100222005 Male Induction Week 0 Apr 9, 2026 10:35 AM 6228173397 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
251 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 ALP<2XULN ALP<2XULN Criteria Met
252 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
253 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
254 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 AST>/=3XULN AST >/= 3 X ULN Criteria not met
255 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
256 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Total Bilirubin 10 3 - 21 umol/L
257 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.9 0 - 6.2 umol/L
258 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Alkaline Phosphatase 64 40 - 129 U/L
259 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL ALT (SGPT) 42 5 - 48 U/L
260 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL AST (SGOT) 31 8 - 40 U/L
261 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL GGT 24 10 - 61 U/L
262 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL LDH 225 53 - 234 U/L
263 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Urea Nitrogen 10.1 H 1.4 - 8.6 mmol/L
264 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 110 40 - 110 umol/L
265 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Serum Glucose 4.6 3.9 - 5.6 mmol/L
266 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Serum Uric Acid 455 125 - 488 umol/L
267 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Calcium (EDTA) 2.42 2.07 - 2.64 mmol/L
268 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Phosphorus 1.20 0.71 - 1.65 mmol/L
269 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Total Protein 72 61 - 84 g/L
270 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Albumin-BCG 44 33 - 49 g/L
271 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Creatine Kinase 367 H 39 - 308 U/L
272 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
273 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
274 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Serum Bicarbonate 24.7 19.3 - 29.3 mmol/L
275 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
276 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CHEMISTRY PANEL Magnesium 0.77 0.66 - 1.07 mmol/L
277 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 76 mL/min/1.73m^2$No Ref Rng
278 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 FECAL COLLECTION D/T Stool Collection Date Y 08-Apr-2026
279 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 FECAL COLLECTION D/T Stool Collection Time Y 05:15
280 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 135 127 - 181 g/L
281 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.39 0.39 - 0.54
282 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.6 4.5 - 6.4 TI/L
283 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL MCH 29 26 - 34 pg
284 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
285 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL MCV 85 79 - 96 fL
286 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.70 3.8 - 10.7 GI/L
287 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.33 1.96 - 7.23 GI/L
288 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.26 0.91 - 4.28 GI/L
289 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.40 0.12 - 0.92 GI/L
290 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.67 R H 0 - 0.57 GI/L
291 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
292 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 40.8 40.5 - 75 %
293 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 39.6 15.4 - 48.5 %
294 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.0 2.6 - 10.1 %
295 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 11.7 R H 0 - 6.8 %
296 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.9 0 - 2 %
297 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 282 140 - 400 GI/L
298 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 PA1 EEA-2? Approved to use EEA-2? Yes
299 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 08-Apr-2026
300 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 08:05
301 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 08-Apr-2026
302 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 09:15
303 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 08-Apr-2026
304 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 08:05
305 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 SM09/STOOL PK COLL D/T Stool Collection Date Y 08-Apr-2026
306 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 SM09/STOOL PK COLL D/T Stool Collection Time Y 05:15
307 CZ100222003 Male Induction Week 4 Apr 8, 2026 8:05 AM 6227323274 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
308 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
309 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
310 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 BIOPSY FIXATIVE USED Fixative Used 10% NBF
311 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 01-Apr-2026
312 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 08:46
313 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
314 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 INFLAMED AREA Inflamed area? Yes
315 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
316 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
317 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 03-Apr-2026
318 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
319 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
320 CZ100222005 Male Biopsy Apr 1, 2026 12:00 AM 6228023951 ULCERATED AREA Is biopsy site ulcerated? No
321 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 ALP<2XULN ALP<2XULN Criteria Met
322 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
323 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
324 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 AST>/=3XULN AST >/= 3 X ULN Criteria not met
325 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
326 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Total Bilirubin 4 3 - 21 umol/L
327 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas <1.4 0 - 6.2 umol/L
328 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Alkaline Phosphatase 58 40 - 129 U/L
329 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL ALT (SGPT) 26 5 - 48 U/L
330 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL AST (SGOT) 24 8 - 40 U/L
331 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL GGT 14 10 - 61 U/L
332 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL LDH 170 53 - 234 U/L
333 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Urea Nitrogen 9.4 R H 1.4 - 8.6 mmol/L
334 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 104 40 - 110 umol/L
335 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Serum Glucose 4.7 3.9 - 5.6 mmol/L
336 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Serum Uric Acid 353 125 - 488 umol/L
337 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Calcium (EDTA) 2.36 2.07 - 2.64 mmol/L
338 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Phosphorus 1.32 0.71 - 1.65 mmol/L
339 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Total Protein 68 61 - 84 g/L
340 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Albumin-BCG 42 33 - 49 g/L
341 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Creatine Kinase 167 39 - 308 U/L
342 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
343 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
344 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Serum Bicarbonate 23.9 19.3 - 29.3 mmol/L
345 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Serum Chloride 105 94 - 112 mmol/L
346 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CHEMISTRY PANEL Magnesium 0.73 0.66 - 1.07 mmol/L
347 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 80 mL/min/1.73m^2$No Ref Rng
348 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 FECAL COLLECTION D/T Stool Collection Date Y 27-Mar-2026
349 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 FECAL COLLECTION D/T Stool Collection Time Y 05:40
350 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 133 127 - 181 g/L
351 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.39 0.39 - 0.54
352 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.5 4.5 - 6.4 TI/L
353 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL MCH 29 26 - 34 pg
354 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
355 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL MCV 86 79 - 96 fL
356 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.92 3.8 - 10.7 GI/L
357 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.29 1.96 - 7.23 GI/L
358 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.57 0.91 - 4.28 GI/L
359 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.41 0.12 - 0.92 GI/L
360 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.61 R H 0 - 0.57 GI/L
361 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
362 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 38.7 R L 40.5 - 75 %
363 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 43.4 15.4 - 48.5 %
364 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.9 2.6 - 10.1 %
365 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 10.3 R H 0 - 6.8 %
366 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 0 - 2 %
367 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 252 140 - 400 GI/L
368 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 PA1 EEA-2? Approved to use EEA-2? Yes
369 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 27-Mar-2026
370 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:10
371 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 27-Mar-2026
372 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 08:20
373 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 27-Mar-2026
374 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:10
375 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 SM09/STOOL PK COLL D/T Stool Collection Date Y 27-Mar-2026
376 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 SM09/STOOL PK COLL D/T Stool Collection Time Y 05:40
377 CZ100222003 Male Induction Week 2 Mar 27, 2026 7:10 AM 6227323272 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
378 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Total Bilirubin 3 Result verified by repeat analysis 3 - 21 umol/L
379 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas <1.4 Result verified by repeat analysis 0 - 6.2 umol/L
380 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Alkaline Phosphatase 85 40 - 129 U/L
381 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL ALT (SGPT) 20 5 - 48 U/L
382 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL AST (SGOT) 15 8 - 40 U/L
383 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL GGT 19 10 - 50 U/L
384 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL LDH Test cancelled: Hemolysis-test not performed
385 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Urea Nitrogen 5.5 1.4 - 8.6 mmol/L
386 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 108 40 - 119 umol/L
387 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Serum Glucose 4.9 3.9 - 5.6 mmol/L
388 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Serum Uric Acid 429 149 - 494 umol/L
389 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Calcium (EDTA) 2.07 2.07 - 2.64 mmol/L
390 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Phosphorus 1.02 0.71 - 1.65 mmol/L
391 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Total Protein 55 L 60 - 80 g/L
392 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Albumin-BCG 35 33 - 49 g/L
393 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Creatine Kinase 49 39 - 308 U/L
394 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Serum Sodium 148 H 135 - 145 mmol/L
395 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Serum Potassium 4.0 3.5 - 5.2 mmol/L
396 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Serum Bicarbonate 24.4 19.3 - 29.3 mmol/L
397 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Serum Chloride 110 94 - 112 mmol/L
398 CZ100222004 Male Unscheduled R Mar 13, 2026 8:40 AM 6227323295 CHEMISTRY PANEL Magnesium 0.82 0.66 - 0.98 mmol/L
399 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Total Bilirubin 9 3 - 21 umol/L
400 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.2 0 - 6.2 umol/L
401 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Alkaline Phosphatase 73 40 - 129 U/L
402 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL ALT (SGPT) 5 5 - 48 U/L
403 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL AST (SGOT) 15 8 - 40 U/L
404 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL GGT 6 R L 10 - 61 U/L
405 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL LDH 149 53 - 234 U/L
406 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Urea Nitrogen 3.8 1.4 - 8.6 mmol/L
407 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 91 40 - 110 umol/L
408 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Serum Glucose 4.6 3.9 - 5.6 mmol/L
409 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Serum Uric Acid 277 125 - 488 umol/L
410 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Calcium (EDTA) 2.42 2.07 - 2.64 mmol/L
411 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Phosphorus 1.23 0.71 - 1.65 mmol/L
412 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Total Protein 68 61 - 84 g/L
413 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Albumin-BCG 44 33 - 49 g/L
414 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Creatine Kinase 119 39 - 308 U/L
415 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
416 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Serum Potassium 4.7 3.5 - 5.2 mmol/L
417 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Serum Bicarbonate 27.4 19.3 - 29.3 mmol/L
418 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
419 CZ100222005 Male Unscheduled R Mar 13, 2026 7:45 AM 6227323297 CHEMISTRY PANEL Magnesium 0.81 0.66 - 1.07 mmol/L
420 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
421 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.7 0 - 6.2 umol/L
422 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Alkaline Phosphatase 91 40 - 129 U/L
423 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL ALT (SGPT) 79 R H 5 - 48 U/L
424 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL AST (SGOT) 51 R H 8 - 40 U/L
425 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL GGT 45 10 - 61 U/L
426 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL LDH 228 53 - 234 U/L
427 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Urea Nitrogen 8.3 1.4 - 8.6 mmol/L
428 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 106 40 - 110 umol/L
429 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Serum Glucose 4.4 3.9 - 5.6 mmol/L
430 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Serum Uric Acid 418 125 - 488 umol/L
431 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Calcium (EDTA) 2.32 2.07 - 2.64 mmol/L
432 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Phosphorus 1.10 0.71 - 1.65 mmol/L
433 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Total Protein 68 61 - 84 g/L
434 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Albumin-BCG 41 33 - 49 g/L
435 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Creatine Kinase 250 39 - 308 U/L
436 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
437 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Serum Potassium 4.5 3.5 - 5.2 mmol/L
438 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Serum Bicarbonate 25.4 19.3 - 29.3 mmol/L
439 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
440 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CHEMISTRY PANEL Magnesium 0.73 0.66 - 1.07 mmol/L
441 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 79 mL/min/1.73m^2$No Ref Rng
442 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 FECAL COLLECTION D/T Stool Collection Date Y 09-Mar-2026
443 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 FECAL COLLECTION D/T Stool Collection Time Y 08:55
444 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 134 127 - 181 g/L
445 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.39 0.39 - 0.54
446 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.5 4.5 - 6.4 TI/L
447 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
448 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Normocytic NORMOCYTIC;$NORMOCHROMIC
449 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 79 - 96 fL
450 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.70 3.8 - 10.7 GI/L
451 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.17 1.96 - 7.23 GI/L
452 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.01 0.91 - 4.28 GI/L
453 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.39 0.12 - 0.92 GI/L
454 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 1.08 R H 0 - 0.57 GI/L
455 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
456 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 47.4 40.5 - 75 %
457 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 29.9 15.4 - 48.5 %
458 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.8 2.6 - 10.1 %
459 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 16.1 R H 0 - 6.8 %
460 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.8 0 - 2 %
461 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 262 140 - 400 GI/L
462 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
463 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 LIPID PANEL Direct HDL-C 4th Generation 1.13 1.03 - 1.53 mmol/L
464 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 LIPID PANEL Triglycerides (GPO) 0.84 0.56 - 3.62 mmol/L
465 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 LIPID PANEL Cholesterol (High Performance) 5.14 3.88 - 6.83 mmol/L
466 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 LIPID PANEL LDL Chol Friedewald 4th 3.63 H 0 - 3.34 mmol/L
467 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 PA1 EEA-2? Approved to use EEA-2? Yes
468 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 09-Mar-2026
469 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 08:50
470 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 09-Mar-2026
471 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 10:05
472 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 09-Mar-2026
473 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 08:50
474 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 09-Mar-2026
475 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 08:55
476 CZ100222003 Male Induction Week 0 Mar 9, 2026 8:50 AM 6227323270 SUBJECT HEIGHT (CM) Height (cm) Y 190 cm
477 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Total Bilirubin Test group cancelled: No specimen received
478 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas Test group cancelled: No specimen received
479 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Alkaline Phosphatase Test group cancelled: No specimen received
480 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL ALT (SGPT) Test group cancelled: No specimen received
481 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL AST (SGOT) Test group cancelled: No specimen received
482 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL GGT Test group cancelled: No specimen received
483 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL LDH Test group cancelled: No specimen received
484 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Urea Nitrogen Test group cancelled: No specimen received
485 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp Test group cancelled: No specimen received
486 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Serum Glucose Test group cancelled: No specimen received
487 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Serum Uric Acid Test group cancelled: No specimen received
488 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Calcium (EDTA) Test group cancelled: No specimen received
489 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Phosphorus Test group cancelled: No specimen received
490 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Total Protein Test group cancelled: No specimen received
491 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Albumin-BCG Test group cancelled: No specimen received
492 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Creatine Kinase Test group cancelled: No specimen received
493 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Serum Sodium Test group cancelled: No specimen received
494 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Serum Potassium Test group cancelled: No specimen received
495 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Serum Bicarbonate Test group cancelled: No specimen received
496 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Serum Chloride Test group cancelled: No specimen received
497 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 CHEMISTRY PANEL Magnesium Test group cancelled: No specimen received
498 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
499 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 148 127 - 181 g/L
500 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.44 0.39 - 0.54
501 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.9 4.5 - 6.4 TI/L
502 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
503 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
504 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL MCV 89 79 - 96 fL
505 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.67 3.8 - 10.7 GI/L
506 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.96 1.96 - 7.23 GI/L
507 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.68 0.91 - 4.28 GI/L
508 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.51 0.12 - 0.92 GI/L
509 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.42 0 - 0.57 GI/L
510 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.10 0 - 0.2 GI/L
511 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 59.3 40.5 - 75 %
512 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 25.2 15.4 - 48.5 %
513 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.7 2.6 - 10.1 %
514 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 6.3 0 - 6.8 %
515 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.5 0 - 2 %
516 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 341 140 - 400 GI/L
517 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
518 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEPATITIS B SURFACE AB Anti-HBs II QUAL Reactive Ref Rng :$Non Reactive
519 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
520 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
521 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
522 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
523 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
524 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 PA1 EEA-2? Approved to use EEA-2? Yes
525 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
526 CZ100222005 Male Screening Mar 4, 2026 9:20 AM 6227810900 SUBJECT HEIGHT (CM) Height (cm) Y 188 cm
527 CZ100222005 Male Stool Pathogens Mar 4, 2026 9:10 AM 6227810904 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
528 CZ100222005 Male Stool Pathogens Mar 4, 2026 9:10 AM 6227810904 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
529 CZ100222005 Male Stool Pathogens Mar 4, 2026 9:10 AM 6227810904 OVA AND PARASITES 1 Concentrate Exam Test group cancelled: No specimen received
530 CZ100222005 Male Stool Pathogens Mar 4, 2026 9:10 AM 6227810904 OVA AND PARASITES 1 Smear for Microsporidia Test group cancelled: No specimen received
531 CZ100222005 Male Stool Pathogens Mar 4, 2026 9:10 AM 6227810904 OVA AND PARASITES 1 Modified acid-fast stain Test group cancelled: No specimen received
532 CZ100222005 Male Stool Pathogens Mar 4, 2026 9:10 AM 6227810904 OVA AND PARASITES 2 Trichrome Smear Test group cancelled: No specimen received
533 CZ100222004 Male Stool Pathogens Mar 3, 2026 12:20 PM 6227810905 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
534 CZ100222004 Male Stool Pathogens Mar 3, 2026 12:20 PM 6227810905 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
535 CZ100222004 Male Stool Pathogens Mar 3, 2026 12:20 PM 6227810905 OVA AND PARASITES 1 Concentrate Exam Test group cancelled: No specimen received
536 CZ100222004 Male Stool Pathogens Mar 3, 2026 12:20 PM 6227810905 OVA AND PARASITES 1 Smear for Microsporidia Test group cancelled: No specimen received
537 CZ100222004 Male Stool Pathogens Mar 3, 2026 12:20 PM 6227810905 OVA AND PARASITES 1 Modified acid-fast stain Test group cancelled: No specimen received
538 CZ100222004 Male Stool Pathogens Mar 3, 2026 12:20 PM 6227810905 OVA AND PARASITES 2 Trichrome Smear Test group cancelled: No specimen received
539 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Total Bilirubin Test group cancelled: No specimen received
540 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas Test group cancelled: No specimen received
541 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Alkaline Phosphatase Test group cancelled: No specimen received
542 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL ALT (SGPT) Test group cancelled: No specimen received
543 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL AST (SGOT) Test group cancelled: No specimen received
544 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL GGT Test group cancelled: No specimen received
545 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL LDH Test group cancelled: No specimen received
546 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Urea Nitrogen Test group cancelled: No specimen received
547 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp Test group cancelled: No specimen received
548 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Serum Glucose Test group cancelled: No specimen received
549 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Serum Uric Acid Test group cancelled: No specimen received
550 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Calcium (EDTA) Test group cancelled: No specimen received
551 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Phosphorus Test group cancelled: No specimen received
552 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Total Protein Test group cancelled: No specimen received
553 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Albumin-BCG Test group cancelled: No specimen received
554 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Creatine Kinase Test group cancelled: No specimen received
555 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Serum Sodium Test group cancelled: No specimen received
556 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Serum Potassium Test group cancelled: No specimen received
557 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Serum Bicarbonate Test group cancelled: No specimen received
558 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Serum Chloride Test group cancelled: No specimen received
559 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CHEMISTRY PANEL Magnesium Test group cancelled: No specimen received
560 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS Test group cancelled: No specimen received
561 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
562 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 91 L 125 - 170 g/L
563 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.31 L 0.37 - 0.51
564 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL RBC 3.7 L 4 - 5.8 TI/L
565 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL MCH 25 L 26 - 34 pg
566 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
567 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL MCV 86 80 - 100 fL
568 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL WBC 11.98 H 3.8 - 10.7 GI/L
569 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 9.38 H 1.96 - 7.23 GI/L
570 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.49 0.8 - 3 GI/L
571 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.88 0.12 - 0.92 GI/L
572 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.18 0 - 0.57 GI/L
573 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
574 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 78.4 H 40.5 - 75 %
575 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 12.4 L 15.4 - 48.5 %
576 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.3 2.6 - 10.1 %
577 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.5 0 - 6.8 %
578 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
579 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 465 H 130 - 394 GI/L
580 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
581 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
582 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
583 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
584 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
585 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
586 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
587 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 PA1 EEA-2? Approved to use EEA-2? Yes
588 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
589 CZ100222004 Male Screening Mar 3, 2026 12:10 PM 6227810901 SUBJECT HEIGHT (CM) Height (cm) Y 158 cm
590 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
591 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.9 0 - 6.2 umol/L
592 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Alkaline Phosphatase 78 40 - 129 U/L
593 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL ALT (SGPT) 69 H 5 - 48 U/L
594 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL AST (SGOT) 33 8 - 40 U/L
595 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL GGT 38 10 - 61 U/L
596 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL LDH 213 53 - 234 U/L
597 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Urea Nitrogen 8.9 H 1.4 - 8.6 mmol/L
598 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 105 40 - 110 umol/L
599 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Serum Glucose 4.4 3.9 - 5.6 mmol/L
600 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Serum Uric Acid 414 125 - 488 umol/L
601 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Calcium (EDTA) 2.40 2.07 - 2.64 mmol/L
602 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Phosphorus 1.17 0.71 - 1.65 mmol/L
603 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Total Protein 70 61 - 84 g/L
604 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
605 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Creatine Kinase 157 39 - 308 U/L
606 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
607 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Serum Potassium 4.5 3.5 - 5.2 mmol/L
608 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Serum Bicarbonate 25.4 19.3 - 29.3 mmol/L
609 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
610 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CHEMISTRY PANEL Magnesium 0.74 0.66 - 1.07 mmol/L
611 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 80 mL/min/1.73m^2$No Ref Rng
612 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
613 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 138 127 - 181 g/L
614 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.40 0.39 - 0.54
615 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.7 4.5 - 6.4 TI/L
616 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
617 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
618 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL MCV 86 79 - 96 fL
619 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.87 3.8 - 10.7 GI/L
620 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.24 1.96 - 7.23 GI/L
621 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.46 0.91 - 4.28 GI/L
622 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.34 0.12 - 0.92 GI/L
623 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.79 R H 0 - 0.57 GI/L
624 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
625 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 38.2 R L 40.5 - 75 %
626 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 41.9 15.4 - 48.5 %
627 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.7 2.6 - 10.1 %
628 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 13.5 R H 0 - 6.8 %
629 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 0 - 2 %
630 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 302 140 - 400 GI/L
631 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
632 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEPATITIS B SURFACE AB Anti-HBs II QUAL Reactive Ref Rng :$Non Reactive
633 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
634 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
635 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
636 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
637 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
638 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 PA1 EEA-2? Approved to use EEA-2? Yes
639 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Test group cancelled: No specimen received
640 CZ100222003 Male Screening Mar 2, 2026 11:00 AM 6227810899 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
641 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
642 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
643 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 BIOPSY FIXATIVE USED Fixative Used 10% NBF
644 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 18-Feb-2026
645 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 07:39
646 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
647 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 INFLAMED AREA Inflamed area? No
648 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
649 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
650 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 20-Feb-2026
651 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
652 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
653 CZ100222001 Male Biopsy Feb 18, 2026 12:00 AM 6227323286 ULCERATED AREA Is biopsy site ulcerated? No
654 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
655 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
656 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 BIOPSY FIXATIVE USED Fixative Used 10% NBF
657 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 11-Feb-2026
658 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 14:38
659 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
660 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 INFLAMED AREA Inflamed area? Yes
661 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
662 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
663 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 13-Feb-2026
664 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
665 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
666 CZ100222003 Male Biopsy Feb 11, 2026 12:00 AM 6227323287 ULCERATED AREA Is biopsy site ulcerated? Yes
667 CZ100222002 Male Stool Pathogens Jan 23, 2026 10:10 AM 6227323277 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
668 CZ100222002 Male Stool Pathogens Jan 23, 2026 10:10 AM 6227323277 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
669 CZ100222002 Male Stool Pathogens Jan 23, 2026 10:10 AM 6227323277 OVA AND PARASITES 1 Concentrate Exam Test group cancelled: No specimen received
670 CZ100222002 Male Stool Pathogens Jan 23, 2026 10:10 AM 6227323277 OVA AND PARASITES 1 Smear for Microsporidia Test group cancelled: No specimen received
671 CZ100222002 Male Stool Pathogens Jan 23, 2026 10:10 AM 6227323277 OVA AND PARASITES 1 Modified acid-fast stain Test group cancelled: No specimen received
672 CZ100222002 Male Stool Pathogens Jan 23, 2026 10:10 AM 6227323277 OVA AND PARASITES 2 Trichrome Smear Test group cancelled: No specimen received
673 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
674 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.9 0 - 6.2 umol/L
675 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Alkaline Phosphatase 55 40 - 129 U/L
676 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL ALT (SGPT) 25 5 - 48 U/L
677 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL AST (SGOT) 24 8 - 40 U/L
678 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL GGT 12 10 - 61 U/L
679 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL LDH 190 53 - 234 U/L
680 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Urea Nitrogen 8.5 1.4 - 8.6 mmol/L
681 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 115 H 40 - 110 umol/L
682 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Serum Glucose 4.4 3.9 - 5.6 mmol/L
683 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Serum Uric Acid 337 125 - 488 umol/L
684 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Calcium (EDTA) 2.44 2.07 - 2.64 mmol/L
685 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Phosphorus 0.86 0.71 - 1.65 mmol/L
686 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Total Protein 71 61 - 84 g/L
687 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
688 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Creatine Kinase 144 39 - 308 U/L
689 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
690 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Serum Potassium 4.1 3.5 - 5.2 mmol/L
691 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Serum Bicarbonate 27.5 19.3 - 29.3 mmol/L
692 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
693 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CHEMISTRY PANEL Magnesium 0.75 0.66 - 1.07 mmol/L
694 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 CKD-EPI 2021 CKD-EPI 2021 Without Race 72 mL/min/1.73m^2$No Ref Rng
695 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
696 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 136 127 - 181 g/L
697 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.39 0.39 - 0.54
698 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.6 4.5 - 6.4 TI/L
699 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
700 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
701 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 79 - 96 fL
702 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.82 3.8 - 10.7 GI/L
703 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.49 1.96 - 7.23 GI/L
704 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.54 0.91 - 4.28 GI/L
705 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.41 0.12 - 0.92 GI/L
706 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.34 0 - 0.57 GI/L
707 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
708 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 42.7 40.5 - 75 %
709 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 43.7 15.4 - 48.5 %
710 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.0 2.6 - 10.1 %
711 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 5.9 0 - 6.8 %
712 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.6 0 - 2 %
713 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 224 140 - 400 GI/L
714 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
715 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEPATITIS B SURFACE AB NON-US Anti-HBs II QUAL Reactive Ref Rng :$Non Reactive
716 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
717 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
718 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
719 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
720 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
721 CZ100222002 Male Screening Jan 23, 2026 10:00 AM 6227323268 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
722 CZ100222001 Male Stool Pathogens R Jan 15, 2026 4:55 PM 6227323276 C. DIFF EIA C. diff GDH Ag,stool-CL Test group cancelled: Specimen received beyond stability
723 CZ100222001 Male Stool Pathogens R Jan 15, 2026 4:55 PM 6227323276 C. DIFF EIA C.diff Toxin A&B,stool-CL Test group cancelled: Specimen received beyond stability
724 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Total Bilirubin <3 L Result verified by repeat analysis 3 - 21 umol/L
725 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.4 0 - 6.2 umol/L
726 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Alkaline Phosphatase 140 H 40 - 129 U/L
727 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL ALT (SGPT) 23 5 - 48 U/L
728 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL AST (SGOT) 28 8 - 40 U/L
729 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL GGT 136 H 10 - 61 U/L
730 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL LDH 186 53 - 234 U/L
731 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Urea Nitrogen 3.9 1.4 - 8.6 mmol/L
732 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 78 40 - 110 umol/L
733 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Serum Glucose 4.9 3.9 - 5.6 mmol/L
734 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Serum Uric Acid 408 125 - 488 umol/L
735 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Calcium (EDTA) 2.31 2.07 - 2.64 mmol/L
736 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Phosphorus 1.13 0.71 - 1.65 mmol/L
737 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Total Protein 77 61 - 84 g/L
738 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Albumin-BCG 41 33 - 49 g/L
739 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Creatine Kinase 131 39 - 308 U/L
740 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
741 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
742 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Serum Bicarbonate 23.1 19.3 - 29.3 mmol/L
743 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
744 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CHEMISTRY PANEL Magnesium 0.82 0.66 - 1.07 mmol/L
745 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 CKD-EPI 2021 CKD-EPI 2021 Without Race 111 mL/min/1.73m^2$No Ref Rng
746 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
747 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 85 L 127 - 181 g/L
748 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.30 L 0.39 - 0.54
749 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.1 L 4.5 - 6.4 TI/L
750 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL MCH 21 L 26 - 34 pg
751 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Microcytic NORMOCYTIC;$NORMOCHROMIC
752 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Anisocytosis NORMOCYTIC;$NORMOCHROMIC
753 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL MCV 74 L 79 - 96 fL
754 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL WBC 15.03 H 3.8 - 10.7 GI/L
755 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 11.38 H 1.96 - 7.23 GI/L
756 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.59 0.91 - 4.28 GI/L
757 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.82 0.12 - 0.92 GI/L
758 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.13 0 - 0.57 GI/L
759 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.11 0 - 0.2 GI/L
760 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 75.7 H 40.5 - 75 %
761 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 17.3 15.4 - 48.5 %
762 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.4 2.6 - 10.1 %
763 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 0.9 0 - 6.8 %
764 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 0 - 2 %
765 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 529 H 140 - 400 GI/L
766 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
767 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEPATITIS B SURFACE AB NON-US Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
768 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
769 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
770 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
771 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
772 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
773 CZ100222001 Male Screening Jan 15, 2026 4:45 PM 6227323266 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
@@ -0,0 +1,75 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,27-May-2026,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:10,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,29-May-2026,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100032001,,,,,Female,Biopsy,,"May 27, 2026 12:00 AM",6227323320,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,,
CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100032001,,,,,Female,Stool Pathogens,,"May 13, 2026 9:30 AM",6227323309,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: Specimen received in expired coll. container; unable to perform test.,,,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,4 - 43,U/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,AST (SGOT),,11,,,,,8 - 40,U/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,GGT,,9,,,,,4 - 49,U/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,LDH,,128,,,,,53 - 234,U/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,31 - 101,umol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Glucose,,4.8,,,,,3.9 - 5.6,mmol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Uric Acid,,192,,,,,125 - 428,umol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Calcium (EDTA),,2.24,,,,,2.07 - 2.64,mmol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Phosphorus,,1.00,,,,,0.71 - 1.65,mmol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Creatine Kinase,,85,,,,,26 - 192,U/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.66 - 1.07,mmol/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,94,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,114,,L,,,116 - 164,g/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.1,,,,,4.1 - 5.6,TI/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 98,fL
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.80,,,,,3.8 - 10.7,GI/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.53,,,,,1.96 - 7.23,GI/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.32,,,,,0.91 - 4.28,GI/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.47,,,,,0.12 - 0.92,GI/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.44,,,,,0 - 0.57,GI/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.2,,,,,40.5 - 75,%
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,15.0,,L,,,15.4 - 48.5,%
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.4,,,,,2.6 - 10.1,%
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.0,,,,,0 - 6.8,%
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,513,,H,,,140 - 400,GI/L
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive,
CZ100032001,,,,,Female,Screening,,"May 13, 2026 8:15 AM",6227323299,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
4 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
5 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 BIOPSY FIXATIVE USED Fixative Used 10% NBF
6 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 27-May-2026
7 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 08:10
8 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
9 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 INFLAMED AREA Inflamed area? Yes
10 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
11 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
12 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 29-May-2026
13 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
14 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
15 CZ100032001 Female Biopsy May 27, 2026 12:00 AM 6227323320 ULCERATED AREA Is biopsy site ulcerated? No
16 CZ100032001 Female Stool Pathogens May 13, 2026 9:30 AM 6227323309 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
17 CZ100032001 Female Stool Pathogens May 13, 2026 9:30 AM 6227323309 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
18 CZ100032001 Female Stool Pathogens May 13, 2026 9:30 AM 6227323309 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
19 CZ100032001 Female Stool Pathogens May 13, 2026 9:30 AM 6227323309 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
20 CZ100032001 Female Stool Pathogens May 13, 2026 9:30 AM 6227323309 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
21 CZ100032001 Female Stool Pathogens May 13, 2026 9:30 AM 6227323309 OVA AND PARASITES 2 Trichrome Smear Test group cancelled: Specimen received in expired coll. container; unable to perform test.
22 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
23 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.1 0 - 6.2 umol/L
24 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Alkaline Phosphatase 85 35 - 104 U/L
25 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL ALT (SGPT) 9 4 - 43 U/L
26 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL AST (SGOT) 11 8 - 40 U/L
27 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL GGT 9 4 - 49 U/L
28 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL LDH 128 53 - 234 U/L
29 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Urea Nitrogen 4.0 1.4 - 8.6 mmol/L
30 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 75 31 - 101 umol/L
31 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Serum Glucose 4.8 3.9 - 5.6 mmol/L
32 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Serum Uric Acid 192 125 - 428 umol/L
33 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Calcium (EDTA) 2.24 2.07 - 2.64 mmol/L
34 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Phosphorus 1.00 0.71 - 1.65 mmol/L
35 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Total Protein 71 61 - 84 g/L
36 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Albumin-BCG 44 33 - 49 g/L
37 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Creatine Kinase 85 26 - 192 U/L
38 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
39 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Serum Potassium 4.1 3.5 - 5.2 mmol/L
40 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Serum Bicarbonate 23.8 19.3 - 29.3 mmol/L
41 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
42 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CHEMISTRY PANEL Magnesium 0.79 0.66 - 1.07 mmol/L
43 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 94 mL/min/1.73m^2$No Ref Rng
44 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y Yes
45 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
46 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 114 L 116 - 164 g/L
47 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.36 0.34 - 0.48
48 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.1 4.1 - 5.6 TI/L
49 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL MCH 28 26 - 34 pg
50 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
51 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 79 - 98 fL
52 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL WBC 8.80 3.8 - 10.7 GI/L
53 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 6.53 1.96 - 7.23 GI/L
54 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.32 0.91 - 4.28 GI/L
55 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.47 0.12 - 0.92 GI/L
56 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.44 0 - 0.57 GI/L
57 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
58 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 74.2 40.5 - 75 %
59 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 15.0 L 15.4 - 48.5 %
60 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.4 2.6 - 10.1 %
61 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 5.0 0 - 6.8 %
62 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
63 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 513 H 140 - 400 GI/L
64 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
65 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEPATITIS B SURFACE AB Anti-HBs II QUAL Reactive Ref Rng :$Non Reactive
66 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
67 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
68 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
69 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
70 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
71 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 PA1 EEA-2? Approved to use EEA-2? Yes
72 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
73 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 SERUM BETA HCG B-hCG, Qualitative Negative Ref Rng: Negative
74 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 SERUM BETA HCG B-hCG, Quantitative <0.6 Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive
75 CZ100032001 Female Screening May 13, 2026 8:15 AM 6227323299 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
@@ -0,0 +1,3 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100032001 - null,,,,Female,SCRNSTOOL Stool Pathogens,"May 13, 2026 9:30 AM",6227323309,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100032001 - null Female SCRNSTOOL Stool Pathogens May 13, 2026 9:30 AM 6227323309 STOOL CULTURE Stool Final Report No enteric pathogens isolated
@@ -0,0 +1,6 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100222001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jan 15, 2026 4:55 PM",6227323276,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,R,
CZ100222002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jan 23, 2026 10:10 AM",6227323277,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100222004 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Mar 3, 2026 12:20 PM",6227810905,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100222005 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Mar 4, 2026 9:10 AM",6227810904,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100222001 - null Male SCRNSTOOL Stool Pathogens Jan 15, 2026 4:55 PM 6227323276 STOOL CULTURE Stool Final Report No enteric pathogens isolated R
4 CZ100222002 - null Male SCRNSTOOL Stool Pathogens Jan 23, 2026 10:10 AM 6227323277 STOOL CULTURE Stool Final Report No enteric pathogens isolated
5 CZ100222004 - null Male SCRNSTOOL Stool Pathogens Mar 3, 2026 12:20 PM 6227810905 STOOL CULTURE Stool Final Report No enteric pathogens isolated
6 CZ100222005 - null Male SCRNSTOOL Stool Pathogens Mar 4, 2026 9:10 AM 6227810904 STOOL CULTURE Stool Final Report No enteric pathogens isolated
@@ -0,0 +1,242 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Alkaline Phosphatase,,82,,,,,35 - 104,U/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,GGT,,11,,,,,4 - 49,U/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Urea Nitrogen,,2.1,,,,,1.4 - 8.6,mmol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,55,,,,,31 - 101,umol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Glucose,,4.8,,,,,3.9 - 5.6,mmol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Uric Acid,,277,,,,,125 - 428,umol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Calcium (EDTA),,2.54,,,,,2.07 - 2.64,mmol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Phosphorus,,0.81,,,,,0.71 - 1.65,mmol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Total Protein,,84,,,,,61 - 84,g/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Albumin-BCG,,51,,H,,,33 - 49,g/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Creatine Kinase,,55,,,,,26 - 192,U/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Bicarbonate,,23.5,,,,,19.3 - 29.3,mmol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CHEMISTRY PANEL,Magnesium,,0.89,,,,,0.66 - 1.07,mmol/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,129,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,FECAL COLLECTION D/T,Stool Collection Date,Y,,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,FECAL COLLECTION D/T,Stool Collection Time,Y,,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,127,,,,Result verified by repeat analysis,116 - 164,g/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,27,,,,Result verified by repeat analysis,26 - 34,pg
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,Result verified by repeat analysis,79 - 98,fL
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.41,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.73,,,,,1.96 - 7.23,GI/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.41,,,,,0.91 - 4.28,GI/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.00,,,,,0 - 0.2,GI/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,62.0,,,,,40.5 - 75,%
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.0,,,,,15.4 - 48.5,%
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,%
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,%
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.0,,,,,0 - 2,%
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,340,,,,Result verified by repeat analysis,140 - 400,GI/L
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-May-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,12:40,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-May-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,14:20,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-May-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,12:40,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,,,,,,,
CZ100122001,,,,,Female,Induction Week 4,,"May 7, 2026 12:40 PM",6227697723,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,35 - 104,U/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,LDH,,138,,,,,53 - 234,U/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Glucose,,5.1,,,,,3.9 - 5.6,mmol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Uric Acid,,296,,,,,125 - 428,umol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Calcium (EDTA),,2.55,,,,,2.07 - 2.64,mmol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Phosphorus,,0.77,,,,,0.71 - 1.65,mmol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Creatine Kinase,,49,,,,,26 - 192,U/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,129,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,FECAL COLLECTION D/T,Stool Collection Date,Y,22-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,FECAL COLLECTION D/T,Stool Collection Time,Y,05:30,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,128,,,,Result verified by repeat analysis,116 - 164,g/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,Result verified by repeat analysis,0.34 - 0.48,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,Result verified by repeat analysis,4.1 - 5.6,TI/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,26,,,,Result verified by repeat analysis,26 - 34,pg
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,81,,,,Result verified by repeat analysis,79 - 98,fL
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.60,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.39,,,,,1.96 - 7.23,GI/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.54,,,,,0.91 - 4.28,GI/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.47,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,Result verified by repeat analysis,0 - 0.57,GI/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,Result verified by repeat analysis,0 - 0.2,GI/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.6,,,,Result verified by repeat analysis,40.5 - 75,%
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.5,,,,Result verified by repeat analysis,15.4 - 48.5,%
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,Result verified by repeat analysis,2.6 - 10.1,%
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,Result verified by repeat analysis,0 - 6.8,%
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,Result verified by repeat analysis,0 - 2,%
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,300,,,,Result verified by repeat analysis,140 - 400,GI/L
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:25,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,22-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:45,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,22-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:25,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,22-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,05:30,,,,,,
CZ100122001,,,,,Female,Induction Week 2,,"Apr 22, 2026 9:25 AM",6227697722,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.5,,,,,0 - 6.2,umol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Alkaline Phosphatase,,66,,,,,35 - 104,U/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,4 - 43,U/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,LDH,,157,,,,,53 - 234,U/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,31 - 101,umol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Glucose,,4.4,,,,,3.9 - 5.6,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Uric Acid,,258,,,,,125 - 428,umol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Calcium (EDTA),,2.35,,,,,2.07 - 2.64,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Phosphorus,,0.84,,,,,0.71 - 1.65,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Creatine Kinase,,51,,,,,26 - 192,U/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Bicarbonate,,23.0,,,,,19.3 - 29.3,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CHEMISTRY PANEL,Magnesium,,0.82,,,,,0.66 - 1.07,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,131,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,FECAL COLLECTION D/T,Stool Collection Date,Y,07-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,FECAL COLLECTION D/T,Stool Collection Time,Y,06:00,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,115,R,L,,,116 - 164,g/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,25,R,L,,,26 - 34,pg
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,80,,,,,79 - 98,fL
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.11,,,,,3.8 - 10.7,GI/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.31,,,,,1.96 - 7.23,GI/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.15,,,,,0.91 - 4.28,GI/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.54,,,,,0.12 - 0.92,GI/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,69.3,,,,,40.5 - 75,%
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.6,,,,,15.4 - 48.5,%
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.9,,,,,2.6 - 10.1,%
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,%
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,%
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,386,,,,,140 - 400,GI/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,Direct HDL-C 4th Generation,,1.35,,,,,1.03 - 1.53,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,Triglycerides (GPO),,1.11,,,,,0.41 - 1.63,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,Cholesterol (High Performance),,4.41,,,,,3.31 - 5.64,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,LIPID PANEL,LDL Chol Friedewald 4th,,2.55,,,,,0 - 3.34,mmol/L
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,11:45,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,13:35,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,11:45,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,07-Apr-2026,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:00,,,,,,
CZ100122001,,,,,Female,Induction Week 0,,"Apr 7, 2026 11:45 AM",6227697719,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,ANATOMICAL SITE,Anatomical Site,Y,15 cm,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,23-Mar-2026,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:42,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,25-Mar-2026,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100122001,,,,,Female,Biopsy,,"Mar 23, 2026 12:00 AM",6227697736,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Total Bilirubin,,<3,R,L,,Result verified by repeat analysis,3 - 21,umol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Alkaline Phosphatase,,74,,,,,35 - 104,U/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,4 - 43,U/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,GGT,,9,,,,,4 - 49,U/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Urea Nitrogen,,2.5,,,,,1.4 - 8.6,mmol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,55,,,,,31 - 101,umol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Glucose,,5.5,,,,,3.9 - 5.6,mmol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Uric Acid,,226,,,,,125 - 428,umol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Phosphorus,,0.90,,,,,0.71 - 1.65,mmol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Creatine Kinase,,84,,,,,26 - 192,U/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Potassium,,5.1,,,,,3.5 - 5.2,mmol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Bicarbonate,,19.2,,L,,,19.3 - 29.3,mmol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,129,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,111,R,L,,,116 - 164,g/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,24,R,L,,,26 - 34,pg
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,78,R,L,,,79 - 98,fL
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.66,,,,,3.8 - 10.7,GI/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.37,,,,,1.96 - 7.23,GI/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.63,,,,,0.91 - 4.28,GI/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.55,,,,,0.12 - 0.92,GI/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.2,,,,,40.5 - 75,%
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.2,,,,,15.4 - 48.5,%
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,%
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.1,,,,,0 - 6.8,%
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,412,R,H,,,140 - 400,GI/L
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive,
CZ100122001,,,,,Female,Screening,R,"Mar 18, 2026 9:18 AM",6227697718,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100122001,,,,,Female,Stool Pathogens,,"Mar 17, 2026 5:30 PM",6227697725,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100122001,,,,,Female,Stool Pathogens,,"Mar 17, 2026 5:30 PM",6227697725,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 ALP<2XULN ALP<2XULN Criteria Met
4 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
5 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
6 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 AST>/=3XULN AST >/= 3 X ULN Criteria not met
7 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
8 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
9 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.3 0 - 6.2 umol/L
10 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Alkaline Phosphatase 82 35 - 104 U/L
11 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL ALT (SGPT) 18 4 - 43 U/L
12 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
13 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL GGT 11 4 - 49 U/L
14 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL LDH 151 53 - 234 U/L
15 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Urea Nitrogen 2.1 1.4 - 8.6 mmol/L
16 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 55 31 - 101 umol/L
17 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Serum Glucose 4.8 3.9 - 5.6 mmol/L
18 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Serum Uric Acid 277 125 - 428 umol/L
19 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Calcium (EDTA) 2.54 2.07 - 2.64 mmol/L
20 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Phosphorus 0.81 0.71 - 1.65 mmol/L
21 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Total Protein 84 61 - 84 g/L
22 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Albumin-BCG 51 H 33 - 49 g/L
23 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Creatine Kinase 55 26 - 192 U/L
24 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
25 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
26 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Serum Bicarbonate 23.5 19.3 - 29.3 mmol/L
27 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
28 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CHEMISTRY PANEL Magnesium 0.89 0.66 - 1.07 mmol/L
29 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 129 mL/min/1.73m^2$No Ref Rng
30 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 FECAL COLLECTION D/T Stool Collection Date Y
31 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 FECAL COLLECTION D/T Stool Collection Time Y
32 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 127 Result verified by repeat analysis 116 - 164 g/L
33 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.39 0.34 - 0.48
34 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.7 Result verified by repeat analysis 4.1 - 5.6 TI/L
35 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL MCH 27 Result verified by repeat analysis 26 - 34 pg
36 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Anisocytosis NORMOCYTIC;$NORMOCHROMIC
37 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL MCV 83 Result verified by repeat analysis 79 - 98 fL
38 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL WBC 4.41 Result verified by repeat analysis 3.8 - 10.7 GI/L
39 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.73 1.96 - 7.23 GI/L
40 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.41 0.91 - 4.28 GI/L
41 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.22 0.12 - 0.92 GI/L
42 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.04 0 - 0.57 GI/L
43 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.00 0 - 0.2 GI/L
44 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 62.0 40.5 - 75 %
45 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 32.0 15.4 - 48.5 %
46 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.0 2.6 - 10.1 %
47 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.0 0 - 6.8 %
48 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.0 0 - 2 %
49 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 340 Result verified by repeat analysis 140 - 400 GI/L
50 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 PA1 EEA-2? Approved to use EEA-2? Yes
51 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 07-May-2026
52 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 12:40
53 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 07-May-2026
54 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 14:20
55 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 07-May-2026
56 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 12:40
57 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 SM09/STOOL PK COLL D/T Stool Collection Date Y
58 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 SM09/STOOL PK COLL D/T Stool Collection Time Y
59 CZ100122001 Female Induction Week 4 May 7, 2026 12:40 PM 6227697723 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
60 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 ALP<2XULN ALP<2XULN Criteria Met
61 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
62 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
63 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 AST>/=3XULN AST >/= 3 X ULN Criteria not met
64 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
65 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Total Bilirubin 4 3 - 21 umol/L
66 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.7 0 - 6.2 umol/L
67 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Alkaline Phosphatase 71 35 - 104 U/L
68 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL ALT (SGPT) 24 4 - 43 U/L
69 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL AST (SGOT) 19 8 - 40 U/L
70 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL GGT 12 4 - 49 U/L
71 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL LDH 138 53 - 234 U/L
72 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Urea Nitrogen 3.5 1.4 - 8.6 mmol/L
73 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 56 31 - 101 umol/L
74 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Serum Glucose 5.1 3.9 - 5.6 mmol/L
75 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Serum Uric Acid 296 125 - 428 umol/L
76 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Calcium (EDTA) 2.55 2.07 - 2.64 mmol/L
77 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Phosphorus 0.77 0.71 - 1.65 mmol/L
78 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Total Protein 77 61 - 84 g/L
79 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Albumin-BCG 46 33 - 49 g/L
80 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Creatine Kinase 49 26 - 192 U/L
81 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
82 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Serum Potassium 4.3 3.5 - 5.2 mmol/L
83 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Serum Bicarbonate 25.3 19.3 - 29.3 mmol/L
84 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Serum Chloride 100 94 - 112 mmol/L
85 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CHEMISTRY PANEL Magnesium 0.83 0.66 - 1.07 mmol/L
86 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 129 mL/min/1.73m^2$No Ref Rng
87 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 FECAL COLLECTION D/T Stool Collection Date Y 22-Apr-2026
88 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 FECAL COLLECTION D/T Stool Collection Time Y 05:30
89 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 128 Result verified by repeat analysis 116 - 164 g/L
90 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.40 Result verified by repeat analysis 0.34 - 0.48
91 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.9 Result verified by repeat analysis 4.1 - 5.6 TI/L
92 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL MCH 26 Result verified by repeat analysis 26 - 34 pg
93 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
94 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL MCV 81 Result verified by repeat analysis 79 - 98 fL
95 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.60 Result verified by repeat analysis 3.8 - 10.7 GI/L
96 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.39 1.96 - 7.23 GI/L
97 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.54 0.91 - 4.28 GI/L
98 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.47 Result verified by repeat analysis 0.12 - 0.92 GI/L
99 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.12 Result verified by repeat analysis 0 - 0.57 GI/L
100 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.07 Result verified by repeat analysis 0 - 0.2 GI/L
101 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 66.6 Result verified by repeat analysis 40.5 - 75 %
102 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 23.5 Result verified by repeat analysis 15.4 - 48.5 %
103 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.2 Result verified by repeat analysis 2.6 - 10.1 %
104 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.8 Result verified by repeat analysis 0 - 6.8 %
105 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.0 Result verified by repeat analysis 0 - 2 %
106 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 300 Result verified by repeat analysis 140 - 400 GI/L
107 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 PA1 EEA-2? Approved to use EEA-2? Yes
108 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 22-Apr-2026
109 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 09:25
110 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 22-Apr-2026
111 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 10:45
112 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 22-Apr-2026
113 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 09:25
114 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 SM09/STOOL PK COLL D/T Stool Collection Date Y 22-Apr-2026
115 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 SM09/STOOL PK COLL D/T Stool Collection Time Y 05:30
116 CZ100122001 Female Induction Week 2 Apr 22, 2026 9:25 AM 6227697722 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
117 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Total Bilirubin 5 3 - 21 umol/L
118 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.5 0 - 6.2 umol/L
119 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Alkaline Phosphatase 66 35 - 104 U/L
120 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL ALT (SGPT) 25 4 - 43 U/L
121 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL AST (SGOT) 24 8 - 40 U/L
122 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL GGT 12 4 - 49 U/L
123 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL LDH 157 53 - 234 U/L
124 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Urea Nitrogen 3.0 1.4 - 8.6 mmol/L
125 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 51 31 - 101 umol/L
126 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Serum Glucose 4.4 3.9 - 5.6 mmol/L
127 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Serum Uric Acid 258 125 - 428 umol/L
128 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Calcium (EDTA) 2.35 2.07 - 2.64 mmol/L
129 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Phosphorus 0.84 0.71 - 1.65 mmol/L
130 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Total Protein 71 61 - 84 g/L
131 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Albumin-BCG 46 33 - 49 g/L
132 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Creatine Kinase 51 26 - 192 U/L
133 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
134 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
135 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Serum Bicarbonate 23.0 19.3 - 29.3 mmol/L
136 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
137 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CHEMISTRY PANEL Magnesium 0.82 0.66 - 1.07 mmol/L
138 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 131 mL/min/1.73m^2$No Ref Rng
139 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 FECAL COLLECTION D/T Stool Collection Date Y 07-Apr-2026
140 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 FECAL COLLECTION D/T Stool Collection Time Y 06:00
141 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 115 R L 116 - 164 g/L
142 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.36 0.34 - 0.48
143 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.5 4.1 - 5.6 TI/L
144 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL MCH 25 R L 26 - 34 pg
145 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
146 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL MCV 80 79 - 98 fL
147 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL WBC 9.11 3.8 - 10.7 GI/L
148 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 6.31 1.96 - 7.23 GI/L
149 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.15 0.91 - 4.28 GI/L
150 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.54 0.12 - 0.92 GI/L
151 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.05 0 - 0.57 GI/L
152 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.06 0 - 0.2 GI/L
153 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 69.3 40.5 - 75 %
154 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 23.6 15.4 - 48.5 %
155 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.9 2.6 - 10.1 %
156 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 0.5 0 - 6.8 %
157 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 0 - 2 %
158 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 386 140 - 400 GI/L
159 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
160 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 LIPID PANEL Direct HDL-C 4th Generation 1.35 1.03 - 1.53 mmol/L
161 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 LIPID PANEL Triglycerides (GPO) 1.11 0.41 - 1.63 mmol/L
162 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 LIPID PANEL Cholesterol (High Performance) 4.41 3.31 - 5.64 mmol/L
163 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 LIPID PANEL LDL Chol Friedewald 4th 2.55 0 - 3.34 mmol/L
164 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 PA1 EEA-2? Approved to use EEA-2? Yes
165 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 07-Apr-2026
166 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 11:45
167 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 07-Apr-2026
168 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 13:35
169 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 07-Apr-2026
170 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 11:45
171 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 07-Apr-2026
172 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 06:00
173 CZ100122001 Female Induction Week 0 Apr 7, 2026 11:45 AM 6227697719 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
174 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 ANATOMICAL SITE Anatomical Site Y 15 cm
175 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
176 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 BIOPSY FIXATIVE USED Fixative Used 10% NBF
177 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 23-Mar-2026
178 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 09:42
179 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
180 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 INFLAMED AREA Inflamed area? Yes
181 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
182 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
183 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 25-Mar-2026
184 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
185 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
186 CZ100122001 Female Biopsy Mar 23, 2026 12:00 AM 6227697736 ULCERATED AREA Is biopsy site ulcerated? Yes
187 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Total Bilirubin <3 R L Result verified by repeat analysis 3 - 21 umol/L
188 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas <1.4 Result verified by repeat analysis 0 - 6.2 umol/L
189 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Alkaline Phosphatase 74 35 - 104 U/L
190 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL ALT (SGPT) 23 4 - 43 U/L
191 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL AST (SGOT) 23 8 - 40 U/L
192 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL GGT 9 4 - 49 U/L
193 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL LDH Test cancelled: Hemolysis-test not performed
194 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Urea Nitrogen 2.5 1.4 - 8.6 mmol/L
195 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 55 31 - 101 umol/L
196 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Serum Glucose 5.5 3.9 - 5.6 mmol/L
197 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Serum Uric Acid 226 125 - 428 umol/L
198 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Calcium (EDTA) 2.39 2.07 - 2.64 mmol/L
199 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Phosphorus 0.90 0.71 - 1.65 mmol/L
200 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Total Protein 73 61 - 84 g/L
201 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Albumin-BCG 45 33 - 49 g/L
202 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Creatine Kinase 84 26 - 192 U/L
203 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Serum Sodium 142 132 - 147 mmol/L
204 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Serum Potassium 5.1 3.5 - 5.2 mmol/L
205 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Serum Bicarbonate 19.2 L 19.3 - 29.3 mmol/L
206 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
207 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CHEMISTRY PANEL Magnesium 0.83 0.66 - 1.07 mmol/L
208 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 129 mL/min/1.73m^2$No Ref Rng
209 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y Yes
210 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
211 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 111 R L 116 - 164 g/L
212 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.36 0.34 - 0.48
213 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.6 4.1 - 5.6 TI/L
214 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL MCH 24 R L 26 - 34 pg
215 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
216 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL MCV 78 R L 79 - 98 fL
217 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL WBC 7.66 3.8 - 10.7 GI/L
218 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 5.37 1.96 - 7.23 GI/L
219 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.63 0.91 - 4.28 GI/L
220 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.55 0.12 - 0.92 GI/L
221 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.08 0 - 0.57 GI/L
222 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
223 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 70.2 40.5 - 75 %
224 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 21.2 15.4 - 48.5 %
225 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.2 2.6 - 10.1 %
226 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.1 0 - 6.8 %
227 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
228 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 412 R H 140 - 400 GI/L
229 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
230 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
231 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
232 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
233 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
234 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
235 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
236 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 PA1 EEA-2? Approved to use EEA-2? Yes
237 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
238 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 SERUM BETA HCG B-hCG, Qualitative Negative Ref Rng: Negative
239 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 SERUM BETA HCG B-hCG, Quantitative <0.6 Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive
240 CZ100122001 Female Screening R Mar 18, 2026 9:18 AM 6227697718 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
241 CZ100122001 Female Stool Pathogens Mar 17, 2026 5:30 PM 6227697725 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
242 CZ100122001 Female Stool Pathogens Mar 17, 2026 5:30 PM 6227697725 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
@@ -0,0 +1,3 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100122001 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Mar 17, 2026 5:30 PM",6227697725,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100122001 - null Female SCRNSTOOL Stool Pathogens Mar 17, 2026 5:30 PM 6227697725 STOOL CULTURE Stool Final Report No enteric pathogens isolated
@@ -0,0 +1,422 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,BIOPSY COLLECTION METHOD,Collection Method,Y,sigmoidoscopy,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,28-May-2026,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:15,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,01-Jun-2026,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100062001,,,,,Male,Biopsy,,"May 29, 2026 12:00 AM",6227323255,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Total Bilirubin,,18,,,,,3 - 21,umol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.8,,,,,0 - 6.2,umol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Alkaline Phosphatase,,63,,,,,40 - 129,U/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,5 - 48,U/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,GGT,,17,,,,,10 - 61,U/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,LDH,,124,,,,,53 - 234,U/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Urea Nitrogen,,3.2,,,,,1.4 - 8.6,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Uric Acid,,298,,,,,125 - 488,umol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Creatine Kinase,,106,,,,,39 - 308,U/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,FECAL COLLECTION D/T,Stool Collection Date,Y,26-May-2026,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,FECAL COLLECTION D/T,Stool Collection Time,Y,06:20,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,129,,,,,127 - 181,g/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.39 - 0.54,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,L,,,4.5 - 6.4,TI/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.10,,,,,3.8 - 10.7,GI/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.34,,,,,1.96 - 7.23,GI/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.09,,,,,0.91 - 4.28,GI/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.48,,,,,0.12 - 0.92,GI/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.5,,,,,40.5 - 75,%
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.4,,,,,15.4 - 48.5,%
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.5,,,,,2.6 - 10.1,%
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.2,,,,,0 - 6.8,%
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,270,,,,,140 - 400,GI/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,IS SUBJECT FASTING?,Is Subject Fasting?,Y,,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,Direct HDL-C 4th Generation,,0.90,,L,,,1.03 - 1.53,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,Triglycerides (GPO),,0.88,,,,,0.62 - 3.69,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,Cholesterol (High Performance),,2.48,,L,,Result verified by repeat analysis,4.19 - 7.24,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,LIPID PANEL,LDL Chol Friedewald 4th,,1.18,,,,,0 - 3.34,mmol/L
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,PA1 EEA-2?,Approved to use EEA-2?,,,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:15,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,26-May-2026,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:05,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:15,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,26-May-2026,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:20,,,,,,
CZ100062002,,,,,Male,Induction Week 0,,"May 26, 2026 9:20 AM",6227323238,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,ANATOMICAL SITE,Anatomical Site,Y,15-20,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,14-May-2026,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:15,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,16-May-2026,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100062002,,,,,Male,Biopsy,,"May 14, 2026 12:00 AM",6227323256,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,40 - 129,U/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,5 - 48,U/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,GGT,,17,,,,,10 - 61,U/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Urea Nitrogen,,3.7,,,,,1.4 - 8.6,mmol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,40 - 110,umol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Uric Acid,,338,,,,,125 - 488,umol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Creatine Kinase,,281,,,,,39 - 308,U/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Bicarbonate,,26.0,,,,,19.3 - 29.3,mmol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,108,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,127 - 181,g/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.39 - 0.54,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.17,,,,,3.8 - 10.7,GI/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.25,,,,,1.96 - 7.23,GI/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.20,,,,,0.91 - 4.28,GI/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.22,,,,,0 - 0.57,GI/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.11,,,,,0 - 0.2,GI/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.0,,,,,40.5 - 75,%
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.9,,,,,15.4 - 48.5,%
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.1,,,,,2.6 - 10.1,%
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,5.3,,,,,0 - 6.8,%
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.7,,H,,,0 - 2,%
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,306,,,,,140 - 400,GI/L
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100062002,,,,,Male,Screening,,"Apr 20, 2026 7:45 AM",6227323234,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,,
CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,,
CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,,
CZ100062002,,,,,Male,Stool Pathogens,,"Apr 20, 2026 7:45 AM",6228194341,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Alkaline Phosphatase,,91,,,,,40 - 129,U/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,LDH,,118,,,,,53 - 234,U/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Urea Nitrogen,,1.6,,,,,1.4 - 8.6,mmol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,92,,,,,40 - 110,umol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Glucose,,4.7,,,,,3.9 - 5.6,mmol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Uric Acid,,424,,,,,125 - 488,umol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Phosphorus,,1.29,,,,,0.71 - 1.65,mmol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Total Protein,,78,,,,,61 - 84,g/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Creatine Kinase,,41,,,,,39 - 308,U/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Bicarbonate,,24.0,,,,,19.3 - 29.3,mmol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CHEMISTRY PANEL,Magnesium,,0.93,,H,,,0.7 - 0.9,mmol/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,106,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,FECAL COLLECTION D/T,Stool Collection Date,Y,14-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,FECAL COLLECTION D/T,Stool Collection Time,Y,20:30,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,122,R,L,,,127 - 181,g/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,24,R,L,,,26 - 34,pg
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,83,,,,,79 - 96,fL
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,14.93,R,H,,,3.8 - 10.7,GI/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,10.00,R,H,,,1.96 - 7.23,GI/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.54,,,,,0.91 - 4.28,GI/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.79,R,H,,,0.12 - 0.92,GI/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.60,R,H,,,0 - 0.57,GI/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.00,,,,,0 - 0.2,GI/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.0,,,,,40.5 - 75,%
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.0,,,,,15.4 - 48.5,%
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,12.0,R,H,,,2.6 - 10.1,%
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.0,,,,,0 - 6.8,%
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.0,,,,,0 - 2,%
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,647,R,H,,,140 - 400,GI/L
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,14-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:15,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,14-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:40,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,14-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:15,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,14-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,20:30,,,,,,
CZ100062001,,,,,Male,Induction Week 4,,"Apr 15, 2026 8:45 AM",6227323242,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,40 - 129,U/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,5 - 48,U/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,LDH,,113,,,,,53 - 234,U/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Urea Nitrogen,,2.0,,,,,1.4 - 8.6,mmol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,86,,,,,40 - 110,umol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Glucose,,4.5,,,,,3.9 - 5.6,mmol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Uric Acid,,410,,,,,125 - 488,umol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Phosphorus,,1.28,,,,,0.71 - 1.65,mmol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Creatine Kinase,,64,,,,,39 - 308,U/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CHEMISTRY PANEL,Magnesium,,0.93,R,H,,,0.7 - 0.9,mmol/L
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,115,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,FECAL COLLECTION D/T,Stool Collection Date,Y,08-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,FECAL COLLECTION D/T,Stool Collection Time,Y,07:10,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:10,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,08-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:20,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:10,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,08-Apr-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,07:10,,,,,,
CZ100062001,,,,,Male,Induction Week 2,,"Apr 8, 2026 7:10 AM",6227323240,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Alkaline Phosphatase,,89,,,,,40 - 129,U/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,GGT,,18,,,,,10 - 61,U/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,LDH,,141,,,,,53 - 234,U/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Urea Nitrogen,,2.5,,,,,1.4 - 8.6,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Glucose,,4.0,,,,,3.9 - 5.6,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Uric Acid,,415,,,,,125 - 488,umol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Phosphorus,,1.26,,,,,0.71 - 1.65,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Creatine Kinase,,119,,,,,39 - 308,U/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CHEMISTRY PANEL,Magnesium,,0.90,,,,,0.7 - 0.9,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,128,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,FECAL COLLECTION D/T,Stool Collection Date,Y,20-Mar-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,FECAL COLLECTION D/T,Stool Collection Time,Y,08:00,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,121,,L,,,127 - 181,g/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.39 - 0.54,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,25,,L,,,26 - 34,pg
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,81,,,,,79 - 96,fL
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,13.09,,H,,,3.8 - 10.7,GI/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,9.29,,H,,,1.96 - 7.23,GI/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.23,,,,,0.91 - 4.28,GI/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.31,,H,,,0.12 - 0.92,GI/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.13,,,,,0 - 0.2,GI/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.0,,,,,40.5 - 75,%
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.0,,,,,15.4 - 48.5,%
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.0,,,,,2.6 - 10.1,%
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,%
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,%
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,445,,H,,,140 - 400,GI/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,IS SUBJECT FASTING?,Is Subject Fasting?,Y,No,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,Direct HDL-C 4th Generation,,1.53,,,,,1.03 - 1.53,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,Triglycerides (GPO),,0.81,,,,,0.42 - 1.67,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,Cholesterol (High Performance),,4.16,,,,,2.95 - 5.12,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,LIPID PANEL,LDL Chol Friedewald 4th,,2.26,,,,,0 - 3.34,mmol/L
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,20-Mar-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:00,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,20-Mar-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:00,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,20-Mar-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:00,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,20-Mar-2026,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,08:00,,,,,,
CZ100062001,,,,,Male,Induction Week 0,,"Mar 20, 2026 8:00 AM",6227323237,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100062001,,,,,Male,Stool Pathogens,,"Mar 17, 2026 9:00 AM",6227323243,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100062001,,,,,Male,Stool Pathogens,,"Mar 17, 2026 9:00 AM",6227323243,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,R,,,,Male,Unscheduled,R,"Mar 17, 2026 8:00 AM",6227323265,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,Test group cancelled: No specimen received,,,
CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,Test group cancelled: No specimen received,,,
CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 1,Concentrate Exam,,,,,Test group cancelled: No specimen received,,,
CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 1,Smear for Microsporidia,,,,,Test group cancelled: No specimen received,,,
CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 1,Modified acid-fast stain,,,,,Test group cancelled: No specimen received,,,
CZ100062001,,,,,Male,Stool Pathogens,,"Mar 11, 2026 9:15 AM",6227323245,OVA AND PARASITES 2,Trichrome Smear,,,,,Test group cancelled: No specimen received,,,
CZ100062001,,,,,Male,TB Testing,,"Mar 11, 2026 9:10 AM",6227323253,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Unscheduled,,"Mar 11, 2026 9:05 AM",6227323264,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,ANATOMICAL SITE,Anatomical Site,Y,18,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,BIOPSY COLLECTION METHOD,Collection Method,Y,sigmoidoscopy,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,19-Feb-2026,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:20,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,23-Feb-2026,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100062001,,,,,Male,Biopsy,R,"Feb 19, 2026 12:00 AM",6227323254,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100062001,,,,,Male,Stool Pathogens,,"Feb 16, 2026 7:20 AM",6227323244,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,,
CZ100062001,,,,,Male,Stool Pathogens,,"Feb 16, 2026 7:20 AM",6227323244,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,Test group cancelled: Specimen received beyond stability,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Alkaline Phosphatase,,93,,,,,55 - 149,U/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,ALT (SGPT),,9,,,,,5 - 48,U/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,GGT,,64,,H,,,10 - 61,U/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,LDH,,105,,,,,53 - 234,U/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Urea Nitrogen,,1.5,,,,,1.4 - 8.6,mmol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,40 - 110,umol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Glucose,,4.2,,,,,3.9 - 5.6,mmol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Uric Acid,,288,,,,,125 - 488,umol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Phosphorus,,0.85,,,,,0.71 - 1.65,mmol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Albumin-BCG,,39,,,,,33 - 49,g/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Creatine Kinase,,34,,L,,,39 - 308,U/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Bicarbonate,,25.5,,,,,19.3 - 29.3,mmol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CHEMISTRY PANEL,Magnesium,,0.95,,H,,,0.7 - 0.9,mmol/L
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,CKD-EPI 2021,CKD-EPI 2021 Without Race,,133,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,,,,Test cancelled: Clotted Blood Received,,,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100062001,,,,,Male,Screening,,"Feb 16, 2026 7:03 AM",6227323236,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,,,,Test group cancelled: No specimen received,,,
CZ100062001,,,,,Male,TB Testing,,"Feb 16, 2026 7:03 AM",6227323252,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Indeterminate,,,,,Normal=Negative,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
4 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 BIOPSY COLLECTION METHOD Collection Method Y sigmoidoscopy
5 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 BIOPSY FIXATIVE USED Fixative Used 10% NBF
6 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 28-May-2026
7 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 09:15
8 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
9 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 INFLAMED AREA Inflamed area? Yes
10 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
11 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
12 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 01-Jun-2026
13 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
14 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
15 CZ100062001 Male Biopsy May 29, 2026 12:00 AM 6227323255 ULCERATED AREA Is biopsy site ulcerated? Yes
16 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Total Bilirubin 18 3 - 21 umol/L
17 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 5.8 0 - 6.2 umol/L
18 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Alkaline Phosphatase 63 40 - 129 U/L
19 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL ALT (SGPT) 12 5 - 48 U/L
20 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL AST (SGOT) 18 8 - 40 U/L
21 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL GGT 17 10 - 61 U/L
22 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL LDH 124 53 - 234 U/L
23 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Urea Nitrogen 3.2 1.4 - 8.6 mmol/L
24 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 76 40 - 110 umol/L
25 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Serum Glucose 5.2 3.9 - 5.6 mmol/L
26 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Serum Uric Acid 298 125 - 488 umol/L
27 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Calcium (EDTA) 2.33 2.07 - 2.64 mmol/L
28 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Phosphorus 1.21 0.71 - 1.65 mmol/L
29 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Total Protein 69 61 - 84 g/L
30 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Albumin-BCG 41 33 - 49 g/L
31 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Creatine Kinase 106 39 - 308 U/L
32 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
33 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Serum Potassium 4.0 3.5 - 5.2 mmol/L
34 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Serum Bicarbonate 23.8 19.3 - 29.3 mmol/L
35 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
36 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 CHEMISTRY PANEL Magnesium 0.81 0.66 - 1.07 mmol/L
37 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 FECAL COLLECTION D/T Stool Collection Date Y 26-May-2026
38 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 FECAL COLLECTION D/T Stool Collection Time Y 06:20
39 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 129 127 - 181 g/L
40 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.40 0.39 - 0.54
41 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.3 L 4.5 - 6.4 TI/L
42 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
43 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
44 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 79 - 96 fL
45 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.10 3.8 - 10.7 GI/L
46 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.34 1.96 - 7.23 GI/L
47 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.09 0.91 - 4.28 GI/L
48 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.48 0.12 - 0.92 GI/L
49 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.16 0 - 0.57 GI/L
50 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.02 0 - 0.2 GI/L
51 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 65.5 40.5 - 75 %
52 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 21.4 15.4 - 48.5 %
53 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 9.5 2.6 - 10.1 %
54 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.2 0 - 6.8 %
55 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
56 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 270 140 - 400 GI/L
57 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 IS SUBJECT FASTING? Is Subject Fasting? Y
58 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 LIPID PANEL Direct HDL-C 4th Generation 0.90 L 1.03 - 1.53 mmol/L
59 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 LIPID PANEL Triglycerides (GPO) 0.88 0.62 - 3.69 mmol/L
60 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 LIPID PANEL Cholesterol (High Performance) 2.48 L Result verified by repeat analysis 4.19 - 7.24 mmol/L
61 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 LIPID PANEL LDL Chol Friedewald 4th 1.18 0 - 3.34 mmol/L
62 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 PA1 EEA-2? Approved to use EEA-2?
63 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 26-May-2026
64 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:15
65 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 26-May-2026
66 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 09:05
67 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 26-May-2026
68 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:15
69 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 26-May-2026
70 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 06:20
71 CZ100062002 Male Induction Week 0 May 26, 2026 9:20 AM 6227323238 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
72 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 ANATOMICAL SITE Anatomical Site Y 15-20
73 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
74 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 BIOPSY FIXATIVE USED Fixative Used 10% NBF
75 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 14-May-2026
76 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 08:15
77 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
78 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 INFLAMED AREA Inflamed area? Yes
79 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
80 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
81 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 16-May-2026
82 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
83 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
84 CZ100062002 Male Biopsy May 14, 2026 12:00 AM 6227323256 ULCERATED AREA Is biopsy site ulcerated? No
85 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
86 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.6 0 - 6.2 umol/L
87 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Alkaline Phosphatase 65 40 - 129 U/L
88 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL ALT (SGPT) 13 5 - 48 U/L
89 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL AST (SGOT) 24 8 - 40 U/L
90 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL GGT 17 10 - 61 U/L
91 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL LDH 151 53 - 234 U/L
92 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Urea Nitrogen 3.7 1.4 - 8.6 mmol/L
93 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 71 40 - 110 umol/L
94 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Serum Glucose 4.6 3.9 - 5.6 mmol/L
95 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Serum Uric Acid 338 125 - 488 umol/L
96 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Calcium (EDTA) 2.32 2.07 - 2.64 mmol/L
97 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Phosphorus 1.19 0.71 - 1.65 mmol/L
98 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Total Protein 72 61 - 84 g/L
99 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Albumin-BCG 46 33 - 49 g/L
100 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Creatine Kinase 281 39 - 308 U/L
101 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Serum Sodium 142 132 - 147 mmol/L
102 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Serum Potassium 4.0 3.5 - 5.2 mmol/L
103 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Serum Bicarbonate 26.0 19.3 - 29.3 mmol/L
104 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
105 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CHEMISTRY PANEL Magnesium 0.81 0.66 - 1.07 mmol/L
106 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 108 mL/min/1.73m^2$No Ref Rng
107 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
108 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 140 127 - 181 g/L
109 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.41 0.39 - 0.54
110 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.6 4.5 - 6.4 TI/L
111 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
112 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Anisocytosis NORMOCYTIC;$NORMOCHROMIC
113 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL MCV 89 79 - 96 fL
114 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL WBC 4.17 3.8 - 10.7 GI/L
115 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.25 1.96 - 7.23 GI/L
116 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.20 0.91 - 4.28 GI/L
117 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.38 0.12 - 0.92 GI/L
118 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.22 0 - 0.57 GI/L
119 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.11 0 - 0.2 GI/L
120 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 54.0 40.5 - 75 %
121 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 28.9 15.4 - 48.5 %
122 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 9.1 2.6 - 10.1 %
123 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 5.3 0 - 6.8 %
124 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 2.7 H 0 - 2 %
125 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 306 140 - 400 GI/L
126 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
127 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEPATITIS B SURFACE AB Anti-HBs II QUAL Reactive Ref Rng :$Non Reactive
128 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
129 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
130 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
131 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
132 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
133 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 PA1 EEA-2? Approved to use EEA-2? Yes
134 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
135 CZ100062002 Male Screening Apr 20, 2026 7:45 AM 6227323234 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
136 CZ100062002 Male Stool Pathogens Apr 20, 2026 7:45 AM 6228194341 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
137 CZ100062002 Male Stool Pathogens Apr 20, 2026 7:45 AM 6228194341 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
138 CZ100062002 Male Stool Pathogens Apr 20, 2026 7:45 AM 6228194341 OVA AND PARASITES 1 Concentrate Exam Test group cancelled: No specimen received
139 CZ100062002 Male Stool Pathogens Apr 20, 2026 7:45 AM 6228194341 OVA AND PARASITES 1 Smear for Microsporidia Test group cancelled: No specimen received
140 CZ100062002 Male Stool Pathogens Apr 20, 2026 7:45 AM 6228194341 OVA AND PARASITES 1 Modified acid-fast stain Test group cancelled: No specimen received
141 CZ100062002 Male Stool Pathogens Apr 20, 2026 7:45 AM 6228194341 OVA AND PARASITES 2 Trichrome Smear Test group cancelled: No specimen received
142 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 ALP<2XULN ALP<2XULN Criteria Met
143 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
144 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
145 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 AST>/=3XULN AST >/= 3 X ULN Criteria not met
146 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
147 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
148 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.3 0 - 6.2 umol/L
149 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Alkaline Phosphatase 91 40 - 129 U/L
150 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL ALT (SGPT) 8 5 - 48 U/L
151 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL AST (SGOT) 14 8 - 40 U/L
152 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL GGT 14 10 - 61 U/L
153 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL LDH 118 53 - 234 U/L
154 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Urea Nitrogen 1.6 1.4 - 8.6 mmol/L
155 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 92 40 - 110 umol/L
156 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Serum Glucose 4.7 3.9 - 5.6 mmol/L
157 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Serum Uric Acid 424 125 - 488 umol/L
158 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Calcium (EDTA) 2.51 2.07 - 2.64 mmol/L
159 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Phosphorus 1.29 0.71 - 1.65 mmol/L
160 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Total Protein 78 61 - 84 g/L
161 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Albumin-BCG 42 33 - 49 g/L
162 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Creatine Kinase 41 39 - 308 U/L
163 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
164 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
165 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Serum Bicarbonate 24.0 19.3 - 29.3 mmol/L
166 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Serum Chloride 96 94 - 112 mmol/L
167 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CHEMISTRY PANEL Magnesium 0.93 H 0.7 - 0.9 mmol/L
168 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 106 mL/min/1.73m^2$No Ref Rng
169 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 FECAL COLLECTION D/T Stool Collection Date Y 14-Apr-2026
170 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 FECAL COLLECTION D/T Stool Collection Time Y 20:30
171 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 122 R L 127 - 181 g/L
172 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.42 0.39 - 0.54
173 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.1 4.5 - 6.4 TI/L
174 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL MCH 24 R L 26 - 34 pg
175 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Normocytic NORMOCYTIC;$NORMOCHROMIC
176 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL MCV 83 79 - 96 fL
177 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL WBC 14.93 R H 3.8 - 10.7 GI/L
178 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 10.00 R H 1.96 - 7.23 GI/L
179 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.54 0.91 - 4.28 GI/L
180 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 1.79 R H 0.12 - 0.92 GI/L
181 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.60 R H 0 - 0.57 GI/L
182 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.00 0 - 0.2 GI/L
183 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 67.0 40.5 - 75 %
184 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 17.0 15.4 - 48.5 %
185 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 12.0 R H 2.6 - 10.1 %
186 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 4.0 0 - 6.8 %
187 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.0 0 - 2 %
188 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 647 R H 140 - 400 GI/L
189 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 PA1 EEA-2? Approved to use EEA-2? Yes
190 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 14-Apr-2026
191 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:15
192 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 14-Apr-2026
193 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 08:40
194 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 14-Apr-2026
195 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:15
196 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 SM09/STOOL PK COLL D/T Stool Collection Date Y 14-Apr-2026
197 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 SM09/STOOL PK COLL D/T Stool Collection Time Y 20:30
198 CZ100062001 Male Induction Week 4 Apr 15, 2026 8:45 AM 6227323242 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
199 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 ALP<2XULN ALP<2XULN Criteria Met
200 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
201 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
202 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 AST>/=3XULN AST >/= 3 X ULN Criteria not met
203 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
204 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Total Bilirubin 8 3 - 21 umol/L
205 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.6 0 - 6.2 umol/L
206 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Alkaline Phosphatase 85 40 - 129 U/L
207 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL ALT (SGPT) 9 5 - 48 U/L
208 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL AST (SGOT) 19 8 - 40 U/L
209 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL GGT 14 10 - 61 U/L
210 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL LDH 113 53 - 234 U/L
211 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Urea Nitrogen 2.0 1.4 - 8.6 mmol/L
212 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 86 40 - 110 umol/L
213 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Serum Glucose 4.5 3.9 - 5.6 mmol/L
214 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Serum Uric Acid 410 125 - 488 umol/L
215 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Calcium (EDTA) 2.43 2.07 - 2.64 mmol/L
216 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Phosphorus 1.28 0.71 - 1.65 mmol/L
217 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Total Protein 72 61 - 84 g/L
218 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
219 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Creatine Kinase 64 39 - 308 U/L
220 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
221 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Serum Potassium 4.6 3.5 - 5.2 mmol/L
222 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Serum Bicarbonate 23.2 19.3 - 29.3 mmol/L
223 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
224 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CHEMISTRY PANEL Magnesium 0.93 R H 0.7 - 0.9 mmol/L
225 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 115 mL/min/1.73m^2$No Ref Rng
226 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 FECAL COLLECTION D/T Stool Collection Date Y 08-Apr-2026
227 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 FECAL COLLECTION D/T Stool Collection Time Y 07:10
228 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin Test cancelled: Hemolysis-test not performed
229 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit Test cancelled: Hemolysis-test not performed
230 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL RBC Test cancelled: Hemolysis-test not performed
231 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL MCH Test cancelled: Hemolysis-test not performed
232 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Test cancelled: Hemolysis-test not performed
233 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL MCV Test cancelled: Hemolysis-test not performed
234 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL WBC Test cancelled: Hemolysis-test not performed
235 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils Test cancelled: Hemolysis-test not performed
236 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes Test cancelled: Hemolysis-test not performed
237 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes Test cancelled: Hemolysis-test not performed
238 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils Test cancelled: Hemolysis-test not performed
239 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Basophils Test cancelled: Hemolysis-test not performed
240 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) Test cancelled: Hemolysis-test not performed
241 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) Test cancelled: Hemolysis-test not performed
242 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) Test cancelled: Hemolysis-test not performed
243 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) Test cancelled: Hemolysis-test not performed
244 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) Test cancelled: Hemolysis-test not performed
245 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 HEMATOLOGY&DIFFERENTIAL PANEL Platelets Test cancelled: Hemolysis-test not performed
246 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 PA1 EEA-2? Approved to use EEA-2? Yes
247 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 08-Apr-2026
248 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:10
249 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 08-Apr-2026
250 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 08:20
251 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 08-Apr-2026
252 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:10
253 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 SM09/STOOL PK COLL D/T Stool Collection Date Y 08-Apr-2026
254 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 SM09/STOOL PK COLL D/T Stool Collection Time Y 07:10
255 CZ100062001 Male Induction Week 2 Apr 8, 2026 7:10 AM 6227323240 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
256 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
257 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.5 0 - 6.2 umol/L
258 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Alkaline Phosphatase 89 40 - 129 U/L
259 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL ALT (SGPT) 8 5 - 48 U/L
260 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
261 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL GGT 18 10 - 61 U/L
262 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL LDH 141 53 - 234 U/L
263 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Urea Nitrogen 2.5 1.4 - 8.6 mmol/L
264 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 76 40 - 110 umol/L
265 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Serum Glucose 4.0 3.9 - 5.6 mmol/L
266 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Serum Uric Acid 415 125 - 488 umol/L
267 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Calcium (EDTA) 2.41 2.07 - 2.64 mmol/L
268 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Phosphorus 1.26 0.71 - 1.65 mmol/L
269 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Total Protein 75 61 - 84 g/L
270 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Albumin-BCG 44 33 - 49 g/L
271 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Creatine Kinase 119 39 - 308 U/L
272 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
273 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Serum Potassium 4.1 3.5 - 5.2 mmol/L
274 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Serum Bicarbonate 23.3 19.3 - 29.3 mmol/L
275 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
276 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CHEMISTRY PANEL Magnesium 0.90 0.7 - 0.9 mmol/L
277 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 128 mL/min/1.73m^2$No Ref Rng
278 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 FECAL COLLECTION D/T Stool Collection Date Y 20-Mar-2026
279 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 FECAL COLLECTION D/T Stool Collection Time Y 08:00
280 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 121 L 127 - 181 g/L
281 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.39 0.39 - 0.54
282 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.8 4.5 - 6.4 TI/L
283 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL MCH 25 L 26 - 34 pg
284 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Normocytic NORMOCYTIC;$NORMOCHROMIC
285 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL MCV 81 79 - 96 fL
286 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL WBC 13.09 H 3.8 - 10.7 GI/L
287 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 9.29 H 1.96 - 7.23 GI/L
288 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.23 0.91 - 4.28 GI/L
289 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 1.31 H 0.12 - 0.92 GI/L
290 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.13 0 - 0.57 GI/L
291 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.13 0 - 0.2 GI/L
292 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 71.0 40.5 - 75 %
293 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 17.0 15.4 - 48.5 %
294 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 10.0 2.6 - 10.1 %
295 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.0 0 - 6.8 %
296 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.0 0 - 2 %
297 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 445 H 140 - 400 GI/L
298 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 IS SUBJECT FASTING? Is Subject Fasting? Y No
299 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 LIPID PANEL Direct HDL-C 4th Generation 1.53 1.03 - 1.53 mmol/L
300 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 LIPID PANEL Triglycerides (GPO) 0.81 0.42 - 1.67 mmol/L
301 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 LIPID PANEL Cholesterol (High Performance) 4.16 2.95 - 5.12 mmol/L
302 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 LIPID PANEL LDL Chol Friedewald 4th 2.26 0 - 3.34 mmol/L
303 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 PA1 EEA-2? Approved to use EEA-2? Yes
304 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 20-Mar-2026
305 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 08:00
306 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 20-Mar-2026
307 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 09:00
308 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 20-Mar-2026
309 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 08:00
310 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 20-Mar-2026
311 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 08:00
312 CZ100062001 Male Induction Week 0 Mar 20, 2026 8:00 AM 6227323237 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
313 CZ100062001 Male Stool Pathogens Mar 17, 2026 9:00 AM 6227323243 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
314 CZ100062001 Male Stool Pathogens Mar 17, 2026 9:00 AM 6227323243 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
315 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin Test cancelled: Hemolysis-test not performed
316 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit Test cancelled: Hemolysis-test not performed
317 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL RBC Test cancelled: Hemolysis-test not performed
318 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL MCH Test cancelled: Hemolysis-test not performed
319 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Test cancelled: Hemolysis-test not performed
320 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL MCV Test cancelled: Hemolysis-test not performed
321 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL WBC Test cancelled: Hemolysis-test not performed
322 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils Test cancelled: Hemolysis-test not performed
323 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes Test cancelled: Hemolysis-test not performed
324 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes Test cancelled: Hemolysis-test not performed
325 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils Test cancelled: Hemolysis-test not performed
326 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Basophils Test cancelled: Hemolysis-test not performed
327 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) Test cancelled: Hemolysis-test not performed
328 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) Test cancelled: Hemolysis-test not performed
329 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) Test cancelled: Hemolysis-test not performed
330 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) Test cancelled: Hemolysis-test not performed
331 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) Test cancelled: Hemolysis-test not performed
332 CZ100062001 R Male Unscheduled R Mar 17, 2026 8:00 AM 6227323265 HEMATOLOGY&DIFFERENTIAL PANEL Platelets Test cancelled: Hemolysis-test not performed
333 CZ100062001 Male Stool Pathogens Mar 11, 2026 9:15 AM 6227323245 C. DIFF EIA C. diff GDH Ag,stool-CL Test group cancelled: No specimen received
334 CZ100062001 Male Stool Pathogens Mar 11, 2026 9:15 AM 6227323245 C. DIFF EIA C.diff Toxin A&B,stool-CL Test group cancelled: No specimen received
335 CZ100062001 Male Stool Pathogens Mar 11, 2026 9:15 AM 6227323245 OVA AND PARASITES 1 Concentrate Exam Test group cancelled: No specimen received
336 CZ100062001 Male Stool Pathogens Mar 11, 2026 9:15 AM 6227323245 OVA AND PARASITES 1 Smear for Microsporidia Test group cancelled: No specimen received
337 CZ100062001 Male Stool Pathogens Mar 11, 2026 9:15 AM 6227323245 OVA AND PARASITES 1 Modified acid-fast stain Test group cancelled: No specimen received
338 CZ100062001 Male Stool Pathogens Mar 11, 2026 9:15 AM 6227323245 OVA AND PARASITES 2 Trichrome Smear Test group cancelled: No specimen received
339 CZ100062001 Male TB Testing Mar 11, 2026 9:10 AM 6227323253 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
340 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin Test cancelled: Hemolysis-test not performed
341 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit Test cancelled: Hemolysis-test not performed
342 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL RBC Test cancelled: Hemolysis-test not performed
343 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL MCH Test cancelled: Hemolysis-test not performed
344 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Test cancelled: Hemolysis-test not performed
345 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL MCV Test cancelled: Hemolysis-test not performed
346 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL WBC Test cancelled: Hemolysis-test not performed
347 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils Test cancelled: Hemolysis-test not performed
348 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes Test cancelled: Hemolysis-test not performed
349 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes Test cancelled: Hemolysis-test not performed
350 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils Test cancelled: Hemolysis-test not performed
351 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Basophils Test cancelled: Hemolysis-test not performed
352 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) Test cancelled: Hemolysis-test not performed
353 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) Test cancelled: Hemolysis-test not performed
354 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) Test cancelled: Hemolysis-test not performed
355 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) Test cancelled: Hemolysis-test not performed
356 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) Test cancelled: Hemolysis-test not performed
357 CZ100062001 Male Unscheduled Mar 11, 2026 9:05 AM 6227323264 HEMATOLOGY&DIFFERENTIAL PANEL Platelets Test cancelled: Hemolysis-test not performed
358 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 ANATOMICAL SITE Anatomical Site Y 18
359 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 BIOPSY COLLECTION METHOD Collection Method Y sigmoidoscopy
360 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 BIOPSY FIXATIVE USED Fixative Used 10% NBF
361 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 19-Feb-2026
362 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 07:20
363 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
364 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 INFLAMED AREA Inflamed area? Yes
365 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
366 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
367 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 23-Feb-2026
368 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
369 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
370 CZ100062001 Male Biopsy R Feb 19, 2026 12:00 AM 6227323254 ULCERATED AREA Is biopsy site ulcerated? Yes
371 CZ100062001 Male Stool Pathogens Feb 16, 2026 7:20 AM 6227323244 C. DIFF EIA C. diff GDH Ag,stool-CL Test group cancelled: Specimen received beyond stability
372 CZ100062001 Male Stool Pathogens Feb 16, 2026 7:20 AM 6227323244 C. DIFF EIA C.diff Toxin A&B,stool-CL Test group cancelled: Specimen received beyond stability
373 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Total Bilirubin <3 L Result verified by repeat analysis 3 - 21 umol/L
374 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas <1.4 0 - 6.2 umol/L
375 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Alkaline Phosphatase 93 55 - 149 U/L
376 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL ALT (SGPT) 9 5 - 48 U/L
377 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL AST (SGOT) 14 8 - 40 U/L
378 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL GGT 64 H 10 - 61 U/L
379 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL LDH 105 53 - 234 U/L
380 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Urea Nitrogen 1.5 1.4 - 8.6 mmol/L
381 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 68 40 - 110 umol/L
382 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Serum Glucose 4.2 3.9 - 5.6 mmol/L
383 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Serum Uric Acid 288 125 - 488 umol/L
384 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Calcium (EDTA) 2.32 2.07 - 2.64 mmol/L
385 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Phosphorus 0.85 0.71 - 1.65 mmol/L
386 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Total Protein 70 61 - 84 g/L
387 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Albumin-BCG 39 33 - 49 g/L
388 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Creatine Kinase 34 L 39 - 308 U/L
389 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
390 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
391 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Serum Bicarbonate 25.5 19.3 - 29.3 mmol/L
392 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
393 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CHEMISTRY PANEL Magnesium 0.95 H 0.7 - 0.9 mmol/L
394 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 CKD-EPI 2021 CKD-EPI 2021 Without Race 133 mL/min/1.73m^2$No Ref Rng
395 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
396 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin Test cancelled: Clotted Blood Received
397 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit Test cancelled: Clotted Blood Received
398 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL RBC Test cancelled: Clotted Blood Received
399 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL MCH Test cancelled: Clotted Blood Received
400 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Test cancelled: Clotted Blood Received
401 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL MCV Test cancelled: Clotted Blood Received
402 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL WBC Test cancelled: Clotted Blood Received
403 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils Test cancelled: Clotted Blood Received
404 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes Test cancelled: Clotted Blood Received
405 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes Test cancelled: Clotted Blood Received
406 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils Test cancelled: Clotted Blood Received
407 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Basophils Test cancelled: Clotted Blood Received
408 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) Test cancelled: Clotted Blood Received
409 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) Test cancelled: Clotted Blood Received
410 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) Test cancelled: Clotted Blood Received
411 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) Test cancelled: Clotted Blood Received
412 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) Test cancelled: Clotted Blood Received
413 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEMATOLOGY&DIFFERENTIAL PANEL Platelets Test cancelled: Clotted Blood Received
414 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
415 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEPATITIS B SURFACE AB NON-US Anti-HBs II QUAL Reactive Ref Rng :$Non Reactive
416 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
417 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
418 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
419 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
420 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
421 CZ100062001 Male Screening Feb 16, 2026 7:03 AM 6227323236 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Test group cancelled: No specimen received
422 CZ100062001 Male TB Testing Feb 16, 2026 7:03 AM 6227323252 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Indeterminate Normal=Negative
@@ -0,0 +1,6 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100062001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Feb 16, 2026 7:20 AM",6227323244,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100062001 - null,,,,Male,UNSCSTOOL Stool Pathogens,"Mar 11, 2026 9:15 AM",6227323245,STOOL CULTURE,,,,Test group cancelled: Specimen received beyond stability,,,,,,,,,,,
CZ100062001 - null,,,,Male,UNSCSTOOL Stool Pathogens,"Mar 17, 2026 9:00 AM",6227323243,STOOL CULTURE,,,,Test group cancelled: No specimen received,,,,,,,,,,,
CZ100062002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 20, 2026 7:45 AM",6228194341,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100062001 - null Male SCRNSTOOL Stool Pathogens Feb 16, 2026 7:20 AM 6227323244 STOOL CULTURE Stool Final Report No enteric pathogens isolated
4 CZ100062001 - null Male UNSCSTOOL Stool Pathogens Mar 11, 2026 9:15 AM 6227323245 STOOL CULTURE Test group cancelled: Specimen received beyond stability
5 CZ100062001 - null Male UNSCSTOOL Stool Pathogens Mar 17, 2026 9:00 AM 6227323243 STOOL CULTURE Test group cancelled: No specimen received
6 CZ100062002 - null Male SCRNSTOOL Stool Pathogens Apr 20, 2026 7:45 AM 6228194341 STOOL CULTURE Stool Final Report No enteric pathogens isolated
@@ -0,0 +1,570 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,04-Jun-2026,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,12:05,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,INFLAMED AREA,Inflamed area?,,No,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Jun 4, 2026 12:00 AM",6228501730,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Alkaline Phosphatase,,104,,,,,35 - 104,U/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,ALT (SGPT),,47,,H,,,4 - 43,U/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,AST (SGOT),,42,,H,,,8 - 40,U/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,GGT,,45,,,,,4 - 49,U/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,LDH,,180,,,,,53 - 234,U/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Urea Nitrogen,,2.4,,,,,1.4 - 8.6,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Serum Glucose,,5.1,,,,,3.9 - 5.6,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Serum Uric Acid,,378,,,,,125 - 428,umol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Calcium (EDTA),,2.48,,,,,2.07 - 2.64,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Creatine Kinase,,111,,,,,26 - 192,U/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Serum Sodium,,143,,,,,132 - 147,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Serum Bicarbonate,,21.9,,,,,19.3 - 29.3,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,89,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,FECAL COLLECTION D/T,Stool Collection Date,Y,02-Jun-2026,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,FECAL COLLECTION D/T,Stool Collection Time,Y,05:40,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,141,,,,,116 - 164,g/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.1 - 5.6,TI/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 98,fL
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.13,,,,,3.8 - 10.7,GI/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.63,,,,,1.96 - 7.23,GI/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.82,,,,,0.91 - 4.28,GI/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.51,,,,,0.12 - 0.92,GI/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.9,,,,,40.5 - 75,%
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,25.4,,,,,15.4 - 48.5,%
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.1,,,,,2.6 - 10.1,%
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,,0 - 6.8,%
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,%
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,235,,,,,140 - 400,GI/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,LIPID PANEL,Direct HDL-C 4th Generation,,1.10,,,,,1.03 - 1.53,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,LIPID PANEL,Triglycerides (GPO),,1.61,,,,,0.51 - 2.42,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,LIPID PANEL,Cholesterol (High Performance),,3.91,,L,,,4.01 - 6.85,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,LIPID PANEL,LDL Chol Friedewald 4th,,2.07,,,,,0 - 3.34,mmol/L
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,02-Jun-2026,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:25,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,02-Jun-2026,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:30,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,02-Jun-2026,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:25,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,02-Jun-2026,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,05:40,,,,,,
CZ100132003,,,,,Female,Induction Week 0,,"Jun 2, 2026 9:25 AM",6228308225,SUBJECT HEIGHT (CM),Height (cm),Y,82,,,,,cm,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Alkaline Phosphatase,,73,,,,,40 - 129,U/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,5 - 48,U/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,AST (SGOT),,22,,,,,8 - 40,U/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,GGT,,18,,,,,10 - 61,U/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,LDH,,164,,,,,53 - 234,U/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Glucose,,5.4,,,,,3.9 - 5.6,mmol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Uric Acid,,346,,,,,125 - 488,umol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Calcium (EDTA),,2.46,,,,,2.07 - 2.64,mmol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Creatine Kinase,,206,,,,,39 - 308,U/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Bicarbonate,,20.1,,,,,19.3 - 29.3,mmol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,103,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,FECAL COLLECTION D/T,Stool Collection Date,Y,26-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,FECAL COLLECTION D/T,Stool Collection Time,Y,07:00,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,33,,,,,26 - 34,pg
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,97,,H,,,79 - 96,fL
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.61,,,,,3.8 - 10.7,GI/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.81,,,,,1.96 - 7.23,GI/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.03,,,,,0.91 - 4.28,GI/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.50,,,,,0.12 - 0.92,GI/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.23,,,,,0 - 0.57,GI/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,50.0,,,,,40.5 - 75,%
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,36.1,,,,,15.4 - 48.5,%
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.9,,,,,2.6 - 10.1,%
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.0,,,,,0 - 6.8,%
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,%
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,283,,,,,140 - 400,GI/L
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:05,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,26-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:10,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,26-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:05,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,26-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,07:00,,,,,,
CZ100132002,,,,,Male,Induction Week 2,,"May 26, 2026 9:05 AM",6228398115,SUBJECT HEIGHT (CM),Height (cm),Y,196,,,,,cm,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,25-May-2026,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:05,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,27-May-2026,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100132003,,,,,Female,Biopsy,,"May 25, 2026 12:00 AM",6228501732,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,40 - 129,U/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,ALT (SGPT),,19,,,,,5 - 48,U/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,GGT,,16,,,,,10 - 61,U/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,LDH,,159,,,,,53 - 234,U/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,96,,,,,40 - 110,umol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Glucose,,5.0,,,,,3.9 - 5.6,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Uric Acid,,342,,,,,125 - 488,umol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Calcium (EDTA),,2.48,,,,,2.07 - 2.64,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Creatine Kinase,,204,,,,,39 - 308,U/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Bicarbonate,,21.8,,,,,19.3 - 29.3,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,94,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,FECAL COLLECTION D/T,Stool Collection Date,Y,12-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,FECAL COLLECTION D/T,Stool Collection Time,Y,08:50,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,33,,,,,26 - 34,pg
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.64,,,,,3.8 - 10.7,GI/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.04,,,,,1.96 - 7.23,GI/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.81,,,,,0.91 - 4.28,GI/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.59,,,,,0.12 - 0.92,GI/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.16,,,,,0 - 0.57,GI/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,53.9,,,,,40.5 - 75,%
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.0,,,,,15.4 - 48.5,%
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.4,,H,,,2.6 - 10.1,%
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.8,,,,,0 - 6.8,%
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,%
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,275,,,,,140 - 400,GI/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,Direct HDL-C 4th Generation,,1.26,,,,,1.03 - 1.53,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,Triglycerides (GPO),,1.63,,,,,0.5 - 2.81,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,Cholesterol (High Performance),,4.71,,,,,3.31 - 6.1,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,LIPID PANEL,LDL Chol Friedewald 4th,,2.70,,,,,0 - 3.34,mmol/L
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,PA1 EEA-2?,Approved to use EEA-2?,,No,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,12-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:25,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,12-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:30,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,12-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:25,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,12-May-2026,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,08:50,,,,,,
CZ100132002,,,,,Male,Induction Week 0,,"May 12, 2026 10:25 AM",6228308224,SUBJECT HEIGHT (CM),Height (cm),Y,196,,,,,cm,
CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100132003,,,,,Female,Stool Pathogens,,"May 7, 2026 5:45 AM",6227635150,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.1,,,,,0 - 6.2,umol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Alkaline Phosphatase,,95,,,,,35 - 104,U/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,4 - 43,U/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,AST (SGOT),,22,,,,,8 - 40,U/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,GGT,,34,,,,,4 - 49,U/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Urea Nitrogen,,2.8,,,,,1.4 - 8.6,mmol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,68,,,,,31 - 101,umol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Uric Acid,,357,,,,,125 - 428,umol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Calcium (EDTA),,2.31,,,,,2.07 - 2.64,mmol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Creatine Kinase,,51,,,,,26 - 192,U/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Bicarbonate,,23.1,,,,,19.3 - 29.3,mmol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,95,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,133,,,,,116 - 164,g/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 98,fL
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.91,,,,,3.8 - 10.7,GI/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.94,,,,,1.96 - 7.23,GI/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.35,,,,,0.91 - 4.28,GI/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.5,,,,,40.5 - 75,%
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.5,,,,,15.4 - 48.5,%
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,%
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.9,,,,,0 - 6.8,%
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.3,,,,,0 - 2,%
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,271,,,,,140 - 400,GI/L
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive,
CZ100132003,,,,,Female,Screening,,"May 6, 2026 10:45 AM",6227635141,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Alkaline Phosphatase,,88,,,,,40 - 129,U/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,5 - 48,U/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,AST (SGOT),,30,,,,,8 - 40,U/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,GGT,,21,,,,,10 - 61,U/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,LDH,,172,,,,,53 - 234,U/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Urea Nitrogen,,6.2,,,,,1.4 - 8.6,mmol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,40 - 110,umol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Uric Acid,,297,,,,,125 - 488,umol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Phosphorus,,1.22,,,,,0.71 - 1.65,mmol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Total Protein,,74,,,,,61 - 84,g/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Creatine Kinase,,177,,,,,39 - 308,U/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Bicarbonate,,26.7,,,,,19.3 - 29.3,mmol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CHEMISTRY PANEL,Magnesium,,0.83,,,,,0.66 - 1.07,mmol/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,123,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,FECAL COLLECTION D/T,Stool Collection Date,Y,21-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,FECAL COLLECTION D/T,Stool Collection Time,Y,06:20,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Normocytic,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.31,,,,,3.8 - 10.7,GI/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.98,,,,,1.96 - 7.23,GI/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.64,,,,,0.91 - 4.28,GI/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.30,,,,,0 - 0.57,GI/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.0,,,,,40.5 - 75,%
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,38.0,,,,,15.4 - 48.5,%
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,%
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,7.0,,H,,,0 - 6.8,%
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.0,,,,,0 - 2,%
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,226,,,,,140 - 400,GI/L
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,21-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:45,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,21-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:50,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,21-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:45,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,21-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:20,,,,,,
CZ100132001,,,,,Male,Induction Week 4,,"Apr 21, 2026 8:45 AM",6227635146,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,21-Apr-2026,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:45,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,23-Apr-2026,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100132002,,,,,Male,Biopsy,,"Apr 21, 2026 12:00 AM",6227635159,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Alkaline Phosphatase,,87,,,,,40 - 129,U/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,LDH,,174,,,,,53 - 234,U/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Urea Nitrogen,,5.5,,,,,1.4 - 8.6,mmol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,87,,,,,40 - 110,umol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Uric Acid,,299,,,,,125 - 488,umol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Creatine Kinase,,177,,,,,39 - 308,U/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Bicarbonate,,26.5,,,,,19.3 - 29.3,mmol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.66 - 1.07,mmol/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,107,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,FECAL COLLECTION D/T,Stool Collection Date,Y,07-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,FECAL COLLECTION D/T,Stool Collection Time,Y,06:30,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,150,,,,,127 - 181,g/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.89,,,,,3.8 - 10.7,GI/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.33,,,,,1.96 - 7.23,GI/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.84,,,,,0.91 - 4.28,GI/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.37,,,,,0 - 0.57,GI/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.7,,,,,40.5 - 75,%
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.7,,,,,15.4 - 48.5,%
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,%
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,7.7,R,H,,,0 - 6.8,%
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.8,,,,,0 - 2,%
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,217,,,,,140 - 400,GI/L
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:50,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:00,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:50,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,07-Apr-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:30,,,,,,
CZ100132001,,,,,Male,Induction Week 2,,"Apr 7, 2026 8:50 AM",6227635144,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100132002,,,,,Male,Stool Pathogens,,"Apr 1, 2026 8:30 AM",6227635148,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Alkaline Phosphatase,,69,,,,,40 - 129,U/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,5 - 48,U/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,GGT,,15,,,,,10 - 61,U/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,LDH,,130,,,,,53 - 234,U/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Urea Nitrogen,,6.0,,,,,1.4 - 8.6,mmol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,82,,,,,40 - 110,umol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Glucose,,7.1,,H,,,3.9 - 5.6,mmol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Uric Acid,,301,,,,,125 - 488,umol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Calcium (EDTA),,2.45,,,,,2.07 - 2.64,mmol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Phosphorus,,1.42,,,,,0.71 - 1.65,mmol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Creatine Kinase,,91,,,,,39 - 308,U/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Bicarbonate,,22.2,,,,,19.3 - 29.3,mmol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CHEMISTRY PANEL,Magnesium,,0.75,,,,,0.66 - 1.07,mmol/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,114,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,127 - 181,g/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.39 - 0.54,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,R,L,,,4.5 - 6.4,TI/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,34,,,,,26 - 34,pg
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,79 - 96,fL
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.60,,,,,3.8 - 10.7,GI/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.44,,,,,1.96 - 7.23,GI/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.11,,,,,0.91 - 4.28,GI/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.65,,,,,0.12 - 0.92,GI/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.28,,,,,0 - 0.57,GI/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.12,,,,,0 - 0.2,GI/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.4,,,,,40.5 - 75,%
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.8,,,,,15.4 - 48.5,%
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.6,,,,,2.6 - 10.1,%
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.7,,,,,0 - 6.8,%
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,%
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,256,,,,,140 - 400,GI/L
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100132002,,,,,Male,Screening,,"Apr 1, 2026 8:00 AM",6227635139,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Alkaline Phosphatase,,80,,,,,40 - 129,U/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,5 - 48,U/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,LDH,,166,,,,,53 - 234,U/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Urea Nitrogen,,7.7,,,,,1.4 - 8.6,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Glucose,,4.3,,,,,3.9 - 5.6,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Uric Acid,,336,,,,,125 - 488,umol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Phosphorus,,1.04,,,,,0.71 - 1.65,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,39 - 308,U/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Bicarbonate,,22.2,,,,,19.3 - 29.3,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CHEMISTRY PANEL,Magnesium,,0.78,,,,,0.66 - 1.07,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,103,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,FECAL COLLECTION D/T,Stool Collection Date,Y,24-Mar-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,FECAL COLLECTION D/T,Stool Collection Time,Y,07:30,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,156,,,,,127 - 181,g/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.46,,,,,0.39 - 0.54,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.53,,,,,3.8 - 10.7,GI/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.00,,,,,1.96 - 7.23,GI/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.61,,,,,0.91 - 4.28,GI/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.57,,,,,0 - 0.57,GI/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.3,,,,,40.5 - 75,%
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.0,,,,,15.4 - 48.5,%
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.6,,,,,2.6 - 10.1,%
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,10.4,R,H,,,0 - 6.8,%
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.8,,,,,0 - 2,%
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,235,,,,,140 - 400,GI/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,Direct HDL-C 4th Generation,,1.91,,H,,,1.03 - 1.53,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,Triglycerides (GPO),,0.67,,,,,0.5 - 2.81,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,Cholesterol (High Performance),,4.26,,,,,3.31 - 6.1,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,LIPID PANEL,LDL Chol Friedewald 4th,,2.04,,,,,0 - 3.34,mmol/L
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,24-Mar-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:40,R,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,24-Mar-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:45,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,24-Mar-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:40,R,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,24-Mar-2026,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,07:30,,,,,,
CZ100132001,,,,,Male,Induction Week 0,,"Mar 24, 2026 9:40 AM",6227635142,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,12-Mar-2026,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:52,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,14-Mar-2026,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100132001,,,,,Male,Biopsy,,"Mar 12, 2026 12:00 AM",6227635161,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.7,,,,,0 - 6.2,umol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Alkaline Phosphatase,,95,,,,,40 - 129,U/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,ALT (SGPT),,25,,,,,5 - 48,U/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,GGT,,16,,,,,10 - 61,U/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Urea Nitrogen,,7.1,,,,,1.4 - 8.6,mmol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Glucose,,6.6,,H,,,3.9 - 5.6,mmol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Uric Acid,,358,,,,,125 - 488,umol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CHEMISTRY PANEL,Magnesium,,0.75,,,,,0.66 - 1.07,mmol/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,103,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.82,,,,,3.8 - 10.7,GI/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.88,,,,,1.96 - 7.23,GI/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.03,,,,,0.91 - 4.28,GI/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.26,,,,,0.12 - 0.92,GI/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.57,,,,,0 - 0.57,GI/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,49.4,,,,,40.5 - 75,%
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.9,,,,,15.4 - 48.5,%
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,%
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,9.9,,H,,,0 - 6.8,%
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.4,,,,,0 - 2,%
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,222,,,,,140 - 400,GI/L
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100132001,,,,,Male,Screening,,"Feb 26, 2026 1:20 PM",6227635140,SUBJECT HEIGHT (CM),Height (cm),Y,163,,,,,cm,
CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100132001,,,,,Male,Stool Pathogens,,"Feb 26, 2026 10:35 AM",6227635149,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
4 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
5 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 BIOPSY FIXATIVE USED Fixative Used 10% NBF
6 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 04-Jun-2026
7 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 12:05
8 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
9 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 INFLAMED AREA Inflamed area? No
10 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
11 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL
12 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL
13 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL
14 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL
15 CZ100132001 Male Biopsy Jun 4, 2026 12:00 AM 6228501730 ULCERATED AREA Is biopsy site ulcerated? No
16 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Total Bilirubin 8 3 - 21 umol/L
17 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.0 0 - 6.2 umol/L
18 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Alkaline Phosphatase 104 35 - 104 U/L
19 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL ALT (SGPT) 47 H 4 - 43 U/L
20 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL AST (SGOT) 42 H 8 - 40 U/L
21 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL GGT 45 4 - 49 U/L
22 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL LDH 180 53 - 234 U/L
23 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Urea Nitrogen 2.4 1.4 - 8.6 mmol/L
24 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 72 31 - 101 umol/L
25 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Serum Glucose 5.1 3.9 - 5.6 mmol/L
26 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Serum Uric Acid 378 125 - 428 umol/L
27 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Calcium (EDTA) 2.48 2.07 - 2.64 mmol/L
28 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Phosphorus 1.13 0.71 - 1.65 mmol/L
29 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Total Protein 75 61 - 84 g/L
30 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Albumin-BCG 46 33 - 49 g/L
31 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Creatine Kinase 111 26 - 192 U/L
32 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Serum Sodium 143 132 - 147 mmol/L
33 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Serum Potassium 4.0 3.5 - 5.2 mmol/L
34 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Serum Bicarbonate 21.9 19.3 - 29.3 mmol/L
35 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Serum Chloride 105 94 - 112 mmol/L
36 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CHEMISTRY PANEL Magnesium 0.83 0.66 - 1.07 mmol/L
37 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 89 mL/min/1.73m^2$No Ref Rng
38 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 FECAL COLLECTION D/T Stool Collection Date Y 02-Jun-2026
39 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 FECAL COLLECTION D/T Stool Collection Time Y 05:40
40 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 141 116 - 164 g/L
41 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.44 0.34 - 0.48
42 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4.1 - 5.6 TI/L
43 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL MCH 28 26 - 34 pg
44 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
45 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 79 - 98 fL
46 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL WBC 7.13 3.8 - 10.7 GI/L
47 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.63 1.96 - 7.23 GI/L
48 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.82 0.91 - 4.28 GI/L
49 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.51 0.12 - 0.92 GI/L
50 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.13 0 - 0.57 GI/L
51 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
52 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 64.9 40.5 - 75 %
53 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 25.4 15.4 - 48.5 %
54 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.1 2.6 - 10.1 %
55 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.8 0 - 6.8 %
56 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 0 - 2 %
57 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 235 140 - 400 GI/L
58 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
59 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 LIPID PANEL Direct HDL-C 4th Generation 1.10 1.03 - 1.53 mmol/L
60 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 LIPID PANEL Triglycerides (GPO) 1.61 0.51 - 2.42 mmol/L
61 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 LIPID PANEL Cholesterol (High Performance) 3.91 L 4.01 - 6.85 mmol/L
62 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 LIPID PANEL LDL Chol Friedewald 4th 2.07 0 - 3.34 mmol/L
63 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 PA1 EEA-2? Approved to use EEA-2? Yes
64 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 02-Jun-2026
65 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 09:25
66 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 02-Jun-2026
67 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 10:30
68 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 02-Jun-2026
69 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 09:25
70 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 02-Jun-2026
71 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 05:40
72 CZ100132003 Female Induction Week 0 Jun 2, 2026 9:25 AM 6228308225 SUBJECT HEIGHT (CM) Height (cm) Y 82 cm
73 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 ALP<2XULN ALP<2XULN Criteria Met
74 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
75 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
76 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 AST>/=3XULN AST >/= 3 X ULN Criteria not met
77 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
78 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Total Bilirubin 10 3 - 21 umol/L
79 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.8 0 - 6.2 umol/L
80 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Alkaline Phosphatase 73 40 - 129 U/L
81 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL ALT (SGPT) 17 5 - 48 U/L
82 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL AST (SGOT) 22 8 - 40 U/L
83 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL GGT 18 10 - 61 U/L
84 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL LDH 164 53 - 234 U/L
85 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Urea Nitrogen 5.1 1.4 - 8.6 mmol/L
86 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 89 40 - 110 umol/L
87 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Serum Glucose 5.4 3.9 - 5.6 mmol/L
88 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Serum Uric Acid 346 125 - 488 umol/L
89 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Calcium (EDTA) 2.46 2.07 - 2.64 mmol/L
90 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Phosphorus 1.01 0.71 - 1.65 mmol/L
91 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Total Protein 75 61 - 84 g/L
92 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Albumin-BCG 49 33 - 49 g/L
93 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Creatine Kinase 206 39 - 308 U/L
94 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
95 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
96 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Serum Bicarbonate 20.1 19.3 - 29.3 mmol/L
97 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
98 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CHEMISTRY PANEL Magnesium 0.85 0.66 - 1.07 mmol/L
99 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 103 mL/min/1.73m^2$No Ref Rng
100 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 FECAL COLLECTION D/T Stool Collection Date Y 26-May-2026
101 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 FECAL COLLECTION D/T Stool Collection Time Y 07:00
102 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 151 127 - 181 g/L
103 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.44 0.39 - 0.54
104 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.6 4.5 - 6.4 TI/L
105 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL MCH 33 26 - 34 pg
106 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
107 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL MCV 97 H 79 - 96 fL
108 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.61 3.8 - 10.7 GI/L
109 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.81 1.96 - 7.23 GI/L
110 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.03 0.91 - 4.28 GI/L
111 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.50 0.12 - 0.92 GI/L
112 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.23 0 - 0.57 GI/L
113 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
114 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 50.0 40.5 - 75 %
115 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 36.1 15.4 - 48.5 %
116 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 8.9 2.6 - 10.1 %
117 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 4.0 0 - 6.8 %
118 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.0 0 - 2 %
119 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 283 140 - 400 GI/L
120 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 PA1 EEA-2? Approved to use EEA-2? Yes
121 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 26-May-2026
122 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 09:05
123 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 26-May-2026
124 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 10:10
125 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 26-May-2026
126 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 09:05
127 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 SM09/STOOL PK COLL D/T Stool Collection Date Y 26-May-2026
128 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 SM09/STOOL PK COLL D/T Stool Collection Time Y 07:00
129 CZ100132002 Male Induction Week 2 May 26, 2026 9:05 AM 6228398115 SUBJECT HEIGHT (CM) Height (cm) Y 196 cm
130 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
131 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
132 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 BIOPSY FIXATIVE USED Fixative Used 10% NBF
133 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 25-May-2026
134 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 09:05
135 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
136 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 INFLAMED AREA Inflamed area? Yes
137 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
138 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 12:00
139 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 27-May-2026
140 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
141 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
142 CZ100132003 Female Biopsy May 25, 2026 12:00 AM 6228501732 ULCERATED AREA Is biopsy site ulcerated? Yes
143 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Total Bilirubin 5 3 - 21 umol/L
144 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.9 0 - 6.2 umol/L
145 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Alkaline Phosphatase 77 40 - 129 U/L
146 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL ALT (SGPT) 19 5 - 48 U/L
147 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL AST (SGOT) 21 8 - 40 U/L
148 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL GGT 16 10 - 61 U/L
149 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL LDH 159 53 - 234 U/L
150 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Urea Nitrogen 5.0 1.4 - 8.6 mmol/L
151 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 96 40 - 110 umol/L
152 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Serum Glucose 5.0 3.9 - 5.6 mmol/L
153 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Serum Uric Acid 342 125 - 488 umol/L
154 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Calcium (EDTA) 2.48 2.07 - 2.64 mmol/L
155 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Phosphorus 1.05 0.71 - 1.65 mmol/L
156 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Total Protein 76 61 - 84 g/L
157 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Albumin-BCG 49 33 - 49 g/L
158 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Creatine Kinase 204 39 - 308 U/L
159 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
160 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
161 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Serum Bicarbonate 21.8 19.3 - 29.3 mmol/L
162 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
163 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CHEMISTRY PANEL Magnesium 0.85 0.66 - 1.07 mmol/L
164 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 94 mL/min/1.73m^2$No Ref Rng
165 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 FECAL COLLECTION D/T Stool Collection Date Y 12-May-2026
166 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 FECAL COLLECTION D/T Stool Collection Time Y 08:50
167 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 154 127 - 181 g/L
168 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.44 0.39 - 0.54
169 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.6 4.5 - 6.4 TI/L
170 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL MCH 33 26 - 34 pg
171 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
172 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL MCV 96 79 - 96 fL
173 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.64 3.8 - 10.7 GI/L
174 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.04 1.96 - 7.23 GI/L
175 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.81 0.91 - 4.28 GI/L
176 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.59 0.12 - 0.92 GI/L
177 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.16 0 - 0.57 GI/L
178 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
179 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 53.9 40.5 - 75 %
180 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 32.0 15.4 - 48.5 %
181 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 10.4 H 2.6 - 10.1 %
182 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.8 0 - 6.8 %
183 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.9 0 - 2 %
184 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 275 140 - 400 GI/L
185 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
186 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 LIPID PANEL Direct HDL-C 4th Generation 1.26 1.03 - 1.53 mmol/L
187 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 LIPID PANEL Triglycerides (GPO) 1.63 0.5 - 2.81 mmol/L
188 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 LIPID PANEL Cholesterol (High Performance) 4.71 3.31 - 6.1 mmol/L
189 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 LIPID PANEL LDL Chol Friedewald 4th 2.70 0 - 3.34 mmol/L
190 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 PA1 EEA-2? Approved to use EEA-2? No
191 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 12-May-2026
192 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 10:25
193 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 12-May-2026
194 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 11:30
195 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 12-May-2026
196 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 10:25
197 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 12-May-2026
198 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 08:50
199 CZ100132002 Male Induction Week 0 May 12, 2026 10:25 AM 6228308224 SUBJECT HEIGHT (CM) Height (cm) Y 196 cm
200 CZ100132003 Female Stool Pathogens May 7, 2026 5:45 AM 6227635150 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
201 CZ100132003 Female Stool Pathogens May 7, 2026 5:45 AM 6227635150 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
202 CZ100132003 Female Stool Pathogens May 7, 2026 5:45 AM 6227635150 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
203 CZ100132003 Female Stool Pathogens May 7, 2026 5:45 AM 6227635150 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
204 CZ100132003 Female Stool Pathogens May 7, 2026 5:45 AM 6227635150 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
205 CZ100132003 Female Stool Pathogens May 7, 2026 5:45 AM 6227635150 OVA AND PARASITES 2 Trichrome Smear No ova or parasites found
206 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
207 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.1 0 - 6.2 umol/L
208 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Alkaline Phosphatase 95 35 - 104 U/L
209 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL ALT (SGPT) 16 4 - 43 U/L
210 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL AST (SGOT) 22 8 - 40 U/L
211 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL GGT 34 4 - 49 U/L
212 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL LDH 151 53 - 234 U/L
213 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Urea Nitrogen 2.8 1.4 - 8.6 mmol/L
214 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 68 31 - 101 umol/L
215 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Serum Glucose 5.2 3.9 - 5.6 mmol/L
216 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Serum Uric Acid 357 125 - 428 umol/L
217 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Calcium (EDTA) 2.31 2.07 - 2.64 mmol/L
218 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Phosphorus 1.09 0.71 - 1.65 mmol/L
219 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Total Protein 71 61 - 84 g/L
220 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Albumin-BCG 46 33 - 49 g/L
221 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Creatine Kinase 51 26 - 192 U/L
222 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
223 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Serum Potassium 4.1 3.5 - 5.2 mmol/L
224 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Serum Bicarbonate 23.1 19.3 - 29.3 mmol/L
225 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Serum Chloride 106 94 - 112 mmol/L
226 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CHEMISTRY PANEL Magnesium 0.81 0.66 - 1.07 mmol/L
227 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 95 mL/min/1.73m^2$No Ref Rng
228 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y Yes
229 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
230 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 133 116 - 164 g/L
231 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.40 0.34 - 0.48
232 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.7 4.1 - 5.6 TI/L
233 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL MCH 28 26 - 34 pg
234 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
235 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL MCV 84 79 - 98 fL
236 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.91 3.8 - 10.7 GI/L
237 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.94 1.96 - 7.23 GI/L
238 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.35 0.91 - 4.28 GI/L
239 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.40 0.12 - 0.92 GI/L
240 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.13 0 - 0.57 GI/L
241 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.09 0 - 0.2 GI/L
242 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 71.5 40.5 - 75 %
243 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 19.5 15.4 - 48.5 %
244 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.8 2.6 - 10.1 %
245 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.9 0 - 6.8 %
246 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.3 0 - 2 %
247 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 271 140 - 400 GI/L
248 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
249 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
250 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
251 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
252 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
253 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
254 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
255 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 PA1 EEA-2? Approved to use EEA-2? Yes
256 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
257 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 SERUM BETA HCG B-hCG, Qualitative Negative Ref Rng: Negative
258 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 SERUM BETA HCG B-hCG, Quantitative <0.6 Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive
259 CZ100132003 Female Screening May 6, 2026 10:45 AM 6227635141 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
260 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 ALP<2XULN ALP<2XULN Criteria Met
261 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
262 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
263 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 AST>/=3XULN AST >/= 3 X ULN Criteria not met
264 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
265 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
266 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.6 0 - 6.2 umol/L
267 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Alkaline Phosphatase 88 40 - 129 U/L
268 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL ALT (SGPT) 36 5 - 48 U/L
269 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL AST (SGOT) 30 8 - 40 U/L
270 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL GGT 21 10 - 61 U/L
271 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL LDH 172 53 - 234 U/L
272 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Urea Nitrogen 6.2 1.4 - 8.6 mmol/L
273 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 71 40 - 110 umol/L
274 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Serum Glucose 4.6 3.9 - 5.6 mmol/L
275 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Serum Uric Acid 297 125 - 488 umol/L
276 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Calcium (EDTA) 2.45 2.07 - 2.64 mmol/L
277 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Phosphorus 1.22 0.71 - 1.65 mmol/L
278 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Total Protein 74 61 - 84 g/L
279 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Albumin-BCG 48 33 - 49 g/L
280 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Creatine Kinase 177 39 - 308 U/L
281 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
282 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
283 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Serum Bicarbonate 26.7 19.3 - 29.3 mmol/L
284 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Serum Chloride 100 94 - 112 mmol/L
285 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CHEMISTRY PANEL Magnesium 0.83 0.66 - 1.07 mmol/L
286 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 123 mL/min/1.73m^2$No Ref Rng
287 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 FECAL COLLECTION D/T Stool Collection Date Y 21-Apr-2026
288 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 FECAL COLLECTION D/T Stool Collection Time Y 06:20
289 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 152 127 - 181 g/L
290 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.43 0.39 - 0.54
291 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.9 4.5 - 6.4 TI/L
292 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL MCH 31 26 - 34 pg
293 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Normocytic NORMOCYTIC;$NORMOCHROMIC
294 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL MCV 89 79 - 96 fL
295 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL WBC 4.31 3.8 - 10.7 GI/L
296 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 1.98 1.96 - 7.23 GI/L
297 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.64 0.91 - 4.28 GI/L
298 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.30 0.12 - 0.92 GI/L
299 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.30 0 - 0.57 GI/L
300 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.09 0 - 0.2 GI/L
301 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 46.0 40.5 - 75 %
302 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 38.0 15.4 - 48.5 %
303 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.0 2.6 - 10.1 %
304 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 7.0 H 0 - 6.8 %
305 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 2.0 0 - 2 %
306 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 226 140 - 400 GI/L
307 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 PA1 EEA-2? Approved to use EEA-2? Yes
308 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 21-Apr-2026
309 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 08:45
310 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 21-Apr-2026
311 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 09:50
312 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 21-Apr-2026
313 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 08:45
314 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 SM09/STOOL PK COLL D/T Stool Collection Date Y 21-Apr-2026
315 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 SM09/STOOL PK COLL D/T Stool Collection Time Y 06:20
316 CZ100132001 Male Induction Week 4 Apr 21, 2026 8:45 AM 6227635146 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
317 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
318 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
319 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 BIOPSY FIXATIVE USED Fixative Used 10% NBF
320 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 21-Apr-2026
321 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 08:45
322 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
323 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 INFLAMED AREA Inflamed area? Yes
324 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
325 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 12:00
326 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 23-Apr-2026
327 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
328 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
329 CZ100132002 Male Biopsy Apr 21, 2026 12:00 AM 6227635159 ULCERATED AREA Is biopsy site ulcerated? Yes
330 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 ALP<2XULN ALP<2XULN Criteria Met
331 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
332 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
333 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 AST>/=3XULN AST >/= 3 X ULN Criteria not met
334 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
335 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Total Bilirubin 9 3 - 21 umol/L
336 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.8 0 - 6.2 umol/L
337 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Alkaline Phosphatase 87 40 - 129 U/L
338 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL ALT (SGPT) 27 5 - 48 U/L
339 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL AST (SGOT) 25 8 - 40 U/L
340 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL GGT 14 10 - 61 U/L
341 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL LDH 174 53 - 234 U/L
342 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Urea Nitrogen 5.5 1.4 - 8.6 mmol/L
343 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 87 40 - 110 umol/L
344 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Serum Glucose 4.9 3.9 - 5.6 mmol/L
345 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Serum Uric Acid 299 125 - 488 umol/L
346 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Calcium (EDTA) 2.44 2.07 - 2.64 mmol/L
347 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Phosphorus 1.17 0.71 - 1.65 mmol/L
348 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Total Protein 73 61 - 84 g/L
349 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Albumin-BCG 49 33 - 49 g/L
350 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Creatine Kinase 177 39 - 308 U/L
351 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
352 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
353 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Serum Bicarbonate 26.5 19.3 - 29.3 mmol/L
354 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
355 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CHEMISTRY PANEL Magnesium 0.79 0.66 - 1.07 mmol/L
356 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 107 mL/min/1.73m^2$No Ref Rng
357 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 FECAL COLLECTION D/T Stool Collection Date Y 07-Apr-2026
358 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 FECAL COLLECTION D/T Stool Collection Time Y 06:30
359 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 150 127 - 181 g/L
360 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.45 0.39 - 0.54
361 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.9 4.5 - 6.4 TI/L
362 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL MCH 31 26 - 34 pg
363 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
364 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 79 - 96 fL
365 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL WBC 4.89 3.8 - 10.7 GI/L
366 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.33 1.96 - 7.23 GI/L
367 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.84 0.91 - 4.28 GI/L
368 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.25 0.12 - 0.92 GI/L
369 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.37 0 - 0.57 GI/L
370 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.09 0 - 0.2 GI/L
371 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 47.7 40.5 - 75 %
372 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 37.7 15.4 - 48.5 %
373 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.2 2.6 - 10.1 %
374 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 7.7 R H 0 - 6.8 %
375 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.8 0 - 2 %
376 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 217 140 - 400 GI/L
377 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 PA1 EEA-2? Approved to use EEA-2? Yes
378 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 07-Apr-2026
379 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 08:50
380 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 07-Apr-2026
381 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 10:00
382 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 07-Apr-2026
383 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 08:50
384 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 SM09/STOOL PK COLL D/T Stool Collection Date Y 07-Apr-2026
385 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 SM09/STOOL PK COLL D/T Stool Collection Time Y 06:30
386 CZ100132001 Male Induction Week 2 Apr 7, 2026 8:50 AM 6227635144 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
387 CZ100132002 Male Stool Pathogens Apr 1, 2026 8:30 AM 6227635148 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
388 CZ100132002 Male Stool Pathogens Apr 1, 2026 8:30 AM 6227635148 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
389 CZ100132002 Male Stool Pathogens Apr 1, 2026 8:30 AM 6227635148 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
390 CZ100132002 Male Stool Pathogens Apr 1, 2026 8:30 AM 6227635148 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
391 CZ100132002 Male Stool Pathogens Apr 1, 2026 8:30 AM 6227635148 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
392 CZ100132002 Male Stool Pathogens Apr 1, 2026 8:30 AM 6227635148 OVA AND PARASITES 2 Trichrome Smear No ova or parasites found
393 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
394 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.5 0 - 6.2 umol/L
395 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Alkaline Phosphatase 69 40 - 129 U/L
396 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL ALT (SGPT) 20 5 - 48 U/L
397 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL AST (SGOT) 18 8 - 40 U/L
398 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL GGT 15 10 - 61 U/L
399 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL LDH 130 53 - 234 U/L
400 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Urea Nitrogen 6.0 1.4 - 8.6 mmol/L
401 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 82 40 - 110 umol/L
402 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Serum Glucose 7.1 H 3.9 - 5.6 mmol/L
403 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Serum Uric Acid 301 125 - 488 umol/L
404 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Calcium (EDTA) 2.45 2.07 - 2.64 mmol/L
405 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Phosphorus 1.42 0.71 - 1.65 mmol/L
406 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Total Protein 66 61 - 84 g/L
407 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Albumin-BCG 46 33 - 49 g/L
408 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Creatine Kinase 91 39 - 308 U/L
409 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
410 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
411 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Serum Bicarbonate 22.2 19.3 - 29.3 mmol/L
412 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
413 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CHEMISTRY PANEL Magnesium 0.75 0.66 - 1.07 mmol/L
414 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 114 mL/min/1.73m^2$No Ref Rng
415 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
416 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 147 127 - 181 g/L
417 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.41 0.39 - 0.54
418 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.3 R L 4.5 - 6.4 TI/L
419 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL MCH 34 26 - 34 pg
420 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
421 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL MCV 96 79 - 96 fL
422 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL WBC 7.60 3.8 - 10.7 GI/L
423 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.44 1.96 - 7.23 GI/L
424 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.11 0.91 - 4.28 GI/L
425 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.65 0.12 - 0.92 GI/L
426 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.28 0 - 0.57 GI/L
427 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.12 0 - 0.2 GI/L
428 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 58.4 40.5 - 75 %
429 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 27.8 15.4 - 48.5 %
430 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 8.6 2.6 - 10.1 %
431 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.7 0 - 6.8 %
432 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.5 0 - 2 %
433 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 256 140 - 400 GI/L
434 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
435 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEPATITIS B SURFACE AB Anti-HBs II QUAL Reactive Ref Rng :$Non Reactive
436 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
437 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
438 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
439 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
440 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
441 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 PA1 EEA-2? Approved to use EEA-2? Yes
442 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
443 CZ100132002 Male Screening Apr 1, 2026 8:00 AM 6227635139 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
444 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Total Bilirubin 9 3 - 21 umol/L
445 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.4 0 - 6.2 umol/L
446 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Alkaline Phosphatase 80 40 - 129 U/L
447 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL ALT (SGPT) 24 5 - 48 U/L
448 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL AST (SGOT) 19 8 - 40 U/L
449 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL GGT 13 10 - 61 U/L
450 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL LDH 166 53 - 234 U/L
451 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Urea Nitrogen 7.7 1.4 - 8.6 mmol/L
452 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 89 40 - 110 umol/L
453 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Serum Glucose 4.3 3.9 - 5.6 mmol/L
454 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Serum Uric Acid 336 125 - 488 umol/L
455 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Calcium (EDTA) 2.41 2.07 - 2.64 mmol/L
456 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Phosphorus 1.04 0.71 - 1.65 mmol/L
457 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Total Protein 72 61 - 84 g/L
458 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Albumin-BCG 47 33 - 49 g/L
459 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Creatine Kinase 135 39 - 308 U/L
460 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
461 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Serum Potassium 4.3 3.5 - 5.2 mmol/L
462 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Serum Bicarbonate 22.2 19.3 - 29.3 mmol/L
463 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
464 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CHEMISTRY PANEL Magnesium 0.78 0.66 - 1.07 mmol/L
465 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 103 mL/min/1.73m^2$No Ref Rng
466 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 FECAL COLLECTION D/T Stool Collection Date Y 24-Mar-2026
467 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 FECAL COLLECTION D/T Stool Collection Time Y 07:30
468 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 156 127 - 181 g/L
469 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.46 0.39 - 0.54
470 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.1 4.5 - 6.4 TI/L
471 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL MCH 31 26 - 34 pg
472 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
473 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 79 - 96 fL
474 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.53 3.8 - 10.7 GI/L
475 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.00 1.96 - 7.23 GI/L
476 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.61 0.91 - 4.28 GI/L
477 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.25 0.12 - 0.92 GI/L
478 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.57 0 - 0.57 GI/L
479 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.10 0 - 0.2 GI/L
480 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 54.3 40.5 - 75 %
481 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 29.0 15.4 - 48.5 %
482 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 4.6 2.6 - 10.1 %
483 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 10.4 R H 0 - 6.8 %
484 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.8 0 - 2 %
485 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 235 140 - 400 GI/L
486 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
487 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 LIPID PANEL Direct HDL-C 4th Generation 1.91 H 1.03 - 1.53 mmol/L
488 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 LIPID PANEL Triglycerides (GPO) 0.67 0.5 - 2.81 mmol/L
489 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 LIPID PANEL Cholesterol (High Performance) 4.26 3.31 - 6.1 mmol/L
490 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 LIPID PANEL LDL Chol Friedewald 4th 2.04 0 - 3.34 mmol/L
491 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 PA1 EEA-2? Approved to use EEA-2? Yes
492 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 24-Mar-2026
493 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 09:40 R
494 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 24-Mar-2026
495 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 10:45
496 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 24-Mar-2026
497 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 09:40 R
498 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 24-Mar-2026
499 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 07:30
500 CZ100132001 Male Induction Week 0 Mar 24, 2026 9:40 AM 6227635142 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
501 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
502 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
503 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 BIOPSY FIXATIVE USED Fixative Used 10% NBF
504 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 12-Mar-2026
505 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 07:52
506 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
507 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 INFLAMED AREA Inflamed area? Yes
508 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
509 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
510 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 14-Mar-2026
511 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
512 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
513 CZ100132001 Male Biopsy Mar 12, 2026 12:00 AM 6227635161 ULCERATED AREA Is biopsy site ulcerated? No
514 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
515 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.7 0 - 6.2 umol/L
516 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Alkaline Phosphatase 95 40 - 129 U/L
517 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL ALT (SGPT) 25 5 - 48 U/L
518 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL AST (SGOT) 16 8 - 40 U/L
519 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL GGT 16 10 - 61 U/L
520 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL LDH 149 53 - 234 U/L
521 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Urea Nitrogen 7.1 1.4 - 8.6 mmol/L
522 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 89 40 - 110 umol/L
523 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Serum Glucose 6.6 H 3.9 - 5.6 mmol/L
524 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Serum Uric Acid 358 125 - 488 umol/L
525 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Calcium (EDTA) 2.32 2.07 - 2.64 mmol/L
526 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Phosphorus 1.05 0.71 - 1.65 mmol/L
527 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Total Protein 72 61 - 84 g/L
528 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Albumin-BCG 47 33 - 49 g/L
529 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Creatine Kinase 100 39 - 308 U/L
530 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
531 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Serum Potassium 3.8 3.5 - 5.2 mmol/L
532 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Serum Bicarbonate 23.4 19.3 - 29.3 mmol/L
533 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
534 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CHEMISTRY PANEL Magnesium 0.75 0.66 - 1.07 mmol/L
535 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 103 mL/min/1.73m^2$No Ref Rng
536 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
537 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 154 127 - 181 g/L
538 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.45 0.39 - 0.54
539 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4.5 - 6.4 TI/L
540 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL MCH 31 26 - 34 pg
541 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
542 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL MCV 90 79 - 96 fL
543 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.82 3.8 - 10.7 GI/L
544 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.88 1.96 - 7.23 GI/L
545 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.03 0.91 - 4.28 GI/L
546 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.26 0.12 - 0.92 GI/L
547 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.57 0 - 0.57 GI/L
548 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.08 0 - 0.2 GI/L
549 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 49.4 40.5 - 75 %
550 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 34.9 15.4 - 48.5 %
551 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 4.4 2.6 - 10.1 %
552 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 9.9 H 0 - 6.8 %
553 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.4 0 - 2 %
554 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 222 140 - 400 GI/L
555 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
556 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
557 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
558 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
559 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
560 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
561 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
562 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 PA1 EEA-2? Approved to use EEA-2? Yes
563 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
564 CZ100132001 Male Screening Feb 26, 2026 1:20 PM 6227635140 SUBJECT HEIGHT (CM) Height (cm) Y 163 cm
565 CZ100132001 Male Stool Pathogens Feb 26, 2026 10:35 AM 6227635149 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
566 CZ100132001 Male Stool Pathogens Feb 26, 2026 10:35 AM 6227635149 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
567 CZ100132001 Male Stool Pathogens Feb 26, 2026 10:35 AM 6227635149 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
568 CZ100132001 Male Stool Pathogens Feb 26, 2026 10:35 AM 6227635149 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
569 CZ100132001 Male Stool Pathogens Feb 26, 2026 10:35 AM 6227635149 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
570 CZ100132001 Male Stool Pathogens Feb 26, 2026 10:35 AM 6227635149 OVA AND PARASITES 2 Trichrome Smear No ova or parasites found
@@ -0,0 +1,5 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100132001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Feb 26, 2026 10:35 AM",6227635149,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100132002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 1, 2026 8:30 AM",6227635148,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100132003 - null,,,,Female,SCRNSTOOL Stool Pathogens,"May 7, 2026 5:45 AM",6227635150,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100132001 - null Male SCRNSTOOL Stool Pathogens Feb 26, 2026 10:35 AM 6227635149 STOOL CULTURE Stool Final Report No enteric pathogens isolated
4 CZ100132002 - null Male SCRNSTOOL Stool Pathogens Apr 1, 2026 8:30 AM 6227635148 STOOL CULTURE Stool Final Report No enteric pathogens isolated
5 CZ100132003 - null Female SCRNSTOOL Stool Pathogens May 7, 2026 5:45 AM 6227635150 STOOL CULTURE Stool Final Report No enteric pathogens isolated
@@ -0,0 +1,5 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100162001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 24, 2026 8:45 AM",6227635182,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100162001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"May 6, 2026 9:30 AM",6228610564,STOOL CULTURE,,,,Test group cancelled: No specimen received,,,,,,,,,,,
CZ100162002 - null,,,,Male,SCRNSTOOL Stool Pathogens,"May 27, 2026 1:15 PM",6227635180,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100162001 - null Male SCRNSTOOL Stool Pathogens Apr 24, 2026 8:45 AM 6227635182 STOOL CULTURE Stool Final Report No enteric pathogens isolated
4 CZ100162001 - null Male SCRNSTOOL Stool Pathogens May 6, 2026 9:30 AM 6228610564 STOOL CULTURE Test group cancelled: No specimen received
5 CZ100162002 - null Male SCRNSTOOL Stool Pathogens May 27, 2026 1:15 PM 6227635180 STOOL CULTURE Stool Final Report No enteric pathogens isolated
@@ -0,0 +1,180 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.8,,,,,0 - 6.2,umol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Alkaline Phosphatase,,50,,,,,40 - 129,U/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,AST (SGOT),,10,,,,,8 - 40,U/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,GGT,,15,,,,,10 - 61,U/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 8.6,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 110,umol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Glucose,,5.7,R,H,,,3.9 - 5.6,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Uric Acid,,239,,,,,125 - 488,umol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Calcium (EDTA),,2.22,,,,,2.07 - 2.64,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Total Protein,,60,R,L,,,61 - 84,g/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Albumin-BCG,,35,,,,,33 - 49,g/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Creatine Kinase,,<18,R,L,,Result verified by repeat analysis,39 - 308,U/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Bicarbonate,,26.1,,,,,19.3 - 29.3,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CHEMISTRY PANEL,Magnesium,,0.88,,,,,0.66 - 1.07,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,90,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,FECAL COLLECTION D/T,Stool Collection Date,Y,28-May-2026,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,FECAL COLLECTION D/T,Stool Collection Time,Y,06:00,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,118,R,L,,,127 - 181,g/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,R,L,,,0.39 - 0.54,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,R,L,,,4.5 - 6.4,TI/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,12.78,R,H,,,3.8 - 10.7,GI/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,9.55,R,H,,,1.96 - 7.23,GI/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.58,,,,,0.91 - 4.28,GI/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.46,,,,,0.12 - 0.92,GI/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.8,,,,,40.5 - 75,%
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.3,,,,,15.4 - 48.5,%
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,3.6,,,,,2.6 - 10.1,%
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,%
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,371,,,,,140 - 400,GI/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,Direct HDL-C 4th Generation,,1.18,,,,,1.03 - 1.53,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,Triglycerides (GPO),,1.61,,,,,0.62 - 3.69,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,Cholesterol (High Performance),,4.55,,,,,4.19 - 7.24,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,LIPID PANEL,LDL Chol Friedewald 4th,,2.63,,,,,0 - 3.34,mmol/L
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,28-May-2026,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:45,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,28-May-2026,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:53,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,28-May-2026,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:45,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,28-May-2026,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:00,,,,,,
CZ100162001,,,,,Male,Induction Week 0,,"May 28, 2026 10:45 AM",6227635174,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100162002,,,,,Male,Stool Pathogens,,"May 27, 2026 1:15 PM",6227635180,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100162002,,,,,Male,Stool Pathogens,,"May 27, 2026 1:15 PM",6227635180,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Alkaline Phosphatase,,105,,,,,40 - 129,U/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,5 - 48,U/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,LDH,,194,,,,,53 - 234,U/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,69,,,,,40 - 110,umol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Glucose,,5.9,,H,,,3.9 - 5.6,mmol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Uric Acid,,242,,,,,125 - 488,umol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Phosphorus,,0.82,,,,,0.71 - 1.65,mmol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Creatine Kinase,,67,,,,,39 - 308,U/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Bicarbonate,,23.9,,,,,19.3 - 29.3,mmol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CHEMISTRY PANEL,Magnesium,,0.89,,,,,0.66 - 1.07,mmol/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,117,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,127 - 181,g/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.5 - 6.4,TI/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.92,,,,,3.8 - 10.7,GI/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.54,,,,,1.96 - 7.23,GI/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.14,,,,,0.91 - 4.28,GI/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.20,,,,,0.12 - 0.92,GI/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,80.1,,H,,,40.5 - 75,%
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,16.5,,,,,15.4 - 48.5,%
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,2.8,,,,,2.6 - 10.1,%
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.4,,,,,0 - 6.8,%
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,%
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,363,,,,,140 - 400,GI/L
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100162002,,,,,Male,Screening,,"May 27, 2026 12:35 PM",6227635173,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,19-May-2026,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:40,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,21-May-2026,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100162001,,,,,Male,Biopsy,,"May 19, 2026 12:00 AM",6227635193,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100162001,,,,,Male,Stool Pathogens,,"May 6, 2026 9:30 AM",6228610564,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100162001,,,,,Male,Stool Pathogens,,"May 6, 2026 9:30 AM",6228610564,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100162001,,,,,Male,Stool Pathogens,,"Apr 24, 2026 8:45 AM",6227635182,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,,,,,,,
CZ100162001,,,,,Male,Stool Pathogens,,"Apr 24, 2026 8:45 AM",6227635182,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,,,,,,,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,5 - 48,U/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,GGT,,18,,,,,10 - 61,U/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,LDH,,186,,,,,53 - 234,U/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Urea Nitrogen,,6.8,,,,,1.4 - 8.6,mmol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,96,,,,,40 - 110,umol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Glucose,,5.9,,H,,,3.9 - 5.6,mmol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Uric Acid,,233,,,,,125 - 488,umol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Phosphorus,,0.76,,,,,0.71 - 1.65,mmol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Creatine Kinase,,36,R,L,,,39 - 308,U/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Bicarbonate,,26.8,,,,,19.3 - 29.3,mmol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,84,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,13.56,,H,,,3.8 - 10.7,GI/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,11.03,,H,,,1.96 - 7.23,GI/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.65,,,,,0.12 - 0.92,GI/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.36,,,,,0 - 0.57,GI/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.14,,,,,0 - 0.2,GI/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,81.3,,H,,,40.5 - 75,%
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,10.2,,L,,,15.4 - 48.5,%
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.8,,,,,2.6 - 10.1,%
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,%
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,%
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,233,,,,,140 - 400,GI/L
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100162001,,,,,Male,Screening,,"Apr 21, 2026 10:45 AM",6227635171,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Total Bilirubin 5 3 - 21 umol/L
4 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.8 0 - 6.2 umol/L
5 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Alkaline Phosphatase 50 40 - 129 U/L
6 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL ALT (SGPT) 8 5 - 48 U/L
7 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL AST (SGOT) 10 8 - 40 U/L
8 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL GGT 15 10 - 61 U/L
9 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL LDH 167 53 - 234 U/L
10 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Urea Nitrogen 4.9 1.4 - 8.6 mmol/L
11 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 91 40 - 110 umol/L
12 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Serum Glucose 5.7 R H 3.9 - 5.6 mmol/L
13 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Serum Uric Acid 239 125 - 488 umol/L
14 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Calcium (EDTA) 2.22 2.07 - 2.64 mmol/L
15 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Phosphorus 0.91 0.71 - 1.65 mmol/L
16 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Total Protein 60 R L 61 - 84 g/L
17 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Albumin-BCG 35 33 - 49 g/L
18 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Creatine Kinase <18 R L Result verified by repeat analysis 39 - 308 U/L
19 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
20 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Serum Potassium 3.8 3.5 - 5.2 mmol/L
21 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Serum Bicarbonate 26.1 19.3 - 29.3 mmol/L
22 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
23 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CHEMISTRY PANEL Magnesium 0.88 0.66 - 1.07 mmol/L
24 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 90 mL/min/1.73m^2$No Ref Rng
25 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 FECAL COLLECTION D/T Stool Collection Date Y 28-May-2026
26 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 FECAL COLLECTION D/T Stool Collection Time Y 06:00
27 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 118 R L 127 - 181 g/L
28 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.37 R L 0.39 - 0.54
29 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.0 R L 4.5 - 6.4 TI/L
30 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL MCH 29 26 - 34 pg
31 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
32 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 79 - 96 fL
33 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL WBC 12.78 R H 3.8 - 10.7 GI/L
34 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 9.55 R H 1.96 - 7.23 GI/L
35 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.58 0.91 - 4.28 GI/L
36 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.46 0.12 - 0.92 GI/L
37 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.12 0 - 0.57 GI/L
38 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.06 0 - 0.2 GI/L
39 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 74.8 40.5 - 75 %
40 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 20.3 15.4 - 48.5 %
41 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 3.6 2.6 - 10.1 %
42 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.0 0 - 6.8 %
43 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
44 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 371 140 - 400 GI/L
45 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
46 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 LIPID PANEL Direct HDL-C 4th Generation 1.18 1.03 - 1.53 mmol/L
47 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 LIPID PANEL Triglycerides (GPO) 1.61 0.62 - 3.69 mmol/L
48 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 LIPID PANEL Cholesterol (High Performance) 4.55 4.19 - 7.24 mmol/L
49 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 LIPID PANEL LDL Chol Friedewald 4th 2.63 0 - 3.34 mmol/L
50 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 PA1 EEA-2? Approved to use EEA-2? Yes
51 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 28-May-2026
52 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 10:45
53 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 28-May-2026
54 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 11:53
55 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 28-May-2026
56 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 10:45
57 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 28-May-2026
58 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 06:00
59 CZ100162001 Male Induction Week 0 May 28, 2026 10:45 AM 6227635174 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
60 CZ100162002 Male Stool Pathogens May 27, 2026 1:15 PM 6227635180 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
61 CZ100162002 Male Stool Pathogens May 27, 2026 1:15 PM 6227635180 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
62 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
63 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.7 0 - 6.2 umol/L
64 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Alkaline Phosphatase 105 40 - 129 U/L
65 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL ALT (SGPT) 17 5 - 48 U/L
66 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL AST (SGOT) 18 8 - 40 U/L
67 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL GGT 14 10 - 61 U/L
68 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL LDH 194 53 - 234 U/L
69 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Urea Nitrogen 5.4 1.4 - 8.6 mmol/L
70 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 69 40 - 110 umol/L
71 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Serum Glucose 5.9 H 3.9 - 5.6 mmol/L
72 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Serum Uric Acid 242 125 - 488 umol/L
73 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Calcium (EDTA) 2.39 2.07 - 2.64 mmol/L
74 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Phosphorus 0.82 0.71 - 1.65 mmol/L
75 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Total Protein 70 61 - 84 g/L
76 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Albumin-BCG 47 33 - 49 g/L
77 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Creatine Kinase 67 39 - 308 U/L
78 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
79 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Serum Potassium 4.7 3.5 - 5.2 mmol/L
80 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Serum Bicarbonate 23.9 19.3 - 29.3 mmol/L
81 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
82 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CHEMISTRY PANEL Magnesium 0.89 0.66 - 1.07 mmol/L
83 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 117 mL/min/1.73m^2$No Ref Rng
84 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
85 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 140 127 - 181 g/L
86 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.42 0.39 - 0.54
87 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.6 4.5 - 6.4 TI/L
88 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
89 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
90 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL MCV 91 79 - 96 fL
91 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.92 3.8 - 10.7 GI/L
92 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 5.54 1.96 - 7.23 GI/L
93 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.14 0.91 - 4.28 GI/L
94 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.20 0.12 - 0.92 GI/L
95 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.03 0 - 0.57 GI/L
96 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.02 0 - 0.2 GI/L
97 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 80.1 H 40.5 - 75 %
98 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 16.5 15.4 - 48.5 %
99 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 2.8 2.6 - 10.1 %
100 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 0.4 0 - 6.8 %
101 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.2 0 - 2 %
102 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 363 140 - 400 GI/L
103 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
104 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
105 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
106 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
107 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
108 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
109 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
110 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 PA1 EEA-2? Approved to use EEA-2? Yes
111 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
112 CZ100162002 Male Screening May 27, 2026 12:35 PM 6227635173 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
113 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
114 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
115 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 BIOPSY FIXATIVE USED Fixative Used 10% NBF
116 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 19-May-2026
117 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 09:40
118 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
119 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 INFLAMED AREA Inflamed area? Yes
120 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
121 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 12:00
122 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 21-May-2026
123 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
124 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
125 CZ100162001 Male Biopsy May 19, 2026 12:00 AM 6227635193 ULCERATED AREA Is biopsy site ulcerated? Yes
126 CZ100162001 Male Stool Pathogens May 6, 2026 9:30 AM 6228610564 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
127 CZ100162001 Male Stool Pathogens May 6, 2026 9:30 AM 6228610564 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
128 CZ100162001 Male Stool Pathogens Apr 24, 2026 8:45 AM 6227635182 C. DIFF EIA C. diff GDH Ag,stool-CL
129 CZ100162001 Male Stool Pathogens Apr 24, 2026 8:45 AM 6227635182 C. DIFF EIA C.diff Toxin A&B,stool-CL
130 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Total Bilirubin 10 3 - 21 umol/L
131 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.8 0 - 6.2 umol/L
132 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Alkaline Phosphatase 60 40 - 129 U/L
133 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL ALT (SGPT) 11 5 - 48 U/L
134 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL AST (SGOT) 16 8 - 40 U/L
135 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL GGT 18 10 - 61 U/L
136 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL LDH 186 53 - 234 U/L
137 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Urea Nitrogen 6.8 1.4 - 8.6 mmol/L
138 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 96 40 - 110 umol/L
139 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Serum Glucose 5.9 H 3.9 - 5.6 mmol/L
140 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Serum Uric Acid 233 125 - 488 umol/L
141 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Calcium (EDTA) 2.34 2.07 - 2.64 mmol/L
142 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Phosphorus 0.76 0.71 - 1.65 mmol/L
143 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Total Protein 69 61 - 84 g/L
144 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
145 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Creatine Kinase 36 R L 39 - 308 U/L
146 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
147 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
148 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Serum Bicarbonate 26.8 19.3 - 29.3 mmol/L
149 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
150 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CHEMISTRY PANEL Magnesium 0.85 0.66 - 1.07 mmol/L
151 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 84 mL/min/1.73m^2$No Ref Rng
152 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
153 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 154 127 - 181 g/L
154 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.45 0.39 - 0.54
155 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4.5 - 6.4 TI/L
156 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL MCH 31 26 - 34 pg
157 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
158 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL MCV 90 79 - 96 fL
159 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL WBC 13.56 H 3.8 - 10.7 GI/L
160 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 11.03 H 1.96 - 7.23 GI/L
161 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.38 0.91 - 4.28 GI/L
162 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.65 0.12 - 0.92 GI/L
163 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.36 0 - 0.57 GI/L
164 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.14 0 - 0.2 GI/L
165 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 81.3 H 40.5 - 75 %
166 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 10.2 L 15.4 - 48.5 %
167 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 4.8 2.6 - 10.1 %
168 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.7 0 - 6.8 %
169 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.0 0 - 2 %
170 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 233 140 - 400 GI/L
171 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
172 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
173 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
174 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
175 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
176 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
177 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
178 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 PA1 EEA-2? Approved to use EEA-2? Yes
179 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
180 CZ100162001 Male Screening Apr 21, 2026 10:45 AM 6227635171 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
@@ -0,0 +1,7 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100012001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jan 28, 2026 6:00 AM",6227323211,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,R,
CZ100012001 - null,,,,Male,UNSCSTOOL Stool Pathogens,"Apr 22, 2026 7:00 AM",6228137359,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100012002 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Mar 3, 2026 1:00 PM",6227323212,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100012003 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 29, 2026 7:55 AM",6227323213,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100012004 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Jun 2, 2026 6:00 PM",6228137357,STOOL CULTURE,,,,,,,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100012001 - null Male SCRNSTOOL Stool Pathogens Jan 28, 2026 6:00 AM 6227323211 STOOL CULTURE Stool Final Report No enteric pathogens isolated R
4 CZ100012001 - null Male UNSCSTOOL Stool Pathogens Apr 22, 2026 7:00 AM 6228137359 STOOL CULTURE Stool Final Report No enteric pathogens isolated
5 CZ100012002 - null Female SCRNSTOOL Stool Pathogens Mar 3, 2026 1:00 PM 6227323212 STOOL CULTURE Stool Final Report No enteric pathogens isolated
6 CZ100012003 - null Male SCRNSTOOL Stool Pathogens Apr 29, 2026 7:55 AM 6227323213 STOOL CULTURE Stool Final Report No enteric pathogens isolated
7 CZ100012004 - null Male SCRNSTOOL Stool Pathogens Jun 2, 2026 6:00 PM 6228137357 STOOL CULTURE
@@ -0,0 +1,740 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100012004,,,,,Male,Stool Pathogens,,"Jun 2, 2026 6:00 PM",6228137357,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012004,,,,,Male,Stool Pathogens,,"Jun 2, 2026 6:00 PM",6228137357,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Total Bilirubin,,13,,,,,3 - 21,umol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.0,,,,,0 - 6.2,umol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Alkaline Phosphatase,,90,,,,,40 - 129,U/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,ALT (SGPT),,27,,,,,5 - 48,U/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,AST (SGOT),,35,,,,,8 - 40,U/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,GGT,,63,R,H,,,10 - 61,U/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,LDH,,167,,,,,53 - 234,U/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Urea Nitrogen,,7.1,,,,,1.4 - 8.6,mmol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,95,,,,,40 - 110,umol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Glucose,,5.3,,,,,3.9 - 5.6,mmol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Uric Acid,,342,,,,,125 - 488,umol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Calcium (EDTA),,2.56,,,,,2.07 - 2.64,mmol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Total Protein,,84,,,,,61 - 84,g/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Creatine Kinase,,217,,,,,39 - 308,U/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Potassium,,5.2,,,,,3.5 - 5.2,mmol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Bicarbonate,,20.1,,,,,19.3 - 29.3,mmol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CHEMISTRY PANEL,Magnesium,,0.85,,,,,0.66 - 1.07,mmol/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,86,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,,,,,0.39 - 0.54,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.70,,,,,3.8 - 10.7,GI/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.42,,,,,1.96 - 7.23,GI/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.25,,,,,0.91 - 4.28,GI/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.75,,,,,0.12 - 0.92,GI/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.0,,,,,40.5 - 75,%
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.4,,,,,15.4 - 48.5,%
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,%
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,%
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,%
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,483,R,H,,,140 - 400,GI/L
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100012004,,,,,Male,Screening,,"May 28, 2026 7:30 AM",6228114608,SUBJECT HEIGHT (CM),Height (cm),Y,178,,,,,cm,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Alkaline Phosphatase,,104,,,,,40 - 129,U/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,GGT,,16,,,,,10 - 61,U/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,LDH,,165,,,,,53 - 234,U/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Urea Nitrogen,,6.4,,,,,1.4 - 8.6,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,91,,,,,40 - 119,umol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Uric Acid,,324,,,,,149 - 494,umol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Phosphorus,,0.82,,,,,0.71 - 1.65,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Creatine Kinase,,82,,,,,39 - 308,U/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Bicarbonate,,20.6,,,,,19.3 - 29.3,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CHEMISTRY PANEL,Magnesium,,0.84,,,,,0.66 - 1.07,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,87,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,FECAL COLLECTION D/T,Stool Collection Date,Y,26-May-2026,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,,,,,127 - 181,g/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.50,,,,,0.39 - 0.54,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.4,,,,,4.5 - 6.4,TI/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 96,fL
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.01,,,,,3.8 - 10.7,GI/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,7.04,,,,,1.96 - 7.23,GI/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,78.1,,H,,,40.5 - 75,%
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,15.3,,L,,,15.4 - 48.5,%
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.9,,,,,2.6 - 10.1,%
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.2,,,,,0 - 6.8,%
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,265,,,,,140 - 400,GI/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,Direct HDL-C 4th Generation,,1.34,,,,,1.03 - 1.53,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,Triglycerides (GPO),,0.65,,,,,0.65 - 3.61,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,Cholesterol (High Performance),,4.32,,L,,,4.4 - 7.53,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,LIPID PANEL,LDL Chol Friedewald 4th,,2.68,,,,,0 - 3.34,mmol/L
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,27-May-2026,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:25,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,27-May-2026,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:30,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,27-May-2026,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:25,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,26-May-2026,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012003,,,,,Male,Induction Week 0,,"May 27, 2026 7:25 AM",6228036553,SUBJECT HEIGHT (CM),Height (cm),Y,175,,,,,cm,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,40 - 129,U/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,ALT (SGPT),,46,,,,,5 - 48,U/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,AST (SGOT),,23,,,,,8 - 40,U/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,GGT,,30,,,,,10 - 61,U/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,LDH,,238,,H,,,53 - 234,U/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Urea Nitrogen,,4.4,,,,,1.4 - 8.6,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,84,,,,,40 - 110,umol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Uric Acid,,328,,,,,125 - 488,umol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Phosphorus,,1.26,,,,,0.71 - 1.65,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Creatine Kinase,,96,,,,,39 - 308,U/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Bicarbonate,,25.1,,,,,19.3 - 29.3,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CHEMISTRY PANEL,Magnesium,,0.87,,,,,0.66 - 1.07,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,99,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,FECAL COLLECTION D/T,Stool Collection Date,Y,12-May-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,142,,,,,127 - 181,g/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.8,,,,,4.5 - 6.4,TI/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.67,,,,,3.8 - 10.7,GI/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.93,,,,,1.96 - 7.23,GI/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.10,,,,,0.91 - 4.28,GI/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.49,,,,,0.12 - 0.92,GI/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.11,,,,,0 - 0.57,GI/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,68.4,,,,,40.5 - 75,%
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.3,,,,,15.4 - 48.5,%
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,%
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.3,,,,,0 - 6.8,%
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,343,,,,,140 - 400,GI/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,Direct HDL-C 4th Generation,,2.02,,H,,,1.03 - 1.53,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,Triglycerides (GPO),,1.21,,,,,0.62 - 3.69,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,Cholesterol (High Performance),,5.32,,,,,4.19 - 7.24,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,LIPID PANEL,LDL Chol Friedewald 4th,,2.75,,,,,0 - 3.34,mmol/L
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,13-May-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:05,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,13-May-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:30,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,13-May-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:05,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,12-May-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,12-May-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012001,,,,,Male,Induction Week 12,,"May 13, 2026 8:05 AM",6227933143,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,ANATOMICAL SITE,Anatomical Site,Y,30,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,13-May-2026,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:00,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,15-May-2026,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100012003,,,,,Male,Biopsy,R,"May 13, 2026 12:00 AM",6228252073,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Total Bilirubin,,11,,,,,3 - 21,umol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Alkaline Phosphatase,,99,,,,,35 - 104,U/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,GGT,,23,,,,,5 - 50,U/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,LDH,,181,,,,,53 - 234,U/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Urea Nitrogen,,5.3,,,,,1.4 - 10.4,mmol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,54,,,,,31 - 110,umol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Glucose,,6.0,,H,,,3.9 - 5.6,mmol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Uric Acid,,293,,,,,149 - 446,umol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Calcium (EDTA),,2.53,,,,,2.07 - 2.64,mmol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Total Protein,,79,,,,,60 - 80,g/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 46,g/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Creatine Kinase,,143,,,,,26 - 192,U/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Bicarbonate,,22.3,,,,,19.3 - 29.3,mmol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CHEMISTRY PANEL,Magnesium,,0.91,,,,,0.66 - 0.98,mmol/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,91,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,115 - 158,g/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,3.9 - 5.5,TI/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,80 - 100,fL
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.54,,,,,3.8 - 10.7,GI/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.11,,,,,1.96 - 7.23,GI/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.15,,,,,0.8 - 3,GI/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.23,,,,,0.12 - 0.92,GI/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.02,,,,,0 - 0.57,GI/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.5,,,,,40.5 - 75,%
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,47.4,,,,,15.4 - 48.5,%
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,%
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.5,,,,,0 - 6.8,%
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,117,R,L,,,130 - 394,GI/L
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,06-May-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:05,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,06-May-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,09:05,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,06-May-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:05,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012002,,,,,Female,Induction Week 4,,"May 6, 2026 8:05 AM",6227933142,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,06-May-2026,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,07:20,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,08-May-2026,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100012001,,,,,Male,Biopsy,,"May 6, 2026 12:00 AM",6228252072,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,,
CZ100012003,,,,,Male,Stool Pathogens,,"Apr 29, 2026 7:55 AM",6227323213,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012003,,,,,Male,Stool Pathogens,,"Apr 29, 2026 7:55 AM",6227323213,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Alkaline Phosphatase,,115,,,,,40 - 129,U/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,5 - 48,U/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,GGT,,15,,,,,10 - 61,U/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,LDH,,151,,,,,53 - 234,U/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,88,,,,,40 - 119,umol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Glucose,,5.4,,,,,3.9 - 5.6,mmol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Uric Acid,,306,,,,,149 - 494,umol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Phosphorus,,0.90,,,,,0.71 - 1.65,mmol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Total Protein,,75,,,,,61 - 84,g/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Bicarbonate,,21.5,,,,,19.3 - 29.3,mmol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CHEMISTRY PANEL,Magnesium,,0.90,,,,,0.66 - 1.07,mmol/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,91,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,161,,,,,127 - 181,g/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.49,,,,,0.39 - 0.54,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.5,,,,,4.5 - 6.4,TI/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.61,,,,,3.8 - 10.7,GI/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.63,,,,,1.96 - 7.23,GI/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.42,,,,,0.91 - 4.28,GI/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.38,,,,,0.12 - 0.92,GI/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.13,,,,,0 - 0.57,GI/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.0,,,,,40.5 - 75,%
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.7,,,,,15.4 - 48.5,%
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.0,,,,,2.6 - 10.1,%
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,%
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,242,,,,,140 - 400,GI/L
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100012003,,,,,Male,Screening,,"Apr 29, 2026 7:55 AM",6228114610,SUBJECT HEIGHT (CM),Height (cm),Y,175,,,,,cm,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Total Bilirubin,,14,,,,,3 - 21,umol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.5,,,,,0 - 6.2,umol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Alkaline Phosphatase,,102,,,,,35 - 104,U/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,GGT,,23,,,,,5 - 50,U/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 10.4,mmol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,53,,,,,31 - 110,umol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Glucose,,6.3,,H,,,3.9 - 5.6,mmol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Uric Acid,,252,,,,,149 - 446,umol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Calcium (EDTA),,2.50,,,,,2.07 - 2.64,mmol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Phosphorus,,1.16,,,,,0.71 - 1.65,mmol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Total Protein,,76,,,,,60 - 80,g/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Creatine Kinase,,83,,,,,26 - 192,U/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Bicarbonate,,23.8,,,,,19.3 - 29.3,mmol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CHEMISTRY PANEL,Magnesium,,0.94,,,,,0.66 - 0.98,mmol/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,91,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,FECAL COLLECTION D/T,Stool Collection Date,Y,23-Apr-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,FECAL COLLECTION D/T,Stool Collection Time,Y,07:40,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,144,,,,Result verified by repeat analysis,115 - 158,g/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,Result verified by repeat analysis,3.9 - 5.5,TI/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,Result verified by repeat analysis,26 - 34,pg
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,80 - 100,fL
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.47,,L,,Result verified by repeat analysis,3.8 - 10.7,GI/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.78,,L,,Result verified by repeat analysis,1.96 - 7.23,GI/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.46,,,,,0.8 - 3,GI/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.16,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,Result verified by repeat analysis,0 - 0.57,GI/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,Result verified by repeat analysis,0 - 0.2,GI/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.4,,,,Result verified by repeat analysis,40.5 - 75,%
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.2,,,,Result verified by repeat analysis,15.4 - 48.5,%
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.5,,,,Result verified by repeat analysis,2.6 - 10.1,%
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,Result verified by repeat analysis,0 - 6.8,%
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,Result verified by repeat analysis,0 - 2,%
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,118,,L,,Result verified by repeat analysis,130 - 394,GI/L
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,23-Apr-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:40,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,23-Apr-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:40,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,23-Apr-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,07:40,,,,,,
CZ100012002,,,,,Female,Induction Week 2,,"Apr 23, 2026 7:40 AM",6227323207,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100012001,,,,,Male,Stool Pathogens,,"Apr 22, 2026 7:00 AM",6228137359,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.7,,,,,0 - 6.2,umol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Alkaline Phosphatase,,96,,,,,35 - 104,U/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,GGT,,19,,,,,5 - 50,U/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Urea Nitrogen,,5.3,,,,,1.4 - 10.4,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 110,umol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Glucose,,6.2,R,H,,,3.9 - 5.6,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Uric Acid,,284,,,,,149 - 446,umol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Calcium (EDTA),,2.50,,,,,2.07 - 2.64,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Total Protein,,78,,,,,60 - 80,g/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 46,g/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Creatine Kinase,,113,,,,,26 - 192,U/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Bicarbonate,,24.0,,,,,19.3 - 29.3,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CHEMISTRY PANEL,Magnesium,,0.97,,,,,0.66 - 0.98,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,90,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,FECAL COLLECTION D/T,Stool Collection Date,Y,07-Apr-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,143,,,,,115 - 158,g/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.34 - 0.48,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,3.9 - 5.5,TI/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,,26 - 34,pg
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,80 - 100,fL
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.59,R,L,,,3.8 - 10.7,GI/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.64,R,L,,,1.96 - 7.23,GI/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.8 - 3,GI/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.19,,,,,0.12 - 0.92,GI/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.03,,,,,0 - 0.57,GI/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,45.6,,,,,40.5 - 75,%
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,47.9,,,,,15.4 - 48.5,%
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.2,,,,,2.6 - 10.1,%
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.7,,,,,0 - 6.8,%
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,126,R,L,,,130 - 394,GI/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,Direct HDL-C 4th Generation,,2.07,R,H,,,1.03 - 1.53,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,Triglycerides (GPO),,1.04,,,,,0.63 - 2.71,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,Cholesterol (High Performance),,4.56,R,L,,,5.35 - 9.1,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,LIPID PANEL,LDL Chol Friedewald 4th,,2.01,,,,,0 - 3.34,mmol/L
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:10,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,08-Apr-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:15,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,08-Apr-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:10,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,07-Apr-2026,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012002,,,,,Female,Induction Week 0,,"Apr 8, 2026 7:10 AM",6228036554,SUBJECT HEIGHT (CM),Height (cm),Y,170,,,,,cm,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,AST>/=3XULN,AST >/= 3 X ULN,,Required testing unavailable,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Required testing unavailable,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Alkaline Phosphatase,,66,,,,,40 - 129,U/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,ALT (SGPT),,50,,H,,,5 - 48,U/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,AST (SGOT),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,GGT,,25,,,,,10 - 61,U/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Urea Nitrogen,,6.7,,,,,1.4 - 8.6,mmol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,89,,,,,40 - 110,umol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Glucose,,5.1,,,,,3.9 - 5.6,mmol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Uric Acid,,302,,,,,125 - 488,umol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Calcium (EDTA),,2.50,,,,,2.07 - 2.64,mmol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Phosphorus,,1.95,R,H,,,0.71 - 1.65,mmol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Total Protein,,76,,,,,61 - 84,g/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Creatine Kinase,,66,,,,,39 - 308,U/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Bicarbonate,,24.8,,,,,19.3 - 29.3,mmol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CHEMISTRY PANEL,Magnesium,,0.95,,,,,0.66 - 1.07,mmol/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,92,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,FECAL COLLECTION D/T,Stool Collection Date,Y,17-Mar-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.39 - 0.54,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.77,,,,,3.8 - 10.7,GI/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.03,,,,,1.96 - 7.23,GI/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.25,,,,,0.91 - 4.28,GI/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.07,,,,,0 - 0.57,GI/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,74.3,,,,,40.5 - 75,%
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,18.6,,,,,15.4 - 48.5,%
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,%
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,%
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,327,,,,,140 - 400,GI/L
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,18-Mar-2026,R,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,18:00,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,18-Mar-2026,R,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,18:00,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,18-Mar-2026,R,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,18:00,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,17-Mar-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012001,,,,,Male,Induction Week 4,,"Mar 18, 2026 7:05 AM",6227323210,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,ANATOMICAL SITE,Anatomical Site,Y,25 DISTANCE IN CM FROM ANAL VERGE,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,18-Mar-2026,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,09:30,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,20-Mar-2026,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100012002,,,,,Female,Biopsy,,"Mar 18, 2026 12:00 AM",6227323224,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,ALP<2XULN,ALP<2XULN,,Required testing unavailable,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,ALT>/=3XULN,ALT >/= 3 X ULN,,Required testing unavailable,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Required testing unavailable,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,AST>/=3XULN,AST >/= 3 X ULN,,Required testing unavailable,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Required testing unavailable,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Total Bilirubin,,18,,,,,3 - 21,umol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,ALT (SGPT),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,AST (SGOT),,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,GGT,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Urea Nitrogen,,5.2,,,,,1.4 - 8.6,mmol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,40 - 110,umol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Glucose,,5.4,,,,,3.9 - 5.6,mmol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Uric Acid,,276,,,,,125 - 488,umol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Calcium (EDTA),,2.24,,,,,2.07 - 2.64,mmol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Phosphorus,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Creatine Kinase,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Potassium,,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Bicarbonate,,20.3,,,,,19.3 - 29.3,mmol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CHEMISTRY PANEL,Magnesium,,0.88,,,,,0.66 - 1.07,mmol/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,105,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,FECAL COLLECTION D/T,Stool Collection Date,Y,03-Mar-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,R,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,155,,,,,127 - 181,g/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.48,,,,,0.39 - 0.54,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,93,,,,,79 - 96,fL
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.57,,,,,3.8 - 10.7,GI/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.08,,,,,1.96 - 7.23,GI/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.16,,,,,0.91 - 4.28,GI/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.26,,,,,0.12 - 0.92,GI/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.05,,,,,0 - 0.57,GI/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,73.3,,,,,40.5 - 75,%
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.7,,,,,15.4 - 48.5,%
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.7,,,,,2.6 - 10.1,%
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.9,,,,,0 - 6.8,%
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,343,,,,,140 - 400,GI/L
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,04-Mar-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:00,R,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,04-Mar-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:00,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,04-Mar-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:00,R,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,03-Mar-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,18:00,R,,,,,
CZ100012001,,,,,Male,Induction Week 2,,"Mar 4, 2026 7:00 AM",6227323208,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100012002,,,,,Female,Stool Pathogens,,"Mar 3, 2026 1:00 PM",6227323212,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.5,,,,,0 - 6.2,umol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Alkaline Phosphatase,,100,,,,,35 - 104,U/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,ALT (SGPT),,17,,,,,4 - 43,U/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,GGT,,27,,,,,5 - 50,U/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,LDH,,120,,,,,53 - 234,U/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Urea Nitrogen,,4.9,,,,,1.4 - 10.4,mmol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,49,,,,,31 - 110,umol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Glucose,,7.0,,H,,,3.9 - 5.6,mmol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Uric Acid,,233,,,,,149 - 446,umol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Total Protein,,75,,,,,60 - 80,g/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 46,g/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Creatine Kinase,,101,,,,,26 - 192,U/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Sodium,,140,,,,,135 - 145,mmol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Bicarbonate,,22.1,,,,,19.3 - 29.3,mmol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CHEMISTRY PANEL,Magnesium,,0.89,,,,,0.66 - 0.98,mmol/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,93,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,145,,,,,115 - 158,g/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,3.9 - 5.5,TI/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,29,,,,,26 - 34,pg
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,80 - 100,fL
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.95,,,,,3.8 - 10.7,GI/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.86,,L,,,1.96 - 7.23,GI/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.81,,,,,0.8 - 3,GI/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.02,,,,,0 - 0.57,GI/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.1,,,,,40.5 - 75,%
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,45.7,,,,,15.4 - 48.5,%
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.3,,,,,2.6 - 10.1,%
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.4,,,,,0 - 6.8,%
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,150,,,,,130 - 394,GI/L
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100012002,,,,,Female,Screening,,"Mar 2, 2026 7:00 AM",6227323204,SUBJECT HEIGHT (CM),Height (cm),Y,170,,,,,cm,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Total Bilirubin,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Alkaline Phosphatase,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,ALT (SGPT),,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,AST (SGOT),,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,GGT,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,LDH,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Urea Nitrogen,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Glucose,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Uric Acid,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Calcium (EDTA),,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Phosphorus,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Total Protein,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Albumin-BCG,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Creatine Kinase,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Sodium,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Potassium,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Bicarbonate,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Serum Chloride,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CHEMISTRY PANEL,Magnesium,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,CKD-EPI 2021,CKD-EPI 2021 Without Race,,Required testing unavailable,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,FECAL COLLECTION D/T,Stool Collection Date,Y,18-Feb-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,127 - 181,g/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.5 - 6.4,TI/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.88,,,,,3.8 - 10.7,GI/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.46,,,,,1.96 - 7.23,GI/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.78,,,,,0.91 - 4.28,GI/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.47,,,,,0.12 - 0.92,GI/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,61.4,,,,,40.5 - 75,%
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.2,,,,,15.4 - 48.5,%
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.3,,,,,2.6 - 10.1,%
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,%
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,330,,,,,140 - 400,GI/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,Direct HDL-C 4th Generation,,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,Triglycerides (GPO),,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,Cholesterol (High Performance),,,,,Test cancelled: Quantity not sufficient,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,LIPID PANEL,LDL Chol Friedewald 4th,,Required testing unavailable,,,,,0 - 3.34,mmol/L
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,19-Feb-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,07:20,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,19-Feb-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,08:50,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,19-Feb-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,07:20,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,18-Feb-2026,,,,,,
CZ100012001,,,,,Male,Induction Week 0,,"Feb 19, 2026 7:20 AM",6227323205,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,ANATOMICAL SITE,Anatomical Site,Y,30,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,05-Feb-2026,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,08:30,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,07-Feb-2026,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100012001,,,,,Male,Biopsy,R,"Feb 5, 2026 12:00 AM",6227323223,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100012001,,,,,Male,Stool Pathogens,R,"Jan 28, 2026 6:00 AM",6227323211,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Alkaline Phosphatase,,61,,,,,40 - 129,U/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,ALT (SGPT),,23,,,,,5 - 48,U/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,GGT,,24,,,,,10 - 61,U/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,LDH,,146,,,,,53 - 234,U/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,40 - 110,umol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Glucose,,5.5,,,,,3.9 - 5.6,mmol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Uric Acid,,338,,,,,125 - 488,umol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Phosphorus,,0.48,,LT,,Result verified by repeat analysis,0.71 - 1.65,mmol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Creatine Kinase,,60,,,,,39 - 308,U/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Bicarbonate,,25.1,,,,,19.3 - 29.3,mmol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CHEMISTRY PANEL,Magnesium,,0.92,,,,,0.66 - 1.07,mmol/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,CKD-EPI 2021,CKD-EPI 2021 Without Race,,106,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,151,,,,,127 - 181,g/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,30,,,,,26 - 34,pg
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 96,fL
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.92,,,,,3.8 - 10.7,GI/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.40,,,,,1.96 - 7.23,GI/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.00,,,,,0.91 - 4.28,GI/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.27,,,,,0.12 - 0.92,GI/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,69.1,,,,,40.5 - 75,%
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.2,,,,,15.4 - 48.5,%
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,%
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.1,,,,,0 - 6.8,%
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.0,,,,,0 - 2,%
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,309,,,,,140 - 400,GI/L
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS B SURFACE AB NON-US,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100012001,,,,,Male,Screening,,"Jan 22, 2026 8:00 AM",6227323203,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100012004 Male Stool Pathogens Jun 2, 2026 6:00 PM 6228137357 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
4 CZ100012004 Male Stool Pathogens Jun 2, 2026 6:00 PM 6228137357 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
5 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Total Bilirubin 13 3 - 21 umol/L
6 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 4.0 0 - 6.2 umol/L
7 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Alkaline Phosphatase 90 40 - 129 U/L
8 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL ALT (SGPT) 27 5 - 48 U/L
9 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL AST (SGOT) 35 8 - 40 U/L
10 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL GGT 63 R H 10 - 61 U/L
11 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL LDH 167 53 - 234 U/L
12 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Urea Nitrogen 7.1 1.4 - 8.6 mmol/L
13 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 95 40 - 110 umol/L
14 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Serum Glucose 5.3 3.9 - 5.6 mmol/L
15 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Serum Uric Acid 342 125 - 488 umol/L
16 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Calcium (EDTA) 2.56 2.07 - 2.64 mmol/L
17 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Phosphorus 0.97 0.71 - 1.65 mmol/L
18 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Total Protein 84 61 - 84 g/L
19 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
20 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Creatine Kinase 217 39 - 308 U/L
21 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
22 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Serum Potassium 5.2 3.5 - 5.2 mmol/L
23 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Serum Bicarbonate 20.1 19.3 - 29.3 mmol/L
24 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
25 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CHEMISTRY PANEL Magnesium 0.85 0.66 - 1.07 mmol/L
26 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 86 mL/min/1.73m^2$No Ref Rng
27 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
28 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 153 127 - 181 g/L
29 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.49 0.39 - 0.54
30 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.4 4.5 - 6.4 TI/L
31 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL MCH 28 26 - 34 pg
32 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
33 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL MCV 89 79 - 96 fL
34 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL WBC 10.70 3.8 - 10.7 GI/L
35 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 6.42 1.96 - 7.23 GI/L
36 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 3.25 0.91 - 4.28 GI/L
37 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.75 0.12 - 0.92 GI/L
38 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.19 0 - 0.57 GI/L
39 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.10 0 - 0.2 GI/L
40 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 60.0 40.5 - 75 %
41 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 30.4 15.4 - 48.5 %
42 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.0 2.6 - 10.1 %
43 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.7 0 - 6.8 %
44 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.9 0 - 2 %
45 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 483 R H 140 - 400 GI/L
46 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
47 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
48 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
49 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
50 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
51 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
52 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
53 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 PA1 EEA-2? Approved to use EEA-2? Yes
54 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
55 CZ100012004 Male Screening May 28, 2026 7:30 AM 6228114608 SUBJECT HEIGHT (CM) Height (cm) Y 178 cm
56 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
57 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.0 0 - 6.2 umol/L
58 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Alkaline Phosphatase 104 40 - 129 U/L
59 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL ALT (SGPT) 15 5 - 48 U/L
60 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
61 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL GGT 16 10 - 61 U/L
62 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL LDH 165 53 - 234 U/L
63 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Urea Nitrogen 6.4 1.4 - 8.6 mmol/L
64 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 91 40 - 119 umol/L
65 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Serum Glucose 5.2 3.9 - 5.6 mmol/L
66 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Serum Uric Acid 324 149 - 494 umol/L
67 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Calcium (EDTA) 2.38 2.07 - 2.64 mmol/L
68 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Phosphorus 0.82 0.71 - 1.65 mmol/L
69 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Total Protein 75 61 - 84 g/L
70 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Albumin-BCG 46 33 - 49 g/L
71 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Creatine Kinase 82 39 - 308 U/L
72 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
73 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Serum Potassium 4.7 3.5 - 5.2 mmol/L
74 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Serum Bicarbonate 20.6 19.3 - 29.3 mmol/L
75 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Serum Chloride 105 94 - 112 mmol/L
76 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CHEMISTRY PANEL Magnesium 0.84 0.66 - 1.07 mmol/L
77 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 87 mL/min/1.73m^2$No Ref Rng
78 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 FECAL COLLECTION D/T Stool Collection Date Y 26-May-2026
79 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 FECAL COLLECTION D/T Stool Collection Time Y 18:00
80 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 159 127 - 181 g/L
81 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.50 0.39 - 0.54
82 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.4 4.5 - 6.4 TI/L
83 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL MCH 29 26 - 34 pg
84 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
85 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 79 - 96 fL
86 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL WBC 9.01 3.8 - 10.7 GI/L
87 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 7.04 1.96 - 7.23 GI/L
88 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.38 0.91 - 4.28 GI/L
89 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.44 0.12 - 0.92 GI/L
90 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.11 0 - 0.57 GI/L
91 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
92 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 78.1 H 40.5 - 75 %
93 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 15.3 L 15.4 - 48.5 %
94 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 4.9 2.6 - 10.1 %
95 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.2 0 - 6.8 %
96 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
97 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 265 140 - 400 GI/L
98 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
99 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 LIPID PANEL Direct HDL-C 4th Generation 1.34 1.03 - 1.53 mmol/L
100 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 LIPID PANEL Triglycerides (GPO) 0.65 0.65 - 3.61 mmol/L
101 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 LIPID PANEL Cholesterol (High Performance) 4.32 L 4.4 - 7.53 mmol/L
102 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 LIPID PANEL LDL Chol Friedewald 4th 2.68 0 - 3.34 mmol/L
103 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 PA1 EEA-2? Approved to use EEA-2? Yes
104 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 27-May-2026
105 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:25
106 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 27-May-2026
107 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 08:30
108 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 27-May-2026
109 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:25
110 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 26-May-2026
111 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 18:00
112 CZ100012003 Male Induction Week 0 May 27, 2026 7:25 AM 6228036553 SUBJECT HEIGHT (CM) Height (cm) Y 175 cm
113 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 ALP<2XULN ALP<2XULN Criteria Met
114 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
115 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
116 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 AST>/=3XULN AST >/= 3 X ULN Criteria not met
117 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
118 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
119 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.8 0 - 6.2 umol/L
120 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Alkaline Phosphatase 62 40 - 129 U/L
121 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL ALT (SGPT) 46 5 - 48 U/L
122 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL AST (SGOT) 23 8 - 40 U/L
123 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL GGT 30 10 - 61 U/L
124 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL LDH 238 H 53 - 234 U/L
125 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Urea Nitrogen 4.4 1.4 - 8.6 mmol/L
126 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 84 40 - 110 umol/L
127 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Serum Glucose 4.6 3.9 - 5.6 mmol/L
128 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Serum Uric Acid 328 125 - 488 umol/L
129 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Calcium (EDTA) 2.43 2.07 - 2.64 mmol/L
130 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Phosphorus 1.26 0.71 - 1.65 mmol/L
131 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Total Protein 67 61 - 84 g/L
132 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Albumin-BCG 42 33 - 49 g/L
133 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Creatine Kinase 96 39 - 308 U/L
134 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
135 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
136 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Serum Bicarbonate 25.1 19.3 - 29.3 mmol/L
137 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
138 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CHEMISTRY PANEL Magnesium 0.87 0.66 - 1.07 mmol/L
139 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 99 mL/min/1.73m^2$No Ref Rng
140 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 FECAL COLLECTION D/T Stool Collection Date Y 12-May-2026
141 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 FECAL COLLECTION D/T Stool Collection Time Y 18:00
142 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 142 127 - 181 g/L
143 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.42 0.39 - 0.54
144 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.8 4.5 - 6.4 TI/L
145 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
146 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
147 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 79 - 96 fL
148 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL WBC 8.67 3.8 - 10.7 GI/L
149 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 5.93 1.96 - 7.23 GI/L
150 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.10 0.91 - 4.28 GI/L
151 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.49 0.12 - 0.92 GI/L
152 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.11 0 - 0.57 GI/L
153 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
154 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 68.4 40.5 - 75 %
155 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 24.3 15.4 - 48.5 %
156 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.7 2.6 - 10.1 %
157 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.3 0 - 6.8 %
158 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
159 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 343 140 - 400 GI/L
160 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
161 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 LIPID PANEL Direct HDL-C 4th Generation 2.02 H 1.03 - 1.53 mmol/L
162 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 LIPID PANEL Triglycerides (GPO) 1.21 0.62 - 3.69 mmol/L
163 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 LIPID PANEL Cholesterol (High Performance) 5.32 4.19 - 7.24 mmol/L
164 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 LIPID PANEL LDL Chol Friedewald 4th 2.75 0 - 3.34 mmol/L
165 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 PA1 EEA-2? Approved to use EEA-2? Yes
166 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 13-May-2026
167 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 08:05
168 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 13-May-2026
169 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 09:30
170 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 13-May-2026
171 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 08:05
172 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM09/STOOL PK COLL D/T Stool Collection Date Y 12-May-2026
173 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM09/STOOL PK COLL D/T Stool Collection Time Y 18:00
174 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 12-May-2026
175 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 18:00
176 CZ100012001 Male Induction Week 12 May 13, 2026 8:05 AM 6227933143 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
177 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 ANATOMICAL SITE Anatomical Site Y 30
178 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
179 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 BIOPSY FIXATIVE USED Fixative Used 10% NBF
180 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 13-May-2026
181 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 09:00
182 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
183 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 INFLAMED AREA Inflamed area? Yes
184 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
185 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
186 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 15-May-2026
187 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
188 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
189 CZ100012003 Male Biopsy R May 13, 2026 12:00 AM 6228252073 ULCERATED AREA Is biopsy site ulcerated? Yes
190 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 ALP<2XULN ALP<2XULN Criteria Met
191 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
192 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
193 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 AST>/=3XULN AST >/= 3 X ULN Criteria not met
194 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
195 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Total Bilirubin 11 3 - 21 umol/L
196 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.5 0 - 6.2 umol/L
197 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Alkaline Phosphatase 99 35 - 104 U/L
198 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL ALT (SGPT) 18 4 - 43 U/L
199 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL AST (SGOT) 29 8 - 40 U/L
200 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL GGT 23 5 - 50 U/L
201 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL LDH 181 53 - 234 U/L
202 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Urea Nitrogen 5.3 1.4 - 10.4 mmol/L
203 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 54 31 - 110 umol/L
204 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Serum Glucose 6.0 H 3.9 - 5.6 mmol/L
205 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Serum Uric Acid 293 149 - 446 umol/L
206 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Calcium (EDTA) 2.53 2.07 - 2.64 mmol/L
207 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Phosphorus 1.19 0.71 - 1.65 mmol/L
208 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Total Protein 79 60 - 80 g/L
209 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Albumin-BCG 46 33 - 46 g/L
210 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Creatine Kinase 143 26 - 192 U/L
211 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Serum Sodium 141 135 - 145 mmol/L
212 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Serum Potassium 4.6 3.5 - 5.2 mmol/L
213 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Serum Bicarbonate 22.3 19.3 - 29.3 mmol/L
214 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
215 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CHEMISTRY PANEL Magnesium 0.91 0.66 - 0.98 mmol/L
216 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 91 mL/min/1.73m^2$No Ref Rng
217 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 FECAL COLLECTION D/T Stool Collection Date Y 05-May-2026
218 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 FECAL COLLECTION D/T Stool Collection Time Y 18:00
219 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 145 115 - 158 g/L
220 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.44 0.34 - 0.48
221 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 3.9 - 5.5 TI/L
222 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL MCH 29 26 - 34 pg
223 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
224 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL MCV 88 80 - 100 fL
225 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL WBC 4.54 3.8 - 10.7 GI/L
226 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.11 1.96 - 7.23 GI/L
227 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.15 0.8 - 3 GI/L
228 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.23 0.12 - 0.92 GI/L
229 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.02 0 - 0.57 GI/L
230 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.02 0 - 0.2 GI/L
231 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 46.5 40.5 - 75 %
232 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 47.4 15.4 - 48.5 %
233 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.1 2.6 - 10.1 %
234 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 0.5 0 - 6.8 %
235 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
236 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 117 R L 130 - 394 GI/L
237 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 PA1 EEA-2? Approved to use EEA-2? Yes
238 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 06-May-2026
239 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 08:05
240 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 06-May-2026
241 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 09:05
242 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 06-May-2026
243 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 08:05
244 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 SM09/STOOL PK COLL D/T Stool Collection Date Y 05-May-2026
245 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 SM09/STOOL PK COLL D/T Stool Collection Time Y 18:00
246 CZ100012002 Female Induction Week 4 May 6, 2026 8:05 AM 6227933142 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
247 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
248 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
249 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 BIOPSY FIXATIVE USED Fixative Used 10% NBF
250 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 06-May-2026
251 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 07:20
252 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
253 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 INFLAMED AREA Inflamed area? Yes
254 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
255 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
256 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 08-May-2026
257 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
258 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
259 CZ100012001 Male Biopsy May 6, 2026 12:00 AM 6228252072 ULCERATED AREA Is biopsy site ulcerated? No
260 CZ100012003 Male Stool Pathogens Apr 29, 2026 7:55 AM 6227323213 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
261 CZ100012003 Male Stool Pathogens Apr 29, 2026 7:55 AM 6227323213 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
262 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Total Bilirubin 8 3 - 21 umol/L
263 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.0 0 - 6.2 umol/L
264 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Alkaline Phosphatase 115 40 - 129 U/L
265 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL ALT (SGPT) 22 5 - 48 U/L
266 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL AST (SGOT) 21 8 - 40 U/L
267 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL GGT 15 10 - 61 U/L
268 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL LDH 151 53 - 234 U/L
269 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Urea Nitrogen 5.4 1.4 - 8.6 mmol/L
270 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 88 40 - 119 umol/L
271 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Serum Glucose 5.4 3.9 - 5.6 mmol/L
272 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Serum Uric Acid 306 149 - 494 umol/L
273 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Calcium (EDTA) 2.39 2.07 - 2.64 mmol/L
274 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Phosphorus 0.90 0.71 - 1.65 mmol/L
275 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Total Protein 75 61 - 84 g/L
276 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Albumin-BCG 47 33 - 49 g/L
277 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Creatine Kinase 100 39 - 308 U/L
278 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
279 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Serum Potassium 4.8 3.5 - 5.2 mmol/L
280 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Serum Bicarbonate 21.5 19.3 - 29.3 mmol/L
281 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
282 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CHEMISTRY PANEL Magnesium 0.90 0.66 - 1.07 mmol/L
283 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 91 mL/min/1.73m^2$No Ref Rng
284 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
285 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 161 127 - 181 g/L
286 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.49 0.39 - 0.54
287 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.5 4.5 - 6.4 TI/L
288 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
289 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
290 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL MCV 89 79 - 96 fL
291 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL WBC 7.61 3.8 - 10.7 GI/L
292 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 5.63 1.96 - 7.23 GI/L
293 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.42 0.91 - 4.28 GI/L
294 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.38 0.12 - 0.92 GI/L
295 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.13 0 - 0.57 GI/L
296 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
297 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 74.0 40.5 - 75 %
298 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 18.7 15.4 - 48.5 %
299 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.0 2.6 - 10.1 %
300 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.7 0 - 6.8 %
301 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
302 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 242 140 - 400 GI/L
303 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
304 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
305 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
306 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
307 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
308 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
309 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
310 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 PA1 EEA-2? Approved to use EEA-2? Yes
311 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
312 CZ100012003 Male Screening Apr 29, 2026 7:55 AM 6228114610 SUBJECT HEIGHT (CM) Height (cm) Y 175 cm
313 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 ALP<2XULN ALP<2XULN Criteria Met
314 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
315 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
316 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 AST>/=3XULN AST >/= 3 X ULN Criteria not met
317 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
318 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Total Bilirubin 14 3 - 21 umol/L
319 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 4.5 0 - 6.2 umol/L
320 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Alkaline Phosphatase 102 35 - 104 U/L
321 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL ALT (SGPT) 17 4 - 43 U/L
322 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL AST (SGOT) 25 8 - 40 U/L
323 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL GGT 23 5 - 50 U/L
324 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL LDH 154 53 - 234 U/L
325 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Urea Nitrogen 4.3 1.4 - 10.4 mmol/L
326 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 53 31 - 110 umol/L
327 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Serum Glucose 6.3 H 3.9 - 5.6 mmol/L
328 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Serum Uric Acid 252 149 - 446 umol/L
329 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Calcium (EDTA) 2.50 2.07 - 2.64 mmol/L
330 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Phosphorus 1.16 0.71 - 1.65 mmol/L
331 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Total Protein 76 60 - 80 g/L
332 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Albumin-BCG 45 33 - 46 g/L
333 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Creatine Kinase 83 26 - 192 U/L
334 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Serum Sodium 140 135 - 145 mmol/L
335 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Serum Potassium 4.1 3.5 - 5.2 mmol/L
336 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Serum Bicarbonate 23.8 19.3 - 29.3 mmol/L
337 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
338 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CHEMISTRY PANEL Magnesium 0.94 0.66 - 0.98 mmol/L
339 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 91 mL/min/1.73m^2$No Ref Rng
340 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 FECAL COLLECTION D/T Stool Collection Date Y 23-Apr-2026
341 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 FECAL COLLECTION D/T Stool Collection Time Y 07:40
342 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 144 Result verified by repeat analysis 115 - 158 g/L
343 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.43 0.34 - 0.48
344 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 Result verified by repeat analysis 3.9 - 5.5 TI/L
345 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL MCH 29 Result verified by repeat analysis 26 - 34 pg
346 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
347 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL MCV 86 80 - 100 fL
348 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL WBC 3.47 L Result verified by repeat analysis 3.8 - 10.7 GI/L
349 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 1.78 L Result verified by repeat analysis 1.96 - 7.23 GI/L
350 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.46 0.8 - 3 GI/L
351 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.16 Result verified by repeat analysis 0.12 - 0.92 GI/L
352 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.04 Result verified by repeat analysis 0 - 0.57 GI/L
353 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 Result verified by repeat analysis 0 - 0.2 GI/L
354 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 51.4 Result verified by repeat analysis 40.5 - 75 %
355 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 42.2 Result verified by repeat analysis 15.4 - 48.5 %
356 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 4.5 Result verified by repeat analysis 2.6 - 10.1 %
357 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.0 Result verified by repeat analysis 0 - 6.8 %
358 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.9 Result verified by repeat analysis 0 - 2 %
359 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 118 L Result verified by repeat analysis 130 - 394 GI/L
360 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 PA1 EEA-2? Approved to use EEA-2? Yes
361 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 23-Apr-2026
362 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:40
363 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y
364 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y
365 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 23-Apr-2026
366 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:40
367 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 SM09/STOOL PK COLL D/T Stool Collection Date Y 23-Apr-2026
368 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 SM09/STOOL PK COLL D/T Stool Collection Time Y 07:40
369 CZ100012002 Female Induction Week 2 Apr 23, 2026 7:40 AM 6227323207 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
370 CZ100012001 Male Stool Pathogens Apr 22, 2026 7:00 AM 6228137359 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
371 CZ100012001 Male Stool Pathogens Apr 22, 2026 7:00 AM 6228137359 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
372 CZ100012001 Male Stool Pathogens Apr 22, 2026 7:00 AM 6228137359 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
373 CZ100012001 Male Stool Pathogens Apr 22, 2026 7:00 AM 6228137359 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
374 CZ100012001 Male Stool Pathogens Apr 22, 2026 7:00 AM 6228137359 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
375 CZ100012001 Male Stool Pathogens Apr 22, 2026 7:00 AM 6228137359 OVA AND PARASITES 2 Trichrome Smear No ova or parasites found
376 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Total Bilirubin 12 3 - 21 umol/L
377 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.7 0 - 6.2 umol/L
378 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Alkaline Phosphatase 96 35 - 104 U/L
379 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL ALT (SGPT) 17 4 - 43 U/L
380 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL AST (SGOT) 28 8 - 40 U/L
381 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL GGT 19 5 - 50 U/L
382 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL LDH Test cancelled: Hemolysis-test not performed
383 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Urea Nitrogen 5.3 1.4 - 10.4 mmol/L
384 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 56 31 - 110 umol/L
385 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Serum Glucose 6.2 R H 3.9 - 5.6 mmol/L
386 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Serum Uric Acid 284 149 - 446 umol/L
387 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Calcium (EDTA) 2.50 2.07 - 2.64 mmol/L
388 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Phosphorus 1.20 0.71 - 1.65 mmol/L
389 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Total Protein 78 60 - 80 g/L
390 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Albumin-BCG 46 33 - 46 g/L
391 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Creatine Kinase 113 26 - 192 U/L
392 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Serum Sodium 140 135 - 145 mmol/L
393 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Serum Potassium 4.9 3.5 - 5.2 mmol/L
394 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Serum Bicarbonate 24.0 19.3 - 29.3 mmol/L
395 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
396 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CHEMISTRY PANEL Magnesium 0.97 0.66 - 0.98 mmol/L
397 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 90 mL/min/1.73m^2$No Ref Rng
398 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 FECAL COLLECTION D/T Stool Collection Date Y 07-Apr-2026
399 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 FECAL COLLECTION D/T Stool Collection Time Y 18:00
400 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 143 115 - 158 g/L
401 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.44 0.34 - 0.48
402 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.1 3.9 - 5.5 TI/L
403 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL MCH 28 26 - 34 pg
404 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
405 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 80 - 100 fL
406 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL WBC 3.59 R L 3.8 - 10.7 GI/L
407 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 1.64 R L 1.96 - 7.23 GI/L
408 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.72 0.8 - 3 GI/L
409 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.19 0.12 - 0.92 GI/L
410 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.03 0 - 0.57 GI/L
411 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.02 0 - 0.2 GI/L
412 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 45.6 40.5 - 75 %
413 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 47.9 15.4 - 48.5 %
414 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.2 2.6 - 10.1 %
415 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 0.7 0 - 6.8 %
416 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
417 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 126 R L 130 - 394 GI/L
418 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
419 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 LIPID PANEL Direct HDL-C 4th Generation 2.07 R H 1.03 - 1.53 mmol/L
420 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 LIPID PANEL Triglycerides (GPO) 1.04 0.63 - 2.71 mmol/L
421 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 LIPID PANEL Cholesterol (High Performance) 4.56 R L 5.35 - 9.1 mmol/L
422 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 LIPID PANEL LDL Chol Friedewald 4th 2.01 0 - 3.34 mmol/L
423 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 PA1 EEA-2? Approved to use EEA-2? Yes
424 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 08-Apr-2026
425 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:10
426 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 08-Apr-2026
427 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 08:15
428 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 08-Apr-2026
429 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:10
430 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 07-Apr-2026
431 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 18:00
432 CZ100012002 Female Induction Week 0 Apr 8, 2026 7:10 AM 6228036554 SUBJECT HEIGHT (CM) Height (cm) Y 170 cm
433 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 ALP<2XULN ALP<2XULN Criteria Met
434 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
435 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
436 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 AST>/=3XULN AST >/= 3 X ULN Required testing unavailable
437 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Required testing unavailable
438 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
439 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas Test cancelled: Hemolysis-test not performed
440 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Alkaline Phosphatase 66 40 - 129 U/L
441 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL ALT (SGPT) 50 H 5 - 48 U/L
442 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL AST (SGOT) Test cancelled: Hemolysis-test not performed
443 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL GGT 25 10 - 61 U/L
444 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL LDH Test cancelled: Hemolysis-test not performed
445 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Urea Nitrogen 6.7 1.4 - 8.6 mmol/L
446 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 89 40 - 110 umol/L
447 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Serum Glucose 5.1 3.9 - 5.6 mmol/L
448 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Serum Uric Acid 302 125 - 488 umol/L
449 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Calcium (EDTA) 2.50 2.07 - 2.64 mmol/L
450 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Phosphorus 1.95 R H 0.71 - 1.65 mmol/L
451 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Total Protein 76 61 - 84 g/L
452 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Albumin-BCG 46 33 - 49 g/L
453 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Creatine Kinase 66 39 - 308 U/L
454 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
455 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Serum Potassium 4.9 3.5 - 5.2 mmol/L
456 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Serum Bicarbonate 24.8 19.3 - 29.3 mmol/L
457 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
458 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CHEMISTRY PANEL Magnesium 0.95 0.66 - 1.07 mmol/L
459 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 92 mL/min/1.73m^2$No Ref Rng
460 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 FECAL COLLECTION D/T Stool Collection Date Y 17-Mar-2026
461 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 FECAL COLLECTION D/T Stool Collection Time Y 18:00
462 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 154 127 - 181 g/L
463 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.47 0.39 - 0.54
464 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.2 4.5 - 6.4 TI/L
465 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
466 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
467 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL MCV 91 79 - 96 fL
468 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.77 3.8 - 10.7 GI/L
469 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 5.03 1.96 - 7.23 GI/L
470 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.25 0.91 - 4.28 GI/L
471 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.39 0.12 - 0.92 GI/L
472 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.07 0 - 0.57 GI/L
473 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
474 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 74.3 40.5 - 75 %
475 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 18.6 15.4 - 48.5 %
476 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.8 2.6 - 10.1 %
477 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.0 0 - 6.8 %
478 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
479 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 327 140 - 400 GI/L
480 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 PA1 EEA-2? Approved to use EEA-2? Yes
481 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 18-Mar-2026 R
482 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 18:00
483 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 18-Mar-2026 R
484 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 18:00
485 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 18-Mar-2026 R
486 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 18:00
487 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 SM09/STOOL PK COLL D/T Stool Collection Date Y 17-Mar-2026
488 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 SM09/STOOL PK COLL D/T Stool Collection Time Y 18:00
489 CZ100012001 Male Induction Week 4 Mar 18, 2026 7:05 AM 6227323210 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
490 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 ANATOMICAL SITE Anatomical Site Y 25 DISTANCE IN CM FROM ANAL VERGE
491 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
492 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 BIOPSY FIXATIVE USED Fixative Used 10% NBF
493 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 18-Mar-2026
494 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 09:30
495 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
496 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 INFLAMED AREA Inflamed area? Yes
497 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
498 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
499 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 20-Mar-2026
500 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
501 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
502 CZ100012002 Female Biopsy Mar 18, 2026 12:00 AM 6227323224 ULCERATED AREA Is biopsy site ulcerated? Yes
503 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 ALP<2XULN ALP<2XULN Required testing unavailable
504 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 ALT>/=3XULN ALT >/= 3 X ULN Required testing unavailable
505 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Required testing unavailable
506 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 AST>/=3XULN AST >/= 3 X ULN Required testing unavailable
507 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Required testing unavailable
508 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Total Bilirubin 18 3 - 21 umol/L
509 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas Test cancelled: Hemolysis-test not performed
510 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Alkaline Phosphatase Test cancelled: Hemolysis-test not performed
511 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL ALT (SGPT) Test cancelled: Hemolysis-test not performed
512 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL AST (SGOT) Test cancelled: Hemolysis-test not performed
513 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL GGT Test cancelled: Hemolysis-test not performed
514 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL LDH Test cancelled: Hemolysis-test not performed
515 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Urea Nitrogen 5.2 1.4 - 8.6 mmol/L
516 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 80 40 - 110 umol/L
517 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Serum Glucose 5.4 3.9 - 5.6 mmol/L
518 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Serum Uric Acid 276 125 - 488 umol/L
519 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Calcium (EDTA) 2.24 2.07 - 2.64 mmol/L
520 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Phosphorus Test cancelled: Hemolysis-test not performed
521 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Total Protein 71 61 - 84 g/L
522 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
523 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Creatine Kinase Test cancelled: Hemolysis-test not performed
524 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
525 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Serum Potassium Test cancelled: Hemolysis-test not performed
526 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Serum Bicarbonate 20.3 19.3 - 29.3 mmol/L
527 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
528 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CHEMISTRY PANEL Magnesium 0.88 0.66 - 1.07 mmol/L
529 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 105 mL/min/1.73m^2$No Ref Rng
530 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 FECAL COLLECTION D/T Stool Collection Date Y 03-Mar-2026
531 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 FECAL COLLECTION D/T Stool Collection Time Y 18:00 R
532 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 155 127 - 181 g/L
533 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.48 0.39 - 0.54
534 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.1 4.5 - 6.4 TI/L
535 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
536 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
537 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL MCV 93 79 - 96 fL
538 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.57 3.8 - 10.7 GI/L
539 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.08 1.96 - 7.23 GI/L
540 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.16 0.91 - 4.28 GI/L
541 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.26 0.12 - 0.92 GI/L
542 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.05 0 - 0.57 GI/L
543 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.02 0 - 0.2 GI/L
544 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 73.3 40.5 - 75 %
545 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 20.7 15.4 - 48.5 %
546 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 4.7 2.6 - 10.1 %
547 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 0.9 0 - 6.8 %
548 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
549 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 343 140 - 400 GI/L
550 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 PA1 EEA-2? Approved to use EEA-2? Yes
551 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 04-Mar-2026
552 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:00 R
553 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 04-Mar-2026
554 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 08:00
555 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 04-Mar-2026
556 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:00 R
557 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 SM09/STOOL PK COLL D/T Stool Collection Date Y 03-Mar-2026
558 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 SM09/STOOL PK COLL D/T Stool Collection Time Y 18:00 R
559 CZ100012001 Male Induction Week 2 Mar 4, 2026 7:00 AM 6227323208 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
560 CZ100012002 Female Stool Pathogens Mar 3, 2026 1:00 PM 6227323212 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
561 CZ100012002 Female Stool Pathogens Mar 3, 2026 1:00 PM 6227323212 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
562 CZ100012002 Female Stool Pathogens Mar 3, 2026 1:00 PM 6227323212 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
563 CZ100012002 Female Stool Pathogens Mar 3, 2026 1:00 PM 6227323212 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
564 CZ100012002 Female Stool Pathogens Mar 3, 2026 1:00 PM 6227323212 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
565 CZ100012002 Female Stool Pathogens Mar 3, 2026 1:00 PM 6227323212 OVA AND PARASITES 2 Trichrome Smear No ova or parasites found
566 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Total Bilirubin 10 3 - 21 umol/L
567 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.5 0 - 6.2 umol/L
568 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Alkaline Phosphatase 100 35 - 104 U/L
569 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL ALT (SGPT) 17 4 - 43 U/L
570 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL AST (SGOT) 24 8 - 40 U/L
571 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL GGT 27 5 - 50 U/L
572 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL LDH 120 53 - 234 U/L
573 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Urea Nitrogen 4.9 1.4 - 10.4 mmol/L
574 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 49 31 - 110 umol/L
575 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Serum Glucose 7.0 H 3.9 - 5.6 mmol/L
576 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Serum Uric Acid 233 149 - 446 umol/L
577 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Calcium (EDTA) 2.40 2.07 - 2.64 mmol/L
578 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Phosphorus 1.05 0.71 - 1.65 mmol/L
579 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Total Protein 75 60 - 80 g/L
580 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Albumin-BCG 45 33 - 46 g/L
581 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Creatine Kinase 101 26 - 192 U/L
582 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Serum Sodium 140 135 - 145 mmol/L
583 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Serum Potassium 3.9 3.5 - 5.2 mmol/L
584 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Serum Bicarbonate 22.1 19.3 - 29.3 mmol/L
585 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
586 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CHEMISTRY PANEL Magnesium 0.89 0.66 - 0.98 mmol/L
587 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 93 mL/min/1.73m^2$No Ref Rng
588 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y No
589 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
590 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 145 115 - 158 g/L
591 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.43 0.34 - 0.48
592 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 3.9 - 5.5 TI/L
593 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL MCH 29 26 - 34 pg
594 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
595 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL MCV 85 80 - 100 fL
596 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL WBC 3.95 3.8 - 10.7 GI/L
597 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 1.86 L 1.96 - 7.23 GI/L
598 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.81 0.8 - 3 GI/L
599 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.25 0.12 - 0.92 GI/L
600 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.02 0 - 0.57 GI/L
601 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.02 0 - 0.2 GI/L
602 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 47.1 40.5 - 75 %
603 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 45.7 15.4 - 48.5 %
604 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.3 2.6 - 10.1 %
605 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 0.4 0 - 6.8 %
606 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
607 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 150 130 - 394 GI/L
608 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
609 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
610 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
611 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
612 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
613 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
614 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
615 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 PA1 EEA-2? Approved to use EEA-2? Yes
616 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
617 CZ100012002 Female Screening Mar 2, 2026 7:00 AM 6227323204 SUBJECT HEIGHT (CM) Height (cm) Y 170 cm
618 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Total Bilirubin Test cancelled: Quantity not sufficient
619 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas Test cancelled: Quantity not sufficient
620 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Alkaline Phosphatase Test cancelled: Quantity not sufficient
621 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL ALT (SGPT) Test cancelled: Quantity not sufficient
622 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL AST (SGOT) Test cancelled: Quantity not sufficient
623 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL GGT Test cancelled: Quantity not sufficient
624 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL LDH Test cancelled: Quantity not sufficient
625 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Urea Nitrogen Test cancelled: Quantity not sufficient
626 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp Test cancelled: Quantity not sufficient
627 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Serum Glucose Test cancelled: Quantity not sufficient
628 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Serum Uric Acid Test cancelled: Quantity not sufficient
629 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Calcium (EDTA) Test cancelled: Quantity not sufficient
630 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Phosphorus Test cancelled: Quantity not sufficient
631 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Total Protein Test cancelled: Quantity not sufficient
632 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Albumin-BCG Test cancelled: Quantity not sufficient
633 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Creatine Kinase Test cancelled: Quantity not sufficient
634 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Serum Sodium Test cancelled: Quantity not sufficient
635 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Serum Potassium Test cancelled: Quantity not sufficient
636 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Serum Bicarbonate Test cancelled: Quantity not sufficient
637 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Serum Chloride Test cancelled: Quantity not sufficient
638 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CHEMISTRY PANEL Magnesium Test cancelled: Quantity not sufficient
639 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 CKD-EPI 2021 CKD-EPI 2021 Without Race Required testing unavailable mL/min/1.73m^2$No Ref Rng
640 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 FECAL COLLECTION D/T Stool Collection Date Y 18-Feb-2026
641 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 FECAL COLLECTION D/T Stool Collection Time Y 18:00
642 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 140 127 - 181 g/L
643 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.42 0.39 - 0.54
644 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.7 4.5 - 6.4 TI/L
645 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
646 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
647 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL MCV 91 79 - 96 fL
648 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL WBC 8.88 3.8 - 10.7 GI/L
649 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 5.46 1.96 - 7.23 GI/L
650 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.78 0.91 - 4.28 GI/L
651 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.47 0.12 - 0.92 GI/L
652 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.14 0 - 0.57 GI/L
653 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
654 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 61.4 40.5 - 75 %
655 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 31.2 15.4 - 48.5 %
656 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.3 2.6 - 10.1 %
657 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.6 0 - 6.8 %
658 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
659 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 330 140 - 400 GI/L
660 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
661 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 LIPID PANEL Direct HDL-C 4th Generation Test cancelled: Quantity not sufficient
662 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 LIPID PANEL Triglycerides (GPO) Test cancelled: Quantity not sufficient
663 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 LIPID PANEL Cholesterol (High Performance) Test cancelled: Quantity not sufficient
664 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 LIPID PANEL LDL Chol Friedewald 4th Required testing unavailable 0 - 3.34 mmol/L
665 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 19-Feb-2026
666 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 07:20
667 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 19-Feb-2026
668 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 08:50
669 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 19-Feb-2026
670 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 07:20
671 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 18-Feb-2026
672 CZ100012001 Male Induction Week 0 Feb 19, 2026 7:20 AM 6227323205 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 18:00
673 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 ANATOMICAL SITE Anatomical Site Y 30
674 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
675 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 BIOPSY FIXATIVE USED Fixative Used 10% NBF
676 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 05-Feb-2026
677 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 08:30
678 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
679 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 INFLAMED AREA Inflamed area? Yes
680 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
681 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
682 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 07-Feb-2026
683 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
684 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
685 CZ100012001 Male Biopsy R Feb 5, 2026 12:00 AM 6227323223 ULCERATED AREA Is biopsy site ulcerated? Yes
686 CZ100012001 Male Stool Pathogens R Jan 28, 2026 6:00 AM 6227323211 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
687 CZ100012001 Male Stool Pathogens R Jan 28, 2026 6:00 AM 6227323211 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
688 CZ100012001 Male Stool Pathogens R Jan 28, 2026 6:00 AM 6227323211 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
689 CZ100012001 Male Stool Pathogens R Jan 28, 2026 6:00 AM 6227323211 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
690 CZ100012001 Male Stool Pathogens R Jan 28, 2026 6:00 AM 6227323211 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
691 CZ100012001 Male Stool Pathogens R Jan 28, 2026 6:00 AM 6227323211 OVA AND PARASITES 2 Trichrome Smear No ova or parasites found
692 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
693 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.4 0 - 6.2 umol/L
694 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Alkaline Phosphatase 61 40 - 129 U/L
695 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL ALT (SGPT) 23 5 - 48 U/L
696 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
697 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL GGT 24 10 - 61 U/L
698 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL LDH 146 53 - 234 U/L
699 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Urea Nitrogen 3.9 1.4 - 8.6 mmol/L
700 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 79 40 - 110 umol/L
701 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Serum Glucose 5.5 3.9 - 5.6 mmol/L
702 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Serum Uric Acid 338 125 - 488 umol/L
703 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Calcium (EDTA) 2.37 2.07 - 2.64 mmol/L
704 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Phosphorus 0.48 LT Result verified by repeat analysis 0.71 - 1.65 mmol/L
705 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Total Protein 69 61 - 84 g/L
706 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
707 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Creatine Kinase 60 39 - 308 U/L
708 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
709 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Serum Potassium 4.6 3.5 - 5.2 mmol/L
710 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Serum Bicarbonate 25.1 19.3 - 29.3 mmol/L
711 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
712 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CHEMISTRY PANEL Magnesium 0.92 0.66 - 1.07 mmol/L
713 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 CKD-EPI 2021 CKD-EPI 2021 Without Race 106 mL/min/1.73m^2$No Ref Rng
714 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
715 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 151 127 - 181 g/L
716 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.45 0.39 - 0.54
717 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4.5 - 6.4 TI/L
718 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL MCH 30 26 - 34 pg
719 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
720 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL MCV 91 79 - 96 fL
721 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL WBC 4.92 3.8 - 10.7 GI/L
722 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.40 1.96 - 7.23 GI/L
723 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.00 0.91 - 4.28 GI/L
724 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.27 0.12 - 0.92 GI/L
725 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.15 0 - 0.57 GI/L
726 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.10 0 - 0.2 GI/L
727 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 69.1 40.5 - 75 %
728 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 20.2 15.4 - 48.5 %
729 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.6 2.6 - 10.1 %
730 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.1 0 - 6.8 %
731 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 2.0 0 - 2 %
732 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 309 140 - 400 GI/L
733 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
734 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEPATITIS B SURFACE AB NON-US Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
735 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
736 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
737 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
738 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
739 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
740 CZ100012001 Male Screening Jan 22, 2026 8:00 AM 6227323203 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
@@ -0,0 +1,4 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100092001 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Apr 2, 2026 6:15 AM",6227323340,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
CZ100092002 - null,,,,Female,SCRNSTOOL Stool Pathogens,"Apr 20, 2026 6:10 AM",6227323341,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100092001 - null Female SCRNSTOOL Stool Pathogens Apr 2, 2026 6:15 AM 6227323340 STOOL CULTURE Stool Final Report No enteric pathogens isolated
4 CZ100092002 - null Female SCRNSTOOL Stool Pathogens Apr 20, 2026 6:10 AM 6227323341 STOOL CULTURE Stool Final Report No enteric pathogens isolated
@@ -0,0 +1,306 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.3,,,,,0 - 6.2,umol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Alkaline Phosphatase,,53,,,,,35 - 104,U/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,4 - 43,U/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,GGT,,16,,,,,4 - 49,U/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,67,,,,,31 - 101,umol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Serum Glucose,,4.5,,,,,3.9 - 5.6,mmol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Serum Uric Acid,,184,,,,,149 - 446,umol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Calcium (EDTA),,2.55,,,,,2.07 - 2.64,mmol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Albumin-BCG,,49,,,,,33 - 49,g/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Creatine Kinase,,98,,,,,26 - 192,U/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Serum Bicarbonate,,23.5,,,,,19.3 - 29.3,mmol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,CHEMISTRY PANEL,Magnesium,,0.84,,,,,0.66 - 1.07,mmol/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,FECAL COLLECTION D/T,Stool Collection Date,Y,04-Jun-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,FECAL COLLECTION D/T,Stool Collection Time,Y,06:30,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,116 - 164,g/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.37,,,,,3.8 - 10.7,GI/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.46,,,,,1.96 - 7.23,GI/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.53,,,,,0.91 - 4.28,GI/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.25,,,,,0.12 - 0.92,GI/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.0,,,,,40.5 - 75,%
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.1,,,,,15.4 - 48.5,%
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.0,,,,,2.6 - 10.1,%
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.6,,,,,0 - 6.8,%
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,214,,,,,140 - 400,GI/L
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,PA1 EEA-2?,Approved to use EEA-2?,,,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,04-Jun-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:50,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,04-Jun-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:10,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,04-Jun-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:50,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,04-Jun-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:30,,,,,,
CZ100092001,,,,,Female,Induction Week 4,,"Jun 4, 2026 9:50 AM",6227323337,SUBJECT HEIGHT (CM),Height (cm),Y,,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Total Bilirubin,,17,,,,,3 - 21,umol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,5.0,,,,,0 - 6.2,umol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,35 - 104,U/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,GGT,,15,,,,,4 - 49,U/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,LDH,,154,,,,,53 - 234,U/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Urea Nitrogen,,3.4,,,,,1.4 - 8.6,mmol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,31 - 101,umol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Glucose,,4.6,,,,,3.9 - 5.6,mmol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Uric Acid,,196,,,,,149 - 446,umol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.07 - 2.64,mmol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Phosphorus,,1.10,,,,,0.71 - 1.65,mmol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Total Protein,,73,,,,,61 - 84,g/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,26 - 192,U/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.66 - 1.07,mmol/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,86,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,FECAL COLLECTION D/T,Stool Collection Date,Y,19-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,FECAL COLLECTION D/T,Stool Collection Time,Y,06:20,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.4,,,,,4.1 - 5.6,TI/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,32,,,,,26 - 34,pg
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.57,,,,,3.8 - 10.7,GI/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.33,,,,,1.96 - 7.23,GI/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.77,,,,,0.91 - 4.28,GI/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,,0 - 0.2,GI/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.9,,,,,40.5 - 75,%
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.9,,,,,15.4 - 48.5,%
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.4,,,,,2.6 - 10.1,%
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,,0 - 6.8,%
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,%
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,258,,,,,140 - 400,GI/L
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,19-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:50,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,19-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:55,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,19-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:50,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,19-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:20,,,,,,
CZ100092001,,,,,Female,Induction Week 2,,"May 19, 2026 10:50 AM",6227323335,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.5,,,,,0 - 6.2,umol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,35 - 104,U/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,4 - 43,U/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,GGT,,13,,,,,4 - 49,U/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,LDH,,152,,,,,53 - 234,U/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Urea Nitrogen,,5.1,,,,,1.4 - 8.6,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,62,,,,,31 - 101,umol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Glucose,,4.7,,,,,3.9 - 5.6,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Uric Acid,,178,,,,,149 - 446,umol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Calcium (EDTA),,2.44,,,,,2.07 - 2.64,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Creatine Kinase,,87,,,,,26 - 192,U/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Bicarbonate,,21.5,,,,,19.3 - 29.3,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CHEMISTRY PANEL,Magnesium,,0.94,,,,,0.66 - 1.07,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,105,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,FECAL COLLECTION D/T,Stool Collection Time,Y,06:30,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,140,,,,,116 - 164,g/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.41,,,,,0.34 - 0.48,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4.1 - 5.6,TI/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.60,,,,,3.8 - 10.7,GI/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.94,,,,,1.96 - 7.23,GI/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.22,,,,,0.91 - 4.28,GI/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.9,,,,,40.5 - 75,%
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.5,,,,,15.4 - 48.5,%
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,%
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,%
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,207,,,,,140 - 400,GI/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,Direct HDL-C 4th Generation,,1.70,,H,,,1.03 - 1.53,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,Triglycerides (GPO),,0.59,,,,,0.59 - 2.96,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,Cholesterol (High Performance),,4.49,,,,,4.42 - 7.53,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,LIPID PANEL,LDL Chol Friedewald 4th,,2.52,,,,,0 - 3.34,mmol/L
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,PA1 EEA-2?,Approved to use EEA-2?,,No,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,11:30,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,05-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,12:45,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,11:30,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,06:30,,,,,,
CZ100092001,,,,,Female,Induction Week 0,,"May 5, 2026 11:30 AM",6227323334,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100092002,,,,,Female,TB Testing,,"May 5, 2026 9:00 AM",6227323348,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,ANATOMICAL SITE,Anatomical Site,Y,15-20cm from anal verge,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,24-Apr-2026,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,11:09,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,12:00,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,29-Apr-2026,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100092001,,,,,Female,Biopsy,,"Apr 24, 2026 12:00 AM",6227323351,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,,
CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100092002,,,,,Female,Stool Pathogens,,"Apr 20, 2026 6:10 AM",6227323341,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Alkaline Phosphatase,,56,,,,,35 - 104,U/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,AST (SGOT),,25,,,,,8 - 40,U/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,GGT,,10,,,,,4 - 49,U/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,LDH,,159,,,,,53 - 234,U/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Urea Nitrogen,,6.1,,,,,1.4 - 8.6,mmol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,90,,,,,31 - 101,umol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Uric Acid,,268,,,,,149 - 446,umol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Total Protein,,70,,,,,61 - 84,g/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Albumin-BCG,,46,,,,,33 - 49,g/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Creatine Kinase,,176,,,,,26 - 192,U/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Potassium,,4.6,,,,,3.5 - 5.2,mmol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Bicarbonate,,27.2,,,,,19.3 - 29.3,mmol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CHEMISTRY PANEL,Magnesium,,0.93,,,,,0.66 - 1.07,mmol/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,65,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,138,,,,,116 - 164,g/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,32,,,,,26 - 34,pg
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 98,fL
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.05,,,,,3.8 - 10.7,GI/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.87,,L,,,1.96 - 7.23,GI/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.72,,,,,0.91 - 4.28,GI/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.29,,,,,0.12 - 0.92,GI/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,46.1,,,,,40.5 - 75,%
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,42.6,,,,,15.4 - 48.5,%
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.2,,,,,2.6 - 10.1,%
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,%
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,%
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,216,,,,,140 - 400,GI/L
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Positive,,RX,,Result verified by repeat analysis,Normal=Negative,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,SERUM BETA HCG,"B-hCG, Quantitative",,0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive,
CZ100092002,,,,,Female,Screening,,"Apr 16, 2026 12:00 PM",6227323332,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100092001,,,,,Female,Stool Pathogens,,"Apr 2, 2026 6:15 AM",6227323340,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Alkaline Phosphatase,,56,,,,,35 - 104,U/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,4 - 43,U/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,GGT,,12,,,,,4 - 49,U/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,LDH,,137,,,,,53 - 234,U/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Urea Nitrogen,,2.7,,,,,1.4 - 8.6,mmol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Glucose,,5.2,,,,,3.9 - 5.6,mmol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Uric Acid,,207,,,,,125 - 428,umol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Calcium (EDTA),,2.43,,,,,2.07 - 2.64,mmol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Phosphorus,,1.15,,,,,0.71 - 1.65,mmol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Creatine Kinase,,81,,,,,26 - 192,U/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Bicarbonate,,23.7,,,,,19.3 - 29.3,mmol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CHEMISTRY PANEL,Magnesium,,0.91,,,,,0.66 - 1.07,mmol/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,107,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,147,,,,,116 - 164,g/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,4.1 - 5.6,TI/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,31,,,,,26 - 34,pg
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,79 - 98,fL
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.74,,,,,3.8 - 10.7,GI/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.76,,,,,1.96 - 7.23,GI/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.18,,,,,0.91 - 4.28,GI/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.46,,,,,0.12 - 0.92,GI/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.26,,,,,0 - 0.57,GI/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.5,,,,,40.5 - 75,%
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,20.6,,,,,15.4 - 48.5,%
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.9,,,,,2.6 - 10.1,%
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.5,,,,,0 - 6.8,%
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,%
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,263,,,,,140 - 400,GI/L
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,PA1 EEA-2?,Approved to use EEA-2?,,No,,,,,,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive,
CZ100092001,,,,,Female,Screening,,"Mar 31, 2026 8:30 AM",6227323330,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 ALP<2XULN ALP<2XULN Criteria Met
4 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
5 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
6 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 AST>/=3XULN AST >/= 3 X ULN Criteria not met
7 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
8 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Total Bilirubin 12 3 - 21 umol/L
9 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 4.3 0 - 6.2 umol/L
10 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Alkaline Phosphatase 53 35 - 104 U/L
11 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL ALT (SGPT) 20 4 - 43 U/L
12 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL AST (SGOT) 24 8 - 40 U/L
13 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL GGT 16 4 - 49 U/L
14 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL LDH 150 53 - 234 U/L
15 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Urea Nitrogen 4.0 1.4 - 8.6 mmol/L
16 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 67 31 - 101 umol/L
17 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Serum Glucose 4.5 3.9 - 5.6 mmol/L
18 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Serum Uric Acid 184 149 - 446 umol/L
19 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Calcium (EDTA) 2.55 2.07 - 2.64 mmol/L
20 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Phosphorus 1.17 0.71 - 1.65 mmol/L
21 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Total Protein 71 61 - 84 g/L
22 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Albumin-BCG 49 33 - 49 g/L
23 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Creatine Kinase 98 26 - 192 U/L
24 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
25 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Serum Potassium 4.5 3.5 - 5.2 mmol/L
26 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Serum Bicarbonate 23.5 19.3 - 29.3 mmol/L
27 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
28 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 CHEMISTRY PANEL Magnesium 0.84 0.66 - 1.07 mmol/L
29 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 FECAL COLLECTION D/T Stool Collection Date Y 04-Jun-2026
30 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 FECAL COLLECTION D/T Stool Collection Time Y 06:30
31 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 138 116 - 164 g/L
32 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.41 0.34 - 0.48
33 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.5 4.1 - 5.6 TI/L
34 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL MCH 31 26 - 34 pg
35 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
36 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 79 - 98 fL
37 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.37 3.8 - 10.7 GI/L
38 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.46 1.96 - 7.23 GI/L
39 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.53 0.91 - 4.28 GI/L
40 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.25 0.12 - 0.92 GI/L
41 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.10 0 - 0.57 GI/L
42 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
43 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 70.0 40.5 - 75 %
44 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 24.1 15.4 - 48.5 %
45 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 4.0 2.6 - 10.1 %
46 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.6 0 - 6.8 %
47 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
48 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 214 140 - 400 GI/L
49 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 PA1 EEA-2? Approved to use EEA-2?
50 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 04-Jun-2026
51 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 09:50
52 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 04-Jun-2026
53 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 11:10
54 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 04-Jun-2026
55 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 09:50
56 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 SM09/STOOL PK COLL D/T Stool Collection Date Y 04-Jun-2026
57 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 SM09/STOOL PK COLL D/T Stool Collection Time Y 06:30
58 CZ100092001 Female Induction Week 4 Jun 4, 2026 9:50 AM 6227323337 SUBJECT HEIGHT (CM) Height (cm) Y
59 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 ALP<2XULN ALP<2XULN Criteria Met
60 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
61 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
62 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 AST>/=3XULN AST >/= 3 X ULN Criteria not met
63 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
64 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Total Bilirubin 17 3 - 21 umol/L
65 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 5.0 0 - 6.2 umol/L
66 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Alkaline Phosphatase 60 35 - 104 U/L
67 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL ALT (SGPT) 18 4 - 43 U/L
68 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL AST (SGOT) 21 8 - 40 U/L
69 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL GGT 15 4 - 49 U/L
70 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL LDH 154 53 - 234 U/L
71 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Urea Nitrogen 3.4 1.4 - 8.6 mmol/L
72 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 73 31 - 101 umol/L
73 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Serum Glucose 4.6 3.9 - 5.6 mmol/L
74 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Serum Uric Acid 196 149 - 446 umol/L
75 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Calcium (EDTA) 2.47 2.07 - 2.64 mmol/L
76 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Phosphorus 1.10 0.71 - 1.65 mmol/L
77 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Total Protein 73 61 - 84 g/L
78 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Albumin-BCG 48 33 - 49 g/L
79 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Creatine Kinase 100 26 - 192 U/L
80 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Serum Sodium 136 132 - 147 mmol/L
81 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
82 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Serum Bicarbonate 22.8 19.3 - 29.3 mmol/L
83 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Serum Chloride 100 94 - 112 mmol/L
84 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CHEMISTRY PANEL Magnesium 0.81 0.66 - 1.07 mmol/L
85 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 86 mL/min/1.73m^2$No Ref Rng
86 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 FECAL COLLECTION D/T Stool Collection Date Y 19-May-2026
87 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 FECAL COLLECTION D/T Stool Collection Time Y 06:20
88 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 137 116 - 164 g/L
89 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.40 0.34 - 0.48
90 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.4 4.1 - 5.6 TI/L
91 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL MCH 32 26 - 34 pg
92 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
93 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL MCV 91 79 - 98 fL
94 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.57 3.8 - 10.7 GI/L
95 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.33 1.96 - 7.23 GI/L
96 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.77 0.91 - 4.28 GI/L
97 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.29 0.12 - 0.92 GI/L
98 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.12 0 - 0.57 GI/L
99 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.06 0 - 0.2 GI/L
100 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 65.9 40.5 - 75 %
101 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 26.9 15.4 - 48.5 %
102 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 4.4 2.6 - 10.1 %
103 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.8 0 - 6.8 %
104 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.9 0 - 2 %
105 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 258 140 - 400 GI/L
106 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 PA1 EEA-2? Approved to use EEA-2? Yes
107 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 19-May-2026
108 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 10:50
109 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 19-May-2026
110 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 11:55
111 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 19-May-2026
112 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 10:50
113 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 SM09/STOOL PK COLL D/T Stool Collection Date Y 19-May-2026
114 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 SM09/STOOL PK COLL D/T Stool Collection Time Y 06:20
115 CZ100092001 Female Induction Week 2 May 19, 2026 10:50 AM 6227323335 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
116 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Total Bilirubin 12 3 - 21 umol/L
117 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 4.5 0 - 6.2 umol/L
118 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Alkaline Phosphatase 55 35 - 104 U/L
119 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL ALT (SGPT) 15 4 - 43 U/L
120 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL AST (SGOT) 18 8 - 40 U/L
121 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL GGT 13 4 - 49 U/L
122 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL LDH 152 53 - 234 U/L
123 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Urea Nitrogen 5.1 1.4 - 8.6 mmol/L
124 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 62 31 - 101 umol/L
125 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Serum Glucose 4.7 3.9 - 5.6 mmol/L
126 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Serum Uric Acid 178 149 - 446 umol/L
127 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Calcium (EDTA) 2.44 2.07 - 2.64 mmol/L
128 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Phosphorus 1.09 0.71 - 1.65 mmol/L
129 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Total Protein 71 61 - 84 g/L
130 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Albumin-BCG 47 33 - 49 g/L
131 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Creatine Kinase 87 26 - 192 U/L
132 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Serum Sodium 142 132 - 147 mmol/L
133 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Serum Potassium 4.6 3.5 - 5.2 mmol/L
134 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Serum Bicarbonate 21.5 19.3 - 29.3 mmol/L
135 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
136 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CHEMISTRY PANEL Magnesium 0.94 0.66 - 1.07 mmol/L
137 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 105 mL/min/1.73m^2$No Ref Rng
138 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 FECAL COLLECTION D/T Stool Collection Date Y 05-May-2026
139 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 FECAL COLLECTION D/T Stool Collection Time Y 06:30
140 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 140 116 - 164 g/L
141 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.41 0.34 - 0.48
142 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.5 4.1 - 5.6 TI/L
143 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL MCH 31 26 - 34 pg
144 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
145 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 79 - 98 fL
146 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL WBC 4.60 3.8 - 10.7 GI/L
147 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.94 1.96 - 7.23 GI/L
148 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.22 0.91 - 4.28 GI/L
149 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.32 0.12 - 0.92 GI/L
150 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.10 0 - 0.57 GI/L
151 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.02 0 - 0.2 GI/L
152 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 63.9 40.5 - 75 %
153 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 26.5 15.4 - 48.5 %
154 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.9 2.6 - 10.1 %
155 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.2 0 - 6.8 %
156 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
157 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 207 140 - 400 GI/L
158 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
159 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 LIPID PANEL Direct HDL-C 4th Generation 1.70 H 1.03 - 1.53 mmol/L
160 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 LIPID PANEL Triglycerides (GPO) 0.59 0.59 - 2.96 mmol/L
161 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 LIPID PANEL Cholesterol (High Performance) 4.49 4.42 - 7.53 mmol/L
162 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 LIPID PANEL LDL Chol Friedewald 4th 2.52 0 - 3.34 mmol/L
163 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 PA1 EEA-2? Approved to use EEA-2? No
164 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 05-May-2026
165 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 11:30
166 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 05-May-2026
167 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 12:45
168 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 05-May-2026
169 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 11:30
170 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 05-May-2026
171 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 06:30
172 CZ100092001 Female Induction Week 0 May 5, 2026 11:30 AM 6227323334 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
173 CZ100092002 Female TB Testing May 5, 2026 9:00 AM 6227323348 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
174 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 ANATOMICAL SITE Anatomical Site Y 15-20cm from anal verge
175 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
176 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 BIOPSY FIXATIVE USED Fixative Used 10% NBF
177 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 24-Apr-2026
178 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 11:09
179 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
180 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 INFLAMED AREA Inflamed area? Yes
181 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
182 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 12:00
183 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 29-Apr-2026
184 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
185 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
186 CZ100092001 Female Biopsy Apr 24, 2026 12:00 AM 6227323351 ULCERATED AREA Is biopsy site ulcerated? No
187 CZ100092002 Female Stool Pathogens Apr 20, 2026 6:10 AM 6227323341 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
188 CZ100092002 Female Stool Pathogens Apr 20, 2026 6:10 AM 6227323341 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
189 CZ100092002 Female Stool Pathogens Apr 20, 2026 6:10 AM 6227323341 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
190 CZ100092002 Female Stool Pathogens Apr 20, 2026 6:10 AM 6227323341 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
191 CZ100092002 Female Stool Pathogens Apr 20, 2026 6:10 AM 6227323341 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
192 CZ100092002 Female Stool Pathogens Apr 20, 2026 6:10 AM 6227323341 OVA AND PARASITES 2 Trichrome Smear No ova or parasites found
193 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Total Bilirubin 9 3 - 21 umol/L
194 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.3 0 - 6.2 umol/L
195 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Alkaline Phosphatase 56 35 - 104 U/L
196 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL ALT (SGPT) 11 4 - 43 U/L
197 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL AST (SGOT) 25 8 - 40 U/L
198 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL GGT 10 4 - 49 U/L
199 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL LDH 159 53 - 234 U/L
200 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Urea Nitrogen 6.1 1.4 - 8.6 mmol/L
201 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 90 31 - 101 umol/L
202 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Serum Glucose 4.9 3.9 - 5.6 mmol/L
203 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Serum Uric Acid 268 149 - 446 umol/L
204 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Calcium (EDTA) 2.43 2.07 - 2.64 mmol/L
205 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Phosphorus 1.14 0.71 - 1.65 mmol/L
206 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Total Protein 70 61 - 84 g/L
207 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Albumin-BCG 46 33 - 49 g/L
208 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Creatine Kinase 176 26 - 192 U/L
209 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
210 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Serum Potassium 4.6 3.5 - 5.2 mmol/L
211 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Serum Bicarbonate 27.2 19.3 - 29.3 mmol/L
212 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
213 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CHEMISTRY PANEL Magnesium 0.93 0.66 - 1.07 mmol/L
214 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 65 mL/min/1.73m^2$No Ref Rng
215 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y Yes
216 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
217 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 138 116 - 164 g/L
218 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.39 0.34 - 0.48
219 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.3 4.1 - 5.6 TI/L
220 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL MCH 32 26 - 34 pg
221 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
222 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL MCV 90 79 - 98 fL
223 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL WBC 4.05 3.8 - 10.7 GI/L
224 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 1.87 L 1.96 - 7.23 GI/L
225 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.72 0.91 - 4.28 GI/L
226 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.29 0.12 - 0.92 GI/L
227 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.14 0 - 0.57 GI/L
228 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
229 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 46.1 40.5 - 75 %
230 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 42.6 15.4 - 48.5 %
231 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.2 2.6 - 10.1 %
232 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.4 0 - 6.8 %
233 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.6 0 - 2 %
234 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 216 140 - 400 GI/L
235 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
236 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
237 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
238 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
239 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
240 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
241 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
242 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 PA1 EEA-2? Approved to use EEA-2? Yes
243 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Positive RX Result verified by repeat analysis Normal=Negative
244 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 SERUM BETA HCG B-hCG, Qualitative Negative Ref Rng: Negative
245 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 SERUM BETA HCG B-hCG, Quantitative 0.6 Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive
246 CZ100092002 Female Screening Apr 16, 2026 12:00 PM 6227323332 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
247 CZ100092001 Female Stool Pathogens Apr 2, 2026 6:15 AM 6227323340 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
248 CZ100092001 Female Stool Pathogens Apr 2, 2026 6:15 AM 6227323340 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
249 CZ100092001 Female Stool Pathogens Apr 2, 2026 6:15 AM 6227323340 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
250 CZ100092001 Female Stool Pathogens Apr 2, 2026 6:15 AM 6227323340 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
251 CZ100092001 Female Stool Pathogens Apr 2, 2026 6:15 AM 6227323340 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
252 CZ100092001 Female Stool Pathogens Apr 2, 2026 6:15 AM 6227323340 OVA AND PARASITES 2 Trichrome Smear No ova or parasites found
253 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Total Bilirubin 9 3 - 21 umol/L
254 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.4 0 - 6.2 umol/L
255 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Alkaline Phosphatase 56 35 - 104 U/L
256 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL ALT (SGPT) 15 4 - 43 U/L
257 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
258 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL GGT 12 4 - 49 U/L
259 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL LDH 137 53 - 234 U/L
260 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Urea Nitrogen 2.7 1.4 - 8.6 mmol/L
261 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 58 31 - 101 umol/L
262 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Serum Glucose 5.2 3.9 - 5.6 mmol/L
263 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Serum Uric Acid 207 125 - 428 umol/L
264 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Calcium (EDTA) 2.43 2.07 - 2.64 mmol/L
265 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Phosphorus 1.15 0.71 - 1.65 mmol/L
266 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Total Protein 67 61 - 84 g/L
267 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Albumin-BCG 44 33 - 49 g/L
268 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Creatine Kinase 81 26 - 192 U/L
269 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
270 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Serum Potassium 4.3 3.5 - 5.2 mmol/L
271 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Serum Bicarbonate 23.7 19.3 - 29.3 mmol/L
272 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
273 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CHEMISTRY PANEL Magnesium 0.91 0.66 - 1.07 mmol/L
274 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 107 mL/min/1.73m^2$No Ref Rng
275 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y Yes
276 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
277 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 147 116 - 164 g/L
278 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.43 0.34 - 0.48
279 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.7 4.1 - 5.6 TI/L
280 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL MCH 31 26 - 34 pg
281 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
282 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL MCV 91 79 - 98 fL
283 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.74 3.8 - 10.7 GI/L
284 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.76 1.96 - 7.23 GI/L
285 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.18 0.91 - 4.28 GI/L
286 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.46 0.12 - 0.92 GI/L
287 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.26 0 - 0.57 GI/L
288 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.09 0 - 0.2 GI/L
289 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 65.5 40.5 - 75 %
290 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 20.6 15.4 - 48.5 %
291 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.9 2.6 - 10.1 %
292 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 4.5 0 - 6.8 %
293 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.5 0 - 2 %
294 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 263 140 - 400 GI/L
295 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
296 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
297 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
298 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
299 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
300 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
301 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
302 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 PA1 EEA-2? Approved to use EEA-2? No
303 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
304 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 SERUM BETA HCG B-hCG, Qualitative Negative Ref Rng: Negative
305 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 SERUM BETA HCG B-hCG, Quantitative <0.6 Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive
306 CZ100092001 Female Screening Mar 31, 2026 8:30 AM 6227323330 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
@@ -0,0 +1,3 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100201001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Apr 13, 2026 6:00 AM",6227993971,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100201001 - null Male SCRNSTOOL Stool Pathogens Apr 13, 2026 6:00 AM 6227993971 STOOL CULTURE Stool Final Report No enteric pathogens isolated
@@ -0,0 +1,185 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Alkaline Phosphatase,,286,,,,,82 - 331,U/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,ALT (SGPT),,32,,,,,6 - 43,U/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,AST (SGOT),,44,,H,,,10 - 40,U/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,GGT,,20,,,,,0 - 51,U/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,LDH,,215,,,,,105 - 235,U/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,45,,,,,23 - 83,umol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Serum Glucose,,4.2,,,,,3.9 - 5.6,mmol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Serum Uric Acid,,310,,,,,184 - 416,umol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.1 - 2.57,mmol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Phosphorus,,1.54,,,,,0.71 - 1.65,mmol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Total Protein,,79,,,,,61 - 84,g/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Albumin-BCG,,40,,,,,29 - 47,g/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Creatine Kinase,,86,,,,,18 - 363,U/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Serum Bicarbonate,,20.2,,,,,19.3 - 29.3,mmol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.7 - 0.9,mmol/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,CRP COPY,C Reactive Protein COPY,,2.3,,H,,,0.4 - 2,mg/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,FECAL CALPROTECTIN COPY,Fecal Calprotectin COPY,,4018.5,,H,,,Normal: <80ug/g$Borderline: 80-160$ug/g. Elevated:>160$ug/g,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,FECAL COLLECTION D/T,Stool Collection Date,Y,31-May-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,FECAL COLLECTION D/T,Stool Collection Time,Y,19:00,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,104,,L,,Result verified by repeat analysis,127 - 181,g/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.35,,L,,Result verified by repeat analysis,0.39 - 0.54,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,L,,Result verified by repeat analysis,4.5 - 6.4,TI/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,26,,,,Result verified by repeat analysis,26 - 34,pg
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,Result verified by repeat analysis,79 - 96,fL
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.73,,,,Result verified by repeat analysis,4.35 - 13.15,GI/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.46,,,,,1.65 - 8.15,GI/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.07,,,,,0.95 - 5.25,GI/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.81,,,,Result verified by repeat analysis,0.4 - 1.3,GI/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.33,,H,,Result verified by repeat analysis,0 - 0.3,GI/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.06,,,,Result verified by repeat analysis,0 - 0.2,GI/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.1,,,,Result verified by repeat analysis,40.5 - 75,%
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.2,,,,Result verified by repeat analysis,15.4 - 48.5,%
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.3,,H,,Result verified by repeat analysis,4 - 8,%
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.7,,H,,Result verified by repeat analysis,0 - 2.8,%
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,Result verified by repeat analysis,0 - 1,%
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,444,,H,,Result verified by repeat analysis,140 - 400,GI/L
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,PA1 EEA-2?,Approved to use EEA-2?,,,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,01-Jun-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:35,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,01-Jun-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:45,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,01-Jun-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:35,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,31-May-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,19:00,,,,,,
CZ100201001,,,,,Male,Induction Week 2,,"Jun 1, 2026 8:35 AM",6227993968,SUBJECT HEIGHT (CM),Height (cm),Y,,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,2003 SCHWARTZ EGFR,2003 Schwartz eGFR,,191,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.0,,,,,0 - 6.2,umol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Alkaline Phosphatase,,282,,,,,82 - 331,U/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,ALT (SGPT),,16,,,,,6 - 43,U/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,AST (SGOT),,26,,,,,10 - 40,U/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,GGT,,15,,,,,0 - 51,U/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,LDH,,214,,,,,105 - 235,U/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,51,,,,,23 - 83,umol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Glucose,,4.3,,,,,3.9 - 5.6,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Uric Acid,,336,,,,,184 - 416,umol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.1 - 2.57,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Phosphorus,,1.58,,,,,0.71 - 1.65,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Total Protein,,85,,H,,,61 - 84,g/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,29 - 47,g/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Creatine Kinase,,65,,,,,18 - 363,U/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Bicarbonate,,23.4,,,,,19.3 - 29.3,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CHEMISTRY PANEL,Magnesium,,0.81,,,,,0.7 - 0.9,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,CRP COPY,C Reactive Protein COPY,,1.9,,,,,0.4 - 2,mg/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,FECAL CALPROTECTIN COPY,Fecal Calprotectin COPY,,3749.9,,H,,,Normal: <80ug/g$Borderline: 80-160$ug/g. Elevated:>160$ug/g,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,FECAL COLLECTION D/T,Stool Collection Date,Y,17-May-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,FECAL COLLECTION D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,114,,L,,,127 - 181,g/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,L,,,0.39 - 0.54,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,L,,,4.5 - 6.4,TI/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,27,,,,,26 - 34,pg
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.73,,,,,4.35 - 13.15,GI/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.06,,,,,1.65 - 8.15,GI/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.42,,,,,0.95 - 5.25,GI/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.83,,,,,0.4 - 1.3,GI/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.34,,H,,,0 - 0.3,GI/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,52.0,,,,,40.5 - 75,%
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,35.1,,,,,15.4 - 48.5,%
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,8.5,,H,,,4 - 8,%
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.5,,H,,,0 - 2.8,%
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 1,%
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,607,,H,,,140 - 400,GI/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,Direct HDL-C 4th Generation,,1.27,,,,,1.03 - 1.53,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,Triglycerides (GPO),,1.17,,,,,0.42 - 1.67,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,Cholesterol (High Performance),,3.50,,,,,2.95 - 5.12,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,LIPID PANEL,LDL Chol Friedewald 4th,,1.69,,,,,0 - 3.34,mmol/L
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,18-May-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,09:28,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,18-May-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:52,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,18-May-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,09:28,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,17-May-2026,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,18:00,,,,,,
CZ100201001,,,,,Male,Induction Week 0,,"May 18, 2026 9:28 AM",6227993966,SUBJECT HEIGHT (CM),Height (cm),Y,157,,,,,cm,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,ANATOMICAL SITE,Anatomical Site,Y,20-25,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,15-Apr-2026,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,13:00,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,17-Apr-2026,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100201001,,,,,Male,Biopsy,,"Apr 15, 2026 12:00 AM",6227993984,ULCERATED AREA,Is biopsy site ulcerated?,,No,,,,,,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,2003 SCHWARTZ EGFR,2003 Schwartz eGFR,,211,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Alkaline Phosphatase,,322,,,,,82 - 331,U/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,ALT (SGPT),,20,,,,,6 - 43,U/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,AST (SGOT),,29,,,,,10 - 40,U/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,GGT,,17,,,,,0 - 51,U/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,LDH,,221,,,,,105 - 235,U/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Urea Nitrogen,,3.6,,,,,1.4 - 8.6,mmol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,46,,,,,23 - 83,umol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Glucose,,4.1,,,,,3.9 - 5.6,mmol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Uric Acid,,326,,,,,184 - 416,umol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Calcium (EDTA),,2.57,,,,,2.1 - 2.57,mmol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Phosphorus,,1.72,,H,,,0.71 - 1.65,mmol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Total Protein,,87,,H,,,61 - 84,g/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,29 - 47,g/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Creatine Kinase,,94,,,,,18 - 363,U/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Sodium,,136,,,,,132 - 147,mmol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Bicarbonate,,20.7,,,,,19.3 - 29.3,mmol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,CHEMISTRY PANEL,Magnesium,,0.77,,,,,0.7 - 0.9,mmol/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,118,,L,,Result verified by repeat analysis,127 - 181,g/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,L,,,0.39 - 0.54,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.2,,L,,Result verified by repeat analysis,4.5 - 6.4,TI/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,28,,,,Result verified by repeat analysis,26 - 34,pg
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.04,,,,Result verified by repeat analysis,4.35 - 13.15,GI/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.19,,,,Result verified by repeat analysis,1.65 - 8.15,GI/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.73,,,,,0.95 - 5.25,GI/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.77,,,,Result verified by repeat analysis,0.4 - 1.3,GI/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.29,,,,Result verified by repeat analysis,0 - 0.3,GI/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,Result verified by repeat analysis,0 - 0.2,GI/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,51.7,,,,Result verified by repeat analysis,40.5 - 75,%
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,37.2,,,,Result verified by repeat analysis,15.4 - 48.5,%
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.6,,,,Result verified by repeat analysis,4 - 8,%
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,H,,Result verified by repeat analysis,0 - 2.8,%
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,Result verified by repeat analysis,0 - 1,%
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,490,,H,,Result verified by repeat analysis,140 - 400,GI/L
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Reactive,,,,,Ref Rng :$Non Reactive,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100201001,,,,,Male,Screening,,"Apr 13, 2026 12:20 PM",6227993962,SUBJECT HEIGHT (CM),Height (cm),Y,157,,,,,cm,
CZ100201001,,,,,Male,Stool Pathogens,,"Apr 13, 2026 6:00 AM",6227993971,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100201001,,,,,Male,Stool Pathogens,,"Apr 13, 2026 6:00 AM",6227993971,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 ALP<2XULN ALP<2XULN Criteria Met
4 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
5 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
6 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 AST>/=3XULN AST >/= 3 X ULN Criteria not met
7 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
8 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Total Bilirubin 4 3 - 21 umol/L
9 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas <1.4 0 - 6.2 umol/L
10 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Alkaline Phosphatase 286 82 - 331 U/L
11 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL ALT (SGPT) 32 6 - 43 U/L
12 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL AST (SGOT) 44 H 10 - 40 U/L
13 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL GGT 20 0 - 51 U/L
14 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL LDH 215 105 - 235 U/L
15 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Urea Nitrogen 5.4 1.4 - 8.6 mmol/L
16 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 45 23 - 83 umol/L
17 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Serum Glucose 4.2 3.9 - 5.6 mmol/L
18 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Serum Uric Acid 310 184 - 416 umol/L
19 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Calcium (EDTA) 2.37 2.1 - 2.57 mmol/L
20 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Phosphorus 1.54 0.71 - 1.65 mmol/L
21 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Total Protein 79 61 - 84 g/L
22 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Albumin-BCG 40 29 - 47 g/L
23 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Creatine Kinase 86 18 - 363 U/L
24 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
25 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Serum Potassium 4.9 3.5 - 5.2 mmol/L
26 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Serum Bicarbonate 20.2 19.3 - 29.3 mmol/L
27 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Serum Chloride 105 94 - 112 mmol/L
28 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CHEMISTRY PANEL Magnesium 0.79 0.7 - 0.9 mmol/L
29 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 CRP COPY C Reactive Protein COPY 2.3 H 0.4 - 2 mg/L
30 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 FECAL CALPROTECTIN COPY Fecal Calprotectin COPY 4018.5 H Normal: <80ug/g$Borderline: 80-160$ug/g. Elevated:>160$ug/g
31 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 FECAL COLLECTION D/T Stool Collection Date Y 31-May-2026
32 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 FECAL COLLECTION D/T Stool Collection Time Y 19:00
33 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 104 L Result verified by repeat analysis 127 - 181 g/L
34 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.35 L Result verified by repeat analysis 0.39 - 0.54
35 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.0 L Result verified by repeat analysis 4.5 - 6.4 TI/L
36 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL MCH 26 Result verified by repeat analysis 26 - 34 pg
37 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
38 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 Result verified by repeat analysis 79 - 96 fL
39 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL WBC 8.73 Result verified by repeat analysis 4.35 - 13.15 GI/L
40 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.46 1.65 - 8.15 GI/L
41 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 3.07 0.95 - 5.25 GI/L
42 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.81 Result verified by repeat analysis 0.4 - 1.3 GI/L
43 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.33 H Result verified by repeat analysis 0 - 0.3 GI/L
44 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.06 Result verified by repeat analysis 0 - 0.2 GI/L
45 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 51.1 Result verified by repeat analysis 40.5 - 75 %
46 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 35.2 Result verified by repeat analysis 15.4 - 48.5 %
47 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 9.3 H Result verified by repeat analysis 4 - 8 %
48 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.7 H Result verified by repeat analysis 0 - 2.8 %
49 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 Result verified by repeat analysis 0 - 1 %
50 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 444 H Result verified by repeat analysis 140 - 400 GI/L
51 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 PA1 EEA-2? Approved to use EEA-2?
52 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 01-Jun-2026
53 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 08:35
54 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 01-Jun-2026
55 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 10:45
56 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 01-Jun-2026
57 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 08:35
58 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 SM09/STOOL PK COLL D/T Stool Collection Date Y 31-May-2026
59 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 SM09/STOOL PK COLL D/T Stool Collection Time Y 19:00
60 CZ100201001 Male Induction Week 2 Jun 1, 2026 8:35 AM 6227993968 SUBJECT HEIGHT (CM) Height (cm) Y
61 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 2003 SCHWARTZ EGFR 2003 Schwartz eGFR 191 mL/min/1.73m^2$No Ref Rng
62 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Total Bilirubin 9 3 - 21 umol/L
63 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.0 0 - 6.2 umol/L
64 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Alkaline Phosphatase 282 82 - 331 U/L
65 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL ALT (SGPT) 16 6 - 43 U/L
66 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL AST (SGOT) 26 10 - 40 U/L
67 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL GGT 15 0 - 51 U/L
68 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL LDH 214 105 - 235 U/L
69 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Urea Nitrogen 4.0 1.4 - 8.6 mmol/L
70 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 51 23 - 83 umol/L
71 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Serum Glucose 4.3 3.9 - 5.6 mmol/L
72 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Serum Uric Acid 336 184 - 416 umol/L
73 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Calcium (EDTA) 2.47 2.1 - 2.57 mmol/L
74 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Phosphorus 1.58 0.71 - 1.65 mmol/L
75 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Total Protein 85 H 61 - 84 g/L
76 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Albumin-BCG 44 29 - 47 g/L
77 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Creatine Kinase 65 18 - 363 U/L
78 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Serum Sodium 136 132 - 147 mmol/L
79 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Serum Potassium 4.7 3.5 - 5.2 mmol/L
80 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Serum Bicarbonate 23.4 19.3 - 29.3 mmol/L
81 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Serum Chloride 100 94 - 112 mmol/L
82 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CHEMISTRY PANEL Magnesium 0.81 0.7 - 0.9 mmol/L
83 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 CRP COPY C Reactive Protein COPY 1.9 0.4 - 2 mg/L
84 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 FECAL CALPROTECTIN COPY Fecal Calprotectin COPY 3749.9 H Normal: <80ug/g$Borderline: 80-160$ug/g. Elevated:>160$ug/g
85 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 FECAL COLLECTION D/T Stool Collection Date Y 17-May-2026
86 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 FECAL COLLECTION D/T Stool Collection Time Y 18:00
87 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 114 L 127 - 181 g/L
88 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.37 L 0.39 - 0.54
89 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.2 L 4.5 - 6.4 TI/L
90 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL MCH 27 26 - 34 pg
91 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
92 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 79 - 96 fL
93 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL WBC 9.73 4.35 - 13.15 GI/L
94 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 5.06 1.65 - 8.15 GI/L
95 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 3.42 0.95 - 5.25 GI/L
96 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.83 0.4 - 1.3 GI/L
97 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.34 H 0 - 0.3 GI/L
98 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.10 0 - 0.2 GI/L
99 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 52.0 40.5 - 75 %
100 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 35.1 15.4 - 48.5 %
101 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 8.5 H 4 - 8 %
102 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.5 H 0 - 2.8 %
103 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.0 0 - 1 %
104 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 607 H 140 - 400 GI/L
105 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
106 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 LIPID PANEL Direct HDL-C 4th Generation 1.27 1.03 - 1.53 mmol/L
107 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 LIPID PANEL Triglycerides (GPO) 1.17 0.42 - 1.67 mmol/L
108 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 LIPID PANEL Cholesterol (High Performance) 3.50 2.95 - 5.12 mmol/L
109 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 LIPID PANEL LDL Chol Friedewald 4th 1.69 0 - 3.34 mmol/L
110 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 PA1 EEA-2? Approved to use EEA-2? Yes
111 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 18-May-2026
112 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 09:28
113 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 18-May-2026
114 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 10:52
115 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 18-May-2026
116 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 09:28
117 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 17-May-2026
118 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 18:00
119 CZ100201001 Male Induction Week 0 May 18, 2026 9:28 AM 6227993966 SUBJECT HEIGHT (CM) Height (cm) Y 157 cm
120 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 ANATOMICAL SITE Anatomical Site Y 20-25
121 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
122 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 BIOPSY FIXATIVE USED Fixative Used 10% NBF
123 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 15-Apr-2026
124 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 13:00
125 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
126 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 INFLAMED AREA Inflamed area? Yes
127 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
128 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
129 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 17-Apr-2026
130 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
131 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
132 CZ100201001 Male Biopsy Apr 15, 2026 12:00 AM 6227993984 ULCERATED AREA Is biopsy site ulcerated? No
133 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 2003 SCHWARTZ EGFR 2003 Schwartz eGFR 211 mL/min/1.73m^2$No Ref Rng
134 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
135 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.2 0 - 6.2 umol/L
136 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Alkaline Phosphatase 322 82 - 331 U/L
137 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL ALT (SGPT) 20 6 - 43 U/L
138 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL AST (SGOT) 29 10 - 40 U/L
139 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL GGT 17 0 - 51 U/L
140 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL LDH 221 105 - 235 U/L
141 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Urea Nitrogen 3.6 1.4 - 8.6 mmol/L
142 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 46 23 - 83 umol/L
143 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Serum Glucose 4.1 3.9 - 5.6 mmol/L
144 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Serum Uric Acid 326 184 - 416 umol/L
145 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Calcium (EDTA) 2.57 2.1 - 2.57 mmol/L
146 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Phosphorus 1.72 H 0.71 - 1.65 mmol/L
147 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Total Protein 87 H 61 - 84 g/L
148 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Albumin-BCG 45 29 - 47 g/L
149 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Creatine Kinase 94 18 - 363 U/L
150 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Serum Sodium 136 132 - 147 mmol/L
151 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Serum Potassium 4.9 3.5 - 5.2 mmol/L
152 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Serum Bicarbonate 20.7 19.3 - 29.3 mmol/L
153 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Serum Chloride 100 94 - 112 mmol/L
154 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 CHEMISTRY PANEL Magnesium 0.77 0.7 - 0.9 mmol/L
155 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
156 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 118 L Result verified by repeat analysis 127 - 181 g/L
157 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.37 L 0.39 - 0.54
158 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.2 L Result verified by repeat analysis 4.5 - 6.4 TI/L
159 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL MCH 28 Result verified by repeat analysis 26 - 34 pg
160 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
161 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 79 - 96 fL
162 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL WBC 10.04 Result verified by repeat analysis 4.35 - 13.15 GI/L
163 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 5.19 Result verified by repeat analysis 1.65 - 8.15 GI/L
164 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 3.73 0.95 - 5.25 GI/L
165 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.77 Result verified by repeat analysis 0.4 - 1.3 GI/L
166 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.29 Result verified by repeat analysis 0 - 0.3 GI/L
167 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 Result verified by repeat analysis 0 - 0.2 GI/L
168 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 51.7 Result verified by repeat analysis 40.5 - 75 %
169 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 37.2 Result verified by repeat analysis 15.4 - 48.5 %
170 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.6 Result verified by repeat analysis 4 - 8 %
171 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.9 H Result verified by repeat analysis 0 - 2.8 %
172 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 Result verified by repeat analysis 0 - 1 %
173 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 490 H Result verified by repeat analysis 140 - 400 GI/L
174 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
175 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEPATITIS B SURFACE AB Anti-HBs II QUAL Reactive Ref Rng :$Non Reactive
176 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
177 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
178 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
179 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
180 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
181 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 PA1 EEA-2? Approved to use EEA-2? Yes
182 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
183 CZ100201001 Male Screening Apr 13, 2026 12:20 PM 6227993962 SUBJECT HEIGHT (CM) Height (cm) Y 157 cm
184 CZ100201001 Male Stool Pathogens Apr 13, 2026 6:00 AM 6227993971 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
185 CZ100201001 Male Stool Pathogens Apr 13, 2026 6:00 AM 6227993971 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
@@ -0,0 +1,3 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,,,,,
Subject,Screening Number,Age,Age Unit,Gender,Visit Description,Collected Time,Accession,Test Group,Specimen,Organism,Growth,Cancellation Reason,Test Description,Test Result,Drug Name/Agent,MIC Result,Units,MIC Interpretation,Disk Diffusion Result,Disk Diffusion Interpretation,Subject Data Revision,Visit Data Revision,Result Data Revision
CZ100212001 - null,,,,Male,SCRNSTOOL Stool Pathogens,"Mar 1, 2026 2:00 PM",6227635213,STOOL CULTURE,Stool,,,,Final Report,No enteric pathogens isolated,,,,,,,,,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Screening Number Age Age Unit Gender Visit Description Collected Time Accession Test Group Specimen Organism Growth Cancellation Reason Test Description Test Result Drug Name/Agent MIC Result Units MIC Interpretation Disk Diffusion Result Disk Diffusion Interpretation Subject Data Revision Visit Data Revision Result Data Revision
3 CZ100212001 - null Male SCRNSTOOL Stool Pathogens Mar 1, 2026 2:00 PM 6227635213 STOOL CULTURE Stool Final Report No enteric pathogens isolated
@@ -0,0 +1,243 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Criteria not met,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Total Bilirubin,,4,,,,Result verified by repeat analysis,3 - 21,umol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.6,,,,,0 - 6.2,umol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Alkaline Phosphatase,,113,,,,,40 - 129,U/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,ALT (SGPT),,12,,,,,5 - 48,U/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,GGT,,23,,,,,10 - 50,U/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,LDH,,195,,,,,53 - 234,U/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Urea Nitrogen,,2.7,,,,,1.4 - 8.6,mmol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,73,,,,,40 - 119,umol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Glucose,,5.7,,H,,,3.9 - 5.6,mmol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Uric Acid,,409,,,,,149 - 494,umol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Calcium (EDTA),,2.32,,,,,2.07 - 2.64,mmol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Phosphorus,,1.01,,,,,0.71 - 1.65,mmol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Total Protein,,73,,,,,60 - 80,g/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Albumin-BCG,,41,,,,,33 - 49,g/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Creatine Kinase,,159,,,,,39 - 308,U/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Potassium,,5.1,,,,,3.5 - 5.2,mmol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Bicarbonate,,21.3,,,,,19.3 - 29.3,mmol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CHEMISTRY PANEL,Magnesium,,0.90,,,,,0.66 - 0.98,mmol/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,100,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,FECAL COLLECTION D/T,Stool Collection Date,Y,05-May-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,FECAL COLLECTION D/T,Stool Collection Time,Y,06:50,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,98,,L,,,125 - 170,g/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.34,,L,,,0.37 - 0.51,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.5,,,,,4 - 5.8,TI/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,22,,L,,Result verified by repeat analysis,26 - 34,pg
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Microcytic,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,76,,L,,,80 - 100,fL
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.13,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.41,,,,,1.96 - 7.23,GI/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.42,,,,,0.8 - 3,GI/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.93,,H,,,0.12 - 0.92,GI/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.29,,,,,0 - 0.57,GI/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.08,,,,,0 - 0.2,GI/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.2,,,,,40.5 - 75,%
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,15.6,,,,,15.4 - 48.5,%
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.1,,,,,2.6 - 10.1,%
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.1,,,,,0 - 6.8,%
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.9,,,,,0 - 2,%
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,812,,HT,,,130 - 394,GI/L
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:00,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,05-May-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,13:00,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,05-May-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:00,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,05-May-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:50,,,,,,
CZ100212001,,,,,Male,Induction Week 4,,"May 5, 2026 10:00 AM",6227635211,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,ALP<2XULN,ALP<2XULN,,Criteria Met,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,ALT>/=3XULN,ALT >/= 3 X ULN,,Criteria not met,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,ALT>/=3XULN & TBIL>/=2XULN,ALT >/=3xULN & TBIL >/=2xULN,,Unable to calc due to LOQ,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,AST>/=3XULN,AST >/= 3 X ULN,,Criteria not met,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,AST>/=3XULN & TBIL>/=2XULN,AST >/=3xULN & TBIL >/=2xULN,,Unable to calc due to LOQ,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Alkaline Phosphatase,,112,,,,,40 - 129,U/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,ALT (SGPT),,8,,,,,5 - 48,U/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,AST (SGOT),,14,,,,,8 - 40,U/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,GGT,,27,,,,,10 - 50,U/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,LDH,,150,,,,,53 - 234,U/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Urea Nitrogen,,2.4,,,,,1.4 - 8.6,mmol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 119,umol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Glucose,,6.1,,H,,,3.9 - 5.6,mmol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Uric Acid,,378,,,,,149 - 494,umol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Phosphorus,,1.02,,,,,0.71 - 1.65,mmol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Total Protein,,70,,,,,60 - 80,g/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Albumin-BCG,,40,,,,,33 - 49,g/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Creatine Kinase,,77,,,,,39 - 308,U/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Potassium,,5.2,,,,,3.5 - 5.2,mmol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CHEMISTRY PANEL,Magnesium,,0.87,,,,,0.66 - 0.98,mmol/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,99,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,FECAL COLLECTION D/T,Stool Collection Date,Y,20-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,FECAL COLLECTION D/T,Stool Collection Time,Y,06:00,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,106,,L,,,125 - 170,g/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,L,,,0.37 - 0.51,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4 - 5.8,TI/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,23,,L,,,26 - 34,pg
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,77,,L,,,80 - 100,fL
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,9.30,,,,,3.8 - 10.7,GI/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.31,,,,,1.96 - 7.23,GI/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.61,,,,,0.8 - 3,GI/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.94,,H,,,0.12 - 0.92,GI/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.35,,,,,0 - 0.57,GI/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.8,,,,,40.5 - 75,%
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,17.3,,,,,15.4 - 48.5,%
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.2,,H,,,2.6 - 10.1,%
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.8,,,,,0 - 6.8,%
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,%
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,796,,HT,,,130 - 394,GI/L
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,20-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,08:45,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,20-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,10:24,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,20-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,08:45,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM09/STOOL PK COLL D/T,Stool Collection Date,Y,20-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SM09/STOOL PK COLL D/T,Stool Collection Time,Y,06:00,,,,,,
CZ100212001,,,,,Male,Induction Week 2,,"Apr 20, 2026 8:43 AM",6227635208,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,,0 - 6.2,umol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Alkaline Phosphatase,,121,,,,,40 - 129,U/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,5 - 48,U/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,GGT,,39,,,,,10 - 50,U/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,LDH,,158,,,,,53 - 234,U/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,40 - 119,umol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Glucose,,4.9,,,,,3.9 - 5.6,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Uric Acid,,446,,,,,149 - 494,umol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Total Protein,,74,,,,,60 - 80,g/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Creatine Kinase,,64,,,,,39 - 308,U/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Potassium,,5.2,,,,,3.5 - 5.2,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CHEMISTRY PANEL,Magnesium,,0.88,,,,,0.66 - 0.98,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,97,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,FECAL COLLECTION D/T,Stool Collection Date,Y,06-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,FECAL COLLECTION D/T,Stool Collection Time,Y,16:00,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,113,,L,,,125 - 170,g/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.37 - 0.51,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4 - 5.8,TI/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,23,,L,,,26 - 34,pg
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,Anisocytosis,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,79,,L,,,80 - 100,fL
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,12.49,,H,,,3.8 - 10.7,GI/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,8.91,,H,,,1.96 - 7.23,GI/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.02,,,,,0.8 - 3,GI/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.14,,H,,,0.12 - 0.92,GI/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.33,,,,,0 - 0.57,GI/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.09,,,,,0 - 0.2,GI/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,71.3,,,,,40.5 - 75,%
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,16.2,,,,,15.4 - 48.5,%
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,9.1,,,,,2.6 - 10.1,%
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.6,,,,,0 - 6.8,%
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,%
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,584,,H,,,130 - 394,GI/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,Direct HDL-C 4th Generation,,1.01,R,L,,,1.03 - 1.53,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,Triglycerides (GPO),,1.57,,,,,0.65 - 2.94,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,Cholesterol (High Performance),,5.40,,,,,4.53 - 7.71,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,LIPID PANEL,LDL Chol Friedewald 4th,,3.67,,H,,,0 - 3.34,mmol/L
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM01/PLASMA PK TROUGH COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM01/PLASMA PK TROUGH COLL D/T,Collection Time Predose,Y,10:37,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM02/PLASMA PK PEAK COLL D/T,Collection Date Post dose,Y,07-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM02/PLASMA PK PEAK COLL D/T,Post Dose Collection Time,Y,11:55,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM04/SERUM ADA PRE COLL D/T,Collection Date Predose,Y,07-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM04/SERUM ADA PRE COLL D/T,Collection Time Predose,Y,10:37,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM10/FECAL BMRKS COLL D/T,Stool Collection Date,Y,06-Apr-2026,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SM10/FECAL BMRKS COLL D/T,Stool Collection Time,Y,16:00,,,,,,
CZ100212001,,,,,Male,Induction Week 0,,"Apr 7, 2026 10:37 AM",6227635207,SUBJECT HEIGHT (CM),Height (cm),Y,N/A (subject >/= 18 years of age),,,,,cm,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,ANATOMICAL SITE,Anatomical Site,Y,20,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,BIOPSY COLLECTION METHOD,Collection Method,Y,colonoscopy,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,BIOPSY FIXATIVE USED,Fixative Used,,10% NBF,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,DATE/TIME PLACED IN FORMALIN,Date Sample placed in Formalin,Y,16-Mar-2026,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,DATE/TIME PLACED IN FORMALIN,Time Sample placed in Formalin,Y,13:00,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,DIAGNOSIS,Diagnosis:,Y,Ulcerative Colitis,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,INFLAMED AREA,Inflamed area?,,Yes,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy technical QC-CL,,Smpl meets HT requirements,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Time-CL,,10:00,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy processing Date-CL,,19-Mar-2026,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,Biopsy Comments-CL,,Received in 10% NBF,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,TISSUE BIOPSY EMBEDDING1,# of Cassettes-(FI)-CL,,1,,,,,,
CZ100212001,,,,,Male,Biopsy,,"Mar 16, 2026 12:00 AM",6227635223,ULCERATED AREA,Is biopsy site ulcerated?,,Yes,,,,,,
CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,C. DIFF EIA,"C. diff GDH Ag,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,C. DIFF EIA,"C.diff Toxin A&B,stool-CL",,Negative,,,,,Ref Rng:Negative,
CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 1,Concentrate Exam,,No ova or parasites found,,,,,,
CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 1,Smear for Microsporidia,,No Microsporidia seen.,,,,,,
CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 1,Modified acid-fast stain,,No coccidian parasites seen,,,,,,
CZ100212001,,,,,Male,Stool Pathogens,,"Mar 1, 2026 2:00 PM",6227635213,OVA AND PARASITES 2,Trichrome Smear,,No ova or parasites found,,,,,,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Total Bilirubin,,<3,,L,,Result verified by repeat analysis,3 - 21,umol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,<1.4,,,,Result verified by repeat analysis,0 - 6.2,umol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Alkaline Phosphatase,,120,,,,,40 - 129,U/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,ALT (SGPT),,15,,,,,5 - 48,U/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,AST (SGOT),,19,,,,,8 - 40,U/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,GGT,,39,,,,,10 - 50,U/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,LDH,,174,,,,,53 - 234,U/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Urea Nitrogen,,3.0,,,,,1.4 - 8.6,mmol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,40 - 119,umol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Glucose,,4.8,,,,,3.9 - 5.6,mmol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Uric Acid,,357,,,,,149 - 494,umol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Calcium (EDTA),,2.34,,,,,2.07 - 2.64,mmol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Total Protein,,70,,,,,60 - 80,g/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Creatine Kinase,,149,,,,,39 - 308,U/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Potassium,,4.9,,,,,3.5 - 5.2,mmol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Bicarbonate,,18.4,,L,,,19.3 - 29.3,mmol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CHEMISTRY PANEL,Magnesium,,0.79,,,,,0.66 - 0.98,mmol/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,CKD-EPI 2021 WITH ADOLESCENTS,CKD-EPI 2021 woRace wAdol -PS,,99,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HBV ELIGIBILITY MET?,HBV Eligibility Criteria Met?,,Yes,,,,,,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,120,,L,,,125 - 170,g/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.37 - 0.51,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4 - 5.8,TI/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,MCH,,24,,L,,,26 - 34,pg
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,79,,L,,,80 - 100,fL
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,8.50,,,,,3.8 - 10.7,GI/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,5.09,,,,,1.96 - 7.23,GI/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.97,,,,,0.8 - 3,GI/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.07,,H,,,0.12 - 0.92,GI/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.27,,,,,0 - 0.57,GI/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.10,,,,,0 - 0.2,GI/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.9,,,,,40.5 - 75,%
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.3,,,,,15.4 - 48.5,%
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,12.6,,H,,,2.6 - 10.1,%
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.1,,,,,0 - 6.8,%
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,%
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,567,,H,,,130 - 394,GI/L
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS B CORE AB NON-US,Hepatitis B Core Total,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS B SURFACE AB,Anti-HBs II QUAL,,Non-Reactive,,,,,Ref Rng :$Non Reactive,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS B SURFACE AG NON-US,Hep B Surface AgII,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HEPATITIS C VIRUS AB NON-US,Hepatitis C Virus Antibody,,Non-Reactive,,,,,Ref Rng:$Non Reactive,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HIV 1/2 AG/AB SCREEN,anti-HIV-1/2 antibodies,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HIV 1/2 AG/AB SCREEN,HIV -1 p24 antigen,,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,HIV 1/2 AG/AB SCREEN,"HIV 1/2 Ag/Ab Screen, Cobas",,Non-Reactive,,,,,Ref Rng$Non-Reactive,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,PA1 EEA-2?,Approved to use EEA-2?,,Yes,,,,,,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,QUANTIFERON GOLD MITOGEN/INTER,"QFT,TBGoldPlusInt,pl-4-Tubes",,Negative,,,,,Normal=Negative,
CZ100212001,,,,,Male,Screening,,"Feb 25, 2026 12:15 PM",6227635204,SUBJECT HEIGHT (CM),Height (cm),Y,178,,,,,cm,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 ALP<2XULN ALP<2XULN Criteria Met
4 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
5 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Criteria not met
6 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 AST>/=3XULN AST >/= 3 X ULN Criteria not met
7 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Criteria not met
8 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Total Bilirubin 4 Result verified by repeat analysis 3 - 21 umol/L
9 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.6 0 - 6.2 umol/L
10 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Alkaline Phosphatase 113 40 - 129 U/L
11 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL ALT (SGPT) 12 5 - 48 U/L
12 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL AST (SGOT) 18 8 - 40 U/L
13 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL GGT 23 10 - 50 U/L
14 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL LDH 195 53 - 234 U/L
15 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Urea Nitrogen 2.7 1.4 - 8.6 mmol/L
16 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 73 40 - 119 umol/L
17 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Serum Glucose 5.7 H 3.9 - 5.6 mmol/L
18 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Serum Uric Acid 409 149 - 494 umol/L
19 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Calcium (EDTA) 2.32 2.07 - 2.64 mmol/L
20 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Phosphorus 1.01 0.71 - 1.65 mmol/L
21 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Total Protein 73 60 - 80 g/L
22 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Albumin-BCG 41 33 - 49 g/L
23 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Creatine Kinase 159 39 - 308 U/L
24 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Serum Sodium 139 135 - 145 mmol/L
25 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Serum Potassium 5.1 3.5 - 5.2 mmol/L
26 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Serum Bicarbonate 21.3 19.3 - 29.3 mmol/L
27 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Serum Chloride 105 94 - 112 mmol/L
28 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CHEMISTRY PANEL Magnesium 0.90 0.66 - 0.98 mmol/L
29 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 100 mL/min/1.73m^2$No Ref Rng
30 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 FECAL COLLECTION D/T Stool Collection Date Y 05-May-2026
31 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 FECAL COLLECTION D/T Stool Collection Time Y 06:50
32 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 98 L 125 - 170 g/L
33 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.34 L 0.37 - 0.51
34 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.5 4 - 5.8 TI/L
35 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL MCH 22 L Result verified by repeat analysis 26 - 34 pg
36 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Microcytic NORMOCYTIC;$NORMOCHROMIC
37 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL MCV 76 L 80 - 100 fL
38 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL WBC 9.13 Result verified by repeat analysis 3.8 - 10.7 GI/L
39 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 6.41 1.96 - 7.23 GI/L
40 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.42 0.8 - 3 GI/L
41 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.93 H 0.12 - 0.92 GI/L
42 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.29 0 - 0.57 GI/L
43 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.08 0 - 0.2 GI/L
44 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 70.2 40.5 - 75 %
45 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 15.6 15.4 - 48.5 %
46 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 10.1 2.6 - 10.1 %
47 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.1 0 - 6.8 %
48 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.9 0 - 2 %
49 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 812 HT 130 - 394 GI/L
50 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 PA1 EEA-2? Approved to use EEA-2? Yes
51 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 05-May-2026
52 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 10:00
53 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 05-May-2026
54 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 13:00
55 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 05-May-2026
56 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 10:00
57 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 SM09/STOOL PK COLL D/T Stool Collection Date Y 05-May-2026
58 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 SM09/STOOL PK COLL D/T Stool Collection Time Y 06:50
59 CZ100212001 Male Induction Week 4 May 5, 2026 10:00 AM 6227635211 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
60 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 ALP<2XULN ALP<2XULN Criteria Met
61 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 ALT>/=3XULN ALT >/= 3 X ULN Criteria not met
62 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 ALT>/=3XULN & TBIL>/=2XULN ALT >/=3xULN & TBIL >/=2xULN Unable to calc due to LOQ
63 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 AST>/=3XULN AST >/= 3 X ULN Criteria not met
64 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 AST>/=3XULN & TBIL>/=2XULN AST >/=3xULN & TBIL >/=2xULN Unable to calc due to LOQ
65 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Total Bilirubin <3 L Result verified by repeat analysis 3 - 21 umol/L
66 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas <1.4 Result verified by repeat analysis 0 - 6.2 umol/L
67 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Alkaline Phosphatase 112 40 - 129 U/L
68 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL ALT (SGPT) 8 5 - 48 U/L
69 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL AST (SGOT) 14 8 - 40 U/L
70 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL GGT 27 10 - 50 U/L
71 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL LDH 150 53 - 234 U/L
72 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Urea Nitrogen 2.4 1.4 - 8.6 mmol/L
73 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 74 40 - 119 umol/L
74 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Serum Glucose 6.1 H 3.9 - 5.6 mmol/L
75 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Serum Uric Acid 378 149 - 494 umol/L
76 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Calcium (EDTA) 2.36 2.07 - 2.64 mmol/L
77 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Phosphorus 1.02 0.71 - 1.65 mmol/L
78 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Total Protein 70 60 - 80 g/L
79 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Albumin-BCG 40 33 - 49 g/L
80 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Creatine Kinase 77 39 - 308 U/L
81 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Serum Sodium 139 135 - 145 mmol/L
82 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Serum Potassium 5.2 3.5 - 5.2 mmol/L
83 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Serum Bicarbonate 22.9 19.3 - 29.3 mmol/L
84 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
85 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CHEMISTRY PANEL Magnesium 0.87 0.66 - 0.98 mmol/L
86 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 99 mL/min/1.73m^2$No Ref Rng
87 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 FECAL COLLECTION D/T Stool Collection Date Y 20-Apr-2026
88 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 FECAL COLLECTION D/T Stool Collection Time Y 06:00
89 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 106 L 125 - 170 g/L
90 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.36 L 0.37 - 0.51
91 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.6 4 - 5.8 TI/L
92 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL MCH 23 L 26 - 34 pg
93 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
94 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL MCV 77 L 80 - 100 fL
95 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL WBC 9.30 3.8 - 10.7 GI/L
96 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 6.31 1.96 - 7.23 GI/L
97 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.61 0.8 - 3 GI/L
98 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.94 H 0.12 - 0.92 GI/L
99 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.35 0 - 0.57 GI/L
100 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.09 0 - 0.2 GI/L
101 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 67.8 40.5 - 75 %
102 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 17.3 15.4 - 48.5 %
103 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 10.2 H 2.6 - 10.1 %
104 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.8 0 - 6.8 %
105 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.0 0 - 2 %
106 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 796 HT 130 - 394 GI/L
107 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 PA1 EEA-2? Approved to use EEA-2? Yes
108 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 20-Apr-2026
109 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 08:45
110 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 20-Apr-2026
111 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 10:24
112 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 20-Apr-2026
113 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 08:45
114 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 SM09/STOOL PK COLL D/T Stool Collection Date Y 20-Apr-2026
115 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 SM09/STOOL PK COLL D/T Stool Collection Time Y 06:00
116 CZ100212001 Male Induction Week 2 Apr 20, 2026 8:43 AM 6227635208 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
117 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Total Bilirubin 4 3 - 21 umol/L
118 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas <1.4 0 - 6.2 umol/L
119 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Alkaline Phosphatase 121 40 - 129 U/L
120 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL ALT (SGPT) 13 5 - 48 U/L
121 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL AST (SGOT) 18 8 - 40 U/L
122 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL GGT 39 10 - 50 U/L
123 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL LDH 158 53 - 234 U/L
124 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Urea Nitrogen 3.0 1.4 - 8.6 mmol/L
125 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 80 40 - 119 umol/L
126 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Serum Glucose 4.9 3.9 - 5.6 mmol/L
127 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Serum Uric Acid 446 149 - 494 umol/L
128 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Calcium (EDTA) 2.37 2.07 - 2.64 mmol/L
129 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Phosphorus 1.20 0.71 - 1.65 mmol/L
130 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Total Protein 74 60 - 80 g/L
131 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
132 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Creatine Kinase 64 39 - 308 U/L
133 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Serum Sodium 141 135 - 145 mmol/L
134 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Serum Potassium 5.2 3.5 - 5.2 mmol/L
135 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Serum Bicarbonate 21.0 19.3 - 29.3 mmol/L
136 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Serum Chloride 106 94 - 112 mmol/L
137 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CHEMISTRY PANEL Magnesium 0.88 0.66 - 0.98 mmol/L
138 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 97 mL/min/1.73m^2$No Ref Rng
139 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 FECAL COLLECTION D/T Stool Collection Date Y 06-Apr-2026
140 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 FECAL COLLECTION D/T Stool Collection Time Y 16:00
141 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 113 L 125 - 170 g/L
142 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.39 0.37 - 0.51
143 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.9 4 - 5.8 TI/L
144 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL MCH 23 L 26 - 34 pg
145 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology Anisocytosis NORMOCYTIC;$NORMOCHROMIC
146 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL MCV 79 L 80 - 100 fL
147 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL WBC 12.49 H 3.8 - 10.7 GI/L
148 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 8.91 H 1.96 - 7.23 GI/L
149 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.02 0.8 - 3 GI/L
150 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 1.14 H 0.12 - 0.92 GI/L
151 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.33 0 - 0.57 GI/L
152 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.09 0 - 0.2 GI/L
153 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 71.3 40.5 - 75 %
154 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 16.2 15.4 - 48.5 %
155 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 9.1 2.6 - 10.1 %
156 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.6 0 - 6.8 %
157 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 0 - 2 %
158 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 584 H 130 - 394 GI/L
159 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
160 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 LIPID PANEL Direct HDL-C 4th Generation 1.01 R L 1.03 - 1.53 mmol/L
161 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 LIPID PANEL Triglycerides (GPO) 1.57 0.65 - 2.94 mmol/L
162 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 LIPID PANEL Cholesterol (High Performance) 5.40 4.53 - 7.71 mmol/L
163 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 LIPID PANEL LDL Chol Friedewald 4th 3.67 H 0 - 3.34 mmol/L
164 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 PA1 EEA-2? Approved to use EEA-2? Yes
165 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 SM01/PLASMA PK TROUGH COLL D/T Collection Date Predose Y 07-Apr-2026
166 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 SM01/PLASMA PK TROUGH COLL D/T Collection Time Predose Y 10:37
167 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 SM02/PLASMA PK PEAK COLL D/T Collection Date Post dose Y 07-Apr-2026
168 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 SM02/PLASMA PK PEAK COLL D/T Post Dose Collection Time Y 11:55
169 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 SM04/SERUM ADA PRE COLL D/T Collection Date Predose Y 07-Apr-2026
170 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 SM04/SERUM ADA PRE COLL D/T Collection Time Predose Y 10:37
171 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 SM10/FECAL BMRKS COLL D/T Stool Collection Date Y 06-Apr-2026
172 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 SM10/FECAL BMRKS COLL D/T Stool Collection Time Y 16:00
173 CZ100212001 Male Induction Week 0 Apr 7, 2026 10:37 AM 6227635207 SUBJECT HEIGHT (CM) Height (cm) Y N/A (subject >/= 18 years of age) cm
174 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 ANATOMICAL SITE Anatomical Site Y 20
175 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 BIOPSY COLLECTION METHOD Collection Method Y colonoscopy
176 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 BIOPSY FIXATIVE USED Fixative Used 10% NBF
177 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 DATE/TIME PLACED IN FORMALIN Date Sample placed in Formalin Y 16-Mar-2026
178 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 DATE/TIME PLACED IN FORMALIN Time Sample placed in Formalin Y 13:00
179 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 DIAGNOSIS Diagnosis: Y Ulcerative Colitis
180 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 INFLAMED AREA Inflamed area? Yes
181 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 TISSUE BIOPSY EMBEDDING1 Biopsy technical QC-CL Smpl meets HT requirements
182 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 TISSUE BIOPSY EMBEDDING1 Biopsy processing Time-CL 10:00
183 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 TISSUE BIOPSY EMBEDDING1 Biopsy processing Date-CL 19-Mar-2026
184 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 TISSUE BIOPSY EMBEDDING1 Biopsy Comments-CL Received in 10% NBF
185 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 TISSUE BIOPSY EMBEDDING1 # of Cassettes-(FI)-CL 1
186 CZ100212001 Male Biopsy Mar 16, 2026 12:00 AM 6227635223 ULCERATED AREA Is biopsy site ulcerated? Yes
187 CZ100212001 Male Stool Pathogens Mar 1, 2026 2:00 PM 6227635213 C. DIFF EIA C. diff GDH Ag,stool-CL Negative Ref Rng:Negative
188 CZ100212001 Male Stool Pathogens Mar 1, 2026 2:00 PM 6227635213 C. DIFF EIA C.diff Toxin A&B,stool-CL Negative Ref Rng:Negative
189 CZ100212001 Male Stool Pathogens Mar 1, 2026 2:00 PM 6227635213 OVA AND PARASITES 1 Concentrate Exam No ova or parasites found
190 CZ100212001 Male Stool Pathogens Mar 1, 2026 2:00 PM 6227635213 OVA AND PARASITES 1 Smear for Microsporidia No Microsporidia seen.
191 CZ100212001 Male Stool Pathogens Mar 1, 2026 2:00 PM 6227635213 OVA AND PARASITES 1 Modified acid-fast stain No coccidian parasites seen
192 CZ100212001 Male Stool Pathogens Mar 1, 2026 2:00 PM 6227635213 OVA AND PARASITES 2 Trichrome Smear No ova or parasites found
193 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Total Bilirubin <3 L Result verified by repeat analysis 3 - 21 umol/L
194 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas <1.4 Result verified by repeat analysis 0 - 6.2 umol/L
195 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Alkaline Phosphatase 120 40 - 129 U/L
196 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL ALT (SGPT) 15 5 - 48 U/L
197 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL AST (SGOT) 19 8 - 40 U/L
198 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL GGT 39 10 - 50 U/L
199 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL LDH 174 53 - 234 U/L
200 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Urea Nitrogen 3.0 1.4 - 8.6 mmol/L
201 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 75 40 - 119 umol/L
202 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Serum Glucose 4.8 3.9 - 5.6 mmol/L
203 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Serum Uric Acid 357 149 - 494 umol/L
204 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Calcium (EDTA) 2.34 2.07 - 2.64 mmol/L
205 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Phosphorus 1.06 0.71 - 1.65 mmol/L
206 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Total Protein 70 60 - 80 g/L
207 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
208 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Creatine Kinase 149 39 - 308 U/L
209 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Serum Sodium 141 135 - 145 mmol/L
210 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Serum Potassium 4.9 3.5 - 5.2 mmol/L
211 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Serum Bicarbonate 18.4 L 19.3 - 29.3 mmol/L
212 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
213 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CHEMISTRY PANEL Magnesium 0.79 0.66 - 0.98 mmol/L
214 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 CKD-EPI 2021 WITH ADOLESCENTS CKD-EPI 2021 woRace wAdol -PS 99 mL/min/1.73m^2$No Ref Rng
215 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HBV ELIGIBILITY MET? HBV Eligibility Criteria Met? Yes
216 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 120 L 125 - 170 g/L
217 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.40 0.37 - 0.51
218 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4 - 5.8 TI/L
219 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL MCH 24 L 26 - 34 pg
220 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
221 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL MCV 79 L 80 - 100 fL
222 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL WBC 8.50 3.8 - 10.7 GI/L
223 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 5.09 1.96 - 7.23 GI/L
224 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.97 0.8 - 3 GI/L
225 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 1.07 H 0.12 - 0.92 GI/L
226 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.27 0 - 0.57 GI/L
227 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.10 0 - 0.2 GI/L
228 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 59.9 40.5 - 75 %
229 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 23.3 15.4 - 48.5 %
230 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 12.6 H 2.6 - 10.1 %
231 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.1 0 - 6.8 %
232 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.2 0 - 2 %
233 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 567 H 130 - 394 GI/L
234 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEPATITIS B CORE AB NON-US Hepatitis B Core Total Non-Reactive Ref Rng:$Non Reactive
235 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEPATITIS B SURFACE AB Anti-HBs II QUAL Non-Reactive Ref Rng :$Non Reactive
236 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEPATITIS B SURFACE AG NON-US Hep B Surface AgII Non-Reactive Ref Rng:$Non Reactive
237 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HEPATITIS C VIRUS AB NON-US Hepatitis C Virus Antibody Non-Reactive Ref Rng:$Non Reactive
238 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HIV 1/2 AG/AB SCREEN anti-HIV-1/2 antibodies Non-Reactive Ref Rng$Non-Reactive
239 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HIV 1/2 AG/AB SCREEN HIV -1 p24 antigen Non-Reactive Ref Rng$Non-Reactive
240 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 HIV 1/2 AG/AB SCREEN HIV 1/2 Ag/Ab Screen, Cobas Non-Reactive Ref Rng$Non-Reactive
241 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 PA1 EEA-2? Approved to use EEA-2? Yes
242 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 QUANTIFERON GOLD MITOGEN/INTER QFT,TBGoldPlusInt,pl-4-Tubes Negative Normal=Negative
243 CZ100212001 Male Screening Feb 25, 2026 12:15 PM 6227635204 SUBJECT HEIGHT (CM) Height (cm) Y 178 cm
@@ -0,0 +1,200 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.6,,,,,0 - 6.2,umol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,ALT (SGPT),,37,,,,,5 - 48,U/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,AST (SGOT),,63,R,H RX,,,8 - 40,U/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,GGT,,143,R,H,,,10 - 50,U/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,LDH,,148,,,,,53 - 234,U/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Urea Nitrogen,,8.4,,,,,1.4 - 8.6,mmol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,93,,,,,40 - 119,umol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Glucose Fasting,,8.5,R,H RX,,,3.9 - 5.6,mmol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Uric Acid,,397,,,,,149 - 494,umol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Calcium (EDTA),,2.51,,,,,2.07 - 2.64,mmol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Phosphorus,,1.21,,,,,0.71 - 1.65,mmol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Total Protein,,81,R,H,,,60 - 80,g/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Albumin-BCG,,42,,,,,33 - 49,g/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Creatine Kinase,,54,,,,,39 - 308,U/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Bicarbonate,,23.3,,,,,19.3 - 29.3,mmol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CHEMISTRY PANEL,Serum Chloride,,96,,,,,94 - 112,mmol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.85,,,,,1.42 - 2.08,mL/sec
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,93,,,,,40 - 119,umol/L
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,106.6,,,,,kg,
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,8.7,R,H RX,,,<6.5%,
CZ100050002,,,62,years,Male,Retest,,"Nov 11, 2025 10:04 AM",6225351037,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,C-REACTIVE PROTEIN,C Reactive Protein HS,,11.9,,H,,,0 - 5,mg/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CASTS,Ur Hyaline Casts/LPF,,96,,,,,0 /LPF,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CELLULAR ELEMENTS,Ur RBC/HPF,,5,,H,,,0 - 3,/HPF
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CELLULAR ELEMENTS,Ur WBC/HPF,,2,,,,,0 - 5,/HPF
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Total Bilirubin,,12,,,,,3 - 21,umol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.9,,,,,0 - 6.2,umol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Alkaline Phosphatase,,70,,,,,40 - 129,U/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,5 - 48,U/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,AST (SGOT),,72,,H RX,,,8 - 40,U/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,GGT,,264,,HT,,Result verified by repeat analysis,10 - 50,U/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,LDH,,171,,,,,53 - 234,U/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Urea Nitrogen,,7.3,,,,,1.4 - 8.6,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,109,,,,,40 - 119,umol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Glucose Fasting,,8.3,,H,,,3.9 - 5.6,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Uric Acid,,497,,H,,,149 - 494,umol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Calcium (EDTA),,2.55,,,,,2.07 - 2.64,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Phosphorus,,1.17,,,,,0.71 - 1.65,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Total Protein,,84,,H,,,60 - 80,g/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Creatine Kinase,,37,,L,,,39 - 308,U/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Sodium,,137,,,,,135 - 145,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Bicarbonate,,23.7,,,,,19.3 - 29.3,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CHEMISTRY PANEL,Serum Chloride,,94,,,,,94 - 112,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.60,,,,,1.42 - 2.08,mL/sec
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,109,,,,,40 - 119,umol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,108.0,,,,,kg,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DIRECT LDL,Direct LDL-C 3rd Gen,,3.83,R,H,,,<3.36 mmol/L,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,GFR,EGFR by MDRD,,60,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,160,,,,,125 - 170,g/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.47,,,,,0.37 - 0.51,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4 - 5.8,TI/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,80 - 100,fL
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.32,,,,,3.8 - 10.7,GI/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.59,,,,,1.96 - 7.23,GI/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.36,,,,,0.8 - 3,GI/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,1.06,,H,,,0.12 - 0.92,GI/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.12,,,,,0 - 0.2,GI/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.9,,,,,40.5 - 75,%
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,22.9,,,,,15.4 - 48.5,%
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,10.3,,H,,,2.6 - 10.1,%
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,%
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,%
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,311,,,,,130 - 394,GI/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,8.9,,H RX,,,<6.5%,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,12.96,,,,,1.9 - 23,uIU/mL
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,Direct HDL-C 4th Generation,,0.81,,L,,,1.03 - 1.53,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,Triglycerides (GPO),,5.76,,H SF,,,0.65 - 2.94,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,Cholesterol (High Performance),,6.27,,,,,4.53 - 7.71,mmol/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,LIPID PANEL,LDL Chol Friedewald 4th,,,,,Test cancelled: Invalid/High Triglycerides,,,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,MISCELLANEOUS ELEMENTS,Ur Mucous,,Present,,,,,Ref Rng:Not present,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,RETICULOCYTES,Reticulocyte Count %,,4.6,,H,,,0.6 - 2.5,%
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,TSH,TSH 3rd IS-QT,,3.611,,,,,0.45 - 5.33,mIU/L
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Specific Gravity,,1.034,,H,,,1.01 - 1.03,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Protein,,+1,,H,,,Ref Rng:Negative,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Glucose,,+1,,H,,,Ref Rng:Normal,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Ketones,,Trace,,H,,,Ref Rng:Negative,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Urobilinogen,,+1,,H,,,Ref Rng:Normal,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100050002,,,62,years,Male,Part 1 Screening,,"Nov 3, 2025 12:08 PM",6225351004,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.2,,,,,0 - 6.2,umol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,GGT,,32,,,,,5 - 50,U/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,LDH,,176,,,,,53 - 234,U/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Urea Nitrogen,,3.5,,,,,1.4 - 8.6,mmol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Glucose Fasting,,9.7,,H RX,,,3.9 - 5.6,mmol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Uric Acid,,289,,,,,149 - 446,umol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Total Protein,,66,,,,,60 - 80,g/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Creatine Kinase,,135,,,,,26 - 192,U/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Bicarbonate,,22.7,,,,,19.3 - 29.3,mmol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.05,,L,,,1.25 - 1.92,mL/sec
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,63.0,,,,,kg,
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,7.8,,H,,,<6.5%,
CZ100050001,,,65,years,Female,Retest,R,"Sep 16, 2025 10:00 AM",6225351036,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.9,,,,,0 - 5,mg/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CELLULAR ELEMENTS,Ur WBC/HPF,,3,,,,,0 - 12,/HPF
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.6,,,,,0 - 6.2,umol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Alkaline Phosphatase,,85,,,,,35 - 104,U/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,ALT (SGPT),,18,,,,,4 - 43,U/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,AST (SGOT),,16,,,,,8 - 40,U/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,GGT,,31,,,,,5 - 50,U/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,LDH,,192,,,,,53 - 234,U/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Urea Nitrogen,,5.4,,,,,1.4 - 8.6,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Glucose Fasting,,9.2,,H RX,,,3.9 - 5.6,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Uric Acid,,325,,,,,149 - 446,umol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Calcium (EDTA),,2.54,,,,,2.07 - 2.64,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Phosphorus,,1.09,,,,,0.71 - 1.65,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Total Protein,,67,,,,,60 - 80,g/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Creatine Kinase,,143,,,,,26 - 192,U/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Sodium,,141,,,,,135 - 145,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Bicarbonate,,20.8,,,,,19.3 - 29.3,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.05,,L,,,1.25 - 1.92,mL/sec
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,79,,,,,31 - 101,umol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,63.0,,,,,kg,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,GFR,EGFR by MDRD,,64,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,142,,,,,115 - 158,g/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.34 - 0.48,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.7,,,,,3.9 - 5.5,TI/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,91,,,,,80 - 100,fL
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,10.78,,H,,,3.8 - 10.7,GI/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,6.25,,,,,1.96 - 7.23,GI/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,3.50,,H,,,0.8 - 3,GI/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.52,,,,,0.12 - 0.92,GI/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.37,,,,,0 - 0.57,GI/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.13,,,,,0 - 0.2,GI/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.0,,,,,40.5 - 75,%
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.5,,,,,15.4 - 48.5,%
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,4.8,,,,,2.6 - 10.1,%
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.4,,,,,0 - 6.8,%
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.2,,,,,0 - 2,%
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,284,,,,,130 - 394,GI/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,7.7,,H,,,<6.5%,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.50,,,,,1.9 - 23,uIU/mL
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,Direct HDL-C 4th Generation,,1.94,,H,,,1.03 - 1.53,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,Triglycerides (GPO),,1.32,,,,,0.63 - 2.71,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,Cholesterol (High Performance),,4.53,,L,,,4.86 - 8.28,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,LIPID PANEL,LDL Chol Friedewald 4th,,1.99,,,,,0 - 3.34,mmol/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,RETICULOCYTES,Reticulocyte Count %,,1.6,,,,,0.6 - 2.5,%
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,TSH,TSH 3rd IS-QT,,1.354,,,,,0.45 - 5.33,mIU/L
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1.01 - 1.03,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MACRO PANEL,Ur Leukocyte Esterase,,+2,,H SF,,,Ref Rng:Negative,
CZ100050001,,,65,years,Female,Part 1 Screening,,"Sep 9, 2025 11:10 AM",6225351006,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Total Bilirubin 8 3 - 21 umol/L
4 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 4.6 0 - 6.2 umol/L
5 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Alkaline Phosphatase 60 40 - 129 U/L
6 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL ALT (SGPT) 37 5 - 48 U/L
7 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL AST (SGOT) 63 R H RX 8 - 40 U/L
8 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL GGT 143 R H 10 - 50 U/L
9 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL LDH 148 53 - 234 U/L
10 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Urea Nitrogen 8.4 1.4 - 8.6 mmol/L
11 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 93 40 - 119 umol/L
12 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Glucose Fasting 8.5 R H RX 3.9 - 5.6 mmol/L
13 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Serum Uric Acid 397 149 - 494 umol/L
14 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Calcium (EDTA) 2.51 2.07 - 2.64 mmol/L
15 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Phosphorus 1.21 0.71 - 1.65 mmol/L
16 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Total Protein 81 R H 60 - 80 g/L
17 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Albumin-BCG 42 33 - 49 g/L
18 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Creatine Kinase 54 39 - 308 U/L
19 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Serum Sodium 139 135 - 145 mmol/L
20 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Serum Potassium 4.0 3.5 - 5.2 mmol/L
21 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Serum Bicarbonate 23.3 19.3 - 29.3 mmol/L
22 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CHEMISTRY PANEL Serum Chloride 96 94 - 112 mmol/L
23 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 1.85 1.42 - 2.08 mL/sec
24 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 93 40 - 119 umol/L
25 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 106.6 kg
26 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 HEMOGLOBIN A1C Hemoglobin A1c,Variant(-70)-QT 8.7 R H RX <6.5%
27 CZ100050002 62 years Male Retest Nov 11, 2025 10:04 AM 6225351037 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
28 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 C-REACTIVE PROTEIN C Reactive Protein HS 11.9 H 0 - 5 mg/L
29 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CASTS Ur Hyaline Casts/LPF 96 0 /LPF
30 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CELLULAR ELEMENTS Ur RBC/HPF 5 H 0 - 3 /HPF
31 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CELLULAR ELEMENTS Ur WBC/HPF 2 0 - 5 /HPF
32 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Total Bilirubin 12 3 - 21 umol/L
33 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 4.9 0 - 6.2 umol/L
34 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Alkaline Phosphatase 70 40 - 129 U/L
35 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL ALT (SGPT) 36 5 - 48 U/L
36 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL AST (SGOT) 72 H RX 8 - 40 U/L
37 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL GGT 264 HT Result verified by repeat analysis 10 - 50 U/L
38 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL LDH 171 53 - 234 U/L
39 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Urea Nitrogen 7.3 1.4 - 8.6 mmol/L
40 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 109 40 - 119 umol/L
41 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Glucose Fasting 8.3 H 3.9 - 5.6 mmol/L
42 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Serum Uric Acid 497 H 149 - 494 umol/L
43 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Calcium (EDTA) 2.55 2.07 - 2.64 mmol/L
44 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Phosphorus 1.17 0.71 - 1.65 mmol/L
45 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Total Protein 84 H 60 - 80 g/L
46 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
47 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Creatine Kinase 37 L 39 - 308 U/L
48 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Serum Sodium 137 135 - 145 mmol/L
49 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Serum Potassium 3.9 3.5 - 5.2 mmol/L
50 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Serum Bicarbonate 23.7 19.3 - 29.3 mmol/L
51 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CHEMISTRY PANEL Serum Chloride 94 94 - 112 mmol/L
52 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 1.60 1.42 - 2.08 mL/sec
53 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 109 40 - 119 umol/L
54 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 108.0 kg
55 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 DIRECT LDL Direct LDL-C 3rd Gen 3.83 R H <3.36 mmol/L
56 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 DRUG SCREEN URINE Amphetamines/MDMA Neg Neg;$Cutoff = 1000 ng/mL
57 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 DRUG SCREEN URINE Barbiturates Neg Neg;$Cutoff = 200 ng/mL
58 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 DRUG SCREEN URINE Cannabinoids Neg Neg;$Cutoff = 50 ng/mL
59 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 DRUG SCREEN URINE Cocaine Neg Neg;$Cutoff = 300 ng/mL
60 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 DRUG SCREEN URINE Opiates Neg Neg;$Cutoff = 300 ng/mL
61 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 DRUG SCREEN URINE Methadone Neg Neg;$Cutoff = 300 ng/mL
62 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 DRUG SCREEN URINE BENZO NON-US Benzodiazepines Gen 2 Neg Neg;$Cutoff = 200 ng/mL
63 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 GFR EGFR by MDRD 60 mL/min/1.73m^2$No Ref Rng
64 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 160 125 - 170 g/L
65 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.47 0.37 - 0.51
66 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.1 4 - 5.8 TI/L
67 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
68 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 80 - 100 fL
69 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL WBC 10.32 3.8 - 10.7 GI/L
70 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 6.59 1.96 - 7.23 GI/L
71 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.36 0.8 - 3 GI/L
72 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 1.06 H 0.12 - 0.92 GI/L
73 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.17 0 - 0.57 GI/L
74 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.12 0 - 0.2 GI/L
75 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 63.9 40.5 - 75 %
76 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 22.9 15.4 - 48.5 %
77 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 10.3 H 2.6 - 10.1 %
78 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.7 0 - 6.8 %
79 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.2 0 - 2 %
80 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 311 130 - 394 GI/L
81 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 HEMOGLOBIN A1C Hemoglobin A1c,Variant(-70)-QT 8.9 H RX <6.5%
82 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 INSULIN Ultra.Insulin,EDTApl,FastingQT 12.96 1.9 - 23 uIU/mL
83 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
84 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 IS SUBJECT OF BLACK RACE? Subject of black race? Y No
85 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 LIPID PANEL Direct HDL-C 4th Generation 0.81 L 1.03 - 1.53 mmol/L
86 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 LIPID PANEL Triglycerides (GPO) 5.76 H SF 0.65 - 2.94 mmol/L
87 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 LIPID PANEL Cholesterol (High Performance) 6.27 4.53 - 7.71 mmol/L
88 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 LIPID PANEL LDL Chol Friedewald 4th Test cancelled: Invalid/High Triglycerides
89 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 MISCELLANEOUS ELEMENTS Ur Mucous Present Ref Rng:Not present
90 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 RETICULOCYTES Reticulocyte Count % 4.6 H 0.6 - 2.5 %
91 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 TSH TSH 3rd IS-QT 3.611 0.45 - 5.33 mIU/L
92 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur Specific Gravity 1.034 H 1.01 - 1.03
93 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur pH 5.5 5 - 8
94 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur Protein +1 H Ref Rng:Negative
95 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur Glucose +1 H Ref Rng:Normal
96 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur Ketones Trace H Ref Rng:Negative
97 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
98 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur Urobilinogen +1 H Ref Rng:Normal
99 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
100 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
101 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
102 CZ100050002 62 years Male Part 1 Screening Nov 3, 2025 12:08 PM 6225351004 URINE MICRO PANEL Ur Microscopic Positive NEGATIVE$ NEGATIVE
103 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Total Bilirubin 5 3 - 21 umol/L
104 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.2 0 - 6.2 umol/L
105 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Alkaline Phosphatase 85 35 - 104 U/L
106 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL ALT (SGPT) 24 4 - 43 U/L
107 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
108 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL GGT 32 5 - 50 U/L
109 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL LDH 176 53 - 234 U/L
110 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Urea Nitrogen 3.5 1.4 - 8.6 mmol/L
111 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 79 31 - 101 umol/L
112 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Glucose Fasting 9.7 H RX 3.9 - 5.6 mmol/L
113 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Serum Uric Acid 289 149 - 446 umol/L
114 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Calcium (EDTA) 2.39 2.07 - 2.64 mmol/L
115 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Phosphorus 1.09 0.71 - 1.65 mmol/L
116 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Total Protein 66 60 - 80 g/L
117 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
118 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Creatine Kinase 135 26 - 192 U/L
119 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Serum Sodium 143 135 - 145 mmol/L
120 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Serum Potassium 4.3 3.5 - 5.2 mmol/L
121 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Serum Bicarbonate 22.7 19.3 - 29.3 mmol/L
122 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
123 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 1.05 L 1.25 - 1.92 mL/sec
124 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 79 31 - 101 umol/L
125 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 63.0 kg
126 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 HEMOGLOBIN A1C Hemoglobin A1c,Variant(-70)-QT 7.8 H <6.5%
127 CZ100050001 65 years Female Retest R Sep 16, 2025 10:00 AM 6225351036 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
128 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 C-REACTIVE PROTEIN C Reactive Protein HS 4.9 0 - 5 mg/L
129 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CELLULAR ELEMENTS Ur WBC/HPF 3 0 - 12 /HPF
130 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
131 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.6 0 - 6.2 umol/L
132 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Alkaline Phosphatase 85 35 - 104 U/L
133 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL ALT (SGPT) 18 4 - 43 U/L
134 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL AST (SGOT) 16 8 - 40 U/L
135 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL GGT 31 5 - 50 U/L
136 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL LDH 192 53 - 234 U/L
137 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Urea Nitrogen 5.4 1.4 - 8.6 mmol/L
138 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 79 31 - 101 umol/L
139 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Glucose Fasting 9.2 H RX 3.9 - 5.6 mmol/L
140 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Serum Uric Acid 325 149 - 446 umol/L
141 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Calcium (EDTA) 2.54 2.07 - 2.64 mmol/L
142 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Phosphorus 1.09 0.71 - 1.65 mmol/L
143 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Total Protein 67 60 - 80 g/L
144 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
145 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Creatine Kinase 143 26 - 192 U/L
146 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Serum Sodium 141 135 - 145 mmol/L
147 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
148 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Serum Bicarbonate 20.8 19.3 - 29.3 mmol/L
149 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
150 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 1.05 L 1.25 - 1.92 mL/sec
151 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 79 31 - 101 umol/L
152 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 63.0 kg
153 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 DRUG SCREEN URINE Amphetamines/MDMA Neg Neg;$Cutoff = 1000 ng/mL
154 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 DRUG SCREEN URINE Barbiturates Neg Neg;$Cutoff = 200 ng/mL
155 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 DRUG SCREEN URINE Cannabinoids Neg Neg;$Cutoff = 50 ng/mL
156 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 DRUG SCREEN URINE Cocaine Neg Neg;$Cutoff = 300 ng/mL
157 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 DRUG SCREEN URINE Opiates Neg Neg;$Cutoff = 300 ng/mL
158 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 DRUG SCREEN URINE Methadone Neg Neg;$Cutoff = 300 ng/mL
159 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 DRUG SCREEN URINE BENZO NON-US Benzodiazepines Gen 2 Neg Neg;$Cutoff = 200 ng/mL
160 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y No
161 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 GFR EGFR by MDRD 64 mL/min/1.73m^2$No Ref Rng
162 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 142 115 - 158 g/L
163 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.43 0.34 - 0.48
164 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.7 3.9 - 5.5 TI/L
165 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
166 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL MCV 91 80 - 100 fL
167 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL WBC 10.78 H 3.8 - 10.7 GI/L
168 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 6.25 1.96 - 7.23 GI/L
169 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 3.50 H 0.8 - 3 GI/L
170 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.52 0.12 - 0.92 GI/L
171 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.37 0 - 0.57 GI/L
172 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.13 0 - 0.2 GI/L
173 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 58.0 40.5 - 75 %
174 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 32.5 15.4 - 48.5 %
175 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 4.8 2.6 - 10.1 %
176 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.4 0 - 6.8 %
177 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.2 0 - 2 %
178 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 284 130 - 394 GI/L
179 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 HEMOGLOBIN A1C Hemoglobin A1c,Variant(-70)-QT 7.7 H <6.5%
180 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 INSULIN Ultra.Insulin,EDTApl,FastingQT 14.50 1.9 - 23 uIU/mL
181 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
182 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 IS SUBJECT OF BLACK RACE? Subject of black race? Y No
183 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 LIPID PANEL Direct HDL-C 4th Generation 1.94 H 1.03 - 1.53 mmol/L
184 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 LIPID PANEL Triglycerides (GPO) 1.32 0.63 - 2.71 mmol/L
185 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 LIPID PANEL Cholesterol (High Performance) 4.53 L 4.86 - 8.28 mmol/L
186 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 LIPID PANEL LDL Chol Friedewald 4th 1.99 0 - 3.34 mmol/L
187 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 POSTMENOPAUSAL FEMALE? <40yrs & amenorrhea >/= 12mo No
188 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 RETICULOCYTES Reticulocyte Count % 1.6 0.6 - 2.5 %
189 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 TSH TSH 3rd IS-QT 1.354 0.45 - 5.33 mIU/L
190 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur Specific Gravity 1.011 1.01 - 1.03
191 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur pH 6.5 5 - 8
192 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
193 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
194 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
195 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
196 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
197 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur Blood Negative Ref Rng:$Negative-Trace
198 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
199 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MACRO PANEL Ur Leukocyte Esterase +2 H SF Ref Rng:Negative
200 CZ100050001 65 years Female Part 1 Screening Sep 9, 2025 11:10 AM 6225351006 URINE MICRO PANEL Ur Microscopic Positive NEGATIVE$ NEGATIVE
@@ -0,0 +1,994 @@
"Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.",,,,,,,,,,,,,,,,,,,
Subject,Subject Data Revision,Screen No.,Age,Age Unit,Gender,Visit,Visit Data Revision,Collected Time,Accession,Test Group,Test,Administrative Question,Value,Result Data Revision,Flags,Cancellation Reason,Comments,Range,Units
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.1,,,,,0 - 5,mg/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CELLULAR ELEMENTS,Ur RBC/HPF,,5,,,,,0 - 8,/HPF
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CELLULAR ELEMENTS,Ur WBC/HPF,,1,,,,,0 - 12,/HPF
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Alkaline Phosphatase,,56,,,,,35 - 104,U/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,ALT (SGPT),,13,,,,,4 - 43,U/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,AST (SGOT),,18,,,,,8 - 40,U/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,GGT,,22,,,,,5 - 50,U/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,LDH,,162,,,,,53 - 234,U/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,71,,,,,31 - 101,umol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Glucose Fasting,,4.0,,,,,3.9 - 5.6,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Uric Acid,,242,,,,,149 - 446,umol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Calcium (EDTA),,2.39,,,,,2.07 - 2.64,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Phosphorus,,1.08,,,,,0.71 - 1.65,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Total Protein,,64,,,,,60 - 80,g/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Creatine Kinase,,52,,,,,26 - 192,U/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Sodium,,139,,,,,135 - 145,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Potassium,,4.3,,,,,3.5 - 5.2,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,119,,,,Result verified by repeat analysis,115 - 158,g/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.8,,L,,Result verified by repeat analysis,3.9 - 5.5,TI/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,96,,,,,80 - 100,fL
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.80,,,,Result verified by repeat analysis,3.8 - 10.7,GI/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.34,,,,Result verified by repeat analysis,1.96 - 7.23,GI/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.86,,,,,0.8 - 3,GI/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,Result verified by repeat analysis,0.12 - 0.92,GI/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,Result verified by repeat analysis,0 - 0.57,GI/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,Result verified by repeat analysis,0 - 0.2,GI/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,63.8,,,,Result verified by repeat analysis,40.5 - 75,%
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.3,,,,Result verified by repeat analysis,15.4 - 48.5,%
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.5,,,,Result verified by repeat analysis,2.6 - 10.1,%
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.8,,,,Result verified by repeat analysis,0 - 6.8,%
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,Result verified by repeat analysis,0 - 2,%
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,459,,H,,Result verified by repeat analysis,130 - 394,GI/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,25.80,,H,,,1.9 - 23,uIU/mL
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,Direct HDL-C 4th Generation,,0.97,,L,,,1.03 - 1.53,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,Triglycerides (GPO),,1.49,,,,,0.63 - 2.71,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,Cholesterol (High Performance),,4.00,,L,,,4.86 - 8.28,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,LIPID PANEL,LDL Chol Friedewald 4th,,2.35,,,,,0 - 3.34,mmol/L
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,MICROORGANISMS,Ur Bacteria,,Present,,,,,Ref Rng:Not present,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,%
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Specific Gravity,,1.013,,,,,1.01 - 1.03,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MACRO PANEL,Ur Leukocyte Esterase,,Trace,,H,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 2 OL Induction Day 29,,"Apr 23, 2026 4:00 PM",6226560887,URINE MICRO PANEL,Ur Microscopic,,Positive,,,,, NEGATIVE$,NEGATIVE
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,C-REACTIVE PROTEIN,C Reactive Protein HS,,<0.2,,,,Result verified by repeat analysis,0 - 5,mg/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.0,,,,,0 - 6.2,umol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Alkaline Phosphatase,,60,,,,,40 - 129,U/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,ALT (SGPT),,35,,,,,5 - 48,U/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,AST (SGOT),,28,,,,,8 - 40,U/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,GGT,,14,,,,,10 - 61,U/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,LDH,,149,,,,,53 - 234,U/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Urea Nitrogen,,4.0,,,,,1.4 - 8.6,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Glucose Fasting,,4.7,,,,,3.9 - 5.6,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Uric Acid,,285,,,,,125 - 488,umol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Calcium (EDTA),,2.41,,,,,2.07 - 2.64,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Phosphorus,,1.11,,,,,0.71 - 1.65,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Albumin-BCG,,48,,,,,33 - 49,g/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Creatine Kinase,,157,,,,,39 - 308,U/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Potassium,,3.9,,,,,3.5 - 5.2,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Bicarbonate,,24.5,,,,,19.3 - 29.3,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,154,,,,,127 - 181,g/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.44,,,,,0.39 - 0.54,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 96,fL
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.52,,,,,3.8 - 10.7,GI/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.31,,,,,1.96 - 7.23,GI/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.76,,,,,0.91 - 4.28,GI/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.32,,,,,0.12 - 0.92,GI/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,%
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,31.9,,,,,15.4 - 48.5,%
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,%
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,%
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.3,,,,,0 - 2,%
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,174,,,,,140 - 400,GI/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,2.95,,,,,1.9 - 23,uIU/mL
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,Direct HDL-C 4th Generation,,1.39,,,,Result verified by repeat analysis,1.03 - 1.53,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,Triglycerides (GPO),,0.75,,,,,0.5 - 2.81,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,Cholesterol (High Performance),,3.90,,,,,3.31 - 6.1,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,LIPID PANEL,LDL Chol Friedewald 4th,,2.17,,,,,0 - 3.34,mmol/L
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,%
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Specific Gravity,,1.012,,,,,1 - 1.04,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 2 OL Induction Day 29,,"Apr 22, 2026 3:30 PM",6226752554,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.5,,,,,0 - 5,mg/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Alkaline Phosphatase,,54,,,,,35 - 104,U/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,GGT,,23,,,,,5 - 50,U/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,LDH,,143,,,,,53 - 234,U/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Urea Nitrogen,,3.8,,,,,1.4 - 8.6,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,31 - 101,umol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Glucose Fasting,,5.3,,,,,3.9 - 5.6,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Uric Acid,,259,,,,,149 - 446,umol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Calcium (EDTA),,2.47,,,,,2.07 - 2.64,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Total Protein,,69,,,,,60 - 80,g/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Creatine Kinase,,41,,,,,26 - 192,U/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Sodium,,143,,,,,135 - 145,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Bicarbonate,,25.2,,,,,19.3 - 29.3,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,122,,,,,115 - 158,g/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,94,,,,,80 - 100,fL
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.11,,,,,3.8 - 10.7,GI/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.82,,,,,1.96 - 7.23,GI/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.76,,,,,0.8 - 3,GI/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.43,,,,,0.12 - 0.92,GI/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.07,,,,,0 - 0.57,GI/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,67.8,,,,,40.5 - 75,%
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,24.8,,,,,15.4 - 48.5,%
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.1,,,,,2.6 - 10.1,%
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.0,,,,,0 - 6.8,%
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.2,,,,,0 - 2,%
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,466,R,H,,,130 - 394,GI/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.4,,,,,<6.5 %,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,9.83,,,,,1.9 - 23,uIU/mL
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,Direct HDL-C 4th Generation,,1.06,,,,,1.03 - 1.53,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,Triglycerides (GPO),,1.56,,,,,0.63 - 2.71,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,Cholesterol (High Performance),,4.33,,L,,,4.86 - 8.28,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,LIPID PANEL,LDL Chol Friedewald 4th,,2.56,,,,,0 - 3.34,mmol/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,%
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,TSH,TSH 3rd IS-QT,,0.806,,,,,0.45 - 5.33,mIU/L
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Specific Gravity,,1.010,,,,,1.01 - 1.03,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,End of Phase/Treatment,R,"Mar 25, 2026 5:00 PM",6226560888,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,C-REACTIVE PROTEIN,C Reactive Protein HS,,0.2,,,,Result verified by repeat analysis,0 - 5,mg/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Total Bilirubin,,6,,,,,3 - 21,umol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Alkaline Phosphatase,,62,,,,,40 - 129,U/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,ALT (SGPT),,39,,,,,5 - 48,U/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,GGT,,13,,,,,10 - 61,U/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,LDH,,156,,,,,53 - 234,U/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Urea Nitrogen,,5.0,,,,,1.4 - 8.6,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 110,umol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Glucose Fasting,,5.5,,,,,3.9 - 5.6,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Uric Acid,,330,,,,,125 - 488,umol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Calcium (EDTA),,2.29,,,,,2.07 - 2.64,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Phosphorus,,1.11,,,,,0.71 - 1.65,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Total Protein,,66,,,,,61 - 84,g/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Creatine Kinase,,149,,,,,39 - 308,U/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Potassium,,4.1,,,,,3.5 - 5.2,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Bicarbonate,,23.2,,,,,19.3 - 29.3,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,159,,,,,127 - 181,g/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.94,,,,,3.8 - 10.7,GI/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.55,,,,,1.96 - 7.23,GI/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.81,,,,,0.91 - 4.28,GI/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.15,,,,,0 - 0.57,GI/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,%
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.5,,,,,15.4 - 48.5,%
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.7,,,,,2.6 - 10.1,%
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.5,,,,,0 - 6.8,%
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,189,,,,,140 - 400,GI/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.1,,,,,<6.5 %,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,19.10,,,,,1.9 - 23,uIU/mL
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,Direct HDL-C 4th Generation,,1.09,,,,,1.03 - 1.53,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,Triglycerides (GPO),,1.96,,,,,0.5 - 2.81,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,Cholesterol (High Performance),,3.72,,,,,3.31 - 6.1,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,LIPID PANEL,LDL Chol Friedewald 4th,,1.73,,,,,0 - 3.34,mmol/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,%
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,TSH,TSH 3rd IS-QT,,1.089,,,,,0.45 - 5.33,mIU/L
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,End of Phase/Treatment,R,"Mar 25, 2026 3:00 PM",6226752555,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,C-REACTIVE PROTEIN,C Reactive Protein HS,,9.2,,H,,,0 - 5,mg/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Total Bilirubin,,16,,,,,3 - 21,umol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,4.6,,,,,0 - 6.2,umol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Alkaline Phosphatase,,77,,,,,40 - 129,U/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,ALT (SGPT),,37,,,,,5 - 48,U/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,AST (SGOT),,29,,,,,8 - 40,U/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,GGT,,79,R,H,,,10 - 61,U/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,LDH,,103,,,,,53 - 234,U/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Urea Nitrogen,,2.3,,,,,1.4 - 8.6,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 110,umol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Glucose Fasting,,5.2,,,,,3.9 - 5.6,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Uric Acid,,427,,,,,125 - 488,umol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Phosphorus,,0.97,,,,,0.71 - 1.65,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Total Protein,,71,,,,,61 - 84,g/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Creatine Kinase,,102,,,,,39 - 308,U/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Potassium,,3.8,,,,,3.5 - 5.2,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Bicarbonate,,25.2,,,,,19.3 - 29.3,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,CHEMISTRY PANEL,Serum Chloride,,97,,,,,94 - 112,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,160,,,,,127 - 181,g/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.2,,,,,4.5 - 6.4,TI/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,87,,,,,79 - 96,fL
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,7.04,,,,,3.8 - 10.7,GI/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.60,,,,,1.96 - 7.23,GI/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.86,,,,,0.91 - 4.28,GI/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.41,,,,,0.12 - 0.92,GI/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.12,,,,,0 - 0.57,GI/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,65.3,,,,,40.5 - 75,%
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,26.4,,,,,15.4 - 48.5,%
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,%
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.7,,,,,0 - 6.8,%
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,%
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,366,,,,,140 - 400,GI/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,R,"Mar 6, 2026 2:00 PM",6226560891,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.55,,,,,1.9 - 23,uIU/mL
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,Triglycerides (GPO),,1.94,,,,,0.56 - 3.62,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,Cholesterol (High Performance),,4.72,,,,,3.88 - 6.83,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,LIPID PANEL,LDL Chol Friedewald 4th,,2.60,,,,,0 - 3.34,mmol/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,RETICULOCYTES,Reticulocyte Count %,,1.2,,,,,0.6 - 2.5,%
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,TSH,TSH 3rd IS-QT,,0.976,,,,,0.45 - 5.33,mIU/L
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Specific Gravity,,1.016,,,,,1 - 1.04,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 DB Every 12 Weeks,,"Mar 6, 2026 2:00 PM",6226560891,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.4,,,,,0 - 6.2,umol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,35 - 104,U/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,ALT (SGPT),,14,,,,,4 - 43,U/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,GGT,,21,,,,,5 - 50,U/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,LDH,,136,,,,,53 - 234,U/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Urea Nitrogen,,4.1,,,,,1.4 - 8.6,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,80,,,,,31 - 101,umol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Glucose Fasting,,5.1,,,,,3.9 - 5.6,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Uric Acid,,273,,,,,149 - 446,umol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Calcium (EDTA),,2.49,,,,,2.07 - 2.64,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Phosphorus,,1.13,,,,,0.71 - 1.65,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Total Protein,,69,,,,,60 - 80,g/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Creatine Kinase,,42,,,,,26 - 192,U/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Potassium,,4.7,,,,,3.5 - 5.2,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Bicarbonate,,24.2,,,,,19.3 - 29.3,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,122,,,,,115 - 158,g/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.37,,,,,0.34 - 0.48,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.0,,,,,3.9 - 5.5,TI/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,80 - 100,fL
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,4.67,,,,,3.8 - 10.7,GI/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.77,,,,,1.96 - 7.23,GI/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.32,,,,,0.8 - 3,GI/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.19,,,,,0 - 0.57,GI/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.2,,,,,40.5 - 75,%
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,28.3,,,,,15.4 - 48.5,%
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.0,,,,,2.6 - 10.1,%
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.0,,,,,0 - 6.8,%
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.5,,,,,0 - 2,%
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,453,,H,,,130 - 394,GI/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,14.65,,,,,1.9 - 23,uIU/mL
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,Direct HDL-C 4th Generation,,1.00,,L,,,1.03 - 1.53,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,Triglycerides (GPO),,1.31,,,,,0.63 - 2.71,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,Cholesterol (High Performance),,4.11,,L,,,4.86 - 8.28,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,LIPID PANEL,LDL Chol Friedewald 4th,,2.51,,,,,0 - 3.34,mmol/L
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,%
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1.01 - 1.03,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur pH,,6.5,,,,,5 - 8,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 DB Baseline,,"Feb 15, 2026 3:10 PM",6227775508,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,C-REACTIVE PROTEIN,C Reactive Protein HS,,<0.2,,,,Result verified by repeat analysis,0 - 5,mg/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Total Bilirubin,,5,,,,,3 - 21,umol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.3,,,,,0 - 6.2,umol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,40 - 129,U/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,5 - 48,U/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,GGT,,12,,,,,10 - 61,U/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,LDH,,133,,,,,53 - 234,U/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Urea Nitrogen,,3.9,,,,,1.4 - 8.6,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,72,,,,,40 - 110,umol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Glucose Fasting,,4.9,,,,,3.9 - 5.6,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Uric Acid,,244,,,,,125 - 488,umol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Phosphorus,,1.06,,,,,0.71 - 1.65,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Total Protein,,63,,,,,61 - 84,g/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Creatine Kinase,,139,,,,,39 - 308,U/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Bicarbonate,,22.9,,,,,19.3 - 29.3,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,CHEMISTRY PANEL,Serum Chloride,,106,,,,,94 - 112,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,156,,,,,127 - 181,g/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,89,,,,,79 - 96,fL
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,3.41,,L,,,3.8 - 10.7,GI/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,1.63,,L,,,1.96 - 7.23,GI/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.42,,,,,0.91 - 4.28,GI/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.22,,,,,0.12 - 0.92,GI/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.08,,,,,0 - 0.57,GI/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,47.9,,,,,40.5 - 75,%
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,41.7,,,,,15.4 - 48.5,%
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.6,,,,,2.6 - 10.1,%
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.3,,,,,0 - 6.8,%
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.6,,,,,0 - 2,%
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,160,,,,,140 - 400,GI/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,4.99,,,,,1.9 - 23,uIU/mL
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,Direct HDL-C 4th Generation,,1.32,,,,,1.03 - 1.53,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,Triglycerides (GPO),,0.52,,,,,0.5 - 2.81,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,Cholesterol (High Performance),,3.73,,,,,3.31 - 6.1,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,LIPID PANEL,LDL Chol Friedewald 4th,,2.17,,,,,0 - 3.34,mmol/L
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,%
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 DB Baseline,,"Feb 15, 2026 1:30 PM",6227775507,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,C-REACTIVE PROTEIN,C Reactive Protein HS,,<0.2,,,,Result verified by repeat analysis,0 - 5,mg/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.9,,,,,0 - 6.2,umol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Alkaline Phosphatase,,57,,,,,40 - 129,U/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,ALT (SGPT),,22,,,,,5 - 48,U/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,AST (SGOT),,21,,,,,8 - 40,U/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,GGT,,11,,,,,10 - 61,U/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,LDH,,131,,,,,53 - 234,U/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Urea Nitrogen,,5.8,,,,,1.4 - 8.6,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Glucose Fasting,,4.4,,,,,3.9 - 5.6,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Uric Acid,,300,,,,,125 - 488,umol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Calcium (EDTA),,2.33,,,,,2.07 - 2.64,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Total Protein,,62,,,,,61 - 84,g/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Creatine Kinase,,120,,,,,39 - 308,U/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Potassium,,4.8,,,,,3.5 - 5.2,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Bicarbonate,,25.3,,,,,19.3 - 29.3,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CHEMISTRY PANEL,Serum Chloride,,105,,,,,94 - 112,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.28,,H,,,1.42 - 2.08,mL/sec
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,76,,,,,40 - 110,umol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,75.0,,,,,kg,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,GFR,EGFR by MDRD,,107,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,152,,,,,127 - 181,g/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.45,,,,,0.39 - 0.54,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,90,,,,,79 - 96,fL
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.30,,,,,3.8 - 10.7,GI/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,2.90,,,,,1.96 - 7.23,GI/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.77,,,,,0.91 - 4.28,GI/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.14,,,,,0 - 0.2,GI/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.7,,,,,40.5 - 75,%
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,33.3,,,,,15.4 - 48.5,%
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.6,,,,,2.6 - 10.1,%
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.7,,,,,0 - 6.8,%
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,2.6,,H,,,0 - 2,%
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,189,,,,,140 - 400,GI/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,4.9,,,,,<6.5 %,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,3.16,,,,,1.9 - 23,uIU/mL
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,Direct HDL-C 4th Generation,,1.43,,,,,1.03 - 1.53,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,Triglycerides (GPO),,0.61,,,,,0.5 - 2.81,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,Cholesterol (High Performance),,3.71,,,,,3.31 - 6.1,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,LIPID PANEL,LDL Chol Friedewald 4th,,2.00,,,,,0 - 3.34,mmol/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,%
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,TSH,TSH 3rd IS-QT,,1.462,,,,,0.45 - 5.33,mIU/L
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Specific Gravity,,1.009,,,,,1 - 1.04,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120006,,,27,years,Male,Part 1 Screening,,"Feb 1, 2026 12:25 PM",6227767267,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,BENZODIAZEPINE CONFIRM. UR,BenzodiazepineConf-LCMSMS-LDT,,Temazepam (Confirmed),,RX,,,No Ref Rng,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,BENZODIAZEPINE CONFIRM. UR,BenzodiazepineConf-LCMSMS-LDT,,Oxazepam (Confirmed),,RX,,,No Ref Rng,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.3,,,,,0 - 5,mg/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Alkaline Phosphatase,,55,,,,,35 - 104,U/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,ALT (SGPT),,11,,,,,4 - 43,U/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,AST (SGOT),,17,,,,,8 - 40,U/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,GGT,,21,,,,,5 - 50,U/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,LDH,,136,,,,,53 - 234,U/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Uric Acid,,247,,,,,149 - 446,umol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Calcium (EDTA),,2.40,,,,,2.07 - 2.64,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Phosphorus,,1.20,,,,,0.71 - 1.65,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Total Protein,,68,,,,,60 - 80,g/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Creatine Kinase,,44,,,,,26 - 192,U/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Sodium,,142,,,,,135 - 145,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Bicarbonate,,23.5,,,,,19.3 - 29.3,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CHEMISTRY PANEL,Serum Chloride,,103,,,,,94 - 112,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.25,,,,,1.25 - 1.92,mL/sec
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,77,,,,,31 - 101,umol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,74.0,,,,,kg,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Detected (unconfirmed),,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,FSH,Follicle Stimulating Hormone,,55.96,,,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,GFR,EGFR by MDRD,,65,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,119,,,,,115 - 158,g/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.36,,,,,0.34 - 0.48,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,3.9,,,,,3.9 - 5.5,TI/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,80 - 100,fL
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.94,,,,,3.8 - 10.7,GI/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.50,,,,,1.96 - 7.23,GI/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.91,,,,,0.8 - 3,GI/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.10,,,,,0 - 0.57,GI/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,64.8,,,,,40.5 - 75,%
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,27.5,,,,,15.4 - 48.5,%
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.8,,,,,2.6 - 10.1,%
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,1.5,,,,,0 - 6.8,%
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,448,R,H,,,130 - 394,GI/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.5,,,,,<6.5 %,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,5.62,,,,,1.9 - 23,uIU/mL
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,Direct HDL-C 4th Generation,,1.02,R,L,,,1.03 - 1.53,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,Triglycerides (GPO),,1.44,,,,,0.63 - 2.71,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,Cholesterol (High Performance),,4.25,R,L,,,4.86 - 8.28,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,LIPID PANEL,LDL Chol Friedewald 4th,,2.57,,,,,0 - 3.34,mmol/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,RETICULOCYTES,Reticulocyte Count %,,0.7,,,,,0.6 - 2.5,%
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,TSH,TSH 3rd IS-QT,,0.834,,,,,0.45 - 5.33,mIU/L
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Specific Gravity,,1.007,,,,,1.01 - 1.03,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120005,,,65,years,Female,Part 1 Screening,,"Jan 28, 2026 4:50 PM",6227775505,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.8,,,,,0 - 5,mg/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Total Bilirubin,,10,,,,,3 - 21,umol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.3,,,,,0 - 6.2,umol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Alkaline Phosphatase,,70,,,,,40 - 129,U/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,ALT (SGPT),,41,,,,,5 - 48,U/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,AST (SGOT),,27,,,,,8 - 40,U/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,GGT,,81,,H,,,10 - 61,U/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,LDH,,92,,,,,53 - 234,U/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Urea Nitrogen,,3.3,,,,,1.4 - 8.6,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,74,,,,,40 - 110,umol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Glucose Fasting,,6.1,,H,,,3.9 - 5.6,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Uric Acid,,412,,,,,125 - 488,umol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Phosphorus,,0.94,,,,,0.71 - 1.65,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Creatine Kinase,,148,,,,,39 - 308,U/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Bicarbonate,,25.4,,,,,19.3 - 29.3,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.61,,,,,3.8 - 10.7,GI/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.00,,,,,1.96 - 7.23,GI/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.02,,,,,0.91 - 4.28,GI/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.40,,,,,0.12 - 0.92,GI/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.14,,,,,0 - 0.57,GI/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.05,,,,,0 - 0.2,GI/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,60.5,,,,,40.5 - 75,%
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,30.5,,,,,15.4 - 48.5,%
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.0,,,,,2.6 - 10.1,%
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.2,,,,,0 - 6.8,%
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,%
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,322,,,,,140 - 400,GI/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,63.81,,H,,,1.9 - 23,uIU/mL
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,Direct HDL-C 4th Generation,,1.13,,,,,1.03 - 1.53,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,Triglycerides (GPO),,2.66,,,,,0.56 - 3.62,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,Cholesterol (High Performance),,4.84,,,,,3.88 - 6.83,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,LIPID PANEL,LDL Chol Friedewald 4th,,2.49,,,,,0 - 3.34,mmol/L
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,RETICULOCYTES,Reticulocyte Count %,,1.1,,,,,0.6 - 2.5,%
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Specific Gravity,,1.022,,,,,1 - 1.04,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 2 OL Induction Day 29,,"Jan 2, 2026 12:00 PM",6226976943,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.0,,,,,0 - 5,mg/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Total Bilirubin,,9,,,,,3 - 21,umol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.8,,,,,0 - 6.2,umol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Alkaline Phosphatase,,74,,,,,40 - 129,U/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,ALT (SGPT),,42,,,,,5 - 48,U/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,GGT,,70,,H,,,10 - 61,U/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,LDH,,89,,,,,53 - 234,U/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Urea Nitrogen,,3.1,,,,,1.4 - 8.6,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Glucose Fasting,,6.6,R,H,,,3.9 - 5.6,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Uric Acid,,418,,,,,125 - 488,umol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Phosphorus,,0.91,,,,,0.71 - 1.65,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Albumin-BCG,,45,,,,,33 - 49,g/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Creatine Kinase,,100,,,,,39 - 308,U/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Sodium,,140,,,,,132 - 147,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Bicarbonate,,26.3,,,,,19.3 - 29.3,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,153,,,,,127 - 181,g/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.43,,,,,0.39 - 0.54,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.1,,,,,4.5 - 6.4,TI/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,84,,,,,79 - 96,fL
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.86,,,,,3.8 - 10.7,GI/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.10,,,,,1.96 - 7.23,GI/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.01,,,,,0.91 - 4.28,GI/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.39,,,,,0.12 - 0.92,GI/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.30,,,,,0 - 0.57,GI/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.07,,,,,0 - 0.2,GI/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,59.8,,,,,40.5 - 75,%
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,29.2,,,,,15.4 - 48.5,%
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.7,,,,,2.6 - 10.1,%
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.3,,,,,0 - 6.8,%
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,1.0,,,,,0 - 2,%
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,374,,,,,140 - 400,GI/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,HEMOGLOBIN A1C,"Hemoglobin A1c,NGSP-RM",,5.7,,,,,<6.5 %,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,196.11,,H,,,1.9 - 23,uIU/mL
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,Direct HDL-C 4th Generation,,0.97,,L,,,1.03 - 1.53,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,Triglycerides (GPO),,2.92,,,,,0.56 - 3.62,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,Cholesterol (High Performance),,4.31,,,,,3.88 - 6.83,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,LIPID PANEL,LDL Chol Friedewald 4th,,2.00,,,,,0 - 3.34,mmol/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,RETICULOCYTES,Reticulocyte Count %,,0.9,,,,,0.6 - 2.5,%
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,TSH,TSH 3rd IS-QT,,0.889,,,,,0.45 - 5.33,mIU/L
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,End of Phase/Treatment,,"Dec 5, 2025 3:00 PM",6225351126,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.6,,,,,0 - 5,mg/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.9,,,,,0 - 6.2,umol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Alkaline Phosphatase,,67,,,,,40 - 129,U/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,ALT (SGPT),,34,,,,,5 - 48,U/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,AST (SGOT),,20,,,,,8 - 40,U/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,GGT,,69,,H,,,10 - 61,U/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,LDH,,98,,,,,53 - 234,U/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Urea Nitrogen,,2.2,,,,,1.4 - 8.6,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,75,,,,,40 - 110,umol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Glucose Fasting,,5.6,,,,,3.9 - 5.6,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Uric Acid,,520,R,H,,,125 - 488,umol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Calcium (EDTA),,2.37,,,,,2.07 - 2.64,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Phosphorus,,1.19,,,,,0.71 - 1.65,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Total Protein,,65,,,,,61 - 84,g/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Creatine Kinase,,126,,,,,39 - 308,U/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Sodium,,142,,,,,132 - 147,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Potassium,,4.0,,,,,3.5 - 5.2,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Bicarbonate,,21.4,,,,,19.3 - 29.3,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,CHEMISTRY PANEL,Serum Chloride,,104,,,,,94 - 112,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,146,,,,,127 - 181,g/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.9,,,,,4.5 - 6.4,TI/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,86,,,,,79 - 96,fL
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,6.43,,,,,3.8 - 10.7,GI/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.49,,,,,1.96 - 7.23,GI/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,2.20,,,,,0.91 - 4.28,GI/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.44,,,,,0.12 - 0.92,GI/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.24,,,,,0 - 0.57,GI/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.04,,,,,0 - 0.2,GI/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,54.4,,,,,40.5 - 75,%
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,34.2,,,,,15.4 - 48.5,%
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.9,,,,,2.6 - 10.1,%
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.8,,,,,0 - 6.8,%
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.7,,,,,0 - 2,%
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,288,,,,,140 - 400,GI/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.24,,,,,1.9 - 23,uIU/mL
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,Direct HDL-C 4th Generation,,1.15,,,,,1.03 - 1.53,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,Triglycerides (GPO),,1.64,,,,,0.56 - 3.62,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,Cholesterol (High Performance),,4.19,,,,,3.88 - 6.83,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,LIPID PANEL,LDL Chol Friedewald 4th,,2.29,,,,,0 - 3.34,mmol/L
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,RETICULOCYTES,Reticulocyte Count %,,1.3,,,,,0.6 - 2.5,%
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Specific Gravity,,1.011,,,,,1 - 1.04,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 DB Baseline,,"Oct 22, 2025 12:15 PM",6225351120,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,C-REACTIVE PROTEIN,C Reactive Protein HS,,3.6,,,,,0 - 5,mg/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Total Bilirubin,,8,,,,,3 - 21,umol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,3.2,,,,,0 - 6.2,umol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Alkaline Phosphatase,,65,,,,,40 - 129,U/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,5 - 48,U/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,AST (SGOT),,26,,,,,8 - 40,U/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,GGT,,62,,H,,,10 - 61,U/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,LDH,,105,,,,,53 - 234,U/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Urea Nitrogen,,2.2,,,,,1.4 - 8.6,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Glucose Fasting,,5.8,,H,,,3.9 - 5.6,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Uric Acid,,472,,,,,125 - 488,umol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Calcium (EDTA),,2.36,,,,,2.07 - 2.64,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Phosphorus,,1.14,,,,,0.71 - 1.65,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Total Protein,,69,,,,,61 - 84,g/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Creatine Kinase,,132,,,,,39 - 308,U/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Sodium,,141,,,,,132 - 147,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Potassium,,4.4,,,,,3.5 - 5.2,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Bicarbonate,,21.0,,,,,19.3 - 29.3,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,3.53,,H,,,1.42 - 2.08,mL/sec
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,77,,,,,40 - 110,umol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,130.2,,,,,kg,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,GFR,EGFR by MDRD,,98,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,148,,,,,127 - 181,g/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.42,,,,,0.39 - 0.54,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,5.0,,,,,4.5 - 6.4,TI/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,85,,,,,79 - 96,fL
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.89,,,,,3.8 - 10.7,GI/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.47,,,,,1.96 - 7.23,GI/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.93,,,,,0.91 - 4.28,GI/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.30,,,,,0.12 - 0.92,GI/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.17,,,,,0 - 0.57,GI/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.02,,,,,0 - 0.2,GI/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,58.8,,,,,40.5 - 75,%
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,32.7,,,,,15.4 - 48.5,%
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.1,,,,,2.6 - 10.1,%
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,2.9,,,,,0 - 6.8,%
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.4,,,,,0 - 2,%
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,369,,,,,140 - 400,GI/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.5,,,,,<6.5%,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,16.15,,,,,1.9 - 23,uIU/mL
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,Direct HDL-C 4th Generation,,1.24,,,,,1.03 - 1.53,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,Triglycerides (GPO),,1.40,,,,,0.56 - 3.62,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,Cholesterol (High Performance),,4.07,,,,,3.88 - 6.83,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,LIPID PANEL,LDL Chol Friedewald 4th,,2.19,,,,,0 - 3.34,mmol/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,RETICULOCYTES,Reticulocyte Count %,,1.0,,,,,0.6 - 2.5,%
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,TSH,TSH 3rd IS-QT,,1.099,,,,,0.45 - 5.33,mIU/L
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Specific Gravity,,1.017,,,,,1 - 1.04,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur pH,,5.0,,,,,5 - 8,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120004,,,39,years,Male,Part 1 Screening,,"Oct 1, 2025 1:00 PM",6225351111,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.4,,,,,0 - 5,mg/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.4,,,,,0 - 6.2,umol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Alkaline Phosphatase,,84,,,,,35 - 104,U/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,ALT (SGPT),,36,,,,,4 - 43,U/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,AST (SGOT),,24,,,,,8 - 40,U/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,GGT,,44,,,,,4 - 49,U/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,LDH,,220,,,,,53 - 234,U/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Urea Nitrogen,,3.4,,,,,1.4 - 8.6,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Glucose Fasting,,4.6,,,,,3.9 - 5.6,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Uric Acid,,295,,,,,125 - 428,umol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Calcium (EDTA),,2.42,,,,,2.07 - 2.64,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Phosphorus,,0.89,,,,,0.71 - 1.65,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Total Protein,,77,,,,,61 - 84,g/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Albumin-BCG,,47,,,,,33 - 49,g/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Creatine Kinase,,92,,,,,26 - 192,U/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Sodium,,139,,,,,132 - 147,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Potassium,,4.2,,,,,3.5 - 5.2,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Bicarbonate,,23.7,,,,,19.3 - 29.3,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CHEMISTRY PANEL,Serum Chloride,,100,,,,,94 - 112,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,3.78,,H,,,1.25 - 1.92,mL/sec
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,58,,,,,31 - 101,umol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,105.0,,,,,kg,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,GFR,EGFR by MDRD,,114,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,137,,,,,116 - 164,g/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.40,,,,,0.34 - 0.48,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.6,,,,,4.1 - 5.6,TI/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,88,,,,,79 - 98,fL
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.91,,,,,3.8 - 10.7,GI/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.15,,,,,1.96 - 7.23,GI/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.38,,,,,0.91 - 4.28,GI/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.33,,,,,0.12 - 0.92,GI/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.04,,,,,0 - 0.57,GI/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.01,,,,,0 - 0.2,GI/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,70.3,,,,,40.5 - 75,%
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,23.3,,,,,15.4 - 48.5,%
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,5.6,,,,,2.6 - 10.1,%
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,0.7,,,,,0 - 6.8,%
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.1,,,,,0 - 2,%
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,241,,,,,140 - 400,GI/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,4.9,,,,,<6.5%,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,15.68,,,,,1.9 - 23,uIU/mL
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,Direct HDL-C 4th Generation,,1.23,,,,,1.03 - 1.53,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,Triglycerides (GPO),,1.78,R,H,,,0.41 - 1.63,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,Cholesterol (High Performance),,5.53,,,,,3.31 - 5.64,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,LIPID PANEL,LDL Chol Friedewald 4th,,3.48,,H,,,0 - 3.34,mmol/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,RETICULOCYTES,Reticulocyte Count %,,2.0,,,,,0.6 - 2.5,%
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,TSH,TSH 3rd IS-QT,,2.503,,,,,0.45 - 5.33,mIU/L
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Specific Gravity,,1.014,,,,,1 - 1.04,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120003,,,21,years,Female,Part 1 Screening,,"Oct 1, 2025 11:00 AM",6225351110,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,C-REACTIVE PROTEIN,C Reactive Protein HS,,1.4,,,,,0 - 5,mg/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Total Bilirubin,,4,,,,,3 - 21,umol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,1.7,,,,,0 - 6.2,umol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Alkaline Phosphatase,,69,,,,,35 - 104,U/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,ALT (SGPT),,5,,,,,4 - 43,U/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,AST (SGOT),,13,,,,,8 - 40,U/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,GGT,,<4,,L,,Result verified by repeat analysis,4 - 49,U/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,LDH,,143,,,,,53 - 234,U/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Urea Nitrogen,,4.8,,,,,1.4 - 8.6,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Glucose Fasting,,4.4,,,,,3.9 - 5.6,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Uric Acid,,193,,,,,125 - 428,umol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Calcium (EDTA),,2.29,,,,,2.07 - 2.64,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Phosphorus,,1.05,,,,,0.71 - 1.65,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Total Protein,,67,,,,,61 - 84,g/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Albumin-BCG,,43,,,,,33 - 49,g/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Creatine Kinase,,75,,,,,26 - 192,U/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Sodium,,137,,,,,132 - 147,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Bicarbonate,,21.2,,,,,19.3 - 29.3,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CHEMISTRY PANEL,Serum Chloride,,102,,,,,94 - 112,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,2.06,,H,,,1.25 - 1.92,mL/sec
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,56,,,,,31 - 101,umol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,65.8,,,,,kg,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,Yes,,,,,,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,GFR,EGFR by MDRD,,105,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,131,,,,,116 - 164,g/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.39,,,,,0.34 - 0.48,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,92,,,,,79 - 98,fL
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.06,,,,,3.8 - 10.7,GI/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,3.38,,,,,1.96 - 7.23,GI/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.11,,,,,0.91 - 4.28,GI/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.35,,,,,0.12 - 0.92,GI/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.20,,,,,0 - 0.57,GI/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,66.7,,,,,40.5 - 75,%
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,21.9,,,,,15.4 - 48.5,%
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,6.8,,,,,2.6 - 10.1,%
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,3.9,,,,,0 - 6.8,%
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.6,,,,,0 - 2,%
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,182,,,,,140 - 400,GI/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,5.0,,,,,<6.5%,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,,,,Test cancelled: Hemolysis-test not performed,,,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,Direct HDL-C 4th Generation,,1.77,R,H,,,1.03 - 1.53,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,Triglycerides (GPO),,0.71,,,,,0.44 - 1.99,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,Cholesterol (High Performance),,5.82,,,,,3.65 - 6.21,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,LIPID PANEL,LDL Chol Friedewald 4th,,3.72,,H,,,0 - 3.34,mmol/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,No,,,,,,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,RETICULOCYTES,Reticulocyte Count %,,1.7,,,,,0.6 - 2.5,%
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,SERUM BETA HCG,"B-hCG, Qualitative",,Negative,,,,,Ref Rng: Negative,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,SERUM BETA HCG,"B-hCG, Quantitative",,<0.6,,,,,Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,TSH,TSH 3rd IS-QT,,1.847,,,,,0.45 - 5.33,mIU/L
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Specific Gravity,,1.006,,,,,1 - 1.04,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur pH,,5.5,,,,,5 - 8,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120002,,,40,years,Female,Part 1 Screening,,"Sep 3, 2025 1:00 PM",6225351109,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,C-REACTIVE PROTEIN,C Reactive Protein HS,,4.6,,,,,0 - 5,mg/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Total Bilirubin,,7,,,,,3 - 21,umol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Direct Bilirubin Gen2-Doumas,,2.5,,,,,0 - 6.2,umol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Alkaline Phosphatase,,71,,,,,35 - 104,U/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,ALT (SGPT),,24,,,,,4 - 43,U/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,AST (SGOT),,31,,,,,8 - 40,U/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,GGT,,79,R,H,,,4 - 49,U/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,LDH,,144,,,,,53 - 234,U/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Urea Nitrogen,,4.3,,,,,1.4 - 8.6,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Creatinine(Rate Blanked)-2dp,,93,,,,,31 - 101,umol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Glucose Fasting,,4.8,,,,,3.9 - 5.6,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Uric Acid,,405,,,,,149 - 446,umol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Calcium (EDTA),,2.38,,,,,2.07 - 2.64,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Phosphorus,,0.92,,,,,0.71 - 1.65,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Total Protein,,72,,,,,61 - 84,g/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Albumin-BCG,,44,,,,,33 - 49,g/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Creatine Kinase,,157,,,,,26 - 192,U/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Sodium,,138,,,,,132 - 147,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Potassium,,4.5,,,,,3.5 - 5.2,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Bicarbonate,,22.8,,,,,19.3 - 29.3,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CHEMISTRY PANEL,Serum Chloride,,101,,,,,94 - 112,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CREATININE CLEARANCE CC&G,CreatininClearancCockcrftGault,,1.33,,,,,1.25 - 1.92,mL/sec
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CREATININE CLEARANCE CC&G,Creatinine(Rate Blanked)-2dp,,93,,,,,31 - 101,umol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,CREATININE CLEARANCE CC&G,"Weight (kg,1dec place)",Y,83.8,,,,,kg,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Amphetamines/MDMA,,Neg,,,,,Neg;$Cutoff = 1000 ng/mL,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Barbiturates,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Cannabinoids,,Neg,,,,,Neg;$Cutoff = 50 ng/mL,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Cocaine,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Opiates,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE,Methadone,,Neg,,,,,Neg;$Cutoff = 300 ng/mL,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,DRUG SCREEN URINE BENZO NON-US,Benzodiazepines Gen 2,,Neg,,,,,Neg;$Cutoff = 200 ng/mL,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,FEMALE OF CHILDBEARING POT?,Female/of Childbearing pot.?,Y,No,,,,,,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,FSH,Follicle Stimulating Hormone,,32.96,,RX,,,Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,GFR,EGFR by MDRD,,54,,,,,mL/min/1.73m^2$No Ref Rng,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Hemoglobin,,117,,,,,116 - 164,g/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Hematocrit,,0.35,,,,,0.34 - 0.48,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,RBC,,4.3,,,,,4.1 - 5.6,TI/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,RBC Morphology,,No Review Required,,,,,NORMOCYTIC;$NORMOCHROMIC,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,MCV,,81,,,,,79 - 98,fL
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,WBC,,5.93,,,,,3.8 - 10.7,GI/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils,,4.05,,,,,1.96 - 7.23,GI/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes,,1.14,,,,,0.91 - 4.28,GI/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes,,0.46,,,,,0.12 - 0.92,GI/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils,,0.25,,,,,0 - 0.57,GI/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils,,0.03,,,,,0 - 0.2,GI/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Neutrophils (%),,68.3,,,,,40.5 - 75,%
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Lymphocytes (%),,19.2,,,,,15.4 - 48.5,%
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Monocytes (%),,7.8,,,,,2.6 - 10.1,%
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Eosinophils (%),,4.2,,,,,0 - 6.8,%
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Basophils (%),,0.5,,,,,0 - 2,%
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMATOLOGY&DIFFERENTIAL PANEL,Platelets,,157,,,,,140 - 400,GI/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,HEMOGLOBIN A1C,"Hemoglobin A1c,Variant(-70)-QT",,6.5,,H,,,<6.5%,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,INSULIN,"Ultra.Insulin,EDTApl,FastingQT",,27.42,,H,,,1.9 - 23,uIU/mL
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,IS SUBJECT FASTING?,Is Subject Fasting?,Y,Yes,,,,,,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,IS SUBJECT OF BLACK RACE?,Subject of black race?,Y,No,,,,,,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,Direct HDL-C 4th Generation,,0.82,R,L,,,1.03 - 1.53,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,Triglycerides (GPO),,2.78,,,,,0.59 - 2.96,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,Cholesterol (High Performance),,5.73,,,,,4.42 - 7.53,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,LIPID PANEL,LDL Chol Friedewald 4th,,3.64,,H,,,0 - 3.34,mmol/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,POSTMENOPAUSAL FEMALE?,<40yrs & amenorrhea >/= 12mo,,Yes,,,,,,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,RETICULOCYTES,Reticulocyte Count %,,1.4,,,,,0.6 - 2.5,%
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,TSH,TSH 3rd IS-QT,,1.091,,,,,0.45 - 5.33,mIU/L
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Specific Gravity,,1.019,,,,,1 - 1.04,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur pH,,6.0,,,,,5 - 8,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Protein,,Negative,,,,,Ref Rng:Negative,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Glucose,,Normal,,,,,Ref Rng:Normal,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Ketones,,Negative,,,,,Ref Rng:Negative,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Bilirubin,,Negative,,,,,Ref Rng:Negative,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Urobilinogen,,Normal,,,,,Ref Rng:Normal,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Blood,,Negative,,,,,Ref Rng:$Negative-Trace,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Nitrite,,Negative,,,,,Ref Rng:Negative,
CZ100120001,,,56,years,Female,Part 1 Screening,,"Aug 6, 2025 1:35 PM",6225351106,URINE MACRO PANEL,Ur Leukocyte Esterase,,Negative,,,,,Ref Rng:Negative,
1 Disclaimer: The information presented in On-Screen Results is not intended to be a replacement of the official Lab Results, Alerts, Data Revisions and Cancellations found in the Lab Reports section of this software application. On-Screen Results should not be used for patient diagnosis, treatment decisions or submission to regulatory bodies.
2 Subject Subject Data Revision Screen No. Age Age Unit Gender Visit Visit Data Revision Collected Time Accession Test Group Test Administrative Question Value Result Data Revision Flags Cancellation Reason Comments Range Units
3 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 C-REACTIVE PROTEIN C Reactive Protein HS 1.1 0 - 5 mg/L
4 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CELLULAR ELEMENTS Ur RBC/HPF 5 0 - 8 /HPF
5 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CELLULAR ELEMENTS Ur WBC/HPF 1 0 - 12 /HPF
6 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
7 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.5 0 - 6.2 umol/L
8 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Alkaline Phosphatase 56 35 - 104 U/L
9 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL ALT (SGPT) 13 4 - 43 U/L
10 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL AST (SGOT) 18 8 - 40 U/L
11 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL GGT 22 5 - 50 U/L
12 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL LDH 162 53 - 234 U/L
13 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Urea Nitrogen 3.9 1.4 - 8.6 mmol/L
14 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 71 31 - 101 umol/L
15 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Glucose Fasting 4.0 3.9 - 5.6 mmol/L
16 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Serum Uric Acid 242 149 - 446 umol/L
17 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Calcium (EDTA) 2.39 2.07 - 2.64 mmol/L
18 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Phosphorus 1.08 0.71 - 1.65 mmol/L
19 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Total Protein 64 60 - 80 g/L
20 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Albumin-BCG 44 33 - 49 g/L
21 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Creatine Kinase 52 26 - 192 U/L
22 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Serum Sodium 139 135 - 145 mmol/L
23 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Serum Potassium 4.3 3.5 - 5.2 mmol/L
24 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Serum Bicarbonate 22.9 19.3 - 29.3 mmol/L
25 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
26 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 119 Result verified by repeat analysis 115 - 158 g/L
27 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.36 0.34 - 0.48
28 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL RBC 3.8 L Result verified by repeat analysis 3.9 - 5.5 TI/L
29 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
30 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL MCV 96 80 - 100 fL
31 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.80 Result verified by repeat analysis 3.8 - 10.7 GI/L
32 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.34 Result verified by repeat analysis 1.96 - 7.23 GI/L
33 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.86 0.8 - 3 GI/L
34 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.44 Result verified by repeat analysis 0.12 - 0.92 GI/L
35 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.12 Result verified by repeat analysis 0 - 0.57 GI/L
36 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 Result verified by repeat analysis 0 - 0.2 GI/L
37 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 63.8 Result verified by repeat analysis 40.5 - 75 %
38 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 27.3 Result verified by repeat analysis 15.4 - 48.5 %
39 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.5 Result verified by repeat analysis 2.6 - 10.1 %
40 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.8 Result verified by repeat analysis 0 - 6.8 %
41 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 Result verified by repeat analysis 0 - 2 %
42 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 459 H Result verified by repeat analysis 130 - 394 GI/L
43 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 INSULIN Ultra.Insulin,EDTApl,FastingQT 25.80 H 1.9 - 23 uIU/mL
44 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
45 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 LIPID PANEL Direct HDL-C 4th Generation 0.97 L 1.03 - 1.53 mmol/L
46 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 LIPID PANEL Triglycerides (GPO) 1.49 0.63 - 2.71 mmol/L
47 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 LIPID PANEL Cholesterol (High Performance) 4.00 L 4.86 - 8.28 mmol/L
48 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 LIPID PANEL LDL Chol Friedewald 4th 2.35 0 - 3.34 mmol/L
49 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 MICROORGANISMS Ur Bacteria Present Ref Rng:Not present
50 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 RETICULOCYTES Reticulocyte Count % 0.9 0.6 - 2.5 %
51 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur Specific Gravity 1.013 1.01 - 1.03
52 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur pH 5.5 5 - 8
53 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
54 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
55 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
56 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
57 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
58 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur Blood Negative Ref Rng:$Negative-Trace
59 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
60 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MACRO PANEL Ur Leukocyte Esterase Trace H Ref Rng:Negative
61 CZ100120005 65 years Female Part 2 OL Induction Day 29 Apr 23, 2026 4:00 PM 6226560887 URINE MICRO PANEL Ur Microscopic Positive NEGATIVE$ NEGATIVE
62 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 C-REACTIVE PROTEIN C Reactive Protein HS <0.2 Result verified by repeat analysis 0 - 5 mg/L
63 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Total Bilirubin 9 3 - 21 umol/L
64 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.0 0 - 6.2 umol/L
65 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Alkaline Phosphatase 60 40 - 129 U/L
66 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL ALT (SGPT) 35 5 - 48 U/L
67 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL AST (SGOT) 28 8 - 40 U/L
68 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL GGT 14 10 - 61 U/L
69 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL LDH 149 53 - 234 U/L
70 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Urea Nitrogen 4.0 1.4 - 8.6 mmol/L
71 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 77 40 - 110 umol/L
72 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Glucose Fasting 4.7 3.9 - 5.6 mmol/L
73 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Serum Uric Acid 285 125 - 488 umol/L
74 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Calcium (EDTA) 2.41 2.07 - 2.64 mmol/L
75 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Phosphorus 1.11 0.71 - 1.65 mmol/L
76 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Total Protein 67 61 - 84 g/L
77 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Albumin-BCG 48 33 - 49 g/L
78 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Creatine Kinase 157 39 - 308 U/L
79 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
80 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Serum Potassium 3.9 3.5 - 5.2 mmol/L
81 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Serum Bicarbonate 24.5 19.3 - 29.3 mmol/L
82 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
83 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 154 127 - 181 g/L
84 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.44 0.39 - 0.54
85 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4.5 - 6.4 TI/L
86 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
87 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL MCV 88 79 - 96 fL
88 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.52 3.8 - 10.7 GI/L
89 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.31 1.96 - 7.23 GI/L
90 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.76 0.91 - 4.28 GI/L
91 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.32 0.12 - 0.92 GI/L
92 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.12 0 - 0.57 GI/L
93 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.01 0 - 0.2 GI/L
94 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 59.8 40.5 - 75 %
95 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 31.9 15.4 - 48.5 %
96 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.8 2.6 - 10.1 %
97 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.2 0 - 6.8 %
98 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.3 0 - 2 %
99 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 174 140 - 400 GI/L
100 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 INSULIN Ultra.Insulin,EDTApl,FastingQT 2.95 1.9 - 23 uIU/mL
101 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
102 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 LIPID PANEL Direct HDL-C 4th Generation 1.39 Result verified by repeat analysis 1.03 - 1.53 mmol/L
103 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 LIPID PANEL Triglycerides (GPO) 0.75 0.5 - 2.81 mmol/L
104 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 LIPID PANEL Cholesterol (High Performance) 3.90 3.31 - 6.1 mmol/L
105 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 LIPID PANEL LDL Chol Friedewald 4th 2.17 0 - 3.34 mmol/L
106 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 RETICULOCYTES Reticulocyte Count % 1.4 0.6 - 2.5 %
107 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur Specific Gravity 1.012 1 - 1.04
108 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur pH 6.5 5 - 8
109 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
110 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
111 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
112 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
113 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
114 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
115 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
116 CZ100120006 27 years Male Part 2 OL Induction Day 29 Apr 22, 2026 3:30 PM 6226752554 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
117 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 C-REACTIVE PROTEIN C Reactive Protein HS 1.5 0 - 5 mg/L
118 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Total Bilirubin 8 3 - 21 umol/L
119 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.8 0 - 6.2 umol/L
120 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Alkaline Phosphatase 54 35 - 104 U/L
121 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL ALT (SGPT) 14 4 - 43 U/L
122 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL AST (SGOT) 20 8 - 40 U/L
123 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL GGT 23 5 - 50 U/L
124 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL LDH 143 53 - 234 U/L
125 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Urea Nitrogen 3.8 1.4 - 8.6 mmol/L
126 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 72 31 - 101 umol/L
127 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Glucose Fasting 5.3 3.9 - 5.6 mmol/L
128 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Serum Uric Acid 259 149 - 446 umol/L
129 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Calcium (EDTA) 2.47 2.07 - 2.64 mmol/L
130 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Phosphorus 1.20 0.71 - 1.65 mmol/L
131 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Total Protein 69 60 - 80 g/L
132 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Albumin-BCG 45 33 - 49 g/L
133 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Creatine Kinase 41 26 - 192 U/L
134 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Serum Sodium 143 135 - 145 mmol/L
135 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Serum Potassium 4.7 3.5 - 5.2 mmol/L
136 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Serum Bicarbonate 25.2 19.3 - 29.3 mmol/L
137 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
138 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 122 115 - 158 g/L
139 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.37 0.34 - 0.48
140 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.0 3.9 - 5.5 TI/L
141 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
142 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL MCV 94 80 - 100 fL
143 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL WBC 7.11 3.8 - 10.7 GI/L
144 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.82 1.96 - 7.23 GI/L
145 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.76 0.8 - 3 GI/L
146 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.43 0.12 - 0.92 GI/L
147 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.07 0 - 0.57 GI/L
148 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.02 0 - 0.2 GI/L
149 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 67.8 40.5 - 75 %
150 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 24.8 15.4 - 48.5 %
151 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.1 2.6 - 10.1 %
152 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.0 0 - 6.8 %
153 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.2 0 - 2 %
154 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 466 R H 130 - 394 GI/L
155 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 HEMOGLOBIN A1C Hemoglobin A1c,NGSP-RM 5.4 <6.5 %
156 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 INSULIN Ultra.Insulin,EDTApl,FastingQT 9.83 1.9 - 23 uIU/mL
157 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
158 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 LIPID PANEL Direct HDL-C 4th Generation 1.06 1.03 - 1.53 mmol/L
159 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 LIPID PANEL Triglycerides (GPO) 1.56 0.63 - 2.71 mmol/L
160 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 LIPID PANEL Cholesterol (High Performance) 4.33 L 4.86 - 8.28 mmol/L
161 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 LIPID PANEL LDL Chol Friedewald 4th 2.56 0 - 3.34 mmol/L
162 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 RETICULOCYTES Reticulocyte Count % 1.1 0.6 - 2.5 %
163 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 TSH TSH 3rd IS-QT 0.806 0.45 - 5.33 mIU/L
164 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur Specific Gravity 1.010 1.01 - 1.03
165 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur pH 6.0 5 - 8
166 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
167 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
168 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
169 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
170 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
171 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur Blood Negative Ref Rng:$Negative-Trace
172 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
173 CZ100120005 65 years Female End of Phase/Treatment R Mar 25, 2026 5:00 PM 6226560888 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
174 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 C-REACTIVE PROTEIN C Reactive Protein HS 0.2 Result verified by repeat analysis 0 - 5 mg/L
175 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Total Bilirubin 6 3 - 21 umol/L
176 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.3 0 - 6.2 umol/L
177 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Alkaline Phosphatase 62 40 - 129 U/L
178 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL ALT (SGPT) 39 5 - 48 U/L
179 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL AST (SGOT) 29 8 - 40 U/L
180 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL GGT 13 10 - 61 U/L
181 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL LDH 156 53 - 234 U/L
182 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Urea Nitrogen 5.0 1.4 - 8.6 mmol/L
183 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 74 40 - 110 umol/L
184 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Glucose Fasting 5.5 3.9 - 5.6 mmol/L
185 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Serum Uric Acid 330 125 - 488 umol/L
186 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Calcium (EDTA) 2.29 2.07 - 2.64 mmol/L
187 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Phosphorus 1.11 0.71 - 1.65 mmol/L
188 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Total Protein 66 61 - 84 g/L
189 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Albumin-BCG 45 33 - 49 g/L
190 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Creatine Kinase 149 39 - 308 U/L
191 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
192 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Serum Potassium 4.1 3.5 - 5.2 mmol/L
193 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Serum Bicarbonate 23.2 19.3 - 29.3 mmol/L
194 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
195 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 159 127 - 181 g/L
196 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.45 0.39 - 0.54
197 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.1 4.5 - 6.4 TI/L
198 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
199 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 79 - 96 fL
200 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.94 3.8 - 10.7 GI/L
201 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.55 1.96 - 7.23 GI/L
202 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.81 0.91 - 4.28 GI/L
203 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.40 0.12 - 0.92 GI/L
204 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.15 0 - 0.57 GI/L
205 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
206 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 59.8 40.5 - 75 %
207 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 30.5 15.4 - 48.5 %
208 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.7 2.6 - 10.1 %
209 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.5 0 - 6.8 %
210 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
211 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 189 140 - 400 GI/L
212 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 HEMOGLOBIN A1C Hemoglobin A1c,NGSP-RM 5.1 <6.5 %
213 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 INSULIN Ultra.Insulin,EDTApl,FastingQT 19.10 1.9 - 23 uIU/mL
214 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
215 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 LIPID PANEL Direct HDL-C 4th Generation 1.09 1.03 - 1.53 mmol/L
216 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 LIPID PANEL Triglycerides (GPO) 1.96 0.5 - 2.81 mmol/L
217 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 LIPID PANEL Cholesterol (High Performance) 3.72 3.31 - 6.1 mmol/L
218 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 LIPID PANEL LDL Chol Friedewald 4th 1.73 0 - 3.34 mmol/L
219 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 RETICULOCYTES Reticulocyte Count % 1.2 0.6 - 2.5 %
220 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 TSH TSH 3rd IS-QT 1.089 0.45 - 5.33 mIU/L
221 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur Specific Gravity 1.019 1 - 1.04
222 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur pH 5.5 5 - 8
223 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
224 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
225 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
226 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
227 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
228 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
229 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
230 CZ100120006 27 years Male End of Phase/Treatment R Mar 25, 2026 3:00 PM 6226752555 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
231 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 C-REACTIVE PROTEIN C Reactive Protein HS 9.2 H 0 - 5 mg/L
232 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Total Bilirubin 16 3 - 21 umol/L
233 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 4.6 0 - 6.2 umol/L
234 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Alkaline Phosphatase 77 40 - 129 U/L
235 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL ALT (SGPT) 37 5 - 48 U/L
236 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL AST (SGOT) 29 8 - 40 U/L
237 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL GGT 79 R H 10 - 61 U/L
238 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL LDH 103 53 - 234 U/L
239 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Urea Nitrogen 2.3 1.4 - 8.6 mmol/L
240 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 74 40 - 110 umol/L
241 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Glucose Fasting 5.2 3.9 - 5.6 mmol/L
242 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Serum Uric Acid 427 125 - 488 umol/L
243 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Calcium (EDTA) 2.40 2.07 - 2.64 mmol/L
244 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Phosphorus 0.97 0.71 - 1.65 mmol/L
245 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Total Protein 71 61 - 84 g/L
246 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Albumin-BCG 47 33 - 49 g/L
247 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Creatine Kinase 102 39 - 308 U/L
248 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
249 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Serum Potassium 3.8 3.5 - 5.2 mmol/L
250 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Serum Bicarbonate 25.2 19.3 - 29.3 mmol/L
251 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 CHEMISTRY PANEL Serum Chloride 97 94 - 112 mmol/L
252 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 160 127 - 181 g/L
253 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.45 0.39 - 0.54
254 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.2 4.5 - 6.4 TI/L
255 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
256 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL MCV 87 79 - 96 fL
257 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL WBC 7.04 3.8 - 10.7 GI/L
258 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.60 1.96 - 7.23 GI/L
259 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.86 0.91 - 4.28 GI/L
260 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.41 0.12 - 0.92 GI/L
261 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.12 0 - 0.57 GI/L
262 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
263 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 65.3 40.5 - 75 %
264 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 26.4 15.4 - 48.5 %
265 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.8 2.6 - 10.1 %
266 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.7 0 - 6.8 %
267 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 0 - 2 %
268 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 366 140 - 400 GI/L
269 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 HEMOGLOBIN A1C Hemoglobin A1c,NGSP-RM 5.7 <6.5 %
270 CZ100120004 39 years Male Part 2 DB Every 12 Weeks R Mar 6, 2026 2:00 PM 6226560891 INSULIN Ultra.Insulin,EDTApl,FastingQT 16.55 1.9 - 23 uIU/mL
271 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
272 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 LIPID PANEL Direct HDL-C 4th Generation 1.23 1.03 - 1.53 mmol/L
273 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 LIPID PANEL Triglycerides (GPO) 1.94 0.56 - 3.62 mmol/L
274 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 LIPID PANEL Cholesterol (High Performance) 4.72 3.88 - 6.83 mmol/L
275 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 LIPID PANEL LDL Chol Friedewald 4th 2.60 0 - 3.34 mmol/L
276 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 RETICULOCYTES Reticulocyte Count % 1.2 0.6 - 2.5 %
277 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 TSH TSH 3rd IS-QT 0.976 0.45 - 5.33 mIU/L
278 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur Specific Gravity 1.016 1 - 1.04
279 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur pH 6.0 5 - 8
280 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
281 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
282 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
283 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
284 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
285 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
286 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
287 CZ100120004 39 years Male Part 2 DB Every 12 Weeks Mar 6, 2026 2:00 PM 6226560891 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
288 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 C-REACTIVE PROTEIN C Reactive Protein HS 1.3 0 - 5 mg/L
289 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Total Bilirubin 10 3 - 21 umol/L
290 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.4 0 - 6.2 umol/L
291 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Alkaline Phosphatase 55 35 - 104 U/L
292 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL ALT (SGPT) 14 4 - 43 U/L
293 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
294 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL GGT 21 5 - 50 U/L
295 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL LDH 136 53 - 234 U/L
296 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Urea Nitrogen 4.1 1.4 - 8.6 mmol/L
297 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 80 31 - 101 umol/L
298 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Glucose Fasting 5.1 3.9 - 5.6 mmol/L
299 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Serum Uric Acid 273 149 - 446 umol/L
300 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Calcium (EDTA) 2.49 2.07 - 2.64 mmol/L
301 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Phosphorus 1.13 0.71 - 1.65 mmol/L
302 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Total Protein 69 60 - 80 g/L
303 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Albumin-BCG 45 33 - 49 g/L
304 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Creatine Kinase 42 26 - 192 U/L
305 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Serum Sodium 142 135 - 145 mmol/L
306 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Serum Potassium 4.7 3.5 - 5.2 mmol/L
307 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Serum Bicarbonate 24.2 19.3 - 29.3 mmol/L
308 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
309 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 122 115 - 158 g/L
310 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.37 0.34 - 0.48
311 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.0 3.9 - 5.5 TI/L
312 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
313 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 80 - 100 fL
314 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL WBC 4.67 3.8 - 10.7 GI/L
315 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.77 1.96 - 7.23 GI/L
316 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.32 0.8 - 3 GI/L
317 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.33 0.12 - 0.92 GI/L
318 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.19 0 - 0.57 GI/L
319 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.07 0 - 0.2 GI/L
320 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 59.2 40.5 - 75 %
321 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 28.3 15.4 - 48.5 %
322 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.0 2.6 - 10.1 %
323 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 4.0 0 - 6.8 %
324 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.5 0 - 2 %
325 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 453 H 130 - 394 GI/L
326 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 INSULIN Ultra.Insulin,EDTApl,FastingQT 14.65 1.9 - 23 uIU/mL
327 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
328 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 LIPID PANEL Direct HDL-C 4th Generation 1.00 L 1.03 - 1.53 mmol/L
329 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 LIPID PANEL Triglycerides (GPO) 1.31 0.63 - 2.71 mmol/L
330 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 LIPID PANEL Cholesterol (High Performance) 4.11 L 4.86 - 8.28 mmol/L
331 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 LIPID PANEL LDL Chol Friedewald 4th 2.51 0 - 3.34 mmol/L
332 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 RETICULOCYTES Reticulocyte Count % 0.9 0.6 - 2.5 %
333 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur Specific Gravity 1.019 1.01 - 1.03
334 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur pH 6.5 5 - 8
335 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
336 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
337 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
338 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
339 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
340 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur Blood Negative Ref Rng:$Negative-Trace
341 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
342 CZ100120005 65 years Female Part 1 DB Baseline Feb 15, 2026 3:10 PM 6227775508 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
343 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 C-REACTIVE PROTEIN C Reactive Protein HS <0.2 Result verified by repeat analysis 0 - 5 mg/L
344 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Total Bilirubin 5 3 - 21 umol/L
345 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.3 0 - 6.2 umol/L
346 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Alkaline Phosphatase 55 40 - 129 U/L
347 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL ALT (SGPT) 24 5 - 48 U/L
348 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL AST (SGOT) 21 8 - 40 U/L
349 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL GGT 12 10 - 61 U/L
350 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL LDH 133 53 - 234 U/L
351 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Urea Nitrogen 3.9 1.4 - 8.6 mmol/L
352 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 72 40 - 110 umol/L
353 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Glucose Fasting 4.9 3.9 - 5.6 mmol/L
354 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Serum Uric Acid 244 125 - 488 umol/L
355 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Calcium (EDTA) 2.40 2.07 - 2.64 mmol/L
356 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Phosphorus 1.06 0.71 - 1.65 mmol/L
357 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Total Protein 63 61 - 84 g/L
358 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Albumin-BCG 45 33 - 49 g/L
359 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Creatine Kinase 139 39 - 308 U/L
360 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
361 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
362 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Serum Bicarbonate 22.9 19.3 - 29.3 mmol/L
363 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 CHEMISTRY PANEL Serum Chloride 106 94 - 112 mmol/L
364 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 156 127 - 181 g/L
365 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.45 0.39 - 0.54
366 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4.5 - 6.4 TI/L
367 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
368 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL MCV 89 79 - 96 fL
369 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL WBC 3.41 L 3.8 - 10.7 GI/L
370 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 1.63 L 1.96 - 7.23 GI/L
371 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.42 0.91 - 4.28 GI/L
372 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.22 0.12 - 0.92 GI/L
373 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.08 0 - 0.57 GI/L
374 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
375 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 47.9 40.5 - 75 %
376 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 41.7 15.4 - 48.5 %
377 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.6 2.6 - 10.1 %
378 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.3 0 - 6.8 %
379 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.6 0 - 2 %
380 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 160 140 - 400 GI/L
381 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 INSULIN Ultra.Insulin,EDTApl,FastingQT 4.99 1.9 - 23 uIU/mL
382 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
383 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 LIPID PANEL Direct HDL-C 4th Generation 1.32 1.03 - 1.53 mmol/L
384 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 LIPID PANEL Triglycerides (GPO) 0.52 0.5 - 2.81 mmol/L
385 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 LIPID PANEL Cholesterol (High Performance) 3.73 3.31 - 6.1 mmol/L
386 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 LIPID PANEL LDL Chol Friedewald 4th 2.17 0 - 3.34 mmol/L
387 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 RETICULOCYTES Reticulocyte Count % 0.7 0.6 - 2.5 %
388 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur Specific Gravity 1.006 1 - 1.04
389 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur pH 6.0 5 - 8
390 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
391 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
392 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
393 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
394 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
395 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
396 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
397 CZ100120006 27 years Male Part 1 DB Baseline Feb 15, 2026 1:30 PM 6227775507 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
398 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 C-REACTIVE PROTEIN C Reactive Protein HS <0.2 Result verified by repeat analysis 0 - 5 mg/L
399 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Total Bilirubin 4 3 - 21 umol/L
400 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.9 0 - 6.2 umol/L
401 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Alkaline Phosphatase 57 40 - 129 U/L
402 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL ALT (SGPT) 22 5 - 48 U/L
403 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL AST (SGOT) 21 8 - 40 U/L
404 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL GGT 11 10 - 61 U/L
405 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL LDH 131 53 - 234 U/L
406 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Urea Nitrogen 5.8 1.4 - 8.6 mmol/L
407 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 76 40 - 110 umol/L
408 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Glucose Fasting 4.4 3.9 - 5.6 mmol/L
409 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Serum Uric Acid 300 125 - 488 umol/L
410 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Calcium (EDTA) 2.33 2.07 - 2.64 mmol/L
411 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Phosphorus 1.05 0.71 - 1.65 mmol/L
412 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Total Protein 62 61 - 84 g/L
413 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Albumin-BCG 45 33 - 49 g/L
414 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Creatine Kinase 120 39 - 308 U/L
415 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
416 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Serum Potassium 4.8 3.5 - 5.2 mmol/L
417 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Serum Bicarbonate 25.3 19.3 - 29.3 mmol/L
418 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CHEMISTRY PANEL Serum Chloride 105 94 - 112 mmol/L
419 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 2.28 H 1.42 - 2.08 mL/sec
420 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 76 40 - 110 umol/L
421 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 75.0 kg
422 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 DRUG SCREEN URINE Amphetamines/MDMA Neg Neg;$Cutoff = 1000 ng/mL
423 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 DRUG SCREEN URINE Barbiturates Neg Neg;$Cutoff = 200 ng/mL
424 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 DRUG SCREEN URINE Cannabinoids Neg Neg;$Cutoff = 50 ng/mL
425 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 DRUG SCREEN URINE Cocaine Neg Neg;$Cutoff = 300 ng/mL
426 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 DRUG SCREEN URINE Opiates Neg Neg;$Cutoff = 300 ng/mL
427 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 DRUG SCREEN URINE Methadone Neg Neg;$Cutoff = 300 ng/mL
428 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 DRUG SCREEN URINE BENZO NON-US Benzodiazepines Gen 2 Neg Neg;$Cutoff = 200 ng/mL
429 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 GFR EGFR by MDRD 107 mL/min/1.73m^2$No Ref Rng
430 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 152 127 - 181 g/L
431 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.45 0.39 - 0.54
432 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4.5 - 6.4 TI/L
433 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
434 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL MCV 90 79 - 96 fL
435 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.30 3.8 - 10.7 GI/L
436 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 2.90 1.96 - 7.23 GI/L
437 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.77 0.91 - 4.28 GI/L
438 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.35 0.12 - 0.92 GI/L
439 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.14 0 - 0.57 GI/L
440 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.14 0 - 0.2 GI/L
441 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 54.7 40.5 - 75 %
442 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 33.3 15.4 - 48.5 %
443 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.6 2.6 - 10.1 %
444 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.7 0 - 6.8 %
445 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 2.6 H 0 - 2 %
446 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 189 140 - 400 GI/L
447 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 HEMOGLOBIN A1C Hemoglobin A1c,NGSP-RM 4.9 <6.5 %
448 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 INSULIN Ultra.Insulin,EDTApl,FastingQT 3.16 1.9 - 23 uIU/mL
449 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
450 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 IS SUBJECT OF BLACK RACE? Subject of black race? Y No
451 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 LIPID PANEL Direct HDL-C 4th Generation 1.43 1.03 - 1.53 mmol/L
452 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 LIPID PANEL Triglycerides (GPO) 0.61 0.5 - 2.81 mmol/L
453 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 LIPID PANEL Cholesterol (High Performance) 3.71 3.31 - 6.1 mmol/L
454 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 LIPID PANEL LDL Chol Friedewald 4th 2.00 0 - 3.34 mmol/L
455 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 RETICULOCYTES Reticulocyte Count % 1.1 0.6 - 2.5 %
456 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 TSH TSH 3rd IS-QT 1.462 0.45 - 5.33 mIU/L
457 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur Specific Gravity 1.009 1 - 1.04
458 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur pH 6.0 5 - 8
459 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
460 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
461 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
462 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
463 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
464 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
465 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
466 CZ100120006 27 years Male Part 1 Screening Feb 1, 2026 12:25 PM 6227767267 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
467 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 BENZODIAZEPINE CONFIRM. UR BenzodiazepineConf-LCMSMS-LDT Temazepam (Confirmed) RX No Ref Rng
468 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 BENZODIAZEPINE CONFIRM. UR BenzodiazepineConf-LCMSMS-LDT Oxazepam (Confirmed) RX No Ref Rng
469 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 C-REACTIVE PROTEIN C Reactive Protein HS 1.3 0 - 5 mg/L
470 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Total Bilirubin 4 3 - 21 umol/L
471 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.5 0 - 6.2 umol/L
472 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Alkaline Phosphatase 55 35 - 104 U/L
473 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL ALT (SGPT) 11 4 - 43 U/L
474 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL AST (SGOT) 17 8 - 40 U/L
475 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL GGT 21 5 - 50 U/L
476 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL LDH 136 53 - 234 U/L
477 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Urea Nitrogen 4.3 1.4 - 8.6 mmol/L
478 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 77 31 - 101 umol/L
479 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Glucose Fasting 4.8 3.9 - 5.6 mmol/L
480 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Serum Uric Acid 247 149 - 446 umol/L
481 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Calcium (EDTA) 2.40 2.07 - 2.64 mmol/L
482 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Phosphorus 1.20 0.71 - 1.65 mmol/L
483 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Total Protein 68 60 - 80 g/L
484 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Albumin-BCG 45 33 - 49 g/L
485 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Creatine Kinase 44 26 - 192 U/L
486 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Serum Sodium 142 135 - 145 mmol/L
487 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Serum Potassium 4.5 3.5 - 5.2 mmol/L
488 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Serum Bicarbonate 23.5 19.3 - 29.3 mmol/L
489 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CHEMISTRY PANEL Serum Chloride 103 94 - 112 mmol/L
490 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 1.25 1.25 - 1.92 mL/sec
491 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 77 31 - 101 umol/L
492 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 74.0 kg
493 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 DRUG SCREEN URINE Amphetamines/MDMA Neg Neg;$Cutoff = 1000 ng/mL
494 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 DRUG SCREEN URINE Barbiturates Neg Neg;$Cutoff = 200 ng/mL
495 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 DRUG SCREEN URINE Cannabinoids Neg Neg;$Cutoff = 50 ng/mL
496 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 DRUG SCREEN URINE Cocaine Neg Neg;$Cutoff = 300 ng/mL
497 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 DRUG SCREEN URINE Opiates Neg Neg;$Cutoff = 300 ng/mL
498 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 DRUG SCREEN URINE Methadone Neg Neg;$Cutoff = 300 ng/mL
499 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 DRUG SCREEN URINE BENZO NON-US Benzodiazepines Gen 2 Detected (unconfirmed) Neg;$Cutoff = 200 ng/mL
500 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y No
501 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 FSH Follicle Stimulating Hormone 55.96 Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L
502 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 GFR EGFR by MDRD 65 mL/min/1.73m^2$No Ref Rng
503 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 119 115 - 158 g/L
504 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.36 0.34 - 0.48
505 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL RBC 3.9 3.9 - 5.5 TI/L
506 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
507 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 80 - 100 fL
508 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.94 3.8 - 10.7 GI/L
509 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.50 1.96 - 7.23 GI/L
510 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.91 0.8 - 3 GI/L
511 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.40 0.12 - 0.92 GI/L
512 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.10 0 - 0.57 GI/L
513 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
514 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 64.8 40.5 - 75 %
515 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 27.5 15.4 - 48.5 %
516 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.8 2.6 - 10.1 %
517 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 1.5 0 - 6.8 %
518 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
519 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 448 R H 130 - 394 GI/L
520 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 HEMOGLOBIN A1C Hemoglobin A1c,NGSP-RM 5.5 <6.5 %
521 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 INSULIN Ultra.Insulin,EDTApl,FastingQT 5.62 1.9 - 23 uIU/mL
522 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
523 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 IS SUBJECT OF BLACK RACE? Subject of black race? Y No
524 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 LIPID PANEL Direct HDL-C 4th Generation 1.02 R L 1.03 - 1.53 mmol/L
525 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 LIPID PANEL Triglycerides (GPO) 1.44 0.63 - 2.71 mmol/L
526 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 LIPID PANEL Cholesterol (High Performance) 4.25 R L 4.86 - 8.28 mmol/L
527 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 LIPID PANEL LDL Chol Friedewald 4th 2.57 0 - 3.34 mmol/L
528 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 POSTMENOPAUSAL FEMALE? <40yrs & amenorrhea >/= 12mo Yes
529 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 RETICULOCYTES Reticulocyte Count % 0.7 0.6 - 2.5 %
530 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 TSH TSH 3rd IS-QT 0.834 0.45 - 5.33 mIU/L
531 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur Specific Gravity 1.007 1.01 - 1.03
532 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur pH 5.5 5 - 8
533 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
534 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
535 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
536 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
537 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
538 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur Blood Negative Ref Rng:$Negative-Trace
539 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
540 CZ100120005 65 years Female Part 1 Screening Jan 28, 2026 4:50 PM 6227775505 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
541 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 C-REACTIVE PROTEIN C Reactive Protein HS 4.8 0 - 5 mg/L
542 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Total Bilirubin 10 3 - 21 umol/L
543 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.3 0 - 6.2 umol/L
544 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Alkaline Phosphatase 70 40 - 129 U/L
545 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL ALT (SGPT) 41 5 - 48 U/L
546 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL AST (SGOT) 27 8 - 40 U/L
547 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL GGT 81 H 10 - 61 U/L
548 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL LDH 92 53 - 234 U/L
549 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Urea Nitrogen 3.3 1.4 - 8.6 mmol/L
550 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 74 40 - 110 umol/L
551 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Glucose Fasting 6.1 H 3.9 - 5.6 mmol/L
552 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Serum Uric Acid 412 125 - 488 umol/L
553 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Calcium (EDTA) 2.37 2.07 - 2.64 mmol/L
554 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Phosphorus 0.94 0.71 - 1.65 mmol/L
555 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Total Protein 67 61 - 84 g/L
556 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Albumin-BCG 45 33 - 49 g/L
557 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Creatine Kinase 148 39 - 308 U/L
558 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
559 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
560 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Serum Bicarbonate 25.4 19.3 - 29.3 mmol/L
561 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 CHEMISTRY PANEL Serum Chloride 100 94 - 112 mmol/L
562 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 153 127 - 181 g/L
563 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.43 0.39 - 0.54
564 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4.5 - 6.4 TI/L
565 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
566 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL MCV 86 79 - 96 fL
567 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.61 3.8 - 10.7 GI/L
568 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.00 1.96 - 7.23 GI/L
569 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.02 0.91 - 4.28 GI/L
570 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.40 0.12 - 0.92 GI/L
571 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.14 0 - 0.57 GI/L
572 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.05 0 - 0.2 GI/L
573 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 60.5 40.5 - 75 %
574 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 30.5 15.4 - 48.5 %
575 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.0 2.6 - 10.1 %
576 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.2 0 - 6.8 %
577 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 0 - 2 %
578 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 322 140 - 400 GI/L
579 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 INSULIN Ultra.Insulin,EDTApl,FastingQT 63.81 H 1.9 - 23 uIU/mL
580 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
581 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 LIPID PANEL Direct HDL-C 4th Generation 1.13 1.03 - 1.53 mmol/L
582 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 LIPID PANEL Triglycerides (GPO) 2.66 0.56 - 3.62 mmol/L
583 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 LIPID PANEL Cholesterol (High Performance) 4.84 3.88 - 6.83 mmol/L
584 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 LIPID PANEL LDL Chol Friedewald 4th 2.49 0 - 3.34 mmol/L
585 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 RETICULOCYTES Reticulocyte Count % 1.1 0.6 - 2.5 %
586 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur Specific Gravity 1.022 1 - 1.04
587 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur pH 5.5 5 - 8
588 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
589 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
590 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
591 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
592 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
593 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
594 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
595 CZ100120004 39 years Male Part 2 OL Induction Day 29 Jan 2, 2026 12:00 PM 6226976943 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
596 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 C-REACTIVE PROTEIN C Reactive Protein HS 4.0 0 - 5 mg/L
597 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Total Bilirubin 9 3 - 21 umol/L
598 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.8 0 - 6.2 umol/L
599 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Alkaline Phosphatase 74 40 - 129 U/L
600 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL ALT (SGPT) 42 5 - 48 U/L
601 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL AST (SGOT) 26 8 - 40 U/L
602 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL GGT 70 H 10 - 61 U/L
603 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL LDH 89 53 - 234 U/L
604 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Urea Nitrogen 3.1 1.4 - 8.6 mmol/L
605 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 77 40 - 110 umol/L
606 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Glucose Fasting 6.6 R H 3.9 - 5.6 mmol/L
607 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Serum Uric Acid 418 125 - 488 umol/L
608 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Calcium (EDTA) 2.38 2.07 - 2.64 mmol/L
609 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Phosphorus 0.91 0.71 - 1.65 mmol/L
610 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Total Protein 72 61 - 84 g/L
611 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Albumin-BCG 45 33 - 49 g/L
612 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Creatine Kinase 100 39 - 308 U/L
613 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Serum Sodium 140 132 - 147 mmol/L
614 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Serum Potassium 4.0 3.5 - 5.2 mmol/L
615 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Serum Bicarbonate 26.3 19.3 - 29.3 mmol/L
616 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 CHEMISTRY PANEL Serum Chloride 100 94 - 112 mmol/L
617 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 153 127 - 181 g/L
618 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.43 0.39 - 0.54
619 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.1 4.5 - 6.4 TI/L
620 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
621 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL MCV 84 79 - 96 fL
622 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.86 3.8 - 10.7 GI/L
623 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.10 1.96 - 7.23 GI/L
624 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.01 0.91 - 4.28 GI/L
625 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.39 0.12 - 0.92 GI/L
626 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.30 0 - 0.57 GI/L
627 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.07 0 - 0.2 GI/L
628 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 59.8 40.5 - 75 %
629 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 29.2 15.4 - 48.5 %
630 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.7 2.6 - 10.1 %
631 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 4.3 0 - 6.8 %
632 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 1.0 0 - 2 %
633 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 374 140 - 400 GI/L
634 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 HEMOGLOBIN A1C Hemoglobin A1c,NGSP-RM 5.7 <6.5 %
635 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 INSULIN Ultra.Insulin,EDTApl,FastingQT 196.11 H 1.9 - 23 uIU/mL
636 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
637 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 LIPID PANEL Direct HDL-C 4th Generation 0.97 L 1.03 - 1.53 mmol/L
638 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 LIPID PANEL Triglycerides (GPO) 2.92 0.56 - 3.62 mmol/L
639 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 LIPID PANEL Cholesterol (High Performance) 4.31 3.88 - 6.83 mmol/L
640 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 LIPID PANEL LDL Chol Friedewald 4th 2.00 0 - 3.34 mmol/L
641 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 RETICULOCYTES Reticulocyte Count % 0.9 0.6 - 2.5 %
642 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 TSH TSH 3rd IS-QT 0.889 0.45 - 5.33 mIU/L
643 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur Specific Gravity 1.011 1 - 1.04
644 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur pH 5.5 5 - 8
645 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
646 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
647 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
648 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
649 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
650 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
651 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
652 CZ100120004 39 years Male End of Phase/Treatment Dec 5, 2025 3:00 PM 6225351126 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
653 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 C-REACTIVE PROTEIN C Reactive Protein HS 3.6 0 - 5 mg/L
654 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Total Bilirubin 8 3 - 21 umol/L
655 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.9 0 - 6.2 umol/L
656 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Alkaline Phosphatase 67 40 - 129 U/L
657 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL ALT (SGPT) 34 5 - 48 U/L
658 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL AST (SGOT) 20 8 - 40 U/L
659 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL GGT 69 H 10 - 61 U/L
660 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL LDH 98 53 - 234 U/L
661 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Urea Nitrogen 2.2 1.4 - 8.6 mmol/L
662 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 75 40 - 110 umol/L
663 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Glucose Fasting 5.6 3.9 - 5.6 mmol/L
664 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Serum Uric Acid 520 R H 125 - 488 umol/L
665 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Calcium (EDTA) 2.37 2.07 - 2.64 mmol/L
666 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Phosphorus 1.19 0.71 - 1.65 mmol/L
667 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Total Protein 65 61 - 84 g/L
668 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Albumin-BCG 44 33 - 49 g/L
669 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Creatine Kinase 126 39 - 308 U/L
670 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Serum Sodium 142 132 - 147 mmol/L
671 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Serum Potassium 4.0 3.5 - 5.2 mmol/L
672 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Serum Bicarbonate 21.4 19.3 - 29.3 mmol/L
673 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 CHEMISTRY PANEL Serum Chloride 104 94 - 112 mmol/L
674 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 146 127 - 181 g/L
675 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.42 0.39 - 0.54
676 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.9 4.5 - 6.4 TI/L
677 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
678 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL MCV 86 79 - 96 fL
679 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL WBC 6.43 3.8 - 10.7 GI/L
680 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.49 1.96 - 7.23 GI/L
681 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 2.20 0.91 - 4.28 GI/L
682 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.44 0.12 - 0.92 GI/L
683 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.24 0 - 0.57 GI/L
684 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.04 0 - 0.2 GI/L
685 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 54.4 40.5 - 75 %
686 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 34.2 15.4 - 48.5 %
687 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.9 2.6 - 10.1 %
688 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.8 0 - 6.8 %
689 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.7 0 - 2 %
690 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 288 140 - 400 GI/L
691 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 INSULIN Ultra.Insulin,EDTApl,FastingQT 15.24 1.9 - 23 uIU/mL
692 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
693 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 LIPID PANEL Direct HDL-C 4th Generation 1.15 1.03 - 1.53 mmol/L
694 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 LIPID PANEL Triglycerides (GPO) 1.64 0.56 - 3.62 mmol/L
695 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 LIPID PANEL Cholesterol (High Performance) 4.19 3.88 - 6.83 mmol/L
696 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 LIPID PANEL LDL Chol Friedewald 4th 2.29 0 - 3.34 mmol/L
697 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 RETICULOCYTES Reticulocyte Count % 1.3 0.6 - 2.5 %
698 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur Specific Gravity 1.011 1 - 1.04
699 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur pH 5.0 5 - 8
700 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
701 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
702 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
703 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
704 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
705 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
706 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
707 CZ100120004 39 years Male Part 1 DB Baseline Oct 22, 2025 12:15 PM 6225351120 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
708 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 C-REACTIVE PROTEIN C Reactive Protein HS 3.6 0 - 5 mg/L
709 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Total Bilirubin 8 3 - 21 umol/L
710 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 3.2 0 - 6.2 umol/L
711 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Alkaline Phosphatase 65 40 - 129 U/L
712 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL ALT (SGPT) 36 5 - 48 U/L
713 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL AST (SGOT) 26 8 - 40 U/L
714 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL GGT 62 H 10 - 61 U/L
715 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL LDH 105 53 - 234 U/L
716 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Urea Nitrogen 2.2 1.4 - 8.6 mmol/L
717 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 77 40 - 110 umol/L
718 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Glucose Fasting 5.8 H 3.9 - 5.6 mmol/L
719 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Serum Uric Acid 472 125 - 488 umol/L
720 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Calcium (EDTA) 2.36 2.07 - 2.64 mmol/L
721 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Phosphorus 1.14 0.71 - 1.65 mmol/L
722 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Total Protein 69 61 - 84 g/L
723 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Albumin-BCG 47 33 - 49 g/L
724 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Creatine Kinase 132 39 - 308 U/L
725 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Serum Sodium 141 132 - 147 mmol/L
726 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Serum Potassium 4.4 3.5 - 5.2 mmol/L
727 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Serum Bicarbonate 21.0 19.3 - 29.3 mmol/L
728 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
729 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 3.53 H 1.42 - 2.08 mL/sec
730 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 77 40 - 110 umol/L
731 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 130.2 kg
732 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 DRUG SCREEN URINE Amphetamines/MDMA Neg Neg;$Cutoff = 1000 ng/mL
733 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 DRUG SCREEN URINE Barbiturates Neg Neg;$Cutoff = 200 ng/mL
734 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 DRUG SCREEN URINE Cannabinoids Neg Neg;$Cutoff = 50 ng/mL
735 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 DRUG SCREEN URINE Cocaine Neg Neg;$Cutoff = 300 ng/mL
736 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 DRUG SCREEN URINE Opiates Neg Neg;$Cutoff = 300 ng/mL
737 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 DRUG SCREEN URINE Methadone Neg Neg;$Cutoff = 300 ng/mL
738 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 DRUG SCREEN URINE BENZO NON-US Benzodiazepines Gen 2 Neg Neg;$Cutoff = 200 ng/mL
739 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 GFR EGFR by MDRD 98 mL/min/1.73m^2$No Ref Rng
740 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 148 127 - 181 g/L
741 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.42 0.39 - 0.54
742 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL RBC 5.0 4.5 - 6.4 TI/L
743 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
744 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL MCV 85 79 - 96 fL
745 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.89 3.8 - 10.7 GI/L
746 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.47 1.96 - 7.23 GI/L
747 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.93 0.91 - 4.28 GI/L
748 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.30 0.12 - 0.92 GI/L
749 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.17 0 - 0.57 GI/L
750 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.02 0 - 0.2 GI/L
751 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 58.8 40.5 - 75 %
752 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 32.7 15.4 - 48.5 %
753 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.1 2.6 - 10.1 %
754 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 2.9 0 - 6.8 %
755 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.4 0 - 2 %
756 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 369 140 - 400 GI/L
757 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 HEMOGLOBIN A1C Hemoglobin A1c,Variant(-70)-QT 5.5 <6.5%
758 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 INSULIN Ultra.Insulin,EDTApl,FastingQT 16.15 1.9 - 23 uIU/mL
759 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
760 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 IS SUBJECT OF BLACK RACE? Subject of black race? Y No
761 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 LIPID PANEL Direct HDL-C 4th Generation 1.24 1.03 - 1.53 mmol/L
762 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 LIPID PANEL Triglycerides (GPO) 1.40 0.56 - 3.62 mmol/L
763 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 LIPID PANEL Cholesterol (High Performance) 4.07 3.88 - 6.83 mmol/L
764 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 LIPID PANEL LDL Chol Friedewald 4th 2.19 0 - 3.34 mmol/L
765 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 RETICULOCYTES Reticulocyte Count % 1.0 0.6 - 2.5 %
766 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 TSH TSH 3rd IS-QT 1.099 0.45 - 5.33 mIU/L
767 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur Specific Gravity 1.017 1 - 1.04
768 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur pH 5.0 5 - 8
769 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
770 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
771 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
772 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
773 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
774 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur Blood Negative Ref Rng:Negative
775 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
776 CZ100120004 39 years Male Part 1 Screening Oct 1, 2025 1:00 PM 6225351111 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
777 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 C-REACTIVE PROTEIN C Reactive Protein HS 1.4 0 - 5 mg/L
778 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
779 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.4 0 - 6.2 umol/L
780 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Alkaline Phosphatase 84 35 - 104 U/L
781 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL ALT (SGPT) 36 4 - 43 U/L
782 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL AST (SGOT) 24 8 - 40 U/L
783 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL GGT 44 4 - 49 U/L
784 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL LDH 220 53 - 234 U/L
785 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Urea Nitrogen 3.4 1.4 - 8.6 mmol/L
786 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 58 31 - 101 umol/L
787 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Glucose Fasting 4.6 3.9 - 5.6 mmol/L
788 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Serum Uric Acid 295 125 - 428 umol/L
789 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Calcium (EDTA) 2.42 2.07 - 2.64 mmol/L
790 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Phosphorus 0.89 0.71 - 1.65 mmol/L
791 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Total Protein 77 61 - 84 g/L
792 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Albumin-BCG 47 33 - 49 g/L
793 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Creatine Kinase 92 26 - 192 U/L
794 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Serum Sodium 139 132 - 147 mmol/L
795 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Serum Potassium 4.2 3.5 - 5.2 mmol/L
796 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Serum Bicarbonate 23.7 19.3 - 29.3 mmol/L
797 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CHEMISTRY PANEL Serum Chloride 100 94 - 112 mmol/L
798 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 3.78 H 1.25 - 1.92 mL/sec
799 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 58 31 - 101 umol/L
800 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 105.0 kg
801 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 DRUG SCREEN URINE Amphetamines/MDMA Neg Neg;$Cutoff = 1000 ng/mL
802 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 DRUG SCREEN URINE Barbiturates Neg Neg;$Cutoff = 200 ng/mL
803 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 DRUG SCREEN URINE Cannabinoids Neg Neg;$Cutoff = 50 ng/mL
804 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 DRUG SCREEN URINE Cocaine Neg Neg;$Cutoff = 300 ng/mL
805 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 DRUG SCREEN URINE Opiates Neg Neg;$Cutoff = 300 ng/mL
806 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 DRUG SCREEN URINE Methadone Neg Neg;$Cutoff = 300 ng/mL
807 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 DRUG SCREEN URINE BENZO NON-US Benzodiazepines Gen 2 Neg Neg;$Cutoff = 200 ng/mL
808 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y Yes
809 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 GFR EGFR by MDRD 114 mL/min/1.73m^2$No Ref Rng
810 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 137 116 - 164 g/L
811 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.40 0.34 - 0.48
812 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.6 4.1 - 5.6 TI/L
813 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
814 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL MCV 88 79 - 98 fL
815 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.91 3.8 - 10.7 GI/L
816 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.15 1.96 - 7.23 GI/L
817 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.38 0.91 - 4.28 GI/L
818 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.33 0.12 - 0.92 GI/L
819 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.04 0 - 0.57 GI/L
820 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.01 0 - 0.2 GI/L
821 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 70.3 40.5 - 75 %
822 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 23.3 15.4 - 48.5 %
823 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 5.6 2.6 - 10.1 %
824 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 0.7 0 - 6.8 %
825 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.1 0 - 2 %
826 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 241 140 - 400 GI/L
827 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 HEMOGLOBIN A1C Hemoglobin A1c,Variant(-70)-QT 4.9 <6.5%
828 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 INSULIN Ultra.Insulin,EDTApl,FastingQT 15.68 1.9 - 23 uIU/mL
829 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
830 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 IS SUBJECT OF BLACK RACE? Subject of black race? Y No
831 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 LIPID PANEL Direct HDL-C 4th Generation 1.23 1.03 - 1.53 mmol/L
832 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 LIPID PANEL Triglycerides (GPO) 1.78 R H 0.41 - 1.63 mmol/L
833 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 LIPID PANEL Cholesterol (High Performance) 5.53 3.31 - 5.64 mmol/L
834 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 LIPID PANEL LDL Chol Friedewald 4th 3.48 H 0 - 3.34 mmol/L
835 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 POSTMENOPAUSAL FEMALE? <40yrs & amenorrhea >/= 12mo No
836 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 RETICULOCYTES Reticulocyte Count % 2.0 0.6 - 2.5 %
837 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 SERUM BETA HCG B-hCG, Qualitative Negative Ref Rng: Negative
838 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 SERUM BETA HCG B-hCG, Quantitative <0.6 Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive
839 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 TSH TSH 3rd IS-QT 2.503 0.45 - 5.33 mIU/L
840 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur Specific Gravity 1.014 1 - 1.04
841 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur pH 6.0 5 - 8
842 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
843 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
844 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
845 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
846 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
847 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur Blood Negative Ref Rng:$Negative-Trace
848 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
849 CZ100120003 21 years Female Part 1 Screening Oct 1, 2025 11:00 AM 6225351110 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
850 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 C-REACTIVE PROTEIN C Reactive Protein HS 1.4 0 - 5 mg/L
851 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Total Bilirubin 4 3 - 21 umol/L
852 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 1.7 0 - 6.2 umol/L
853 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Alkaline Phosphatase 69 35 - 104 U/L
854 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL ALT (SGPT) 5 4 - 43 U/L
855 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL AST (SGOT) 13 8 - 40 U/L
856 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL GGT <4 L Result verified by repeat analysis 4 - 49 U/L
857 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL LDH 143 53 - 234 U/L
858 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Urea Nitrogen 4.8 1.4 - 8.6 mmol/L
859 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 56 31 - 101 umol/L
860 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Glucose Fasting 4.4 3.9 - 5.6 mmol/L
861 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Serum Uric Acid 193 125 - 428 umol/L
862 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Calcium (EDTA) 2.29 2.07 - 2.64 mmol/L
863 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Phosphorus 1.05 0.71 - 1.65 mmol/L
864 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Total Protein 67 61 - 84 g/L
865 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Albumin-BCG 43 33 - 49 g/L
866 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Creatine Kinase 75 26 - 192 U/L
867 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Serum Sodium 137 132 - 147 mmol/L
868 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Serum Potassium 4.5 3.5 - 5.2 mmol/L
869 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Serum Bicarbonate 21.2 19.3 - 29.3 mmol/L
870 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CHEMISTRY PANEL Serum Chloride 102 94 - 112 mmol/L
871 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 2.06 H 1.25 - 1.92 mL/sec
872 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 56 31 - 101 umol/L
873 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 65.8 kg
874 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 DRUG SCREEN URINE Amphetamines/MDMA Neg Neg;$Cutoff = 1000 ng/mL
875 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 DRUG SCREEN URINE Barbiturates Neg Neg;$Cutoff = 200 ng/mL
876 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 DRUG SCREEN URINE Cannabinoids Neg Neg;$Cutoff = 50 ng/mL
877 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 DRUG SCREEN URINE Cocaine Neg Neg;$Cutoff = 300 ng/mL
878 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 DRUG SCREEN URINE Opiates Neg Neg;$Cutoff = 300 ng/mL
879 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 DRUG SCREEN URINE Methadone Neg Neg;$Cutoff = 300 ng/mL
880 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 DRUG SCREEN URINE BENZO NON-US Benzodiazepines Gen 2 Neg Neg;$Cutoff = 200 ng/mL
881 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y Yes
882 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 GFR EGFR by MDRD 105 mL/min/1.73m^2$No Ref Rng
883 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 131 116 - 164 g/L
884 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.39 0.34 - 0.48
885 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.3 4.1 - 5.6 TI/L
886 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
887 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL MCV 92 79 - 98 fL
888 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.06 3.8 - 10.7 GI/L
889 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 3.38 1.96 - 7.23 GI/L
890 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.11 0.91 - 4.28 GI/L
891 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.35 0.12 - 0.92 GI/L
892 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.20 0 - 0.57 GI/L
893 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
894 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 66.7 40.5 - 75 %
895 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 21.9 15.4 - 48.5 %
896 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 6.8 2.6 - 10.1 %
897 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 3.9 0 - 6.8 %
898 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.6 0 - 2 %
899 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 182 140 - 400 GI/L
900 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 HEMOGLOBIN A1C Hemoglobin A1c,Variant(-70)-QT 5.0 <6.5%
901 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 INSULIN Ultra.Insulin,EDTApl,FastingQT Test cancelled: Hemolysis-test not performed
902 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
903 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 IS SUBJECT OF BLACK RACE? Subject of black race? Y No
904 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 LIPID PANEL Direct HDL-C 4th Generation 1.77 R H 1.03 - 1.53 mmol/L
905 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 LIPID PANEL Triglycerides (GPO) 0.71 0.44 - 1.99 mmol/L
906 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 LIPID PANEL Cholesterol (High Performance) 5.82 3.65 - 6.21 mmol/L
907 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 LIPID PANEL LDL Chol Friedewald 4th 3.72 H 0 - 3.34 mmol/L
908 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 POSTMENOPAUSAL FEMALE? <40yrs & amenorrhea >/= 12mo No
909 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 RETICULOCYTES Reticulocyte Count % 1.7 0.6 - 2.5 %
910 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 SERUM BETA HCG B-hCG, Qualitative Negative Ref Rng: Negative
911 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 SERUM BETA HCG B-hCG, Quantitative <0.6 Units: mIU/mL$Pre-menopausal$<5.0: Negative$5.0-24.9:Borderline$>/= 25.0: Positive
912 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 TSH TSH 3rd IS-QT 1.847 0.45 - 5.33 mIU/L
913 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur Specific Gravity 1.006 1 - 1.04
914 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur pH 5.5 5 - 8
915 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
916 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
917 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
918 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
919 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
920 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur Blood Negative Ref Rng:$Negative-Trace
921 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
922 CZ100120002 40 years Female Part 1 Screening Sep 3, 2025 1:00 PM 6225351109 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
923 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 C-REACTIVE PROTEIN C Reactive Protein HS 4.6 0 - 5 mg/L
924 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Total Bilirubin 7 3 - 21 umol/L
925 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Direct Bilirubin Gen2-Doumas 2.5 0 - 6.2 umol/L
926 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Alkaline Phosphatase 71 35 - 104 U/L
927 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL ALT (SGPT) 24 4 - 43 U/L
928 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL AST (SGOT) 31 8 - 40 U/L
929 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL GGT 79 R H 4 - 49 U/L
930 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL LDH 144 53 - 234 U/L
931 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Urea Nitrogen 4.3 1.4 - 8.6 mmol/L
932 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Creatinine(Rate Blanked)-2dp 93 31 - 101 umol/L
933 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Glucose Fasting 4.8 3.9 - 5.6 mmol/L
934 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Serum Uric Acid 405 149 - 446 umol/L
935 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Calcium (EDTA) 2.38 2.07 - 2.64 mmol/L
936 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Phosphorus 0.92 0.71 - 1.65 mmol/L
937 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Total Protein 72 61 - 84 g/L
938 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Albumin-BCG 44 33 - 49 g/L
939 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Creatine Kinase 157 26 - 192 U/L
940 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Serum Sodium 138 132 - 147 mmol/L
941 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Serum Potassium 4.5 3.5 - 5.2 mmol/L
942 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Serum Bicarbonate 22.8 19.3 - 29.3 mmol/L
943 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CHEMISTRY PANEL Serum Chloride 101 94 - 112 mmol/L
944 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CREATININE CLEARANCE CC&G CreatininClearancCockcrftGault 1.33 1.25 - 1.92 mL/sec
945 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CREATININE CLEARANCE CC&G Creatinine(Rate Blanked)-2dp 93 31 - 101 umol/L
946 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 CREATININE CLEARANCE CC&G Weight (kg,1dec place) Y 83.8 kg
947 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 DRUG SCREEN URINE Amphetamines/MDMA Neg Neg;$Cutoff = 1000 ng/mL
948 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 DRUG SCREEN URINE Barbiturates Neg Neg;$Cutoff = 200 ng/mL
949 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 DRUG SCREEN URINE Cannabinoids Neg Neg;$Cutoff = 50 ng/mL
950 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 DRUG SCREEN URINE Cocaine Neg Neg;$Cutoff = 300 ng/mL
951 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 DRUG SCREEN URINE Opiates Neg Neg;$Cutoff = 300 ng/mL
952 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 DRUG SCREEN URINE Methadone Neg Neg;$Cutoff = 300 ng/mL
953 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 DRUG SCREEN URINE BENZO NON-US Benzodiazepines Gen 2 Neg Neg;$Cutoff = 200 ng/mL
954 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 FEMALE OF CHILDBEARING POT? Female/of Childbearing pot.? Y No
955 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 FSH Follicle Stimulating Hormone 32.96 RX Follicular:$3.90-8.80 IU/L$Midcycle:$4.50-22.50 IU/L$Luteal:$1.80-5.10 IU/L$Postmenopausal:$16.70-113.60 IU/L
956 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 GFR EGFR by MDRD 54 mL/min/1.73m^2$No Ref Rng
957 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Hemoglobin 117 116 - 164 g/L
958 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Hematocrit 0.35 0.34 - 0.48
959 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL RBC 4.3 4.1 - 5.6 TI/L
960 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL RBC Morphology No Review Required NORMOCYTIC;$NORMOCHROMIC
961 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL MCV 81 79 - 98 fL
962 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL WBC 5.93 3.8 - 10.7 GI/L
963 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils 4.05 1.96 - 7.23 GI/L
964 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes 1.14 0.91 - 4.28 GI/L
965 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes 0.46 0.12 - 0.92 GI/L
966 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils 0.25 0 - 0.57 GI/L
967 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Basophils 0.03 0 - 0.2 GI/L
968 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Neutrophils (%) 68.3 40.5 - 75 %
969 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Lymphocytes (%) 19.2 15.4 - 48.5 %
970 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Monocytes (%) 7.8 2.6 - 10.1 %
971 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Eosinophils (%) 4.2 0 - 6.8 %
972 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Basophils (%) 0.5 0 - 2 %
973 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMATOLOGY&DIFFERENTIAL PANEL Platelets 157 140 - 400 GI/L
974 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 HEMOGLOBIN A1C Hemoglobin A1c,Variant(-70)-QT 6.5 H <6.5%
975 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 INSULIN Ultra.Insulin,EDTApl,FastingQT 27.42 H 1.9 - 23 uIU/mL
976 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 IS SUBJECT FASTING? Is Subject Fasting? Y Yes
977 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 IS SUBJECT OF BLACK RACE? Subject of black race? Y No
978 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 LIPID PANEL Direct HDL-C 4th Generation 0.82 R L 1.03 - 1.53 mmol/L
979 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 LIPID PANEL Triglycerides (GPO) 2.78 0.59 - 2.96 mmol/L
980 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 LIPID PANEL Cholesterol (High Performance) 5.73 4.42 - 7.53 mmol/L
981 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 LIPID PANEL LDL Chol Friedewald 4th 3.64 H 0 - 3.34 mmol/L
982 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 POSTMENOPAUSAL FEMALE? <40yrs & amenorrhea >/= 12mo Yes
983 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 RETICULOCYTES Reticulocyte Count % 1.4 0.6 - 2.5 %
984 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 TSH TSH 3rd IS-QT 1.091 0.45 - 5.33 mIU/L
985 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur Specific Gravity 1.019 1 - 1.04
986 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur pH 6.0 5 - 8
987 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur Protein Negative Ref Rng:Negative
988 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur Glucose Normal Ref Rng:Normal
989 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur Ketones Negative Ref Rng:Negative
990 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur Bilirubin Negative Ref Rng:Negative
991 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur Urobilinogen Normal Ref Rng:Normal
992 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur Blood Negative Ref Rng:$Negative-Trace
993 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur Nitrite Negative Ref Rng:Negative
994 CZ100120001 56 years Female Part 1 Screening Aug 6, 2025 1:35 PM 6225351106 URINE MACRO PANEL Ur Leukocyte Esterase Negative Ref Rng:Negative
@@ -0,0 +1,550 @@
Project No.,Region,Country,Site,Kit Type,Description,Accession,Shipped Date,Expiration Date,Days to Expiration
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,1,Screening,6227323202,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,1,Screening,6228114609,"Mar 10, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228036552,"Feb 27, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462182,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462184,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,2,Induction Week 0,6228462183,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6227933141,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462185,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462186,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,3,Induction Week 2,6228462187,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6227323209,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6228462189,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,4,Induction Week 4,6228462188,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6227810906,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6227933144,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6228462190,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,5,Induction Week 12,6228462191,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,6,Maintenance Week 4,6227933145,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,6,Maintenance Week 4,6227933146,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,7,Maintenance Week 12,6227933147,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,7,Maintenance Week 12,6227933148,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228137358,"Mar 12, 2026","Jan 29, 2027",234
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462192,"Apr 28, 2026","May 25, 2027",350
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462193,"Apr 28, 2026","May 25, 2027",350
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462194,"Apr 28, 2026","May 25, 2027",350
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462196,"Apr 28, 2026","May 25, 2027",350
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462197,"Apr 28, 2026","May 25, 2027",350
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-1,Stool Pathogens,6228462195,"Apr 28, 2026","May 25, 2027",350
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-2,TB Testing,6227323220,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-2,TB Testing,6227323221,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-3,Biopsy,6227323222,"Nov 21, 2025","Sep 12, 2026",95
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-3,Biopsy,6228252071,"Mar 26, 2026","Jul 20, 2027",406
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-4,Induction ED,6227323225,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-4,Induction ED,6227323226,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-5,Biologic Drug Level,6227323227,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-5,Biologic Drug Level,6227323228,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810907,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810909,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-6,Maintenance ED,6227810908,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-8,Liver Function Tests,6227323229,"Nov 21, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-8,Liver Function Tests,6227323230,"Nov 21, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810910,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810911,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-9,LTE Maintenance ED,6227810912,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-10,Safety FU,6227323214,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-10,Safety FU,6227323215,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-11,DILI,6227323216,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6227323218,"Nov 21, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252069,"Mar 26, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252070,"Mar 26, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,T-12,DNA,6228252068,"Mar 26, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462198,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462199,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462200,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462202,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462201,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462203,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462206,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462205,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462204,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228462207,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489756,"May 1, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489757,"May 1, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489758,"May 1, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489761,"May 1, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489760,"May 1, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489759,"May 1, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489763,"May 1, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10001 - Dr. Matej Falc,U,Unscheduled,6228489762,"May 1, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,1,Screening,6227323298,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,1,Screening,6227323300,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,2,Induction Week 0,6227323301,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,2,Induction Week 0,6227323302,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,3,Induction Week 2,6227323303,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,3,Induction Week 2,6227323304,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,4,Induction Week 4,6227323306,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,4,Induction Week 4,6227323305,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,5,Induction Week 12,6228676757,"May 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-1,Stool Pathogens,6227323307,"Nov 21, 2025","Dec 26, 2026",200
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-1,Stool Pathogens,6227323308,"Nov 21, 2025","Dec 26, 2026",200
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-2,TB Testing,6227323316,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-2,TB Testing,6227323317,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-3,Biopsy,6227323319,"Nov 21, 2025","Sep 12, 2026",95
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-3,Biopsy,6227323318,"Nov 21, 2025","Sep 12, 2026",95
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-4,Induction ED,6227323321,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-4,Induction ED,6227323322,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-5,Biologic Drug Level,6227323323,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-5,Biologic Drug Level,6227323324,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676759,"May 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676760,"May 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-6,Maintenance ED,6228676758,"May 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-8,Liver Function Tests,6227323326,"Nov 21, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-8,Liver Function Tests,6227323325,"Nov 21, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676762,"May 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676763,"May 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-9,LTE Maintenance ED,6228676761,"May 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-10,Safety FU,6227323310,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-10,Safety FU,6227323311,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-11,DILI,6227323312,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323313,"Nov 21, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323314,"Nov 21, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,T-12,DNA,6227323315,"Nov 21, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323328,"Nov 21, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323327,"Nov 21, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10003 - Dr. Leksa Vaclav,U,Unscheduled,6227323329,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6227323235,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492883,"Apr 23, 2026","Nov 30, 2026",174
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492884,"Apr 23, 2026","Nov 30, 2026",174
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,1,Screening,6228492885,"Apr 23, 2026","Nov 30, 2026",174
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265099,"Mar 27, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265098,"Mar 27, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,2,Induction Week 0,6228265100,"Mar 27, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6227323239,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407563,"Apr 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407564,"Apr 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,3,Induction Week 2,6228407565,"Apr 15, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6227323241,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461735,"Apr 21, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461736,"Apr 21, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,4,Induction Week 4,6228461734,"Apr 21, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,5,Induction Week 12,6228013269,"Feb 25, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,5,Induction Week 12,6228492886,"Apr 23, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,6,Maintenance Week 4,6228194338,"Mar 23, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,6,Maintenance Week 4,6228690541,"May 19, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-1,Stool Pathogens,6228194340,"Mar 23, 2026","Mar 5, 2027",269
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-1,Stool Pathogens,6228194339,"Mar 23, 2026","Mar 5, 2027",269
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690542,"May 19, 2026","Aug 7, 2027",424
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690544,"May 19, 2026","Aug 7, 2027",424
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-3,Biopsy,6228690543,"May 19, 2026","Aug 7, 2027",424
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-4,Induction ED,6227323257,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-4,Induction ED,6227323258,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-5,Biologic Drug Level,6227323260,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-5,Biologic Drug Level,6227323259,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013270,"Feb 25, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013271,"Feb 25, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-6,Maintenance ED,6228013272,"Feb 25, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-8,Liver Function Tests,6227323261,"Nov 21, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-8,Liver Function Tests,6227323262,"Nov 21, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013275,"Feb 25, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013273,"Feb 25, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-9,LTE Maintenance ED,6228013274,"Feb 25, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-10,Safety FU,6227323246,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-10,Safety FU,6227323247,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-11,DILI,6227323248,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-12,DNA,6227323250,"Nov 21, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,T-12,DNA,6227323249,"Nov 21, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10006 - Dr. Michal Konecny,U,Unscheduled,6227323263,"Nov 21, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227323331,"Nov 23, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765941,"Jan 29, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765942,"Jan 29, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,1,Screening,6227765943,"Jan 29, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227323333,"Nov 23, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765944,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765945,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,2,Induction Week 0,6227765946,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227323336,"Nov 23, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765948,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765947,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,3,Induction Week 2,6227765949,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227323338,"Nov 23, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765950,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765951,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,4,Induction Week 4,6227765952,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765953,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765954,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,5,Induction Week 12,6227765955,"Jan 29, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227323339,"Nov 23, 2025","Dec 26, 2026",200
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765956,"Jan 29, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765957,"Jan 29, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765958,"Jan 29, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-1,Stool Pathogens,6227765959,"Jan 29, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227323349,"Nov 23, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765963,"Jan 29, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765964,"Jan 29, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765965,"Jan 29, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-2,TB Testing,6227765966,"Jan 29, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227323350,"Nov 23, 2025","Sep 12, 2026",95
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227323352,"Nov 23, 2025","Sep 12, 2026",95
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765967,"Jan 29, 2026","Nov 28, 2026",172
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765968,"Jan 29, 2026","Nov 28, 2026",172
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765970,"Jan 29, 2026","Nov 28, 2026",172
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-3,Biopsy,6227765969,"Jan 29, 2026","Nov 28, 2026",172
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-4,Induction ED,6227323353,"Nov 23, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-4,Induction ED,6227323354,"Nov 23, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227323356,"Nov 23, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765973,"Jan 29, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765972,"Jan 29, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765974,"Jan 29, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-5,Biologic Drug Level,6227765971,"Jan 29, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357528,"Apr 7, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357529,"Apr 7, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-6,Maintenance ED,6228357530,"Apr 7, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-8,Liver Function Tests,6227323357,"Nov 23, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-8,Liver Function Tests,6227323358,"Nov 23, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357532,"Apr 7, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357533,"Apr 7, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-9,LTE Maintenance ED,6228357531,"Apr 7, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-10,Safety FU,6227323342,"Nov 23, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-10,Safety FU,6227323343,"Nov 23, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-11,DILI,6227323344,"Nov 23, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227323347,"Nov 23, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227323345,"Nov 23, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765961,"Jan 29, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765962,"Jan 29, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,T-12,DNA,6227765960,"Jan 29, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323359,"Nov 23, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323361,"Nov 23, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227323360,"Nov 23, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765975,"Jan 29, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765976,"Jan 29, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10009 - Dr. Jiri Pumprla,U,Unscheduled,6227765977,"Jan 29, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993930,"Feb 17, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993931,"Feb 17, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,1,Screening,6227993932,"Feb 17, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,2,Induction Week 0,6227993933,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,2,Induction Week 0,6227993934,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,3,Induction Week 2,6227993935,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,3,Induction Week 2,6227993936,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,4,Induction Week 4,6227993937,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,4,Induction Week 4,6227993938,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993941,"Feb 17, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993940,"Feb 17, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-1,Stool Pathogens,6227993939,"Feb 17, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-2,TB Testing,6227993949,"Feb 17, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-2,TB Testing,6227993948,"Feb 17, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993952,"Feb 17, 2026","Nov 28, 2026",172
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993951,"Feb 17, 2026","Nov 28, 2026",172
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-3,Biopsy,6227993950,"Feb 17, 2026","Nov 28, 2026",172
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-4,Induction ED,6227993954,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-4,Induction ED,6227993953,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-5,Biologic Drug Level,6227993955,"Feb 17, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-5,Biologic Drug Level,6227993956,"Feb 17, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-8,Liver Function Tests,6227993957,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-8,Liver Function Tests,6227993958,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-10,Safety FU,6227993943,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-10,Safety FU,6227993942,"Feb 17, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-11,DILI,6227993944,"Feb 17, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993945,"Feb 17, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993946,"Feb 17, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,T-12,DNA,6227993947,"Feb 17, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993959,"Feb 17, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993960,"Feb 17, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10010 - Dr.Nabil El Lababidi,U,Unscheduled,6227993961,"Feb 17, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,1,Screening,6227697716,"Jan 12, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,1,Screening,6227697717,"Jan 12, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6227697720,"Jan 12, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398468,"Apr 14, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398470,"Apr 14, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,2,Induction Week 0,6228398469,"Apr 14, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6227697721,"Jan 12, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512528,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512526,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,3,Induction Week 2,6228512527,"Apr 28, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6227697724,"Jan 12, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628517,"May 11, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628515,"May 11, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,4,Induction Week 4,6228628516,"May 11, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,5,Induction Week 12,6228251912,"Mar 26, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,6,Maintenance Week 4,6228628518,"May 11, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-1,Stool Pathogens,6227697726,"Jan 12, 2026","Jan 14, 2027",219
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-1,Stool Pathogens,6227697727,"Jan 12, 2026","Jan 14, 2027",219
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-2,TB Testing,6227697735,"Jan 12, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-2,TB Testing,6227697734,"Jan 12, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-3,Biopsy,6227697737,"Jan 12, 2026","May 11, 2027",336
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-3,Biopsy,6227697738,"Jan 12, 2026","May 11, 2027",336
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-4,Induction ED,6227697740,"Jan 12, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-4,Induction ED,6227697739,"Jan 12, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-5,Biologic Drug Level,6227697741,"Jan 12, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-5,Biologic Drug Level,6227697742,"Jan 12, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251914,"Mar 26, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251913,"Mar 26, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-6,Maintenance ED,6228251915,"Mar 26, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-8,Liver Function Tests,6227697743,"Jan 12, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-8,Liver Function Tests,6227697744,"Jan 12, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251918,"Mar 26, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251916,"Mar 26, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-9,LTE Maintenance ED,6228251917,"Mar 26, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-10,Safety FU,6227697728,"Jan 12, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-10,Safety FU,6227697729,"Jan 12, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-11,DILI,6227697730,"Jan 12, 2026","Jul 31, 2026",52
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-12,DNA,6227697733,"Jan 12, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,T-12,DNA,6227697732,"Jan 12, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,U,Unscheduled,6227697747,"Jan 12, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10012 - Dr.Stefan Konecny,U,Unscheduled,6227697746,"Jan 12, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367755,"Apr 8, 2026","Nov 30, 2026",174
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367756,"Apr 8, 2026","Nov 30, 2026",174
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,1,Screening,6228367757,"Apr 8, 2026","Nov 30, 2026",174
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6227635143,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,2,Induction Week 0,6228308226,"Apr 1, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6227635145,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6228398114,"Apr 14, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,3,Induction Week 2,6228398116,"Apr 14, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6227635147,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501725,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501727,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,4,Induction Week 4,6228501726,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,5,Induction Week 12,6228308227,"Apr 1, 2026","Jan 31, 2027",236
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,5,Induction Week 12,6228367758,"Apr 8, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,5,Induction Week 12,6228762734,"Jun 4, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,6,Maintenance Week 4,6228501728,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,6,Maintenance Week 4,6228501729,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367759,"Apr 8, 2026","Mar 5, 2027",269
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367760,"Apr 8, 2026","Mar 5, 2027",269
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-1,Stool Pathogens,6228367761,"Apr 8, 2026","Mar 5, 2027",269
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-2,TB Testing,6227635158,"Jan 5, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-2,TB Testing,6227635157,"Jan 5, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6227635160,"Jan 5, 2026","Oct 15, 2026",128
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-3,Biopsy,6228501731,"Apr 26, 2026","Aug 7, 2027",424
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-4,Induction ED,6227635163,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-4,Induction ED,6227635162,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-5,Biologic Drug Level,6227635164,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-5,Biologic Drug Level,6227635165,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095872,"Mar 5, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095870,"Mar 5, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-6,Maintenance ED,6228095871,"Mar 5, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-8,Liver Function Tests,6227635167,"Jan 5, 2026","Sep 12, 2026",95
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-8,Liver Function Tests,6227635166,"Jan 5, 2026","Sep 12, 2026",95
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095874,"Mar 5, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095873,"Mar 5, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-9,LTE Maintenance ED,6228095875,"Mar 5, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-10,Safety FU,6227635151,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-10,Safety FU,6227635152,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-11,DILI,6227635153,"Jan 5, 2026","Jul 31, 2026",52
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-12,DNA,6228762735,"Jun 4, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-12,DNA,6228762736,"Jun 4, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,T-12,DNA,6228762737,"Jun 4, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635168,"Jan 5, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635169,"Jan 5, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10013 - Dr.David Stepek,U,Unscheduled,6227635170,"Jan 5, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259263,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259264,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6227259265,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6228510217,"Apr 30, 2026","Nov 30, 2026",174
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,1,Screening,6228510218,"Apr 30, 2026","Nov 30, 2026",174
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6227259267,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6227259266,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6228510219,"Apr 30, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,2,Induction Week 0,6228510220,"Apr 30, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6227259268,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6227259269,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6228510221,"Apr 30, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,3,Induction Week 2,6228510222,"Apr 30, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,4,Induction Week 4,6227259270,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,4,Induction Week 4,6227259271,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259274,"Nov 13, 2025","Dec 26, 2026",200
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259273,"Nov 13, 2025","Dec 26, 2026",200
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-1,Stool Pathogens,6227259272,"Nov 13, 2025","Dec 26, 2026",200
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-2,TB Testing,6227259281,"Nov 13, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-2,TB Testing,6227259282,"Nov 13, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259283,"Nov 13, 2025","Sep 12, 2026",95
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259284,"Nov 13, 2025","Sep 12, 2026",95
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-3,Biopsy,6227259285,"Nov 13, 2025","Sep 12, 2026",95
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-4,Induction ED,6227259286,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-4,Induction ED,6227259287,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-5,Biologic Drug Level,6227259289,"Nov 13, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-5,Biologic Drug Level,6227259288,"Nov 13, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-8,Liver Function Tests,6227259290,"Nov 13, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-8,Liver Function Tests,6227259291,"Nov 13, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-10,Safety FU,6227259276,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-10,Safety FU,6227259275,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-11,DILI,6227259277,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-12,DNA,6227259280,"Nov 13, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,T-12,DNA,6227259278,"Nov 13, 2025","Aug 31, 2026",83
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259294,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259293,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10015 - Dr.Jan Matous,U,Unscheduled,6227259292,"Nov 13, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,1,Screening,6227635172,"Jan 5, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,1,Screening,6228772364,"Jun 5, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,1,Screening,6228772365,"Jun 5, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,1,Screening,6228772366,"Jun 5, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,2,Induction Week 0,6227635175,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,2,Induction Week 0,6228782900,"Jun 5, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,2,Induction Week 0,6228782899,"Jun 5, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,2,Induction Week 0,6228782898,"Jun 5, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,3,Induction Week 2,6227635176,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,3,Induction Week 2,6227635177,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,4,Induction Week 4,6227635178,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,4,Induction Week 4,6227635179,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,5,Induction Week 12,6228501793,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,5,Induction Week 12,6228772367,"Jun 5, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,6,Maintenance Week 4,6228772368,"Jun 5, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-1,Stool Pathogens,6227635181,"Jan 5, 2026","Jan 14, 2027",219
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-1,Stool Pathogens,6228772369,"Jun 5, 2026","Aug 10, 2027",427
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-1,Stool Pathogens,6228772370,"Jun 5, 2026","Aug 10, 2027",427
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-1,Stool Pathogens,6228772371,"Jun 5, 2026","Aug 10, 2027",427
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-2,TB Testing,6227635189,"Jan 5, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-2,TB Testing,6227635190,"Jan 5, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-3,Biopsy,6227635191,"Jan 5, 2026","Oct 15, 2026",128
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-3,Biopsy,6227635192,"Jan 5, 2026","Oct 15, 2026",128
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-4,Induction ED,6227635195,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-4,Induction ED,6227635194,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-5,Biologic Drug Level,6227635197,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-5,Biologic Drug Level,6227635196,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501795,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501794,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-6,Maintenance ED,6228501796,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-8,Liver Function Tests,6227635198,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-8,Liver Function Tests,6227635199,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501797,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501798,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-9,LTE Maintenance ED,6228501799,"Apr 26, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-10,Safety FU,6227635183,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-10,Safety FU,6227635184,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-11,DILI,6227635185,"Jan 5, 2026","Jul 31, 2026",52
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635188,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,T-12,DNA,6227635187,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635200,"Jan 5, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635202,"Jan 5, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10016 - Dr.Robert Mudr,U,Unscheduled,6227635201,"Jan 5, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,1,Screening,6227993964,"Feb 18, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,1,Screening,6227993963,"Feb 18, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6227993965,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707090,"May 22, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707091,"May 22, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228707092,"May 22, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,2,Induction Week 0,6228711855,"May 29, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,3,Induction Week 2,6227993967,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,4,Induction Week 4,6227993969,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,4,Induction Week 4,6227993970,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,5,Induction Week 12,6228436352,"Apr 19, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-1,Stool Pathogens,6227993973,"Feb 18, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-1,Stool Pathogens,6227993972,"Feb 18, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-2,TB Testing,6227993980,"Feb 18, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-2,TB Testing,6227993981,"Feb 18, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-3,Biopsy,6227993983,"Feb 18, 2026","May 11, 2027",336
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-3,Biopsy,6227993982,"Feb 18, 2026","May 11, 2027",336
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-4,Induction ED,6227993985,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-4,Induction ED,6227993986,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-5,Biologic Drug Level,6227993988,"Feb 18, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-5,Biologic Drug Level,6228711856,"May 29, 2026","May 31, 2027",356
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436354,"Apr 19, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436353,"Apr 19, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-6,Maintenance ED,6228436355,"Apr 19, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-8,Liver Function Tests,6227993989,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-8,Liver Function Tests,6227993990,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436356,"Apr 19, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436357,"Apr 19, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-9,LTE Maintenance ED,6228436358,"Apr 19, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-10,Safety FU,6227993974,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-10,Safety FU,6227993975,"Feb 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-11,DILI,6227993976,"Feb 18, 2026","Sep 30, 2026",113
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-12,DNA,6227993978,"Feb 18, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,T-12,DNA,6227993979,"Feb 18, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993991,"Feb 18, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993992,"Feb 18, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10020 - Dr.Lucie Gonsorcikova,U,Unscheduled,6227993993,"Feb 18, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,1,Screening,6227635205,"Jan 5, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,1,Screening,6227635203,"Jan 5, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6227635206,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398426,"Apr 14, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398427,"Apr 14, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,2,Induction Week 0,6228398428,"Apr 14, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6227635209,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492827,"Apr 23, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492828,"Apr 23, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,3,Induction Week 2,6228492826,"Apr 23, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6227635210,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605821,"May 7, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605823,"May 7, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,4,Induction Week 4,6228605822,"May 7, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,5,Induction Week 12,6228084840,"Mar 4, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,6,Maintenance Week 4,6228605824,"May 7, 2026","Feb 28, 2027",264
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-1,Stool Pathogens,6227635214,"Jan 5, 2026","Jan 14, 2027",219
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-1,Stool Pathogens,6227635212,"Jan 5, 2026","Jan 14, 2027",219
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-2,TB Testing,6227635221,"Jan 5, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-2,TB Testing,6227635222,"Jan 5, 2026","Aug 31, 2026",83
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-3,Biopsy,6227635224,"Jan 5, 2026","Nov 25, 2026",169
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-3,Biopsy,6227635225,"Jan 5, 2026","Nov 25, 2026",169
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-4,Induction ED,6227635226,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-4,Induction ED,6227635227,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-5,Biologic Drug Level,6227635228,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-5,Biologic Drug Level,6227635229,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084843,"Mar 4, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084842,"Mar 4, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-6,Maintenance ED,6228084841,"Mar 4, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-8,Liver Function Tests,6227635230,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-8,Liver Function Tests,6227635231,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084845,"Mar 4, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084844,"Mar 4, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-9,LTE Maintenance ED,6228084846,"Mar 4, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-10,Safety FU,6227635215,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-10,Safety FU,6227635216,"Jan 5, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-11,DILI,6227635217,"Jan 5, 2026","Jul 31, 2026",52
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-12,DNA,6227635219,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,T-12,DNA,6227635220,"Jan 5, 2026","Dec 31, 2026",205
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635234,"Jan 5, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635233,"Jan 5, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10021 - Dr.Martin Bortlik,U,Unscheduled,6227635232,"Jan 5, 2026","Oct 31, 2026",144
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6227323267,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137352,"Mar 11, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137353,"Mar 11, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228137354,"Mar 11, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179928,"Mar 23, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179930,"Mar 23, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,1,Screening,6228179929,"Mar 23, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6227323269,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6228173395,"Mar 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,2,Induction Week 0,6228173396,"Mar 18, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6227323271,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6228179931,"Mar 23, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,3,Induction Week 2,6228179933,"Mar 23, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6227323273,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6228179934,"Mar 23, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,4,Induction Week 4,6228179935,"Mar 23, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6227752380,"Jan 20, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6227810902,"Jan 28, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,5,Induction Week 12,6228137356,"Mar 11, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,6,Maintenance Week 4,6228023948,"Feb 25, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,6,Maintenance Week 4,6228023949,"Feb 25, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,12,LTE Maintenance Wk56,6228179938,"Mar 23, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,12,LTE Maintenance Wk56,6228179937,"Mar 23, 2026","Oct 11, 2026",124
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6227323275,"Nov 21, 2025","Dec 26, 2026",200
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6227810903,"Jan 28, 2026","Jan 15, 2027",220
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6228179939,"Mar 23, 2026","Jan 29, 2027",234
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-1,Stool Pathogens,6228179940,"Mar 23, 2026","Jan 29, 2027",234
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-2,TB Testing,6227323284,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-2,TB Testing,6227323285,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6227323288,"Nov 21, 2025","Sep 12, 2026",95
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228023950,"Feb 25, 2026","Nov 28, 2026",172
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228023952,"Feb 25, 2026","May 11, 2027",336
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228179946,"Mar 23, 2026","Jul 20, 2027",406
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-3,Biopsy,6228179944,"Mar 23, 2026","Jul 20, 2027",406
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-4,Induction ED,6227323289,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-4,Induction ED,6227323290,"Nov 21, 2025","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-5,Biologic Drug Level,6227323291,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-5,Biologic Drug Level,6227323292,"Nov 21, 2025","Jun 30, 2026",21
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752381,"Jan 20, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752383,"Jan 20, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-6,Maintenance ED,6227752382,"Jan 20, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-8,Liver Function Tests,6227323293,"Nov 21, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-8,Liver Function Tests,6227323294,"Nov 21, 2025","Jul 1, 2026",22
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752385,"Jan 20, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752386,"Jan 20, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-9,LTE Maintenance ED,6227752384,"Jan 20, 2026","Oct 7, 2026",120
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-10,Safety FU,6227323279,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-10,Safety FU,6227323278,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-11,DILI,6227323280,"Nov 21, 2025","May 31, 2026",-8
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6227323281,"Nov 21, 2025","Jul 31, 2026",52
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6227323282,"Nov 21, 2025","Jul 31, 2026",52
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6228179941,"Mar 23, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,T-12,DNA,6228179943,"Mar 23, 2026","Mar 31, 2027",295
213069,EMEA,CZE,CZ10022 - Dr. Petr Hrabak,U,Unscheduled,6227323296,"Nov 21, 2025","Aug 31, 2026",83
title,value,,,,,,,,
Search,,,,,,,,,
Site,"CZ10015 Dr.Jan Matous, CZ10013 Dr.David Stepek, CZ10001 Dr. Matej Falc, CZ10010 Dr.Nabil El Lababidi, CZ10022 Dr. Petr Hrabak, CZ10020 Dr.Lucie Gonsorcikova, CZ10012 Dr.Stefan Konecny, CZ10006 Dr. Michal Konecny, CZ10021 Dr.Martin Bortlik, CZ10016 Dr.Robert Mudr, CZ10003 Dr. Leksa Vaclav, CZ10009 Dr. Jiri Pumprla",,,,,,,,
Expiration Date Range,From - To - ,,,,,,,,
Shipped Date Range,From - To - ,,,,,,,,
Kit Type,,,,,,,,,
Ignore Record Limit,TRUE,,,,,,,,
1 Project No. Region Country Site Kit Type Description Accession Shipped Date Expiration Date Days to Expiration
2 213069 EMEA CZE CZ10001 - Dr. Matej Falc 1 Screening 6227323202 Nov 21, 2025 May 31, 2026 -8
3 213069 EMEA CZE CZ10001 - Dr. Matej Falc 1 Screening 6228114609 Mar 10, 2026 Oct 11, 2026 124
4 213069 EMEA CZE CZ10001 - Dr. Matej Falc 2 Induction Week 0 6228036552 Feb 27, 2026 Oct 11, 2026 124
5 213069 EMEA CZE CZ10001 - Dr. Matej Falc 2 Induction Week 0 6228462182 Apr 28, 2026 Feb 28, 2027 264
6 213069 EMEA CZE CZ10001 - Dr. Matej Falc 2 Induction Week 0 6228462184 Apr 28, 2026 Feb 28, 2027 264
7 213069 EMEA CZE CZ10001 - Dr. Matej Falc 2 Induction Week 0 6228462183 Apr 28, 2026 Feb 28, 2027 264
8 213069 EMEA CZE CZ10001 - Dr. Matej Falc 3 Induction Week 2 6227933141 Feb 18, 2026 Oct 11, 2026 124
9 213069 EMEA CZE CZ10001 - Dr. Matej Falc 3 Induction Week 2 6228462185 Apr 28, 2026 Feb 28, 2027 264
10 213069 EMEA CZE CZ10001 - Dr. Matej Falc 3 Induction Week 2 6228462186 Apr 28, 2026 Feb 28, 2027 264
11 213069 EMEA CZE CZ10001 - Dr. Matej Falc 3 Induction Week 2 6228462187 Apr 28, 2026 Feb 28, 2027 264
12 213069 EMEA CZE CZ10001 - Dr. Matej Falc 4 Induction Week 4 6227323209 Nov 21, 2025 May 31, 2026 -8
13 213069 EMEA CZE CZ10001 - Dr. Matej Falc 4 Induction Week 4 6228462189 Apr 28, 2026 Feb 28, 2027 264
14 213069 EMEA CZE CZ10001 - Dr. Matej Falc 4 Induction Week 4 6228462188 Apr 28, 2026 Feb 28, 2027 264
15 213069 EMEA CZE CZ10001 - Dr. Matej Falc 5 Induction Week 12 6227810906 Jan 29, 2026 Oct 7, 2026 120
16 213069 EMEA CZE CZ10001 - Dr. Matej Falc 5 Induction Week 12 6227933144 Feb 18, 2026 Oct 11, 2026 124
17 213069 EMEA CZE CZ10001 - Dr. Matej Falc 5 Induction Week 12 6228462190 Apr 28, 2026 Feb 28, 2027 264
18 213069 EMEA CZE CZ10001 - Dr. Matej Falc 5 Induction Week 12 6228462191 Apr 28, 2026 Feb 28, 2027 264
19 213069 EMEA CZE CZ10001 - Dr. Matej Falc 6 Maintenance Week 4 6227933145 Feb 18, 2026 Oct 11, 2026 124
20 213069 EMEA CZE CZ10001 - Dr. Matej Falc 6 Maintenance Week 4 6227933146 Feb 18, 2026 Oct 11, 2026 124
21 213069 EMEA CZE CZ10001 - Dr. Matej Falc 7 Maintenance Week 12 6227933147 Feb 18, 2026 Oct 11, 2026 124
22 213069 EMEA CZE CZ10001 - Dr. Matej Falc 7 Maintenance Week 12 6227933148 Feb 18, 2026 Oct 11, 2026 124
23 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-1 Stool Pathogens 6228137358 Mar 12, 2026 Jan 29, 2027 234
24 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-1 Stool Pathogens 6228462192 Apr 28, 2026 May 25, 2027 350
25 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-1 Stool Pathogens 6228462193 Apr 28, 2026 May 25, 2027 350
26 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-1 Stool Pathogens 6228462194 Apr 28, 2026 May 25, 2027 350
27 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-1 Stool Pathogens 6228462196 Apr 28, 2026 May 25, 2027 350
28 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-1 Stool Pathogens 6228462197 Apr 28, 2026 May 25, 2027 350
29 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-1 Stool Pathogens 6228462195 Apr 28, 2026 May 25, 2027 350
30 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-2 TB Testing 6227323220 Nov 21, 2025 Jun 30, 2026 21
31 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-2 TB Testing 6227323221 Nov 21, 2025 Jun 30, 2026 21
32 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-3 Biopsy 6227323222 Nov 21, 2025 Sep 12, 2026 95
33 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-3 Biopsy 6228252071 Mar 26, 2026 Jul 20, 2027 406
34 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-4 Induction ED 6227323225 Nov 21, 2025 May 31, 2026 -8
35 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-4 Induction ED 6227323226 Nov 21, 2025 May 31, 2026 -8
36 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-5 Biologic Drug Level 6227323227 Nov 21, 2025 Jun 30, 2026 21
37 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-5 Biologic Drug Level 6227323228 Nov 21, 2025 Jun 30, 2026 21
38 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-6 Maintenance ED 6227810907 Jan 29, 2026 Oct 7, 2026 120
39 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-6 Maintenance ED 6227810909 Jan 29, 2026 Oct 7, 2026 120
40 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-6 Maintenance ED 6227810908 Jan 29, 2026 Oct 7, 2026 120
41 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-8 Liver Function Tests 6227323229 Nov 21, 2025 Jul 1, 2026 22
42 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-8 Liver Function Tests 6227323230 Nov 21, 2025 Jul 1, 2026 22
43 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-9 LTE Maintenance ED 6227810910 Jan 29, 2026 Oct 7, 2026 120
44 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-9 LTE Maintenance ED 6227810911 Jan 29, 2026 Oct 7, 2026 120
45 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-9 LTE Maintenance ED 6227810912 Jan 29, 2026 Oct 7, 2026 120
46 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-10 Safety FU 6227323214 Nov 21, 2025 May 31, 2026 -8
47 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-10 Safety FU 6227323215 Nov 21, 2025 May 31, 2026 -8
48 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-11 DILI 6227323216 Nov 21, 2025 May 31, 2026 -8
49 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-12 DNA 6227323218 Nov 21, 2025 Aug 31, 2026 83
50 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-12 DNA 6228252069 Mar 26, 2026 Mar 31, 2027 295
51 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-12 DNA 6228252070 Mar 26, 2026 Mar 31, 2027 295
52 213069 EMEA CZE CZ10001 - Dr. Matej Falc T-12 DNA 6228252068 Mar 26, 2026 Mar 31, 2027 295
53 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462198 Apr 28, 2026 Feb 28, 2027 264
54 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462199 Apr 28, 2026 Feb 28, 2027 264
55 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462200 Apr 28, 2026 Feb 28, 2027 264
56 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462202 Apr 28, 2026 Feb 28, 2027 264
57 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462201 Apr 28, 2026 Feb 28, 2027 264
58 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462203 Apr 28, 2026 Feb 28, 2027 264
59 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462206 Apr 28, 2026 Feb 28, 2027 264
60 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462205 Apr 28, 2026 Feb 28, 2027 264
61 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462204 Apr 28, 2026 Feb 28, 2027 264
62 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228462207 Apr 28, 2026 Feb 28, 2027 264
63 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228489756 May 1, 2026 Feb 28, 2027 264
64 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228489757 May 1, 2026 Feb 28, 2027 264
65 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228489758 May 1, 2026 Feb 28, 2027 264
66 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228489761 May 1, 2026 Feb 28, 2027 264
67 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228489760 May 1, 2026 Feb 28, 2027 264
68 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228489759 May 1, 2026 Feb 28, 2027 264
69 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228489763 May 1, 2026 Feb 28, 2027 264
70 213069 EMEA CZE CZ10001 - Dr. Matej Falc U Unscheduled 6228489762 May 1, 2026 Feb 28, 2027 264
71 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav 1 Screening 6227323298 Nov 21, 2025 Jun 30, 2026 21
72 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav 1 Screening 6227323300 Nov 21, 2025 Jun 30, 2026 21
73 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav 2 Induction Week 0 6227323301 Nov 21, 2025 Oct 7, 2026 120
74 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav 2 Induction Week 0 6227323302 Nov 21, 2025 Oct 7, 2026 120
75 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav 3 Induction Week 2 6227323303 Nov 21, 2025 Oct 7, 2026 120
76 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav 3 Induction Week 2 6227323304 Nov 21, 2025 Oct 7, 2026 120
77 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav 4 Induction Week 4 6227323306 Nov 21, 2025 Oct 7, 2026 120
78 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav 4 Induction Week 4 6227323305 Nov 21, 2025 Oct 7, 2026 120
79 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav 5 Induction Week 12 6228676757 May 15, 2026 Feb 28, 2027 264
80 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-1 Stool Pathogens 6227323307 Nov 21, 2025 Dec 26, 2026 200
81 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-1 Stool Pathogens 6227323308 Nov 21, 2025 Dec 26, 2026 200
82 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-2 TB Testing 6227323316 Nov 21, 2025 Jun 30, 2026 21
83 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-2 TB Testing 6227323317 Nov 21, 2025 Jun 30, 2026 21
84 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-3 Biopsy 6227323319 Nov 21, 2025 Sep 12, 2026 95
85 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-3 Biopsy 6227323318 Nov 21, 2025 Sep 12, 2026 95
86 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-4 Induction ED 6227323321 Nov 21, 2025 Oct 7, 2026 120
87 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-4 Induction ED 6227323322 Nov 21, 2025 Oct 7, 2026 120
88 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-5 Biologic Drug Level 6227323323 Nov 21, 2025 Jun 30, 2026 21
89 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-5 Biologic Drug Level 6227323324 Nov 21, 2025 Jun 30, 2026 21
90 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-6 Maintenance ED 6228676759 May 15, 2026 Feb 28, 2027 264
91 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-6 Maintenance ED 6228676760 May 15, 2026 Feb 28, 2027 264
92 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-6 Maintenance ED 6228676758 May 15, 2026 Feb 28, 2027 264
93 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-8 Liver Function Tests 6227323326 Nov 21, 2025 Jul 1, 2026 22
94 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-8 Liver Function Tests 6227323325 Nov 21, 2025 Jul 1, 2026 22
95 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-9 LTE Maintenance ED 6228676762 May 15, 2026 Feb 28, 2027 264
96 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-9 LTE Maintenance ED 6228676763 May 15, 2026 Feb 28, 2027 264
97 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-9 LTE Maintenance ED 6228676761 May 15, 2026 Feb 28, 2027 264
98 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-10 Safety FU 6227323310 Nov 21, 2025 Oct 7, 2026 120
99 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-10 Safety FU 6227323311 Nov 21, 2025 Oct 7, 2026 120
100 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-11 DILI 6227323312 Nov 21, 2025 Jun 30, 2026 21
101 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-12 DNA 6227323313 Nov 21, 2025 Aug 31, 2026 83
102 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-12 DNA 6227323314 Nov 21, 2025 Aug 31, 2026 83
103 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav T-12 DNA 6227323315 Nov 21, 2025 Aug 31, 2026 83
104 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav U Unscheduled 6227323328 Nov 21, 2025 Aug 31, 2026 83
105 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav U Unscheduled 6227323327 Nov 21, 2025 Aug 31, 2026 83
106 213069 EMEA CZE CZ10003 - Dr. Leksa Vaclav U Unscheduled 6227323329 Nov 21, 2025 May 31, 2026 -8
107 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 1 Screening 6227323235 Nov 21, 2025 Jun 30, 2026 21
108 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 1 Screening 6228492883 Apr 23, 2026 Nov 30, 2026 174
109 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 1 Screening 6228492884 Apr 23, 2026 Nov 30, 2026 174
110 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 1 Screening 6228492885 Apr 23, 2026 Nov 30, 2026 174
111 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 2 Induction Week 0 6228265099 Mar 27, 2026 Jan 31, 2027 236
112 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 2 Induction Week 0 6228265098 Mar 27, 2026 Jan 31, 2027 236
113 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 2 Induction Week 0 6228265100 Mar 27, 2026 Jan 31, 2027 236
114 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 3 Induction Week 2 6227323239 Nov 21, 2025 Oct 7, 2026 120
115 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 3 Induction Week 2 6228407563 Apr 15, 2026 Feb 28, 2027 264
116 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 3 Induction Week 2 6228407564 Apr 15, 2026 Feb 28, 2027 264
117 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 3 Induction Week 2 6228407565 Apr 15, 2026 Feb 28, 2027 264
118 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 4 Induction Week 4 6227323241 Nov 21, 2025 Oct 7, 2026 120
119 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 4 Induction Week 4 6228461735 Apr 21, 2026 Feb 28, 2027 264
120 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 4 Induction Week 4 6228461736 Apr 21, 2026 Feb 28, 2027 264
121 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 4 Induction Week 4 6228461734 Apr 21, 2026 Feb 28, 2027 264
122 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 5 Induction Week 12 6228013269 Feb 25, 2026 Oct 11, 2026 124
123 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 5 Induction Week 12 6228492886 Apr 23, 2026 Feb 28, 2027 264
124 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 6 Maintenance Week 4 6228194338 Mar 23, 2026 Sep 30, 2026 113
125 213069 EMEA CZE CZ10006 - Dr. Michal Konecny 6 Maintenance Week 4 6228690541 May 19, 2026 Feb 28, 2027 264
126 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-1 Stool Pathogens 6228194340 Mar 23, 2026 Mar 5, 2027 269
127 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-1 Stool Pathogens 6228194339 Mar 23, 2026 Mar 5, 2027 269
128 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-3 Biopsy 6228690542 May 19, 2026 Aug 7, 2027 424
129 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-3 Biopsy 6228690544 May 19, 2026 Aug 7, 2027 424
130 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-3 Biopsy 6228690543 May 19, 2026 Aug 7, 2027 424
131 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-4 Induction ED 6227323257 Nov 21, 2025 Oct 7, 2026 120
132 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-4 Induction ED 6227323258 Nov 21, 2025 Oct 7, 2026 120
133 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-5 Biologic Drug Level 6227323260 Nov 21, 2025 Jun 30, 2026 21
134 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-5 Biologic Drug Level 6227323259 Nov 21, 2025 Jun 30, 2026 21
135 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-6 Maintenance ED 6228013270 Feb 25, 2026 Oct 11, 2026 124
136 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-6 Maintenance ED 6228013271 Feb 25, 2026 Oct 11, 2026 124
137 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-6 Maintenance ED 6228013272 Feb 25, 2026 Oct 11, 2026 124
138 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-8 Liver Function Tests 6227323261 Nov 21, 2025 Jul 1, 2026 22
139 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-8 Liver Function Tests 6227323262 Nov 21, 2025 Jul 1, 2026 22
140 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-9 LTE Maintenance ED 6228013275 Feb 25, 2026 Oct 11, 2026 124
141 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-9 LTE Maintenance ED 6228013273 Feb 25, 2026 Oct 11, 2026 124
142 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-9 LTE Maintenance ED 6228013274 Feb 25, 2026 Oct 11, 2026 124
143 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-10 Safety FU 6227323246 Nov 21, 2025 Oct 7, 2026 120
144 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-10 Safety FU 6227323247 Nov 21, 2025 Oct 7, 2026 120
145 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-11 DILI 6227323248 Nov 21, 2025 Jun 30, 2026 21
146 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-12 DNA 6227323250 Nov 21, 2025 Aug 31, 2026 83
147 213069 EMEA CZE CZ10006 - Dr. Michal Konecny T-12 DNA 6227323249 Nov 21, 2025 Aug 31, 2026 83
148 213069 EMEA CZE CZ10006 - Dr. Michal Konecny U Unscheduled 6227323263 Nov 21, 2025 Aug 31, 2026 83
149 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 1 Screening 6227323331 Nov 23, 2025 Jun 30, 2026 21
150 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 1 Screening 6227765941 Jan 29, 2026 Sep 30, 2026 113
151 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 1 Screening 6227765942 Jan 29, 2026 Sep 30, 2026 113
152 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 1 Screening 6227765943 Jan 29, 2026 Sep 30, 2026 113
153 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 2 Induction Week 0 6227323333 Nov 23, 2025 Oct 7, 2026 120
154 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 2 Induction Week 0 6227765944 Jan 29, 2026 Oct 7, 2026 120
155 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 2 Induction Week 0 6227765945 Jan 29, 2026 Oct 7, 2026 120
156 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 2 Induction Week 0 6227765946 Jan 29, 2026 Oct 7, 2026 120
157 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 3 Induction Week 2 6227323336 Nov 23, 2025 Oct 7, 2026 120
158 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 3 Induction Week 2 6227765948 Jan 29, 2026 Oct 7, 2026 120
159 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 3 Induction Week 2 6227765947 Jan 29, 2026 Oct 7, 2026 120
160 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 3 Induction Week 2 6227765949 Jan 29, 2026 Oct 7, 2026 120
161 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 4 Induction Week 4 6227323338 Nov 23, 2025 Oct 7, 2026 120
162 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 4 Induction Week 4 6227765950 Jan 29, 2026 Oct 7, 2026 120
163 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 4 Induction Week 4 6227765951 Jan 29, 2026 Oct 7, 2026 120
164 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 4 Induction Week 4 6227765952 Jan 29, 2026 Oct 7, 2026 120
165 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 5 Induction Week 12 6227765953 Jan 29, 2026 Oct 7, 2026 120
166 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 5 Induction Week 12 6227765954 Jan 29, 2026 Oct 7, 2026 120
167 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla 5 Induction Week 12 6227765955 Jan 29, 2026 Oct 7, 2026 120
168 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-1 Stool Pathogens 6227323339 Nov 23, 2025 Dec 26, 2026 200
169 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-1 Stool Pathogens 6227765956 Jan 29, 2026 Jan 15, 2027 220
170 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-1 Stool Pathogens 6227765957 Jan 29, 2026 Jan 15, 2027 220
171 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-1 Stool Pathogens 6227765958 Jan 29, 2026 Jan 15, 2027 220
172 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-1 Stool Pathogens 6227765959 Jan 29, 2026 Jan 15, 2027 220
173 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-2 TB Testing 6227323349 Nov 23, 2025 Jun 30, 2026 21
174 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-2 TB Testing 6227765963 Jan 29, 2026 Sep 30, 2026 113
175 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-2 TB Testing 6227765964 Jan 29, 2026 Sep 30, 2026 113
176 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-2 TB Testing 6227765965 Jan 29, 2026 Sep 30, 2026 113
177 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-2 TB Testing 6227765966 Jan 29, 2026 Sep 30, 2026 113
178 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-3 Biopsy 6227323350 Nov 23, 2025 Sep 12, 2026 95
179 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-3 Biopsy 6227323352 Nov 23, 2025 Sep 12, 2026 95
180 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-3 Biopsy 6227765967 Jan 29, 2026 Nov 28, 2026 172
181 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-3 Biopsy 6227765968 Jan 29, 2026 Nov 28, 2026 172
182 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-3 Biopsy 6227765970 Jan 29, 2026 Nov 28, 2026 172
183 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-3 Biopsy 6227765969 Jan 29, 2026 Nov 28, 2026 172
184 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-4 Induction ED 6227323353 Nov 23, 2025 Oct 7, 2026 120
185 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-4 Induction ED 6227323354 Nov 23, 2025 Oct 7, 2026 120
186 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-5 Biologic Drug Level 6227323356 Nov 23, 2025 Jun 30, 2026 21
187 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-5 Biologic Drug Level 6227765973 Jan 29, 2026 Dec 31, 2026 205
188 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-5 Biologic Drug Level 6227765972 Jan 29, 2026 Dec 31, 2026 205
189 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-5 Biologic Drug Level 6227765974 Jan 29, 2026 Dec 31, 2026 205
190 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-5 Biologic Drug Level 6227765971 Jan 29, 2026 Dec 31, 2026 205
191 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-6 Maintenance ED 6228357528 Apr 7, 2026 Jan 31, 2027 236
192 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-6 Maintenance ED 6228357529 Apr 7, 2026 Jan 31, 2027 236
193 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-6 Maintenance ED 6228357530 Apr 7, 2026 Jan 31, 2027 236
194 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-8 Liver Function Tests 6227323357 Nov 23, 2025 Jul 1, 2026 22
195 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-8 Liver Function Tests 6227323358 Nov 23, 2025 Jul 1, 2026 22
196 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-9 LTE Maintenance ED 6228357532 Apr 7, 2026 Jan 31, 2027 236
197 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-9 LTE Maintenance ED 6228357533 Apr 7, 2026 Jan 31, 2027 236
198 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-9 LTE Maintenance ED 6228357531 Apr 7, 2026 Jan 31, 2027 236
199 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-10 Safety FU 6227323342 Nov 23, 2025 Oct 7, 2026 120
200 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-10 Safety FU 6227323343 Nov 23, 2025 Oct 7, 2026 120
201 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-11 DILI 6227323344 Nov 23, 2025 Jun 30, 2026 21
202 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-12 DNA 6227323347 Nov 23, 2025 Aug 31, 2026 83
203 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-12 DNA 6227323345 Nov 23, 2025 Aug 31, 2026 83
204 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-12 DNA 6227765961 Jan 29, 2026 Dec 31, 2026 205
205 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-12 DNA 6227765962 Jan 29, 2026 Dec 31, 2026 205
206 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla T-12 DNA 6227765960 Jan 29, 2026 Dec 31, 2026 205
207 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla U Unscheduled 6227323359 Nov 23, 2025 Aug 31, 2026 83
208 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla U Unscheduled 6227323361 Nov 23, 2025 Aug 31, 2026 83
209 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla U Unscheduled 6227323360 Nov 23, 2025 Aug 31, 2026 83
210 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla U Unscheduled 6227765975 Jan 29, 2026 Oct 31, 2026 144
211 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla U Unscheduled 6227765976 Jan 29, 2026 Oct 31, 2026 144
212 213069 EMEA CZE CZ10009 - Dr. Jiri Pumprla U Unscheduled 6227765977 Jan 29, 2026 Oct 31, 2026 144
213 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi 1 Screening 6227993930 Feb 17, 2026 Oct 31, 2026 144
214 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi 1 Screening 6227993931 Feb 17, 2026 Oct 31, 2026 144
215 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi 1 Screening 6227993932 Feb 17, 2026 Oct 31, 2026 144
216 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi 2 Induction Week 0 6227993933 Feb 17, 2026 Oct 11, 2026 124
217 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi 2 Induction Week 0 6227993934 Feb 17, 2026 Oct 11, 2026 124
218 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi 3 Induction Week 2 6227993935 Feb 17, 2026 Oct 11, 2026 124
219 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi 3 Induction Week 2 6227993936 Feb 17, 2026 Oct 11, 2026 124
220 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi 4 Induction Week 4 6227993937 Feb 17, 2026 Oct 11, 2026 124
221 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi 4 Induction Week 4 6227993938 Feb 17, 2026 Oct 11, 2026 124
222 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-1 Stool Pathogens 6227993941 Feb 17, 2026 Jan 15, 2027 220
223 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-1 Stool Pathogens 6227993940 Feb 17, 2026 Jan 15, 2027 220
224 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-1 Stool Pathogens 6227993939 Feb 17, 2026 Jan 15, 2027 220
225 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-2 TB Testing 6227993949 Feb 17, 2026 Oct 31, 2026 144
226 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-2 TB Testing 6227993948 Feb 17, 2026 Oct 31, 2026 144
227 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-3 Biopsy 6227993952 Feb 17, 2026 Nov 28, 2026 172
228 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-3 Biopsy 6227993951 Feb 17, 2026 Nov 28, 2026 172
229 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-3 Biopsy 6227993950 Feb 17, 2026 Nov 28, 2026 172
230 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-4 Induction ED 6227993954 Feb 17, 2026 Oct 11, 2026 124
231 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-4 Induction ED 6227993953 Feb 17, 2026 Oct 11, 2026 124
232 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-5 Biologic Drug Level 6227993955 Feb 17, 2026 Dec 31, 2026 205
233 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-5 Biologic Drug Level 6227993956 Feb 17, 2026 Dec 31, 2026 205
234 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-8 Liver Function Tests 6227993957 Feb 17, 2026 Oct 11, 2026 124
235 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-8 Liver Function Tests 6227993958 Feb 17, 2026 Oct 11, 2026 124
236 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-10 Safety FU 6227993943 Feb 17, 2026 Oct 11, 2026 124
237 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-10 Safety FU 6227993942 Feb 17, 2026 Oct 11, 2026 124
238 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-11 DILI 6227993944 Feb 17, 2026 Sep 30, 2026 113
239 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-12 DNA 6227993945 Feb 17, 2026 Dec 31, 2026 205
240 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-12 DNA 6227993946 Feb 17, 2026 Dec 31, 2026 205
241 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi T-12 DNA 6227993947 Feb 17, 2026 Dec 31, 2026 205
242 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi U Unscheduled 6227993959 Feb 17, 2026 Dec 31, 2026 205
243 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi U Unscheduled 6227993960 Feb 17, 2026 Dec 31, 2026 205
244 213069 EMEA CZE CZ10010 - Dr.Nabil El Lababidi U Unscheduled 6227993961 Feb 17, 2026 Dec 31, 2026 205
245 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 1 Screening 6227697716 Jan 12, 2026 Aug 31, 2026 83
246 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 1 Screening 6227697717 Jan 12, 2026 Aug 31, 2026 83
247 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 2 Induction Week 0 6227697720 Jan 12, 2026 Oct 7, 2026 120
248 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 2 Induction Week 0 6228398468 Apr 14, 2026 Feb 28, 2027 264
249 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 2 Induction Week 0 6228398470 Apr 14, 2026 Feb 28, 2027 264
250 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 2 Induction Week 0 6228398469 Apr 14, 2026 Feb 28, 2027 264
251 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 3 Induction Week 2 6227697721 Jan 12, 2026 Oct 7, 2026 120
252 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 3 Induction Week 2 6228512528 Apr 28, 2026 Feb 28, 2027 264
253 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 3 Induction Week 2 6228512526 Apr 28, 2026 Feb 28, 2027 264
254 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 3 Induction Week 2 6228512527 Apr 28, 2026 Feb 28, 2027 264
255 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 4 Induction Week 4 6227697724 Jan 12, 2026 Oct 7, 2026 120
256 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 4 Induction Week 4 6228628517 May 11, 2026 Feb 28, 2027 264
257 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 4 Induction Week 4 6228628515 May 11, 2026 Feb 28, 2027 264
258 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 4 Induction Week 4 6228628516 May 11, 2026 Feb 28, 2027 264
259 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 5 Induction Week 12 6228251912 Mar 26, 2026 Jan 31, 2027 236
260 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny 6 Maintenance Week 4 6228628518 May 11, 2026 Feb 28, 2027 264
261 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-1 Stool Pathogens 6227697726 Jan 12, 2026 Jan 14, 2027 219
262 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-1 Stool Pathogens 6227697727 Jan 12, 2026 Jan 14, 2027 219
263 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-2 TB Testing 6227697735 Jan 12, 2026 Aug 31, 2026 83
264 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-2 TB Testing 6227697734 Jan 12, 2026 Aug 31, 2026 83
265 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-3 Biopsy 6227697737 Jan 12, 2026 May 11, 2027 336
266 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-3 Biopsy 6227697738 Jan 12, 2026 May 11, 2027 336
267 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-4 Induction ED 6227697740 Jan 12, 2026 Oct 7, 2026 120
268 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-4 Induction ED 6227697739 Jan 12, 2026 Oct 7, 2026 120
269 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-5 Biologic Drug Level 6227697741 Jan 12, 2026 Dec 31, 2026 205
270 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-5 Biologic Drug Level 6227697742 Jan 12, 2026 Dec 31, 2026 205
271 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-6 Maintenance ED 6228251914 Mar 26, 2026 Jan 31, 2027 236
272 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-6 Maintenance ED 6228251913 Mar 26, 2026 Jan 31, 2027 236
273 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-6 Maintenance ED 6228251915 Mar 26, 2026 Jan 31, 2027 236
274 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-8 Liver Function Tests 6227697743 Jan 12, 2026 Oct 7, 2026 120
275 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-8 Liver Function Tests 6227697744 Jan 12, 2026 Oct 7, 2026 120
276 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-9 LTE Maintenance ED 6228251918 Mar 26, 2026 Jan 31, 2027 236
277 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-9 LTE Maintenance ED 6228251916 Mar 26, 2026 Jan 31, 2027 236
278 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-9 LTE Maintenance ED 6228251917 Mar 26, 2026 Jan 31, 2027 236
279 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-10 Safety FU 6227697728 Jan 12, 2026 Oct 7, 2026 120
280 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-10 Safety FU 6227697729 Jan 12, 2026 Oct 7, 2026 120
281 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-11 DILI 6227697730 Jan 12, 2026 Jul 31, 2026 52
282 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-12 DNA 6227697733 Jan 12, 2026 Dec 31, 2026 205
283 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny T-12 DNA 6227697732 Jan 12, 2026 Dec 31, 2026 205
284 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny U Unscheduled 6227697747 Jan 12, 2026 Oct 31, 2026 144
285 213069 EMEA CZE CZ10012 - Dr.Stefan Konecny U Unscheduled 6227697746 Jan 12, 2026 Oct 31, 2026 144
286 213069 EMEA CZE CZ10013 - Dr.David Stepek 1 Screening 6228367755 Apr 8, 2026 Nov 30, 2026 174
287 213069 EMEA CZE CZ10013 - Dr.David Stepek 1 Screening 6228367756 Apr 8, 2026 Nov 30, 2026 174
288 213069 EMEA CZE CZ10013 - Dr.David Stepek 1 Screening 6228367757 Apr 8, 2026 Nov 30, 2026 174
289 213069 EMEA CZE CZ10013 - Dr.David Stepek 2 Induction Week 0 6227635143 Jan 5, 2026 Oct 7, 2026 120
290 213069 EMEA CZE CZ10013 - Dr.David Stepek 2 Induction Week 0 6228308226 Apr 1, 2026 Jan 31, 2027 236
291 213069 EMEA CZE CZ10013 - Dr.David Stepek 3 Induction Week 2 6227635145 Jan 5, 2026 Oct 7, 2026 120
292 213069 EMEA CZE CZ10013 - Dr.David Stepek 3 Induction Week 2 6228398114 Apr 14, 2026 Feb 28, 2027 264
293 213069 EMEA CZE CZ10013 - Dr.David Stepek 3 Induction Week 2 6228398116 Apr 14, 2026 Feb 28, 2027 264
294 213069 EMEA CZE CZ10013 - Dr.David Stepek 4 Induction Week 4 6227635147 Jan 5, 2026 Oct 7, 2026 120
295 213069 EMEA CZE CZ10013 - Dr.David Stepek 4 Induction Week 4 6228501725 Apr 26, 2026 Feb 28, 2027 264
296 213069 EMEA CZE CZ10013 - Dr.David Stepek 4 Induction Week 4 6228501727 Apr 26, 2026 Feb 28, 2027 264
297 213069 EMEA CZE CZ10013 - Dr.David Stepek 4 Induction Week 4 6228501726 Apr 26, 2026 Feb 28, 2027 264
298 213069 EMEA CZE CZ10013 - Dr.David Stepek 5 Induction Week 12 6228308227 Apr 1, 2026 Jan 31, 2027 236
299 213069 EMEA CZE CZ10013 - Dr.David Stepek 5 Induction Week 12 6228367758 Apr 8, 2026 Feb 28, 2027 264
300 213069 EMEA CZE CZ10013 - Dr.David Stepek 5 Induction Week 12 6228762734 Jun 4, 2026 Feb 28, 2027 264
301 213069 EMEA CZE CZ10013 - Dr.David Stepek 6 Maintenance Week 4 6228501728 Apr 26, 2026 Feb 28, 2027 264
302 213069 EMEA CZE CZ10013 - Dr.David Stepek 6 Maintenance Week 4 6228501729 Apr 26, 2026 Feb 28, 2027 264
303 213069 EMEA CZE CZ10013 - Dr.David Stepek T-1 Stool Pathogens 6228367759 Apr 8, 2026 Mar 5, 2027 269
304 213069 EMEA CZE CZ10013 - Dr.David Stepek T-1 Stool Pathogens 6228367760 Apr 8, 2026 Mar 5, 2027 269
305 213069 EMEA CZE CZ10013 - Dr.David Stepek T-1 Stool Pathogens 6228367761 Apr 8, 2026 Mar 5, 2027 269
306 213069 EMEA CZE CZ10013 - Dr.David Stepek T-2 TB Testing 6227635158 Jan 5, 2026 Aug 31, 2026 83
307 213069 EMEA CZE CZ10013 - Dr.David Stepek T-2 TB Testing 6227635157 Jan 5, 2026 Aug 31, 2026 83
308 213069 EMEA CZE CZ10013 - Dr.David Stepek T-3 Biopsy 6227635160 Jan 5, 2026 Oct 15, 2026 128
309 213069 EMEA CZE CZ10013 - Dr.David Stepek T-3 Biopsy 6228501731 Apr 26, 2026 Aug 7, 2027 424
310 213069 EMEA CZE CZ10013 - Dr.David Stepek T-4 Induction ED 6227635163 Jan 5, 2026 Oct 7, 2026 120
311 213069 EMEA CZE CZ10013 - Dr.David Stepek T-4 Induction ED 6227635162 Jan 5, 2026 Oct 7, 2026 120
312 213069 EMEA CZE CZ10013 - Dr.David Stepek T-5 Biologic Drug Level 6227635164 Jan 5, 2026 Dec 31, 2026 205
313 213069 EMEA CZE CZ10013 - Dr.David Stepek T-5 Biologic Drug Level 6227635165 Jan 5, 2026 Dec 31, 2026 205
314 213069 EMEA CZE CZ10013 - Dr.David Stepek T-6 Maintenance ED 6228095872 Mar 5, 2026 Oct 11, 2026 124
315 213069 EMEA CZE CZ10013 - Dr.David Stepek T-6 Maintenance ED 6228095870 Mar 5, 2026 Oct 11, 2026 124
316 213069 EMEA CZE CZ10013 - Dr.David Stepek T-6 Maintenance ED 6228095871 Mar 5, 2026 Oct 11, 2026 124
317 213069 EMEA CZE CZ10013 - Dr.David Stepek T-8 Liver Function Tests 6227635167 Jan 5, 2026 Sep 12, 2026 95
318 213069 EMEA CZE CZ10013 - Dr.David Stepek T-8 Liver Function Tests 6227635166 Jan 5, 2026 Sep 12, 2026 95
319 213069 EMEA CZE CZ10013 - Dr.David Stepek T-9 LTE Maintenance ED 6228095874 Mar 5, 2026 Oct 11, 2026 124
320 213069 EMEA CZE CZ10013 - Dr.David Stepek T-9 LTE Maintenance ED 6228095873 Mar 5, 2026 Oct 11, 2026 124
321 213069 EMEA CZE CZ10013 - Dr.David Stepek T-9 LTE Maintenance ED 6228095875 Mar 5, 2026 Oct 11, 2026 124
322 213069 EMEA CZE CZ10013 - Dr.David Stepek T-10 Safety FU 6227635151 Jan 5, 2026 Oct 7, 2026 120
323 213069 EMEA CZE CZ10013 - Dr.David Stepek T-10 Safety FU 6227635152 Jan 5, 2026 Oct 7, 2026 120
324 213069 EMEA CZE CZ10013 - Dr.David Stepek T-11 DILI 6227635153 Jan 5, 2026 Jul 31, 2026 52
325 213069 EMEA CZE CZ10013 - Dr.David Stepek T-12 DNA 6228762735 Jun 4, 2026 Mar 31, 2027 295
326 213069 EMEA CZE CZ10013 - Dr.David Stepek T-12 DNA 6228762736 Jun 4, 2026 Mar 31, 2027 295
327 213069 EMEA CZE CZ10013 - Dr.David Stepek T-12 DNA 6228762737 Jun 4, 2026 Mar 31, 2027 295
328 213069 EMEA CZE CZ10013 - Dr.David Stepek U Unscheduled 6227635168 Jan 5, 2026 Oct 31, 2026 144
329 213069 EMEA CZE CZ10013 - Dr.David Stepek U Unscheduled 6227635169 Jan 5, 2026 Oct 31, 2026 144
330 213069 EMEA CZE CZ10013 - Dr.David Stepek U Unscheduled 6227635170 Jan 5, 2026 Oct 31, 2026 144
331 213069 EMEA CZE CZ10015 - Dr.Jan Matous 1 Screening 6227259263 Nov 13, 2025 May 31, 2026 -8
332 213069 EMEA CZE CZ10015 - Dr.Jan Matous 1 Screening 6227259264 Nov 13, 2025 May 31, 2026 -8
333 213069 EMEA CZE CZ10015 - Dr.Jan Matous 1 Screening 6227259265 Nov 13, 2025 May 31, 2026 -8
334 213069 EMEA CZE CZ10015 - Dr.Jan Matous 1 Screening 6228510217 Apr 30, 2026 Nov 30, 2026 174
335 213069 EMEA CZE CZ10015 - Dr.Jan Matous 1 Screening 6228510218 Apr 30, 2026 Nov 30, 2026 174
336 213069 EMEA CZE CZ10015 - Dr.Jan Matous 2 Induction Week 0 6227259267 Nov 13, 2025 May 31, 2026 -8
337 213069 EMEA CZE CZ10015 - Dr.Jan Matous 2 Induction Week 0 6227259266 Nov 13, 2025 May 31, 2026 -8
338 213069 EMEA CZE CZ10015 - Dr.Jan Matous 2 Induction Week 0 6228510219 Apr 30, 2026 Feb 28, 2027 264
339 213069 EMEA CZE CZ10015 - Dr.Jan Matous 2 Induction Week 0 6228510220 Apr 30, 2026 Feb 28, 2027 264
340 213069 EMEA CZE CZ10015 - Dr.Jan Matous 3 Induction Week 2 6227259268 Nov 13, 2025 May 31, 2026 -8
341 213069 EMEA CZE CZ10015 - Dr.Jan Matous 3 Induction Week 2 6227259269 Nov 13, 2025 May 31, 2026 -8
342 213069 EMEA CZE CZ10015 - Dr.Jan Matous 3 Induction Week 2 6228510221 Apr 30, 2026 Feb 28, 2027 264
343 213069 EMEA CZE CZ10015 - Dr.Jan Matous 3 Induction Week 2 6228510222 Apr 30, 2026 Feb 28, 2027 264
344 213069 EMEA CZE CZ10015 - Dr.Jan Matous 4 Induction Week 4 6227259270 Nov 13, 2025 May 31, 2026 -8
345 213069 EMEA CZE CZ10015 - Dr.Jan Matous 4 Induction Week 4 6227259271 Nov 13, 2025 May 31, 2026 -8
346 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-1 Stool Pathogens 6227259274 Nov 13, 2025 Dec 26, 2026 200
347 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-1 Stool Pathogens 6227259273 Nov 13, 2025 Dec 26, 2026 200
348 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-1 Stool Pathogens 6227259272 Nov 13, 2025 Dec 26, 2026 200
349 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-2 TB Testing 6227259281 Nov 13, 2025 Jun 30, 2026 21
350 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-2 TB Testing 6227259282 Nov 13, 2025 Jun 30, 2026 21
351 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-3 Biopsy 6227259283 Nov 13, 2025 Sep 12, 2026 95
352 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-3 Biopsy 6227259284 Nov 13, 2025 Sep 12, 2026 95
353 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-3 Biopsy 6227259285 Nov 13, 2025 Sep 12, 2026 95
354 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-4 Induction ED 6227259286 Nov 13, 2025 May 31, 2026 -8
355 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-4 Induction ED 6227259287 Nov 13, 2025 May 31, 2026 -8
356 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-5 Biologic Drug Level 6227259289 Nov 13, 2025 Jun 30, 2026 21
357 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-5 Biologic Drug Level 6227259288 Nov 13, 2025 Jun 30, 2026 21
358 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-8 Liver Function Tests 6227259290 Nov 13, 2025 Jul 1, 2026 22
359 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-8 Liver Function Tests 6227259291 Nov 13, 2025 Jul 1, 2026 22
360 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-10 Safety FU 6227259276 Nov 13, 2025 May 31, 2026 -8
361 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-10 Safety FU 6227259275 Nov 13, 2025 May 31, 2026 -8
362 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-11 DILI 6227259277 Nov 13, 2025 May 31, 2026 -8
363 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-12 DNA 6227259280 Nov 13, 2025 Aug 31, 2026 83
364 213069 EMEA CZE CZ10015 - Dr.Jan Matous T-12 DNA 6227259278 Nov 13, 2025 Aug 31, 2026 83
365 213069 EMEA CZE CZ10015 - Dr.Jan Matous U Unscheduled 6227259294 Nov 13, 2025 May 31, 2026 -8
366 213069 EMEA CZE CZ10015 - Dr.Jan Matous U Unscheduled 6227259293 Nov 13, 2025 May 31, 2026 -8
367 213069 EMEA CZE CZ10015 - Dr.Jan Matous U Unscheduled 6227259292 Nov 13, 2025 May 31, 2026 -8
368 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 1 Screening 6227635172 Jan 5, 2026 Aug 31, 2026 83
369 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 1 Screening 6228772364 Jun 5, 2026 Feb 28, 2027 264
370 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 1 Screening 6228772365 Jun 5, 2026 Feb 28, 2027 264
371 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 1 Screening 6228772366 Jun 5, 2026 Feb 28, 2027 264
372 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 2 Induction Week 0 6227635175 Jan 5, 2026 Oct 7, 2026 120
373 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 2 Induction Week 0 6228782900 Jun 5, 2026 Mar 31, 2027 295
374 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 2 Induction Week 0 6228782899 Jun 5, 2026 Mar 31, 2027 295
375 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 2 Induction Week 0 6228782898 Jun 5, 2026 Mar 31, 2027 295
376 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 3 Induction Week 2 6227635176 Jan 5, 2026 Oct 7, 2026 120
377 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 3 Induction Week 2 6227635177 Jan 5, 2026 Oct 7, 2026 120
378 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 4 Induction Week 4 6227635178 Jan 5, 2026 Oct 7, 2026 120
379 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 4 Induction Week 4 6227635179 Jan 5, 2026 Oct 7, 2026 120
380 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 5 Induction Week 12 6228501793 Apr 26, 2026 Feb 28, 2027 264
381 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 5 Induction Week 12 6228772367 Jun 5, 2026 Mar 31, 2027 295
382 213069 EMEA CZE CZ10016 - Dr.Robert Mudr 6 Maintenance Week 4 6228772368 Jun 5, 2026 Mar 31, 2027 295
383 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-1 Stool Pathogens 6227635181 Jan 5, 2026 Jan 14, 2027 219
384 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-1 Stool Pathogens 6228772369 Jun 5, 2026 Aug 10, 2027 427
385 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-1 Stool Pathogens 6228772370 Jun 5, 2026 Aug 10, 2027 427
386 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-1 Stool Pathogens 6228772371 Jun 5, 2026 Aug 10, 2027 427
387 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-2 TB Testing 6227635189 Jan 5, 2026 Aug 31, 2026 83
388 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-2 TB Testing 6227635190 Jan 5, 2026 Aug 31, 2026 83
389 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-3 Biopsy 6227635191 Jan 5, 2026 Oct 15, 2026 128
390 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-3 Biopsy 6227635192 Jan 5, 2026 Oct 15, 2026 128
391 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-4 Induction ED 6227635195 Jan 5, 2026 Oct 7, 2026 120
392 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-4 Induction ED 6227635194 Jan 5, 2026 Oct 7, 2026 120
393 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-5 Biologic Drug Level 6227635197 Jan 5, 2026 Dec 31, 2026 205
394 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-5 Biologic Drug Level 6227635196 Jan 5, 2026 Dec 31, 2026 205
395 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-6 Maintenance ED 6228501795 Apr 26, 2026 Feb 28, 2027 264
396 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-6 Maintenance ED 6228501794 Apr 26, 2026 Feb 28, 2027 264
397 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-6 Maintenance ED 6228501796 Apr 26, 2026 Feb 28, 2027 264
398 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-8 Liver Function Tests 6227635198 Jan 5, 2026 Oct 7, 2026 120
399 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-8 Liver Function Tests 6227635199 Jan 5, 2026 Oct 7, 2026 120
400 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-9 LTE Maintenance ED 6228501797 Apr 26, 2026 Feb 28, 2027 264
401 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-9 LTE Maintenance ED 6228501798 Apr 26, 2026 Feb 28, 2027 264
402 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-9 LTE Maintenance ED 6228501799 Apr 26, 2026 Feb 28, 2027 264
403 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-10 Safety FU 6227635183 Jan 5, 2026 Oct 7, 2026 120
404 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-10 Safety FU 6227635184 Jan 5, 2026 Oct 7, 2026 120
405 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-11 DILI 6227635185 Jan 5, 2026 Jul 31, 2026 52
406 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-12 DNA 6227635188 Jan 5, 2026 Dec 31, 2026 205
407 213069 EMEA CZE CZ10016 - Dr.Robert Mudr T-12 DNA 6227635187 Jan 5, 2026 Dec 31, 2026 205
408 213069 EMEA CZE CZ10016 - Dr.Robert Mudr U Unscheduled 6227635200 Jan 5, 2026 Oct 31, 2026 144
409 213069 EMEA CZE CZ10016 - Dr.Robert Mudr U Unscheduled 6227635202 Jan 5, 2026 Oct 31, 2026 144
410 213069 EMEA CZE CZ10016 - Dr.Robert Mudr U Unscheduled 6227635201 Jan 5, 2026 Oct 31, 2026 144
411 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 1 Screening 6227993964 Feb 18, 2026 Sep 30, 2026 113
412 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 1 Screening 6227993963 Feb 18, 2026 Sep 30, 2026 113
413 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 2 Induction Week 0 6227993965 Feb 18, 2026 Oct 11, 2026 124
414 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 2 Induction Week 0 6228707090 May 22, 2026 Feb 28, 2027 264
415 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 2 Induction Week 0 6228707091 May 22, 2026 Feb 28, 2027 264
416 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 2 Induction Week 0 6228707092 May 22, 2026 Feb 28, 2027 264
417 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 2 Induction Week 0 6228711855 May 29, 2026 Feb 28, 2027 264
418 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 3 Induction Week 2 6227993967 Feb 18, 2026 Oct 11, 2026 124
419 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 4 Induction Week 4 6227993969 Feb 18, 2026 Oct 11, 2026 124
420 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 4 Induction Week 4 6227993970 Feb 18, 2026 Oct 11, 2026 124
421 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova 5 Induction Week 12 6228436352 Apr 19, 2026 Feb 28, 2027 264
422 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-1 Stool Pathogens 6227993973 Feb 18, 2026 Jan 15, 2027 220
423 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-1 Stool Pathogens 6227993972 Feb 18, 2026 Jan 15, 2027 220
424 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-2 TB Testing 6227993980 Feb 18, 2026 Oct 31, 2026 144
425 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-2 TB Testing 6227993981 Feb 18, 2026 Oct 31, 2026 144
426 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-3 Biopsy 6227993983 Feb 18, 2026 May 11, 2027 336
427 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-3 Biopsy 6227993982 Feb 18, 2026 May 11, 2027 336
428 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-4 Induction ED 6227993985 Feb 18, 2026 Oct 11, 2026 124
429 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-4 Induction ED 6227993986 Feb 18, 2026 Oct 11, 2026 124
430 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-5 Biologic Drug Level 6227993988 Feb 18, 2026 Dec 31, 2026 205
431 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-5 Biologic Drug Level 6228711856 May 29, 2026 May 31, 2027 356
432 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-6 Maintenance ED 6228436354 Apr 19, 2026 Feb 28, 2027 264
433 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-6 Maintenance ED 6228436353 Apr 19, 2026 Feb 28, 2027 264
434 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-6 Maintenance ED 6228436355 Apr 19, 2026 Feb 28, 2027 264
435 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-8 Liver Function Tests 6227993989 Feb 18, 2026 Oct 11, 2026 124
436 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-8 Liver Function Tests 6227993990 Feb 18, 2026 Oct 11, 2026 124
437 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-9 LTE Maintenance ED 6228436356 Apr 19, 2026 Feb 28, 2027 264
438 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-9 LTE Maintenance ED 6228436357 Apr 19, 2026 Feb 28, 2027 264
439 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-9 LTE Maintenance ED 6228436358 Apr 19, 2026 Feb 28, 2027 264
440 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-10 Safety FU 6227993974 Feb 18, 2026 Oct 11, 2026 124
441 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-10 Safety FU 6227993975 Feb 18, 2026 Oct 11, 2026 124
442 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-11 DILI 6227993976 Feb 18, 2026 Sep 30, 2026 113
443 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-12 DNA 6227993978 Feb 18, 2026 Dec 31, 2026 205
444 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova T-12 DNA 6227993979 Feb 18, 2026 Dec 31, 2026 205
445 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova U Unscheduled 6227993991 Feb 18, 2026 Dec 31, 2026 205
446 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova U Unscheduled 6227993992 Feb 18, 2026 Dec 31, 2026 205
447 213069 EMEA CZE CZ10020 - Dr.Lucie Gonsorcikova U Unscheduled 6227993993 Feb 18, 2026 Dec 31, 2026 205
448 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 1 Screening 6227635205 Jan 5, 2026 Aug 31, 2026 83
449 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 1 Screening 6227635203 Jan 5, 2026 Aug 31, 2026 83
450 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 2 Induction Week 0 6227635206 Jan 5, 2026 Oct 7, 2026 120
451 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 2 Induction Week 0 6228398426 Apr 14, 2026 Feb 28, 2027 264
452 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 2 Induction Week 0 6228398427 Apr 14, 2026 Feb 28, 2027 264
453 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 2 Induction Week 0 6228398428 Apr 14, 2026 Feb 28, 2027 264
454 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 3 Induction Week 2 6227635209 Jan 5, 2026 Oct 7, 2026 120
455 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 3 Induction Week 2 6228492827 Apr 23, 2026 Feb 28, 2027 264
456 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 3 Induction Week 2 6228492828 Apr 23, 2026 Feb 28, 2027 264
457 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 3 Induction Week 2 6228492826 Apr 23, 2026 Feb 28, 2027 264
458 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 4 Induction Week 4 6227635210 Jan 5, 2026 Oct 7, 2026 120
459 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 4 Induction Week 4 6228605821 May 7, 2026 Feb 28, 2027 264
460 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 4 Induction Week 4 6228605823 May 7, 2026 Feb 28, 2027 264
461 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 4 Induction Week 4 6228605822 May 7, 2026 Feb 28, 2027 264
462 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 5 Induction Week 12 6228084840 Mar 4, 2026 Oct 11, 2026 124
463 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik 6 Maintenance Week 4 6228605824 May 7, 2026 Feb 28, 2027 264
464 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-1 Stool Pathogens 6227635214 Jan 5, 2026 Jan 14, 2027 219
465 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-1 Stool Pathogens 6227635212 Jan 5, 2026 Jan 14, 2027 219
466 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-2 TB Testing 6227635221 Jan 5, 2026 Aug 31, 2026 83
467 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-2 TB Testing 6227635222 Jan 5, 2026 Aug 31, 2026 83
468 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-3 Biopsy 6227635224 Jan 5, 2026 Nov 25, 2026 169
469 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-3 Biopsy 6227635225 Jan 5, 2026 Nov 25, 2026 169
470 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-4 Induction ED 6227635226 Jan 5, 2026 Oct 7, 2026 120
471 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-4 Induction ED 6227635227 Jan 5, 2026 Oct 7, 2026 120
472 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-5 Biologic Drug Level 6227635228 Jan 5, 2026 Dec 31, 2026 205
473 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-5 Biologic Drug Level 6227635229 Jan 5, 2026 Dec 31, 2026 205
474 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-6 Maintenance ED 6228084843 Mar 4, 2026 Oct 11, 2026 124
475 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-6 Maintenance ED 6228084842 Mar 4, 2026 Oct 11, 2026 124
476 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-6 Maintenance ED 6228084841 Mar 4, 2026 Oct 11, 2026 124
477 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-8 Liver Function Tests 6227635230 Jan 5, 2026 Oct 7, 2026 120
478 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-8 Liver Function Tests 6227635231 Jan 5, 2026 Oct 7, 2026 120
479 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-9 LTE Maintenance ED 6228084845 Mar 4, 2026 Oct 11, 2026 124
480 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-9 LTE Maintenance ED 6228084844 Mar 4, 2026 Oct 11, 2026 124
481 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-9 LTE Maintenance ED 6228084846 Mar 4, 2026 Oct 11, 2026 124
482 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-10 Safety FU 6227635215 Jan 5, 2026 Oct 7, 2026 120
483 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-10 Safety FU 6227635216 Jan 5, 2026 Oct 7, 2026 120
484 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-11 DILI 6227635217 Jan 5, 2026 Jul 31, 2026 52
485 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-12 DNA 6227635219 Jan 5, 2026 Dec 31, 2026 205
486 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik T-12 DNA 6227635220 Jan 5, 2026 Dec 31, 2026 205
487 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik U Unscheduled 6227635234 Jan 5, 2026 Oct 31, 2026 144
488 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik U Unscheduled 6227635233 Jan 5, 2026 Oct 31, 2026 144
489 213069 EMEA CZE CZ10021 - Dr.Martin Bortlik U Unscheduled 6227635232 Jan 5, 2026 Oct 31, 2026 144
490 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 1 Screening 6227323267 Nov 21, 2025 Jun 30, 2026 21
491 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 1 Screening 6228137352 Mar 11, 2026 Oct 11, 2026 124
492 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 1 Screening 6228137353 Mar 11, 2026 Oct 11, 2026 124
493 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 1 Screening 6228137354 Mar 11, 2026 Oct 11, 2026 124
494 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 1 Screening 6228179928 Mar 23, 2026 Oct 11, 2026 124
495 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 1 Screening 6228179930 Mar 23, 2026 Oct 11, 2026 124
496 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 1 Screening 6228179929 Mar 23, 2026 Oct 11, 2026 124
497 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 2 Induction Week 0 6227323269 Nov 21, 2025 Oct 7, 2026 120
498 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 2 Induction Week 0 6228173395 Mar 18, 2026 Oct 11, 2026 124
499 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 2 Induction Week 0 6228173396 Mar 18, 2026 Oct 11, 2026 124
500 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 3 Induction Week 2 6227323271 Nov 21, 2025 Oct 7, 2026 120
501 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 3 Induction Week 2 6228179931 Mar 23, 2026 Oct 11, 2026 124
502 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 3 Induction Week 2 6228179933 Mar 23, 2026 Oct 11, 2026 124
503 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 4 Induction Week 4 6227323273 Nov 21, 2025 Oct 7, 2026 120
504 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 4 Induction Week 4 6228179934 Mar 23, 2026 Oct 11, 2026 124
505 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 4 Induction Week 4 6228179935 Mar 23, 2026 Oct 11, 2026 124
506 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 5 Induction Week 12 6227752380 Jan 20, 2026 Oct 7, 2026 120
507 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 5 Induction Week 12 6227810902 Jan 28, 2026 Oct 7, 2026 120
508 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 5 Induction Week 12 6228137356 Mar 11, 2026 Oct 11, 2026 124
509 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 6 Maintenance Week 4 6228023948 Feb 25, 2026 Oct 11, 2026 124
510 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 6 Maintenance Week 4 6228023949 Feb 25, 2026 Oct 11, 2026 124
511 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 12 LTE Maintenance Wk56 6228179938 Mar 23, 2026 Oct 11, 2026 124
512 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak 12 LTE Maintenance Wk56 6228179937 Mar 23, 2026 Oct 11, 2026 124
513 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-1 Stool Pathogens 6227323275 Nov 21, 2025 Dec 26, 2026 200
514 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-1 Stool Pathogens 6227810903 Jan 28, 2026 Jan 15, 2027 220
515 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-1 Stool Pathogens 6228179939 Mar 23, 2026 Jan 29, 2027 234
516 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-1 Stool Pathogens 6228179940 Mar 23, 2026 Jan 29, 2027 234
517 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-2 TB Testing 6227323284 Nov 21, 2025 Jun 30, 2026 21
518 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-2 TB Testing 6227323285 Nov 21, 2025 Jun 30, 2026 21
519 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-3 Biopsy 6227323288 Nov 21, 2025 Sep 12, 2026 95
520 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-3 Biopsy 6228023950 Feb 25, 2026 Nov 28, 2026 172
521 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-3 Biopsy 6228023952 Feb 25, 2026 May 11, 2027 336
522 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-3 Biopsy 6228179946 Mar 23, 2026 Jul 20, 2027 406
523 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-3 Biopsy 6228179944 Mar 23, 2026 Jul 20, 2027 406
524 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-4 Induction ED 6227323289 Nov 21, 2025 Oct 7, 2026 120
525 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-4 Induction ED 6227323290 Nov 21, 2025 Oct 7, 2026 120
526 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-5 Biologic Drug Level 6227323291 Nov 21, 2025 Jun 30, 2026 21
527 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-5 Biologic Drug Level 6227323292 Nov 21, 2025 Jun 30, 2026 21
528 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-6 Maintenance ED 6227752381 Jan 20, 2026 Oct 7, 2026 120
529 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-6 Maintenance ED 6227752383 Jan 20, 2026 Oct 7, 2026 120
530 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-6 Maintenance ED 6227752382 Jan 20, 2026 Oct 7, 2026 120
531 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-8 Liver Function Tests 6227323293 Nov 21, 2025 Jul 1, 2026 22
532 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-8 Liver Function Tests 6227323294 Nov 21, 2025 Jul 1, 2026 22
533 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-9 LTE Maintenance ED 6227752385 Jan 20, 2026 Oct 7, 2026 120
534 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-9 LTE Maintenance ED 6227752386 Jan 20, 2026 Oct 7, 2026 120
535 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-9 LTE Maintenance ED 6227752384 Jan 20, 2026 Oct 7, 2026 120
536 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-10 Safety FU 6227323279 Nov 21, 2025 May 31, 2026 -8
537 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-10 Safety FU 6227323278 Nov 21, 2025 May 31, 2026 -8
538 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-11 DILI 6227323280 Nov 21, 2025 May 31, 2026 -8
539 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-12 DNA 6227323281 Nov 21, 2025 Jul 31, 2026 52
540 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-12 DNA 6227323282 Nov 21, 2025 Jul 31, 2026 52
541 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-12 DNA 6228179941 Mar 23, 2026 Mar 31, 2027 295
542 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak T-12 DNA 6228179943 Mar 23, 2026 Mar 31, 2027 295
543 213069 EMEA CZE CZ10022 - Dr. Petr Hrabak U Unscheduled 6227323296 Nov 21, 2025 Aug 31, 2026 83
544 title value
545 Search
546 Site CZ10015 Dr.Jan Matous, CZ10013 Dr.David Stepek, CZ10001 Dr. Matej Falc, CZ10010 Dr.Nabil El Lababidi, CZ10022 Dr. Petr Hrabak, CZ10020 Dr.Lucie Gonsorcikova, CZ10012 Dr.Stefan Konecny, CZ10006 Dr. Michal Konecny, CZ10021 Dr.Martin Bortlik, CZ10016 Dr.Robert Mudr, CZ10003 Dr. Leksa Vaclav, CZ10009 Dr. Jiri Pumprla
547 Expiration Date Range From - To -
548 Shipped Date Range From - To -
549 Kit Type
550 Ignore Record Limit TRUE
@@ -0,0 +1,282 @@
Project No.,Region,Country,Site,Kit Type,Description,Accession,Shipped Date,Expiration Date,Days to Expiration
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350973,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350970,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350974,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350976,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350978,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6225350979,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541248,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6227541247,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149461,"Mar 13, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149462,"Mar 13, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,1,Part 1 Screening,6228149463,"Mar 13, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350980,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6225350983,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261232,"Nov 18, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227261231,"Nov 18, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541250,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,2,Part 1 DB Baseline,6227541253,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350985,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350986,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6225350987,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547334,"Dec 31, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,3,Part 2 Screening,6227547335,"Dec 31, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6225350989,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541255,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227541254,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,4,Part 2 OL Induction Baseline,6227547339,"Dec 31, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227261233,"Nov 18, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541263,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,5,Part 2 OL Induction Day 29,6227541262,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226573503,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6226889398,"Oct 7, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227043303,"Oct 23, 2025","Jul 31, 2026",52
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6227261234,"Nov 18, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149464,"Mar 13, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,6,Part 2 DB Baseline,6228149465,"Mar 13, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6226889399,"Oct 7, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541265,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541267,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541268,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,7,Part 2 DB Week 13,6227541266,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573504,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573505,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573507,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573506,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6226573508,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541269,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541270,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541272,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-1,Part 2 DB Every 12 Weeks,6227541271,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350990,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350991,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350992,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350993,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6225350994,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6227768461,"Jan 27, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6228605654,"May 7, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-2,End of Phase/Treatment,6228605655,"May 7, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350996,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350995,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350997,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350998,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6225350999,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768462,"Jan 27, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768463,"Jan 27, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768464,"Jan 27, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-3,Early Withdrawal,6227768465,"Jan 27, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6225351000,"Feb 24, 2025","Sep 1, 2025",-280
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227547340,"Dec 31, 2025","Sep 12, 2026",95
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-4,Liver Monitoring,6227768466,"Jan 27, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6225351001,"Feb 24, 2025","Jul 31, 2025",-312
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227547341,"Dec 31, 2025","Jul 31, 2026",52
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,T-5,Suspected Liver Event FU,6227768467,"Jan 27, 2026","Jul 31, 2026",52
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6225351003,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649755,"Aug 29, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6226649756,"Aug 29, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178914,"Nov 14, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178913,"Nov 14, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178915,"Nov 14, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178916,"Nov 14, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178917,"Nov 14, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178919,"Nov 14, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10004 - Dr. Erik Herman,U,Retest,6227178918,"Nov 14, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351038,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351039,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6225351043,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520226,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520225,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,1,Part 1 Screening,6227520227,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6225351048,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551696,"Aug 22, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551699,"Aug 22, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226551700,"Aug 22, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655163,"Sep 5, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655166,"Sep 5, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655165,"Sep 5, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655162,"Sep 5, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,2,Part 1 DB Baseline,6226655164,"Sep 5, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351053,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351054,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6225351055,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520230,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520228,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,3,Part 2 Screening,6227520229,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780849,"Sep 24, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780851,"Sep 24, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780848,"Sep 24, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780852,"Sep 24, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6226780850,"Sep 24, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520231,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520233,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,4,Part 2 OL Induction Baseline,6227520232,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226550654,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6226561520,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072416,"Oct 20, 2025","Jul 31, 2026",52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072415,"Oct 20, 2025","Jul 31, 2026",52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072418,"Oct 20, 2025","Jul 31, 2026",52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,5,Part 2 OL Induction Day 29,6227072417,"Oct 20, 2025","Jul 31, 2026",52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226313626,"Jul 14, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226550655,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6226561521,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520234,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520235,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,6,Part 2 DB Baseline,6227520236,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226313627,"Jul 14, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226550656,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226561522,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,7,Part 2 DB Week 13,6226804963,"Sep 25, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313628,"Jul 14, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313629,"Jul 14, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313630,"Jul 14, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313631,"Jul 14, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6226313632,"Jul 14, 2025","Apr 17, 2026",-52
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520237,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520239,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520240,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520241,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-1,Part 2 DB Every 12 Weeks,6227520238,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351058,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351059,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351061,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351062,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6225351060,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6226780854,"Sep 24, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520244,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-2,End of Phase/Treatment,6227520246,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351065,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351067,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351064,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6225351063,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520248,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520250,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520247,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520249,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-3,Early Withdrawal,6227520251,"Dec 26, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-4,Liver Monitoring,6225351068,"Feb 24, 2025","Sep 1, 2025",-280
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,T-5,Suspected Liver Event FU,6225351069,"Feb 24, 2025","Jul 31, 2025",-312
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6225351071,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023802,"Feb 25, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10008 - Dr.Zdenek Solle,U,Retest,6228023803,"Feb 25, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351073,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351075,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6225351079,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542163,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6227542162,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149810,"Mar 13, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149812,"Mar 13, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,1,Part 1 Screening,6228149811,"Mar 13, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351085,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6225351086,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542165,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227542164,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844727,"Feb 1, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,2,Part 1 DB Baseline,6227844726,"Feb 1, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351087,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351088,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6225351089,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542167,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542168,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542169,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,3,Part 2 Screening,6227542166,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351091,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,4,Part 2 OL Induction Baseline,6225351090,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6226935605,"Oct 14, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,5,Part 2 OL Induction Day 29,6228013045,"Feb 26, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226550647,"Aug 18, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226561518,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6226991312,"Oct 26, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228013046,"Feb 26, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228114461,"Mar 11, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,6,Part 2 DB Baseline,6228398393,"Apr 15, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226550648,"Aug 18, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226561519,"Aug 21, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6226991313,"Oct 26, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261837,"Nov 20, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6227261838,"Nov 20, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,7,Part 2 DB Week 13,6228114462,"Mar 11, 2026","Oct 11, 2026",124
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550649,"Aug 18, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550650,"Aug 18, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550652,"Aug 18, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550651,"Aug 18, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-1,Part 2 DB Every 12 Weeks,6226550653,"Aug 18, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351092,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6225351096,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6227498378,"Dec 22, 2025","Aug 31, 2026",83
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232036,"Mar 25, 2026","Jan 3, 2027",208
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228232038,"Mar 25, 2026","Jan 3, 2027",208
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-2,End of Phase/Treatment,6228234299,"Mar 30, 2026","Jan 3, 2027",208
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351097,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351099,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351101,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351100,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6225351098,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542174,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542176,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542175,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-3,Early Withdrawal,6227542177,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6225351102,"Feb 24, 2025","Sep 1, 2025",-280
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542179,"Dec 25, 2025","Sep 12, 2026",95
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-4,Liver Monitoring,6227542178,"Dec 25, 2025","Sep 12, 2026",95
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6225351103,"Feb 24, 2025","Jul 31, 2025",-312
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542180,"Dec 25, 2025","Jun 30, 2026",21
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,T-5,Suspected Liver Event FU,6227542181,"Dec 25, 2025","Jun 30, 2026",21
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351104,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6225351105,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6227542183,"Dec 25, 2025","Oct 7, 2026",120
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417882,"Apr 15, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10011 - Dr. Marta Lendlova,U,Retest,6228417883,"Apr 15, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351107,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351108,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351112,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351113,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351114,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6225351115,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227767268,"Jan 27, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775503,"Jan 23, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,1,Part 1 Screening,6227775504,"Jan 23, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351117,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351116,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351118,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6225351119,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767269,"Jan 27, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227767270,"Jan 27, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,2,Part 1 DB Baseline,6227775506,"Jan 23, 2026","Oct 7, 2026",120
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351123,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351122,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6225351121,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6228742569,"May 25, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,3,Part 2 Screening,6228742568,"May 25, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351124,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,4,Part 2 OL Induction Baseline,6225351125,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6226976944,"Oct 26, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,6,Part 2 DB Baseline,6228521304,"Apr 30, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226560889,"Aug 20, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226752556,"Sep 17, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,7,Part 2 DB Week 13,6226976945,"Oct 26, 2025","May 31, 2026",-8
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560890,"Aug 20, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560892,"Aug 20, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560894,"Aug 20, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6226560893,"Aug 20, 2025","Jul 1, 2026",22
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389162,"Apr 15, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-1,Part 2 DB Every 12 Weeks,6228389161,"Apr 15, 2026","Feb 28, 2027",264
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351129,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351128,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351130,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-2,End of Phase/Treatment,6225351127,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351131,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351132,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351133,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351134,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-3,Early Withdrawal,6225351135,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-4,Liver Monitoring,6225351136,"Feb 24, 2025","Sep 1, 2025",-280
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,T-5,Suspected Liver Event FU,6225351137,"Feb 24, 2025","Jul 31, 2025",-312
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351139,"Feb 24, 2025","Dec 1, 2025",-189
212396,EMEA,CZE,CZ10012 - Dr.Ales Urban,U,Retest,6225351138,"Feb 24, 2025","Dec 1, 2025",-189
title,value,,,,,,,,
Search,,,,,,,,,
Site,"CZ10004 Dr. Erik Herman, CZ10012 Dr.Ales Urban, CZ10011 Dr. Marta Lendlova, CZ10008 Dr.Zdenek Solle",,,,,,,,
Expiration Date Range,From - To - ,,,,,,,,
Shipped Date Range,From - To - ,,,,,,,,
Kit Type,,,,,,,,,
Ignore Record Limit,TRUE,,,,,,,,
1 Project No. Region Country Site Kit Type Description Accession Shipped Date Expiration Date Days to Expiration
2 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6225350973 Feb 24, 2025 Dec 1, 2025 -189
3 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6225350970 Feb 24, 2025 Dec 1, 2025 -189
4 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6225350974 Feb 24, 2025 Dec 1, 2025 -189
5 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6225350976 Feb 24, 2025 Dec 1, 2025 -189
6 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6225350978 Feb 24, 2025 Dec 1, 2025 -189
7 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6225350979 Feb 24, 2025 Dec 1, 2025 -189
8 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6227541248 Dec 25, 2025 Oct 7, 2026 120
9 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6227541247 Dec 25, 2025 Oct 7, 2026 120
10 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6228149461 Mar 13, 2026 Oct 11, 2026 124
11 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6228149462 Mar 13, 2026 Oct 11, 2026 124
12 212396 EMEA CZE CZ10004 - Dr. Erik Herman 1 Part 1 Screening 6228149463 Mar 13, 2026 Oct 11, 2026 124
13 212396 EMEA CZE CZ10004 - Dr. Erik Herman 2 Part 1 DB Baseline 6225350980 Feb 24, 2025 Dec 1, 2025 -189
14 212396 EMEA CZE CZ10004 - Dr. Erik Herman 2 Part 1 DB Baseline 6225350983 Feb 24, 2025 Dec 1, 2025 -189
15 212396 EMEA CZE CZ10004 - Dr. Erik Herman 2 Part 1 DB Baseline 6227261232 Nov 18, 2025 May 31, 2026 -8
16 212396 EMEA CZE CZ10004 - Dr. Erik Herman 2 Part 1 DB Baseline 6227261231 Nov 18, 2025 May 31, 2026 -8
17 212396 EMEA CZE CZ10004 - Dr. Erik Herman 2 Part 1 DB Baseline 6227541250 Dec 25, 2025 Oct 7, 2026 120
18 212396 EMEA CZE CZ10004 - Dr. Erik Herman 2 Part 1 DB Baseline 6227541253 Dec 25, 2025 Oct 7, 2026 120
19 212396 EMEA CZE CZ10004 - Dr. Erik Herman 3 Part 2 Screening 6225350985 Feb 24, 2025 Dec 1, 2025 -189
20 212396 EMEA CZE CZ10004 - Dr. Erik Herman 3 Part 2 Screening 6225350986 Feb 24, 2025 Dec 1, 2025 -189
21 212396 EMEA CZE CZ10004 - Dr. Erik Herman 3 Part 2 Screening 6225350987 Feb 24, 2025 Dec 1, 2025 -189
22 212396 EMEA CZE CZ10004 - Dr. Erik Herman 3 Part 2 Screening 6227547334 Dec 31, 2025 Oct 7, 2026 120
23 212396 EMEA CZE CZ10004 - Dr. Erik Herman 3 Part 2 Screening 6227547335 Dec 31, 2025 Oct 7, 2026 120
24 212396 EMEA CZE CZ10004 - Dr. Erik Herman 4 Part 2 OL Induction Baseline 6225350989 Feb 24, 2025 Dec 1, 2025 -189
25 212396 EMEA CZE CZ10004 - Dr. Erik Herman 4 Part 2 OL Induction Baseline 6227541255 Dec 25, 2025 Oct 7, 2026 120
26 212396 EMEA CZE CZ10004 - Dr. Erik Herman 4 Part 2 OL Induction Baseline 6227541254 Dec 25, 2025 Oct 7, 2026 120
27 212396 EMEA CZE CZ10004 - Dr. Erik Herman 4 Part 2 OL Induction Baseline 6227547339 Dec 31, 2025 Oct 7, 2026 120
28 212396 EMEA CZE CZ10004 - Dr. Erik Herman 5 Part 2 OL Induction Day 29 6227261233 Nov 18, 2025 May 31, 2026 -8
29 212396 EMEA CZE CZ10004 - Dr. Erik Herman 5 Part 2 OL Induction Day 29 6227541263 Dec 25, 2025 Oct 7, 2026 120
30 212396 EMEA CZE CZ10004 - Dr. Erik Herman 5 Part 2 OL Induction Day 29 6227541262 Dec 25, 2025 Oct 7, 2026 120
31 212396 EMEA CZE CZ10004 - Dr. Erik Herman 6 Part 2 DB Baseline 6226573503 Aug 21, 2025 Jul 1, 2026 22
32 212396 EMEA CZE CZ10004 - Dr. Erik Herman 6 Part 2 DB Baseline 6226889398 Oct 7, 2025 May 31, 2026 -8
33 212396 EMEA CZE CZ10004 - Dr. Erik Herman 6 Part 2 DB Baseline 6227043303 Oct 23, 2025 Jul 31, 2026 52
34 212396 EMEA CZE CZ10004 - Dr. Erik Herman 6 Part 2 DB Baseline 6227261234 Nov 18, 2025 May 31, 2026 -8
35 212396 EMEA CZE CZ10004 - Dr. Erik Herman 6 Part 2 DB Baseline 6228149464 Mar 13, 2026 Oct 11, 2026 124
36 212396 EMEA CZE CZ10004 - Dr. Erik Herman 6 Part 2 DB Baseline 6228149465 Mar 13, 2026 Oct 11, 2026 124
37 212396 EMEA CZE CZ10004 - Dr. Erik Herman 7 Part 2 DB Week 13 6226889399 Oct 7, 2025 May 31, 2026 -8
38 212396 EMEA CZE CZ10004 - Dr. Erik Herman 7 Part 2 DB Week 13 6227541265 Dec 25, 2025 Oct 7, 2026 120
39 212396 EMEA CZE CZ10004 - Dr. Erik Herman 7 Part 2 DB Week 13 6227541267 Dec 25, 2025 Oct 7, 2026 120
40 212396 EMEA CZE CZ10004 - Dr. Erik Herman 7 Part 2 DB Week 13 6227541268 Dec 25, 2025 Oct 7, 2026 120
41 212396 EMEA CZE CZ10004 - Dr. Erik Herman 7 Part 2 DB Week 13 6227541266 Dec 25, 2025 Oct 7, 2026 120
42 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-1 Part 2 DB Every 12 Weeks 6226573504 Aug 21, 2025 Jul 1, 2026 22
43 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-1 Part 2 DB Every 12 Weeks 6226573505 Aug 21, 2025 Jul 1, 2026 22
44 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-1 Part 2 DB Every 12 Weeks 6226573507 Aug 21, 2025 Jul 1, 2026 22
45 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-1 Part 2 DB Every 12 Weeks 6226573506 Aug 21, 2025 Jul 1, 2026 22
46 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-1 Part 2 DB Every 12 Weeks 6226573508 Aug 21, 2025 Jul 1, 2026 22
47 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-1 Part 2 DB Every 12 Weeks 6227541269 Dec 25, 2025 Oct 7, 2026 120
48 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-1 Part 2 DB Every 12 Weeks 6227541270 Dec 25, 2025 Oct 7, 2026 120
49 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-1 Part 2 DB Every 12 Weeks 6227541272 Dec 25, 2025 Oct 7, 2026 120
50 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-1 Part 2 DB Every 12 Weeks 6227541271 Dec 25, 2025 Oct 7, 2026 120
51 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-2 End of Phase/Treatment 6225350990 Feb 24, 2025 Dec 1, 2025 -189
52 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-2 End of Phase/Treatment 6225350991 Feb 24, 2025 Dec 1, 2025 -189
53 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-2 End of Phase/Treatment 6225350992 Feb 24, 2025 Dec 1, 2025 -189
54 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-2 End of Phase/Treatment 6225350993 Feb 24, 2025 Dec 1, 2025 -189
55 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-2 End of Phase/Treatment 6225350994 Feb 24, 2025 Dec 1, 2025 -189
56 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-2 End of Phase/Treatment 6227768461 Jan 27, 2026 Oct 7, 2026 120
57 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-2 End of Phase/Treatment 6228605654 May 7, 2026 Feb 28, 2027 264
58 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-2 End of Phase/Treatment 6228605655 May 7, 2026 Feb 28, 2027 264
59 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-3 Early Withdrawal 6225350996 Feb 24, 2025 Dec 1, 2025 -189
60 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-3 Early Withdrawal 6225350995 Feb 24, 2025 Dec 1, 2025 -189
61 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-3 Early Withdrawal 6225350997 Feb 24, 2025 Dec 1, 2025 -189
62 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-3 Early Withdrawal 6225350998 Feb 24, 2025 Dec 1, 2025 -189
63 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-3 Early Withdrawal 6225350999 Feb 24, 2025 Dec 1, 2025 -189
64 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-3 Early Withdrawal 6227768462 Jan 27, 2026 Oct 7, 2026 120
65 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-3 Early Withdrawal 6227768463 Jan 27, 2026 Oct 7, 2026 120
66 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-3 Early Withdrawal 6227768464 Jan 27, 2026 Oct 7, 2026 120
67 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-3 Early Withdrawal 6227768465 Jan 27, 2026 Oct 7, 2026 120
68 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-4 Liver Monitoring 6225351000 Feb 24, 2025 Sep 1, 2025 -280
69 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-4 Liver Monitoring 6227547340 Dec 31, 2025 Sep 12, 2026 95
70 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-4 Liver Monitoring 6227768466 Jan 27, 2026 Oct 7, 2026 120
71 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-5 Suspected Liver Event FU 6225351001 Feb 24, 2025 Jul 31, 2025 -312
72 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-5 Suspected Liver Event FU 6227547341 Dec 31, 2025 Jul 31, 2026 52
73 212396 EMEA CZE CZ10004 - Dr. Erik Herman T-5 Suspected Liver Event FU 6227768467 Jan 27, 2026 Jul 31, 2026 52
74 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6225351003 Feb 24, 2025 Dec 1, 2025 -189
75 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6226649755 Aug 29, 2025 May 31, 2026 -8
76 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6226649756 Aug 29, 2025 May 31, 2026 -8
77 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6227178914 Nov 14, 2025 Aug 31, 2026 83
78 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6227178913 Nov 14, 2025 Aug 31, 2026 83
79 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6227178915 Nov 14, 2025 Aug 31, 2026 83
80 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6227178916 Nov 14, 2025 Aug 31, 2026 83
81 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6227178917 Nov 14, 2025 Aug 31, 2026 83
82 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6227178919 Nov 14, 2025 Aug 31, 2026 83
83 212396 EMEA CZE CZ10004 - Dr. Erik Herman U Retest 6227178918 Nov 14, 2025 Aug 31, 2026 83
84 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 1 Part 1 Screening 6225351038 Feb 24, 2025 Dec 1, 2025 -189
85 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 1 Part 1 Screening 6225351039 Feb 24, 2025 Dec 1, 2025 -189
86 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 1 Part 1 Screening 6225351043 Feb 24, 2025 Dec 1, 2025 -189
87 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 1 Part 1 Screening 6227520226 Dec 26, 2025 Aug 31, 2026 83
88 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 1 Part 1 Screening 6227520225 Dec 26, 2025 Aug 31, 2026 83
89 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 1 Part 1 Screening 6227520227 Dec 26, 2025 Aug 31, 2026 83
90 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 2 Part 1 DB Baseline 6225351048 Feb 24, 2025 Dec 1, 2025 -189
91 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 2 Part 1 DB Baseline 6226551696 Aug 22, 2025 Apr 17, 2026 -52
92 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 2 Part 1 DB Baseline 6226551699 Aug 22, 2025 Apr 17, 2026 -52
93 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 2 Part 1 DB Baseline 6226551700 Aug 22, 2025 Apr 17, 2026 -52
94 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 2 Part 1 DB Baseline 6226655163 Sep 5, 2025 May 31, 2026 -8
95 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 2 Part 1 DB Baseline 6226655166 Sep 5, 2025 May 31, 2026 -8
96 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 2 Part 1 DB Baseline 6226655165 Sep 5, 2025 May 31, 2026 -8
97 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 2 Part 1 DB Baseline 6226655162 Sep 5, 2025 May 31, 2026 -8
98 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 2 Part 1 DB Baseline 6226655164 Sep 5, 2025 May 31, 2026 -8
99 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 3 Part 2 Screening 6225351053 Feb 24, 2025 Dec 1, 2025 -189
100 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 3 Part 2 Screening 6225351054 Feb 24, 2025 Dec 1, 2025 -189
101 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 3 Part 2 Screening 6225351055 Feb 24, 2025 Dec 1, 2025 -189
102 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 3 Part 2 Screening 6227520230 Dec 26, 2025 Aug 31, 2026 83
103 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 3 Part 2 Screening 6227520228 Dec 26, 2025 Aug 31, 2026 83
104 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 3 Part 2 Screening 6227520229 Dec 26, 2025 Aug 31, 2026 83
105 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 4 Part 2 OL Induction Baseline 6226780849 Sep 24, 2025 May 31, 2026 -8
106 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 4 Part 2 OL Induction Baseline 6226780851 Sep 24, 2025 May 31, 2026 -8
107 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 4 Part 2 OL Induction Baseline 6226780848 Sep 24, 2025 May 31, 2026 -8
108 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 4 Part 2 OL Induction Baseline 6226780852 Sep 24, 2025 May 31, 2026 -8
109 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 4 Part 2 OL Induction Baseline 6226780850 Sep 24, 2025 May 31, 2026 -8
110 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 4 Part 2 OL Induction Baseline 6227520231 Dec 26, 2025 Aug 31, 2026 83
111 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 4 Part 2 OL Induction Baseline 6227520233 Dec 26, 2025 Aug 31, 2026 83
112 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 4 Part 2 OL Induction Baseline 6227520232 Dec 26, 2025 Aug 31, 2026 83
113 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 5 Part 2 OL Induction Day 29 6226550654 Aug 21, 2025 Jul 1, 2026 22
114 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 5 Part 2 OL Induction Day 29 6226561520 Aug 21, 2025 Jul 1, 2026 22
115 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 5 Part 2 OL Induction Day 29 6227072416 Oct 20, 2025 Jul 31, 2026 52
116 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 5 Part 2 OL Induction Day 29 6227072415 Oct 20, 2025 Jul 31, 2026 52
117 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 5 Part 2 OL Induction Day 29 6227072418 Oct 20, 2025 Jul 31, 2026 52
118 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 5 Part 2 OL Induction Day 29 6227072417 Oct 20, 2025 Jul 31, 2026 52
119 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 6 Part 2 DB Baseline 6226313626 Jul 14, 2025 Apr 17, 2026 -52
120 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 6 Part 2 DB Baseline 6226550655 Aug 21, 2025 Jul 1, 2026 22
121 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 6 Part 2 DB Baseline 6226561521 Aug 21, 2025 Jul 1, 2026 22
122 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 6 Part 2 DB Baseline 6227520234 Dec 26, 2025 Aug 31, 2026 83
123 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 6 Part 2 DB Baseline 6227520235 Dec 26, 2025 Aug 31, 2026 83
124 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 6 Part 2 DB Baseline 6227520236 Dec 26, 2025 Aug 31, 2026 83
125 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 7 Part 2 DB Week 13 6226313627 Jul 14, 2025 Apr 17, 2026 -52
126 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 7 Part 2 DB Week 13 6226550656 Aug 21, 2025 Jul 1, 2026 22
127 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 7 Part 2 DB Week 13 6226561522 Aug 21, 2025 Jul 1, 2026 22
128 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle 7 Part 2 DB Week 13 6226804963 Sep 25, 2025 May 31, 2026 -8
129 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6226313628 Jul 14, 2025 Apr 17, 2026 -52
130 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6226313629 Jul 14, 2025 Apr 17, 2026 -52
131 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6226313630 Jul 14, 2025 Apr 17, 2026 -52
132 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6226313631 Jul 14, 2025 Apr 17, 2026 -52
133 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6226313632 Jul 14, 2025 Apr 17, 2026 -52
134 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6227520237 Dec 26, 2025 Aug 31, 2026 83
135 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6227520239 Dec 26, 2025 Aug 31, 2026 83
136 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6227520240 Dec 26, 2025 Aug 31, 2026 83
137 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6227520241 Dec 26, 2025 Aug 31, 2026 83
138 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-1 Part 2 DB Every 12 Weeks 6227520238 Dec 26, 2025 Aug 31, 2026 83
139 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-2 End of Phase/Treatment 6225351058 Feb 24, 2025 Dec 1, 2025 -189
140 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-2 End of Phase/Treatment 6225351059 Feb 24, 2025 Dec 1, 2025 -189
141 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-2 End of Phase/Treatment 6225351061 Feb 24, 2025 Dec 1, 2025 -189
142 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-2 End of Phase/Treatment 6225351062 Feb 24, 2025 Dec 1, 2025 -189
143 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-2 End of Phase/Treatment 6225351060 Feb 24, 2025 Dec 1, 2025 -189
144 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-2 End of Phase/Treatment 6226780854 Sep 24, 2025 May 31, 2026 -8
145 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-2 End of Phase/Treatment 6227520244 Dec 26, 2025 Aug 31, 2026 83
146 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-2 End of Phase/Treatment 6227520246 Dec 26, 2025 Aug 31, 2026 83
147 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-3 Early Withdrawal 6225351065 Feb 24, 2025 Dec 1, 2025 -189
148 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-3 Early Withdrawal 6225351067 Feb 24, 2025 Dec 1, 2025 -189
149 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-3 Early Withdrawal 6225351064 Feb 24, 2025 Dec 1, 2025 -189
150 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-3 Early Withdrawal 6225351063 Feb 24, 2025 Dec 1, 2025 -189
151 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-3 Early Withdrawal 6227520248 Dec 26, 2025 Aug 31, 2026 83
152 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-3 Early Withdrawal 6227520250 Dec 26, 2025 Aug 31, 2026 83
153 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-3 Early Withdrawal 6227520247 Dec 26, 2025 Aug 31, 2026 83
154 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-3 Early Withdrawal 6227520249 Dec 26, 2025 Aug 31, 2026 83
155 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-3 Early Withdrawal 6227520251 Dec 26, 2025 Aug 31, 2026 83
156 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-4 Liver Monitoring 6225351068 Feb 24, 2025 Sep 1, 2025 -280
157 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle T-5 Suspected Liver Event FU 6225351069 Feb 24, 2025 Jul 31, 2025 -312
158 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle U Retest 6225351071 Feb 24, 2025 Dec 1, 2025 -189
159 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle U Retest 6228023802 Feb 25, 2026 Oct 11, 2026 124
160 212396 EMEA CZE CZ10008 - Dr.Zdenek Solle U Retest 6228023803 Feb 25, 2026 Oct 11, 2026 124
161 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 1 Part 1 Screening 6225351073 Feb 24, 2025 Dec 1, 2025 -189
162 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 1 Part 1 Screening 6225351075 Feb 24, 2025 Dec 1, 2025 -189
163 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 1 Part 1 Screening 6225351079 Feb 24, 2025 Dec 1, 2025 -189
164 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 1 Part 1 Screening 6227542163 Dec 25, 2025 Oct 7, 2026 120
165 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 1 Part 1 Screening 6227542162 Dec 25, 2025 Oct 7, 2026 120
166 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 1 Part 1 Screening 6228149810 Mar 13, 2026 Oct 11, 2026 124
167 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 1 Part 1 Screening 6228149812 Mar 13, 2026 Oct 11, 2026 124
168 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 1 Part 1 Screening 6228149811 Mar 13, 2026 Oct 11, 2026 124
169 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 2 Part 1 DB Baseline 6225351085 Feb 24, 2025 Dec 1, 2025 -189
170 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 2 Part 1 DB Baseline 6225351086 Feb 24, 2025 Dec 1, 2025 -189
171 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 2 Part 1 DB Baseline 6227542165 Dec 25, 2025 Oct 7, 2026 120
172 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 2 Part 1 DB Baseline 6227542164 Dec 25, 2025 Oct 7, 2026 120
173 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 2 Part 1 DB Baseline 6227844727 Feb 1, 2026 Oct 11, 2026 124
174 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 2 Part 1 DB Baseline 6227844726 Feb 1, 2026 Oct 11, 2026 124
175 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 3 Part 2 Screening 6225351087 Feb 24, 2025 Dec 1, 2025 -189
176 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 3 Part 2 Screening 6225351088 Feb 24, 2025 Dec 1, 2025 -189
177 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 3 Part 2 Screening 6225351089 Feb 24, 2025 Dec 1, 2025 -189
178 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 3 Part 2 Screening 6227542167 Dec 25, 2025 Oct 7, 2026 120
179 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 3 Part 2 Screening 6227542168 Dec 25, 2025 Oct 7, 2026 120
180 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 3 Part 2 Screening 6227542169 Dec 25, 2025 Oct 7, 2026 120
181 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 3 Part 2 Screening 6227542166 Dec 25, 2025 Oct 7, 2026 120
182 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 4 Part 2 OL Induction Baseline 6225351091 Feb 24, 2025 Dec 1, 2025 -189
183 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 4 Part 2 OL Induction Baseline 6225351090 Feb 24, 2025 Dec 1, 2025 -189
184 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 5 Part 2 OL Induction Day 29 6226935605 Oct 14, 2025 May 31, 2026 -8
185 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 5 Part 2 OL Induction Day 29 6228013045 Feb 26, 2026 Oct 11, 2026 124
186 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 6 Part 2 DB Baseline 6226550647 Aug 18, 2025 Jul 1, 2026 22
187 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 6 Part 2 DB Baseline 6226561518 Aug 21, 2025 Jul 1, 2026 22
188 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 6 Part 2 DB Baseline 6226991312 Oct 26, 2025 May 31, 2026 -8
189 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 6 Part 2 DB Baseline 6228013046 Feb 26, 2026 Oct 11, 2026 124
190 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 6 Part 2 DB Baseline 6228114461 Mar 11, 2026 Oct 11, 2026 124
191 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 6 Part 2 DB Baseline 6228398393 Apr 15, 2026 Feb 28, 2027 264
192 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 7 Part 2 DB Week 13 6226550648 Aug 18, 2025 Jul 1, 2026 22
193 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 7 Part 2 DB Week 13 6226561519 Aug 21, 2025 Jul 1, 2026 22
194 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 7 Part 2 DB Week 13 6226991313 Oct 26, 2025 May 31, 2026 -8
195 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 7 Part 2 DB Week 13 6227261837 Nov 20, 2025 Oct 7, 2026 120
196 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 7 Part 2 DB Week 13 6227261838 Nov 20, 2025 Oct 7, 2026 120
197 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova 7 Part 2 DB Week 13 6228114462 Mar 11, 2026 Oct 11, 2026 124
198 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-1 Part 2 DB Every 12 Weeks 6226550649 Aug 18, 2025 Jul 1, 2026 22
199 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-1 Part 2 DB Every 12 Weeks 6226550650 Aug 18, 2025 Jul 1, 2026 22
200 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-1 Part 2 DB Every 12 Weeks 6226550652 Aug 18, 2025 Jul 1, 2026 22
201 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-1 Part 2 DB Every 12 Weeks 6226550651 Aug 18, 2025 Jul 1, 2026 22
202 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-1 Part 2 DB Every 12 Weeks 6226550653 Aug 18, 2025 Jul 1, 2026 22
203 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-2 End of Phase/Treatment 6225351092 Feb 24, 2025 Dec 1, 2025 -189
204 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-2 End of Phase/Treatment 6225351096 Feb 24, 2025 Dec 1, 2025 -189
205 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-2 End of Phase/Treatment 6227498378 Dec 22, 2025 Aug 31, 2026 83
206 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-2 End of Phase/Treatment 6228232036 Mar 25, 2026 Jan 3, 2027 208
207 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-2 End of Phase/Treatment 6228232038 Mar 25, 2026 Jan 3, 2027 208
208 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-2 End of Phase/Treatment 6228234299 Mar 30, 2026 Jan 3, 2027 208
209 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-3 Early Withdrawal 6225351097 Feb 24, 2025 Dec 1, 2025 -189
210 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-3 Early Withdrawal 6225351099 Feb 24, 2025 Dec 1, 2025 -189
211 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-3 Early Withdrawal 6225351101 Feb 24, 2025 Dec 1, 2025 -189
212 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-3 Early Withdrawal 6225351100 Feb 24, 2025 Dec 1, 2025 -189
213 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-3 Early Withdrawal 6225351098 Feb 24, 2025 Dec 1, 2025 -189
214 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-3 Early Withdrawal 6227542174 Dec 25, 2025 Oct 7, 2026 120
215 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-3 Early Withdrawal 6227542176 Dec 25, 2025 Oct 7, 2026 120
216 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-3 Early Withdrawal 6227542175 Dec 25, 2025 Oct 7, 2026 120
217 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-3 Early Withdrawal 6227542177 Dec 25, 2025 Oct 7, 2026 120
218 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-4 Liver Monitoring 6225351102 Feb 24, 2025 Sep 1, 2025 -280
219 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-4 Liver Monitoring 6227542179 Dec 25, 2025 Sep 12, 2026 95
220 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-4 Liver Monitoring 6227542178 Dec 25, 2025 Sep 12, 2026 95
221 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-5 Suspected Liver Event FU 6225351103 Feb 24, 2025 Jul 31, 2025 -312
222 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-5 Suspected Liver Event FU 6227542180 Dec 25, 2025 Jun 30, 2026 21
223 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova T-5 Suspected Liver Event FU 6227542181 Dec 25, 2025 Jun 30, 2026 21
224 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova U Retest 6225351104 Feb 24, 2025 Dec 1, 2025 -189
225 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova U Retest 6225351105 Feb 24, 2025 Dec 1, 2025 -189
226 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova U Retest 6227542183 Dec 25, 2025 Oct 7, 2026 120
227 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova U Retest 6228417882 Apr 15, 2026 Feb 28, 2027 264
228 212396 EMEA CZE CZ10011 - Dr. Marta Lendlova U Retest 6228417883 Apr 15, 2026 Feb 28, 2027 264
229 212396 EMEA CZE CZ10012 - Dr.Ales Urban 1 Part 1 Screening 6225351107 Feb 24, 2025 Dec 1, 2025 -189
230 212396 EMEA CZE CZ10012 - Dr.Ales Urban 1 Part 1 Screening 6225351108 Feb 24, 2025 Dec 1, 2025 -189
231 212396 EMEA CZE CZ10012 - Dr.Ales Urban 1 Part 1 Screening 6225351112 Feb 24, 2025 Dec 1, 2025 -189
232 212396 EMEA CZE CZ10012 - Dr.Ales Urban 1 Part 1 Screening 6225351113 Feb 24, 2025 Dec 1, 2025 -189
233 212396 EMEA CZE CZ10012 - Dr.Ales Urban 1 Part 1 Screening 6225351114 Feb 24, 2025 Dec 1, 2025 -189
234 212396 EMEA CZE CZ10012 - Dr.Ales Urban 1 Part 1 Screening 6225351115 Feb 24, 2025 Dec 1, 2025 -189
235 212396 EMEA CZE CZ10012 - Dr.Ales Urban 1 Part 1 Screening 6227767268 Jan 27, 2026 Oct 7, 2026 120
236 212396 EMEA CZE CZ10012 - Dr.Ales Urban 1 Part 1 Screening 6227775503 Jan 23, 2026 Oct 7, 2026 120
237 212396 EMEA CZE CZ10012 - Dr.Ales Urban 1 Part 1 Screening 6227775504 Jan 23, 2026 Oct 7, 2026 120
238 212396 EMEA CZE CZ10012 - Dr.Ales Urban 2 Part 1 DB Baseline 6225351117 Feb 24, 2025 Dec 1, 2025 -189
239 212396 EMEA CZE CZ10012 - Dr.Ales Urban 2 Part 1 DB Baseline 6225351116 Feb 24, 2025 Dec 1, 2025 -189
240 212396 EMEA CZE CZ10012 - Dr.Ales Urban 2 Part 1 DB Baseline 6225351118 Feb 24, 2025 Dec 1, 2025 -189
241 212396 EMEA CZE CZ10012 - Dr.Ales Urban 2 Part 1 DB Baseline 6225351119 Feb 24, 2025 Dec 1, 2025 -189
242 212396 EMEA CZE CZ10012 - Dr.Ales Urban 2 Part 1 DB Baseline 6227767269 Jan 27, 2026 Oct 7, 2026 120
243 212396 EMEA CZE CZ10012 - Dr.Ales Urban 2 Part 1 DB Baseline 6227767270 Jan 27, 2026 Oct 7, 2026 120
244 212396 EMEA CZE CZ10012 - Dr.Ales Urban 2 Part 1 DB Baseline 6227775506 Jan 23, 2026 Oct 7, 2026 120
245 212396 EMEA CZE CZ10012 - Dr.Ales Urban 3 Part 2 Screening 6225351123 Feb 24, 2025 Dec 1, 2025 -189
246 212396 EMEA CZE CZ10012 - Dr.Ales Urban 3 Part 2 Screening 6225351122 Feb 24, 2025 Dec 1, 2025 -189
247 212396 EMEA CZE CZ10012 - Dr.Ales Urban 3 Part 2 Screening 6225351121 Feb 24, 2025 Dec 1, 2025 -189
248 212396 EMEA CZE CZ10012 - Dr.Ales Urban 3 Part 2 Screening 6228742569 May 25, 2026 Feb 28, 2027 264
249 212396 EMEA CZE CZ10012 - Dr.Ales Urban 3 Part 2 Screening 6228742568 May 25, 2026 Feb 28, 2027 264
250 212396 EMEA CZE CZ10012 - Dr.Ales Urban 4 Part 2 OL Induction Baseline 6225351124 Feb 24, 2025 Dec 1, 2025 -189
251 212396 EMEA CZE CZ10012 - Dr.Ales Urban 4 Part 2 OL Induction Baseline 6225351125 Feb 24, 2025 Dec 1, 2025 -189
252 212396 EMEA CZE CZ10012 - Dr.Ales Urban 6 Part 2 DB Baseline 6226976944 Oct 26, 2025 May 31, 2026 -8
253 212396 EMEA CZE CZ10012 - Dr.Ales Urban 6 Part 2 DB Baseline 6228521304 Apr 30, 2026 Feb 28, 2027 264
254 212396 EMEA CZE CZ10012 - Dr.Ales Urban 7 Part 2 DB Week 13 6226560889 Aug 20, 2025 Jul 1, 2026 22
255 212396 EMEA CZE CZ10012 - Dr.Ales Urban 7 Part 2 DB Week 13 6226752556 Sep 17, 2025 May 31, 2026 -8
256 212396 EMEA CZE CZ10012 - Dr.Ales Urban 7 Part 2 DB Week 13 6226976945 Oct 26, 2025 May 31, 2026 -8
257 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-1 Part 2 DB Every 12 Weeks 6226560890 Aug 20, 2025 Jul 1, 2026 22
258 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-1 Part 2 DB Every 12 Weeks 6226560892 Aug 20, 2025 Jul 1, 2026 22
259 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-1 Part 2 DB Every 12 Weeks 6226560894 Aug 20, 2025 Jul 1, 2026 22
260 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-1 Part 2 DB Every 12 Weeks 6226560893 Aug 20, 2025 Jul 1, 2026 22
261 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-1 Part 2 DB Every 12 Weeks 6228389162 Apr 15, 2026 Feb 28, 2027 264
262 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-1 Part 2 DB Every 12 Weeks 6228389161 Apr 15, 2026 Feb 28, 2027 264
263 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-2 End of Phase/Treatment 6225351129 Feb 24, 2025 Dec 1, 2025 -189
264 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-2 End of Phase/Treatment 6225351128 Feb 24, 2025 Dec 1, 2025 -189
265 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-2 End of Phase/Treatment 6225351130 Feb 24, 2025 Dec 1, 2025 -189
266 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-2 End of Phase/Treatment 6225351127 Feb 24, 2025 Dec 1, 2025 -189
267 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-3 Early Withdrawal 6225351131 Feb 24, 2025 Dec 1, 2025 -189
268 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-3 Early Withdrawal 6225351132 Feb 24, 2025 Dec 1, 2025 -189
269 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-3 Early Withdrawal 6225351133 Feb 24, 2025 Dec 1, 2025 -189
270 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-3 Early Withdrawal 6225351134 Feb 24, 2025 Dec 1, 2025 -189
271 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-3 Early Withdrawal 6225351135 Feb 24, 2025 Dec 1, 2025 -189
272 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-4 Liver Monitoring 6225351136 Feb 24, 2025 Sep 1, 2025 -280
273 212396 EMEA CZE CZ10012 - Dr.Ales Urban T-5 Suspected Liver Event FU 6225351137 Feb 24, 2025 Jul 31, 2025 -312
274 212396 EMEA CZE CZ10012 - Dr.Ales Urban U Retest 6225351139 Feb 24, 2025 Dec 1, 2025 -189
275 212396 EMEA CZE CZ10012 - Dr.Ales Urban U Retest 6225351138 Feb 24, 2025 Dec 1, 2025 -189
276 title value
277 Search
278 Site CZ10004 Dr. Erik Herman, CZ10012 Dr.Ales Urban, CZ10011 Dr. Marta Lendlova, CZ10008 Dr.Zdenek Solle
279 Expiration Date Range From - To -
280 Shipped Date Range From - To -
281 Kit Type
282 Ignore Record Limit TRUE
@@ -0,0 +1 @@
{"net":{"http_server_properties":{"servers":[{"anonymization":["GAAAABMAAABodHRwczovL2NvdmFuY2UuY29tAA==",false,0],"server":"https://cdn.pendo.io","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL2NvdmFuY2UuY29tAA==",false,0],"server":"https://data.pendo.io","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13427121683294912","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2NvdmFuY2UuY29tAA==",false,0],"network_stats":{"srtt":3994},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL2NvdmFuY2UuY29tAA==",false,0],"server":"https://login.labcorp.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL2NvdmFuY2UuY29tAA==",true,0],"server":"https://login.labcorp.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13425476591115015","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2NvdmFuY2UuY29tAA==",false,0],"network_stats":{"srtt":3819},"server":"https://unpkg.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13427982191463738","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":14727},"server":"https://accounts.google.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL2xhYmNvcnAuY29tAA==",false,0],"network_stats":{"srtt":8905},"server":"https://fonts.gstatic.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13427982205233366","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2xhYmNvcnAuY29tAA==",false,0],"network_stats":{"srtt":9333},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13427982231737187","port":443,"protocol_str":"quic"}],"anonymization":["MAAAACwAAABodHRwczovL3Bhc3N3b3Jkc2xlYWtjaGVjay1wYS5nb29nbGVhcGlzLmNvbQ==",false,0],"network_stats":{"srtt":13097},"server":"https://passwordsleakcheck-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13427982274345475","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":7863},"server":"https://android.clients.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13425476676858943","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2xhYmNvcnAuY29tAA==",false,0],"network_stats":{"srtt":13075},"server":"https://unpkg.com"},{"anonymization":["GAAAABMAAABodHRwczovL2xhYmNvcnAuY29tAA==",false,0],"server":"https://login.labcorp.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13427982190915339","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":5727},"server":"https://www.google.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13427982319602835","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2xhYmNvcnAuY29tAA==",false,0],"network_stats":{"srtt":9297},"server":"https://content-autofill.googleapis.com","supports_spdy":true}],"supports_quic":{"address":"192.168.1.87","used_quic":true},"version":5},"network_qualities":{"CAESABiAgICA+P////8B":"4G"}}}
File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More