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:
@@ -7,3 +7,4 @@ EmailsImport/SouboryRůznéVelikosti/
|
||||
IWRS/Patients/Incoming/
|
||||
Outlook/downloads/
|
||||
Outlook/outlook_profile/
|
||||
/OutlookVBCZ/
|
||||
|
||||
@@ -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í.
|
||||
@@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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í.
|
||||
@@ -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)
|
||||
@@ -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
|
||||
@@ -0,0 +1,4 @@
|
||||
fastapi==0.115.0
|
||||
uvicorn[standard]==0.30.6
|
||||
httpx==0.27.2
|
||||
pydantic==2.9.2
|
||||
+1215
File diff suppressed because it is too large
Load Diff
+79
@@ -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 - ,,,,,,,,,,,,,
|
||||
|
+9
@@ -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 - ,,,,,,,,,,,,,
|
||||
|
+773
@@ -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,
|
||||
|
+75
@@ -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,
|
||||
|
+3
@@ -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,,,,,,,,,
|
||||
|
+6
@@ -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,,,,,,,,,
|
||||
|
+242
@@ -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,
|
||||
|
+3
@@ -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,,,,,,,,,
|
||||
|
+422
@@ -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,
|
||||
|
+6
@@ -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,,,,,,,,,
|
||||
|
+570
@@ -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,,,,,,
|
||||
|
+5
@@ -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,,,,,,,,,
|
||||
|
+5
@@ -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,,,,,,,,,
|
||||
|
+180
@@ -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,
|
||||
|
+7
@@ -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,,,,,,,,,,,,,,,
|
||||
|
+740
@@ -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,
|
||||
|
+4
@@ -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,,,,,,,,,
|
||||
|
+306
@@ -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,
|
||||
|
+3
@@ -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,,,,,,,,,
|
||||
|
+185
@@ -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,
|
||||
|
+3
@@ -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,,,,,,,,,
|
||||
|
+243
@@ -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,
|
||||
|
+2615
File diff suppressed because it is too large
Load Diff
+1899
File diff suppressed because it is too large
Load Diff
+2409
File diff suppressed because it is too large
Load Diff
+200
@@ -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
|
||||
|
+994
@@ -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,
|
||||
|
+550
@@ -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,,,,,,,,
|
||||
|
+282
@@ -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,,,,,,,,
|
||||
|
+1541
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1
@@ -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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user