Make a power point presentation of 20 slides on topic small for gestational age vs fetal growth retardation from standard text books and recent guidelines and updates
"small for gestational age" OR "fetal growth restriction" guidelines
SGA vs FGR fetal growth restriction guidelines 2024 2025 ISUOG ACOG
PMID: 37730302
https://www.ncbi.nlm.nih.gov/books/NBK562268
ls -la /home/daytona/workspace/ 2>/dev/null || mkdir -p /home/daytona/workspace
~/sga-fgr-ppt/create_pptx.js
const pptxgen = require("pptxgenjs");
let pres = new pptxgen();
pres.layout = 'LAYOUT_WIDE';
pres.author = 'Orris Medical AI';
pres.title = 'SGA vs FGR: Small for Gestational Age vs Fetal Growth Restriction';
// ─── COLOR PALETTE ───────────────────────────────────────────────────────────
const C = {
navy: "0D2B4E", // dominant dark background
teal: "1A7A9A", // supporting blue-teal
accent: "E8A020", // amber accent
white: "FFFFFF",
light: "E8F4F9", // pale blue for light slides
dark2: "163A5F", // secondary dark
gray: "4A5568",
lgray: "A0AEC0",
red: "C0392B",
green: "1E8449",
};
// ─── HELPERS ────────────────────────────────────────────────────────────────
function titleSlide(slide, title, subtitle) {
// Full dark background
slide.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:"100%", fill:{color: C.navy} });
// Accent bar
slide.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:0.08, fill:{color: C.accent} });
slide.addShape(pres.ShapeType.rect, { x:0, y:5.42, w:"100%", h:0.08, fill:{color: C.teal} });
// Title
slide.addText(title, {
x:0.8, y:1.6, w:11.7, h:1.8,
fontSize:40, bold:true, color:C.white,
fontFace:"Calibri", align:"center", valign:"middle"
});
if (subtitle) {
slide.addText(subtitle, {
x:0.8, y:3.5, w:11.7, h:0.9,
fontSize:20, color:C.accent,
fontFace:"Calibri", align:"center", italic:true
});
}
}
function contentSlide(slide, title, bullets, options={}) {
const bg = options.bg || C.light;
const titleBg = options.titleBg || C.navy;
const titleColor = options.titleColor || C.white;
slide.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:"100%", fill:{color: bg} });
// Title banner
slide.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:1.0, fill:{color: titleBg} });
slide.addShape(pres.ShapeType.rect, { x:0, y:1.0, w:"100%", h:0.05, fill:{color: C.accent} });
slide.addText(title, {
x:0.5, y:0.08, w:12.3, h:0.84,
fontSize:24, bold:true, color:titleColor,
fontFace:"Calibri", valign:"middle"
});
// Build bullet array
let items = [];
bullets.forEach(b => {
if (typeof b === "string") {
items.push({ text: b, options:{ bullet:{type:"bullet"}, fontSize:16.5, color:C.navy, fontFace:"Calibri", breakLine:true, paraSpaceAfter:4 }});
} else if (b.type === "sub") {
items.push({ text: " " + b.text, options:{ bullet:{type:"bullet", indent:20}, fontSize:15, color:C.gray, fontFace:"Calibri", italic:b.italic||false, breakLine:true, paraSpaceAfter:3 }});
} else if (b.type === "header") {
items.push({ text: b.text, options:{ bold:true, fontSize:17, color:C.teal, fontFace:"Calibri", breakLine:true, paraSpaceAfter:3 }});
}
});
// Remove last breakLine
if (items.length > 0) {
const last = items[items.length-1];
if (last.options) last.options.breakLine = false;
}
const contentY = options.contentY || 1.18;
const contentH = options.contentH || 4.1;
slide.addText(items, {
x:0.5, y:contentY, w:12.3, h:contentH,
valign:"top", margin:[4,6,4,6]
});
// Footer
slide.addText("Creasy & Resnik's Maternal-Fetal Medicine | ISUOG 2020 | SOGC 2023 | RCOG GTG-31", {
x:0, y:5.32, w:"100%", h:0.18,
fontSize:8, color:C.lgray, align:"center", fontFace:"Calibri"
});
}
function twoColSlide(slide, title, leftTitle, leftBullets, rightTitle, rightBullets, leftBg, rightBg) {
slide.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:"100%", fill:{color: C.light} });
// Title banner
slide.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:1.0, fill:{color: C.navy} });
slide.addShape(pres.ShapeType.rect, { x:0, y:1.0, w:"100%", h:0.05, fill:{color: C.accent} });
slide.addText(title, {
x:0.5, y:0.08, w:12.3, h:0.84,
fontSize:24, bold:true, color:C.white, fontFace:"Calibri", valign:"middle"
});
const colW = 6.1;
// Left column
slide.addShape(pres.ShapeType.rect, { x:0.2, y:1.2, w:colW, h:4.0, fill:{color: leftBg||"D5E8F5"}, line:{color:C.teal, pt:1} });
slide.addText(leftTitle, { x:0.2, y:1.2, w:colW, h:0.38, fontSize:15, bold:true, color:C.white, fontFace:"Calibri", align:"center", valign:"middle", fill:{color:C.teal} });
let leftItems = leftBullets.map(b => typeof b==="string"
? { text:b, options:{bullet:{type:"bullet"}, fontSize:15, color:C.navy, fontFace:"Calibri", breakLine:true, paraSpaceAfter:3}}
: { text:" "+b.text, options:{bullet:{type:"bullet"}, fontSize:13.5, color:C.gray, fontFace:"Calibri", italic:true, breakLine:true, paraSpaceAfter:2}});
if (leftItems.length) leftItems[leftItems.length-1].options.breakLine = false;
slide.addText(leftItems, { x:0.25, y:1.6, w:colW-0.15, h:3.55, valign:"top", margin:[4,6,4,6] });
// Right column
const rx = 0.2 + colW + 0.3;
slide.addShape(pres.ShapeType.rect, { x:rx, y:1.2, w:colW, h:4.0, fill:{color: rightBg||"FEF3E2"}, line:{color:C.accent, pt:1} });
slide.addText(rightTitle, { x:rx, y:1.2, w:colW, h:0.38, fontSize:15, bold:true, color:C.white, fontFace:"Calibri", align:"center", valign:"middle", fill:{color:C.accent} });
let rightItems = rightBullets.map(b => typeof b==="string"
? { text:b, options:{bullet:{type:"bullet"}, fontSize:15, color:C.navy, fontFace:"Calibri", breakLine:true, paraSpaceAfter:3}}
: { text:" "+b.text, options:{bullet:{type:"bullet"}, fontSize:13.5, color:C.gray, fontFace:"Calibri", italic:true, breakLine:true, paraSpaceAfter:2}});
if (rightItems.length) rightItems[rightItems.length-1].options.breakLine = false;
slide.addText(rightItems, { x:rx+0.05, y:1.6, w:colW-0.15, h:3.55, valign:"top", margin:[4,6,4,6] });
slide.addText("Creasy & Resnik's Maternal-Fetal Medicine | ISUOG 2020 | SOGC 2023 | RCOG GTG-31", {
x:0, y:5.32, w:"100%", h:0.18,
fontSize:8, color:C.lgray, align:"center", fontFace:"Calibri"
});
}
function sectionSlide(slide, sectionNum, sectionTitle) {
slide.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:"100%", fill:{color: C.dark2} });
slide.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:0.08, fill:{color: C.accent} });
slide.addShape(pres.ShapeType.rect, { x:0, y:5.42, w:"100%", h:0.08, fill:{color: C.teal} });
slide.addText("Section " + sectionNum, {
x:0.8, y:1.5, w:11.7, h:0.6,
fontSize:22, color:C.accent, fontFace:"Calibri", align:"center", bold:false
});
slide.addText(sectionTitle, {
x:0.8, y:2.2, w:11.7, h:1.5,
fontSize:36, bold:true, color:C.white, fontFace:"Calibri", align:"center", valign:"middle"
});
}
// ─── TABLE HELPER ───────────────────────────────────────────────────────────
function addTable(slide, rows, x, y, w, colWidths) {
slide.addTable(rows, {
x, y, w,
colW: colWidths,
border:{type:"solid", color:C.teal, pt:0.5},
fontFace:"Calibri",
fontSize:13,
autoPage: false
});
}
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 1 — TITLE
// ════════════════════════════════════════════════════════════════════════════
let s1 = pres.addSlide();
titleSlide(s1,
"Small for Gestational Age (SGA)\nvs Fetal Growth Restriction (FGR)",
"Definitions · Distinctions · Diagnosis · Management · Recent Guidelines 2023–2025"
);
s1.addText("Based on: Creasy & Resnik | ISUOG 2020 | SOGC Guideline 442 (2023) | RCOG GTG-31 (2024)", {
x:0.8, y:4.6, w:11.7, h:0.4,
fontSize:13, color:C.lgray, fontFace:"Calibri", align:"center"
});
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 2 — OUTLINE
// ════════════════════════════════════════════════════════════════════════════
let s2 = pres.addSlide();
s2.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:"100%", fill:{color: C.navy} });
s2.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:0.08, fill:{color: C.accent} });
s2.addText("Presentation Outline", {
x:0.5, y:0.15, w:12.3, h:0.7,
fontSize:28, bold:true, color:C.white, fontFace:"Calibri", align:"center"
});
const outlineItems = [
["1.", "Historical Evolution & Terminology"],
["2.", "Definitions: SGA, FGR, AGA, IUGR"],
["3.", "Epidemiology & Incidence"],
["4.", "Normal Fetal Growth Physiology"],
["5.", "Classification: Symmetric vs Asymmetric FGR"],
["6.", "Early-Onset vs Late-Onset FGR"],
["7.", "Etiology & Risk Factors"],
["8.", "Pathophysiology & Placental Mechanisms"],
["9.", "Screening & Prediction"],
["10.", "Diagnosis: Ultrasound & Biometry"],
["11.", "Doppler Velocimetry in FGR"],
["12.", "Staging Systems (PORTO/Delphi)"],
["13.", "Biomarkers: sFlt-1/PlGF"],
["14.", "Management Overview: SGA vs FGR"],
["15.", "Delivery Timing & Decision-Making"],
["16.", "Perinatal Outcomes & Complications"],
["17.", "Long-Term & Adult Sequelae"],
["18.", "Special Situations (Twins, Preeclampsia)"],
["19.", "Recent Guidelines Comparison (ISUOG/ACOG/SOGC/RCOG)"],
["20.", "Key Takeaways & Summary"],
];
let leftCol = outlineItems.slice(0,10);
let rightCol = outlineItems.slice(10);
function outlineCol(slide, items, x, y) {
let arr = items.map(([num, text]) => ({
text: num + " " + text,
options: { bullet:false, fontSize:14, color:C.white, fontFace:"Calibri", breakLine:true, paraSpaceAfter:4 }
}));
arr[arr.length-1].options.breakLine = false;
slide.addText(arr, { x, y, w:6.0, h:4.6, valign:"top" });
}
outlineCol(s2, leftCol, 0.5, 0.95);
outlineCol(s2, rightCol, 6.8, 0.95);
s2.addShape(pres.ShapeType.line, { x:6.65, y:0.95, w:0, h:4.6, line:{color:C.teal, pt:1} });
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 3 — HISTORICAL EVOLUTION
// ════════════════════════════════════════════════════════════════════════════
let s3 = pres.addSlide();
contentSlide(s3,
"Historical Evolution of Terminology",
[
{ type:"header", text:"Early 20th Century" },
"All small newborns were considered premature — no distinction existed",
{ type:"sub", text:"'Low birth weight' = any infant <2500 g (WHO classification)" },
{ type:"header", text:"1960s — The Lubchenco Era" },
"Lubchenco et al. published birth weight percentile charts by gestational age",
"Defined SGA (<10th percentile), AGA (10th–90th), LGA (>90th percentile)",
{ type:"sub", text:"These charts remain foundational but predate modern diverse populations" },
{ type:"header", text:"1970s–1990s — IUGR Concept" },
"Term 'Intrauterine Growth Restriction (IUGR)' introduced to imply pathological causation",
"Recognized that not all SGA fetuses are growth-restricted",
{ type:"header", text:"21st Century — FGR as distinct entity" },
"FGR defined as failure to achieve growth potential — now distinct from SGA",
"ISUOG (2020), SOGC (2023), RCOG (2024) provide formal differentiated guidelines",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 4 — DEFINITIONS (TWO COLUMN)
// ════════════════════════════════════════════════════════════════════════════
let s4 = pres.addSlide();
twoColSlide(s4,
"Definitions: SGA vs FGR",
"Small for Gestational Age (SGA)",
[
"Estimated fetal weight (EFW) or birth weight <10th percentile for gestational age",
"A measure of SIZE — not necessarily pathological",
"May be constitutionally small (healthy, appropriate for ethnicity/genetics)",
"ACOG: SGA used for newborns; EFW <10th %ile on ultrasound",
"FIGO: SGA as a preliminary diagnosis prompting FGR evaluation",
"Incidence: 10–27% worldwide",
{text:"Key: SGA is a phenotype, NOT a diagnosis"},
],
"Fetal Growth Restriction (FGR)",
[
"Fetus that fails to achieve its biologically determined growth potential",
"A measure of PROCESS — implies underlying pathology",
"Most commonly due to placental insufficiency",
"ISUOG Early FGR: EFW/AC <3rd %ile OR abnormal UA/UtA Doppler",
"ISUOG Late FGR: EFW/AC <3rd %ile OR ≥2 of: EFW/AC <10th + UtA PI >95th + CPR <5th",
"Incidence: 3–10% in developed; up to 25% in LMIC",
{text:"Key: FGR is a clinical diagnosis with pathological basis"},
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 5 — EPIDEMIOLOGY
// ════════════════════════════════════════════════════════════════════════════
let s5 = pres.addSlide();
contentSlide(s5,
"Epidemiology & Incidence",
[
{ type:"header", text:"Global Burden" },
"SGA: 10–27% of all births worldwide",
"FGR: 3–9% in developed countries; 25% in low/middle-income countries",
"Early-onset FGR (<32 weeks): ~0.5–1% of pregnancies",
"Late-onset FGR (≥32 weeks): ~5–10% of pregnancies",
{ type:"header", text:"Recurrence Risk" },
"Prior FGR in singleton pregnancy: 20% recurrence risk (SOGC 2023)",
"Prior SGA: recurrence ~20% in subsequent pregnancies",
"PTB history is the highest predictor of FGR recurrence (Creasy & Resnik)",
{ type:"header", text:"Perinatal Impact" },
"FGR accounts for ~50% of unexplained stillbirths",
"Perinatal mortality increases exponentially below the 6th birth weight percentile",
"FGR is the 2nd leading cause of perinatal morbidity and mortality after prematurity",
"IUFD risk rises significantly in SGA fetuses at term (Pilliod et al., Am J Obstet Gynecol 2012)",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 6 — NORMAL FETAL GROWTH PHYSIOLOGY
// ════════════════════════════════════════════════════════════════════════════
let s6 = pres.addSlide();
contentSlide(s6,
"Normal Fetal Growth: Phases & Physiology",
[
{ type:"header", text:"Three Phases of Fetal Growth (Creasy & Resnik)" },
"Phase 1 — Early pregnancy: Cellular hyperplasia (cell division) — most growth by cell number",
"Phase 2 — Mid-pregnancy: Combined hyperplasia AND hypertrophy (cell size increase)",
"Phase 3 — Last 6–8 weeks: Predominantly hypertrophic growth — rapid weight gain",
{ type:"header", text:"Growth Rate Milestones" },
"14–15 weeks: ~5 g/day",
"20 weeks: ~10 g/day",
"32–34 weeks: ~30–35 g/day (peak — 230–285 g/week)",
"41–42 weeks: Growth may plateau or even decline",
{ type:"header", text:"Determinants of Fetal Growth" },
"Maternal: Nutrition, BMI, disease, altitude, race",
"Placental: Surface area, blood flow, transfer capacity",
"Fetal: Genetics, sex, hormones (insulin, IGF-1, IGF-2), chromosomal integrity",
"Growth velocity (>50-percentile drop, e.g., 70th to <20th %ile) = key FGR warning sign",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 7 — CLASSIFICATION: SYMMETRIC vs ASYMMETRIC
// ════════════════════════════════════════════════════════════════════════════
let s7 = pres.addSlide();
twoColSlide(s7,
"Classification: Symmetric vs Asymmetric FGR",
"Symmetric FGR (~20–30%)",
[
"All body dimensions proportionally reduced (HC, AC, FL, weight)",
"HC/AC and FL/HC ratios remain normal",
"Results from early insult affecting hyperplastic growth phase",
"Causes: Chromosomal anomalies (trisomy 13, 18, 21), congenital malformations, TORCH infections, teratogens",
"Poorer prognosis — growth potential itself is reduced",
"May be normal variant if familial/constitutional",
{text:"Brain is NOT spared in symmetric FGR"},
],
"Asymmetric FGR (~70–80%)",
[
"Normal skeletal dimensions & head size; reduced AC and subcutaneous fat",
"Reduced HC/AC ratio — 'brain-sparing effect'",
"Results from placental insufficiency in late 2nd or 3rd trimester",
"Causes: Placental dysfunction, pre-eclampsia, maternal vascular disease, malnutrition",
"Later onset — fetus redirects blood flow to brain, adrenals, heart",
"Best detected by falling abdominal circumference on serial scans",
{text:"Asymmetric pattern evolves to symmetric with prolonged insult"},
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 8 — EARLY vs LATE FGR
// ════════════════════════════════════════════════════════════════════════════
let s8 = pres.addSlide();
twoColSlide(s8,
"Early-Onset vs Late-Onset FGR",
"Early-Onset FGR (<32 weeks)",
[
"Prevalence: ~0.5–1% of pregnancies",
"Severe placental dysfunction — major Doppler abnormalities",
"Associated with pre-eclampsia in 50–70% of cases",
"High risk of perinatal mortality and prematurity-related morbidity",
"Umbilical artery (UA) Doppler: absent/reversed end-diastolic flow",
"Ductus venosus (DV) and middle cerebral artery (MCA) also evaluated",
"Delivery often required in periviable or very preterm period",
{text:"Periviable FGR (<25 wks): management individualized"},
],
"Late-Onset FGR (≥32 weeks)",
[
"Prevalence: ~5–10% of pregnancies",
"More subtle — mild or absent UA Doppler changes",
"Often presents as SGA on routine third-trimester scan",
"CPR (cerebroplacental ratio) <5th percentile is key marker",
"UtA PI elevation common even with normal UA",
"Higher risk of intrapartum fetal compromise and cesarean delivery",
"Most stillbirths attributed to late-onset, undetected FGR",
{text:"Delivery generally recommended by 37–38 weeks"},
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 9 — ETIOLOGY & RISK FACTORS
// ════════════════════════════════════════════════════════════════════════════
let s9 = pres.addSlide();
contentSlide(s9,
"Etiology & Risk Factors",
[
{ type:"header", text:"Maternal Factors" },
"Medical: Pre-eclampsia, chronic hypertension, diabetes (with vascular disease), renal disease, thrombophilias (APS, Factor V Leiden), SLE, IBD",
"Behavioral: Smoking (strongest modifiable risk), alcohol, substance abuse, malnutrition",
"Demographic: Age <16 or >35, low BMI, high altitude, prior FGR/SGA",
{ type:"header", text:"Fetal Factors" },
"Chromosomal anomalies: Trisomy 13, 18, 21; Turner syndrome, triploidy",
"Structural malformations: Cardiac defects, gastroschisis",
"Multiple gestation (twin-twin transfusion, selective FGR)",
"TORCH infections: CMV (most common), rubella, toxoplasma, syphilis",
{ type:"header", text:"Placental Factors (most common overall cause)" },
"Placental insufficiency — impaired trophoblast invasion and spiral artery remodeling",
"Circumvallate/bilobed placenta, placenta previa, velamentous cord insertion",
"Confined placental mosaicism, massive perivillous fibrin deposition",
"Idiopathic: ~60% of FGR cases have no identifiable etiology (Creasy & Resnik)",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 10 — PATHOPHYSIOLOGY
// ════════════════════════════════════════════════════════════════════════════
let s10 = pres.addSlide();
contentSlide(s10,
"Pathophysiology & Placental Mechanisms",
[
{ type:"header", text:"Core Placental Defect" },
"Reduced placental mass → decreased terminal villi growth → reduced umbilical capillary bed expansion",
"Umbilical pulsatility index elevated (reflects increased downstream resistance)",
"Reduced vasosyncytial membranes → greater diffusion barrier for oxygen",
"Placental oxygen permeability abnormally LOW → fetal hypoxemia",
{ type:"header", text:"Fetal Adaptive Responses (Brain Sparing)" },
"Fetal hypoxemia → redistribution of cardiac output to brain, myocardium, adrenals",
"Middle cerebral artery vasodilates → decreased MCA PI (CPR <5th %ile = brain sparing)",
"Reduced oxygen delivery → slows fetal growth rate (adaptive, protective in short term)",
"Cordocentesis data: umbilical venous PO₂ ~12 torr below normal; O₂ saturation drops from 81% to ~50%",
{ type:"header", text:"Progressive Deterioration Sequence" },
"Stage 1: Elevated UtA/UA PI → Stage 2: Absent/reversed UA AEDF/REDF → Stage 3: Ductus venosus abnormalities → Stage 4: Fetal acidemia, bradycardia",
"Chronic villitis, hemorrhagic endovasculitis, placental infarction found in 55% of FGR placentas",
"Gene dysregulation: cell-cycle, oxidative phosphorylation, IGF axis",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 11 — SCREENING & PREDICTION
// ════════════════════════════════════════════════════════════════════════════
let s11 = pres.addSlide();
contentSlide(s11,
"Screening & Prediction of FGR",
[
{ type:"header", text:"First Trimester Combined Screening (11–14 weeks)" },
"Uterine artery (UtA) PI: elevated PI bilateral notching → placental dysfunction risk",
"Serum PlGF (placental growth factor): low PlGF predicts early FGR and pre-eclampsia",
"PAPP-A: low levels (<0.4 MoM) associated with placental disease and FGR",
"Combined algorithm (UtA + MAP + PlGF + PAPP-A): detection rate ~75% for early FGR",
{ type:"header", text:"Risk Factor-Based Screening (ISUOG / RCOG)" },
"Major risk factors: prior FGR/SGA/PE, antiphospholipid syndrome, heavy smoker, diabetes with vascular disease",
"Minor risk factors: age >40, BMI >35, nulliparous, prior PE, cocaine use",
"≥1 major OR ≥2 minor risk factors: offer 3rd trimester serial growth scans",
{ type:"header", text:"Second Trimester (18–24 weeks)" },
"Uterine artery Doppler screening in high-risk pregnancies",
"Low PIGF (<100 pg/mL at 19–23 wks) has >60% sensitivity for FGR",
{ type:"header", text:"SOGC 2023 Recommendation" },
"Aspirin 81–162 mg/day from <16 weeks reduces FGR risk in high-risk patients (Grade 1A)",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 12 — DIAGNOSIS: ULTRASOUND & BIOMETRY
// ════════════════════════════════════════════════════════════════════════════
let s12 = pres.addSlide();
contentSlide(s12,
"Diagnosis: Ultrasound Biometry & Growth Assessment",
[
{ type:"header", text:"Key Biometric Parameters" },
"Biparietal diameter (BPD), Head Circumference (HC), Abdominal Circumference (AC), Femur Length (FL)",
"EFW calculated by Hadlock formula (HC+AC+FL) — errors ±10–15%",
"AC alone is the most sensitive single parameter for FGR detection",
"HC/AC ratio: differentiates symmetric (normal) vs asymmetric (elevated) FGR",
{ type:"header", text:"Diagnostic Thresholds" },
"AC or EFW <3rd percentile = FGR (high probability, regardless of Doppler)",
"AC or EFW 3rd–10th percentile = SGA or mild FGR — requires Doppler & velocity assessment",
"EFW drop >50 percentiles (e.g., 70th → <20th) on serial scans → FGR alert (ISUOG Grade C)",
{ type:"header", text:"Growth Charts" },
"Population-based charts (Hadlock, INTERGROWTH-21st, WHO): identify small fetuses",
"Customized charts (GROW software): adjust for parity, maternal weight/height, ethnicity, gestational age",
"INTERGROWTH-21st: international standard for optimal growth potential",
{ type:"header", text:"Serial Scans" },
"Interval ≥2–3 weeks between growth scans (shorter intervals increase measurement error)",
"Amniotic fluid assessment: oligohydramnios (AFI <5 cm or SDP <2 cm) supports FGR diagnosis",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 13 — DOPPLER VELOCIMETRY
// ════════════════════════════════════════════════════════════════════════════
let s13 = pres.addSlide();
contentSlide(s13,
"Doppler Velocimetry in FGR Surveillance",
[
{ type:"header", text:"Umbilical Artery (UA) Doppler — Primary Surveillance Tool" },
"Elevated UA PI >95th %ile → increased placental resistance",
"Absent End-Diastolic Flow (AEDF) → severe placental insufficiency, ~50% perinatal mortality",
"Reversed End-Diastolic Flow (REDF) → imminent fetal compromise, ~70% perinatal mortality",
"Normal UA Doppler in SGA/small fetus → likely constitutional SGA, can reduce frequency of monitoring",
{ type:"header", text:"Middle Cerebral Artery (MCA) Doppler" },
"Decreased MCA PI → cerebral vasodilation = brain-sparing response",
"Cerebroplacental Ratio (CPR) = MCA PI / UA PI: <5th percentile indicates redistribution",
"CPR <5th %ile with normal UA Doppler = key marker for late-onset FGR (ISUOG)",
{ type:"header", text:"Uterine Artery (UtA) Doppler" },
"UtA PI >95th %ile with bilateral notching → impaired spiral artery remodeling",
"Present in both early and late FGR — helps distinguish FGR from SGA",
{ type:"header", text:"Ductus Venosus (DV) — Late Deterioration Marker" },
"Absent or reversed DV a-wave → cardiac decompensation, acidemia",
"ISUOG: Deliver if DV a-wave at/below baseline regardless of gestational age (>24 weeks)",
"DV assessment combined with BPP/cCTG for delivery timing in early FGR",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 14 — STAGING SYSTEMS
// ════════════════════════════════════════════════════════════════════════════
let s14 = pres.addSlide();
s14.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:"100%", fill:{color:C.light} });
s14.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:1.0, fill:{color:C.navy} });
s14.addShape(pres.ShapeType.rect, { x:0, y:1.0, w:"100%", h:0.05, fill:{color:C.accent} });
s14.addText("FGR Staging Systems (PORTO/Barcelona Consensus)", {
x:0.5, y:0.1, w:12.3, h:0.8,
fontSize:23, bold:true, color:C.white, fontFace:"Calibri", valign:"middle"
});
const stageRows = [
[
{text:"Stage", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:14}},
{text:"Findings", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:14}},
{text:"Estimated Perinatal Mortality", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:14}},
{text:"Action", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:14}},
],
[
{text:"Stage I", options:{bold:true, color:C.navy, fontSize:13}},
{text:"EFW/AC <3rd %ile OR UA PI >95th %ile OR UtA PI >95th %ile", options:{fontSize:12}},
{text:"<5%", options:{color:C.green, bold:true, fontSize:13}},
{text:"Intensive monitoring, no immediate delivery", options:{fontSize:12}},
],
[
{text:"Stage II", options:{bold:true, color:C.navy, fontSize:13}},
{text:"Absent End-Diastolic Flow (AEDF) in UA", options:{fontSize:12}},
{text:"~50%", options:{color:C.accent, bold:true, fontSize:13}},
{text:"Intensive inpatient monitoring; prepare for delivery", options:{fontSize:12}},
],
[
{text:"Stage III", options:{bold:true, color:C.navy, fontSize:13}},
{text:"Reversed EDF in UA OR absent/reversed DV a-wave OR static BTB variability", options:{fontSize:12}},
{text:"~25–50%", options:{color:C.red, bold:true, fontSize:13}},
{text:"Delivery if viable; individualized if periviable", options:{fontSize:12}},
],
[
{text:"Stage IV", options:{bold:true, color:C.navy, fontSize:13}},
{text:"Abnormal CTG (late decelerations, STV <3.0ms) OR BPP ≤4", options:{fontSize:12}},
{text:"~50–70%", options:{color:C.red, bold:true, fontSize:13}},
{text:"Emergency delivery indicated", options:{fontSize:12}},
],
];
addTable(s14, stageRows, 0.3, 1.12, 12.8, [1.0, 4.8, 2.5, 4.5]);
s14.addText("PORTO Study (Figueras et al.) | Delphi Consensus | ISUOG Guidelines 2020", {
x:0, y:5.3, w:"100%", h:0.2,
fontSize:9, color:C.lgray, align:"center", fontFace:"Calibri"
});
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 15 — BIOMARKERS
// ════════════════════════════════════════════════════════════════════════════
let s15 = pres.addSlide();
contentSlide(s15,
"Biomarkers in SGA/FGR Differentiation",
[
{ type:"header", text:"sFlt-1 / PlGF Ratio" },
"sFlt-1 (soluble fms-like tyrosine kinase-1): anti-angiogenic factor — elevated in placental disease",
"PlGF (placental growth factor): pro-angiogenic — decreased in FGR and pre-eclampsia",
"sFlt-1/PlGF ratio <38: rules out pre-eclampsia in next 7 days (high NPV)",
"Ratio >38–85: intermediate risk; >85: high risk zone",
"May help differentiate pathological SGA (FGR) from constitutional SGA — research ongoing",
"ISUOG 2020: 'Lack of interventional trial data precludes routine recommendation'",
{ type:"header", text:"PAPP-A (Pregnancy-Associated Plasma Protein A)" },
"Low PAPP-A <0.4 MoM at 11–14 weeks: 3-fold increased FGR risk",
"Combined with UtA Doppler and PlGF for first-trimester FGR screening",
{ type:"header", text:"Other Biomarkers Under Investigation" },
"Serum AFP (elevated in placental dysfunction)",
"Cell-free fetal DNA: chromosomal aneuploidy screening",
"Maternal serum hCG (elevated), inhibin A",
"Placental mRNA transcriptomics: IGF axis, oxidative phosphorylation gene dysregulation",
{ type:"sub", text:"No single biomarker is sufficiently specific to replace ultrasound — multimodal approach required" },
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 16 — MANAGEMENT OVERVIEW
// ════════════════════════════════════════════════════════════════════════════
let s16 = pres.addSlide();
contentSlide(s16,
"Management Overview: SGA vs FGR",
[
{ type:"header", text:"Constitutional SGA (Normal Doppler, No Pathology)" },
"Reassure — likely normal fetus, not at elevated risk",
"Serial scans every 3–4 weeks; Doppler every 2–3 weeks if 3rd–10th percentile",
"No specific intervention required unless growth velocity drops",
"Delivery: Allow progression to ≥39 weeks if all surveillance remains normal",
{ type:"header", text:"Confirmed FGR — General Principles" },
"Treat underlying cause where possible (optimize blood pressure, anticoagulation in APS)",
"Low-dose aspirin: recommended if not already started (SOGC 2023 Grade 1A)",
"Maternal rest — no proven benefit; hospitalization for close monitoring in severe FGR",
"Corticosteroids (betamethasone 12 mg ×2): if delivery anticipated <34 weeks",
"Magnesium sulfate: if delivery <32 weeks for neuroprotection",
{ type:"header", text:"Antenatal Surveillance Frequency (ISUOG 2020)" },
"EFW/AC <3rd %ile: Doppler every 1–2 days; deliver by 34–37 weeks depending on Doppler",
"EFW/AC 3rd–10th %ile + abnormal Doppler: Doppler + BPP/CTG every 2–3 days",
"Aim: maximize gestational age while avoiding intrauterine demise",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 17 — DELIVERY TIMING TABLE
// ════════════════════════════════════════════════════════════════════════════
let s17 = pres.addSlide();
s17.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:"100%", fill:{color:C.light} });
s17.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:1.0, fill:{color:C.navy} });
s17.addShape(pres.ShapeType.rect, { x:0, y:1.0, w:"100%", h:0.05, fill:{color:C.accent} });
s17.addText("Delivery Timing in FGR (ISUOG 2020 Recommendations)", {
x:0.5, y:0.1, w:12.3, h:0.8,
fontSize:23, bold:true, color:C.white, fontFace:"Calibri", valign:"middle"
});
const deliveryRows = [
[
{text:"Gestational Age", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:13}},
{text:"Condition / Indication", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:13}},
{text:"Delivery Trigger", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:13}},
],
[
{text:"24–28 weeks", options:{fontSize:12, bold:true}},
{text:"AEDF/REDF in UA", options:{fontSize:12}},
{text:"DV a-wave at/below baseline OR STV <2.6 ms", options:{fontSize:12}},
],
[
{text:"29–31 weeks", options:{fontSize:12, bold:true}},
{text:"AEDF/REDF in UA", options:{fontSize:12}},
{text:"UA-REDF OR STV <3.0 ms", options:{fontSize:12}},
],
[
{text:"32–33 weeks", options:{fontSize:12, bold:true}},
{text:"Severe FGR", options:{fontSize:12}},
{text:"UA-AEDF OR STV <3.5 ms; DV a-wave reversal", options:{fontSize:12}},
],
[
{text:"34–36 weeks", options:{fontSize:12, bold:true}},
{text:"Early-late FGR", options:{fontSize:12}},
{text:"UA PI >95th %ile OR AC/EFW <3rd %ile", options:{fontSize:12}},
],
[
{text:"37–38 weeks", options:{fontSize:12, bold:true}},
{text:"Late FGR (EFW 3–10th + abnormal CPR/UtA)", options:{fontSize:12}},
{text:"Deliver at 37+0 if CPR <5th %ile; 38+0 for EFW 3–10th alone", options:{fontSize:12}},
],
[
{text:"≥39 weeks", options:{fontSize:12, bold:true}},
{text:"Constitutional SGA, all Doppler normal", options:{fontSize:12}},
{text:"Delivery by 40 weeks; induction if scan-confirmed SGA", options:{fontSize:12}},
],
];
addTable(s17, deliveryRows, 0.3, 1.12, 12.8, [1.8, 5.5, 5.5]);
s17.addText("ISUOG Practice Guidelines 2020 | SOGC Guideline 442 (2023) | RCOG Green-top 31 (2024)", {
x:0, y:5.32, w:"100%", h:0.18,
fontSize:8.5, color:C.lgray, align:"center", fontFace:"Calibri"
});
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 18 — PERINATAL OUTCOMES
// ════════════════════════════════════════════════════════════════════════════
let s18 = pres.addSlide();
contentSlide(s18,
"Perinatal Outcomes & Complications",
[
{ type:"header", text:"Short-Term Neonatal Complications" },
"Stillbirth / IUFD: 50% of unexplained stillbirths attributed to FGR/placental insufficiency",
"Neonatal asphyxia: Intrapartum fetal distress, low Apgar scores",
"Hypothermia, hypoglycemia, hypocalcemia, polycythemia",
"Respiratory distress syndrome (RDS): especially early-onset FGR requiring preterm delivery",
"Necrotizing enterocolitis (NEC), sepsis, thrombocytopenia",
{ type:"header", text:"Neurological & Developmental Outcomes" },
"Cognitive delay, poor academic performance in school-age children",
"Behavioral problems: ADHD, attention deficit, fine/gross motor dysfunction",
"Cerebral palsy (especially preterm FGR infants)",
"Severity correlates with gestational age at delivery and degree of growth restriction",
"Preterm FGR: highest neurodevelopmental risk (Creasy & Resnik)",
{ type:"header", text:"Barker Hypothesis — Programming" },
"Intrauterine nutritional deprivation programs metabolic susceptibility",
"Increased risk of adult-onset: obesity, type 2 diabetes, hypertension, cardiovascular disease",
"FGR infants with rapid postnatal catch-up growth at highest risk",
]
);
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 19 — GUIDELINE COMPARISON
// ════════════════════════════════════════════════════════════════════════════
let s19 = pres.addSlide();
s19.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:"100%", fill:{color:C.light} });
s19.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:1.0, fill:{color:C.navy} });
s19.addShape(pres.ShapeType.rect, { x:0, y:1.0, w:"100%", h:0.05, fill:{color:C.accent} });
s19.addText("International Guideline Comparison (2020–2024)", {
x:0.5, y:0.1, w:12.3, h:0.8,
fontSize:23, bold:true, color:C.white, fontFace:"Calibri", valign:"middle"
});
const guidelineRows = [
[
{text:"Parameter", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:12}},
{text:"ISUOG 2020", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:12}},
{text:"ACOG/SMFM", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:12}},
{text:"SOGC 2023", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:12}},
{text:"RCOG 2024", options:{bold:true, color:C.white, fill:{color:C.teal}, fontSize:12}},
],
[
{text:"FGR Definition", options:{bold:true, fontSize:11}},
{text:"EFW/AC <3rd %ile; OR 3–10th %ile + abnormal Doppler/velocity", options:{fontSize:11}},
{text:"EFW or AC <10th percentile", options:{fontSize:11}},
{text:"EFW <10th %ile on serial scans with abnormal Doppler", options:{fontSize:11}},
{text:"EFW/AC <10th %ile; FGR requires additional biophysical evidence", options:{fontSize:11}},
],
[
{text:"Key Doppler", options:{bold:true, fontSize:11}},
{text:"UA, MCA, CPR, UtA, DV", options:{fontSize:11}},
{text:"UA primary; MCA, UtA secondary", options:{fontSize:11}},
{text:"UA, UtA, CPR, DV", options:{fontSize:11}},
{text:"UA, MCA, UtA, DV", options:{fontSize:11}},
],
[
{text:"Aspirin Prevention", options:{bold:true, fontSize:11}},
{text:"Recommended high-risk", options:{fontSize:11}},
{text:"81 mg/day from <16 wks (high-risk)", options:{fontSize:11}},
{text:"81–162 mg from <16 wks (Grade 1A)", options:{fontSize:11}},
{text:"75–150 mg/day from <16 wks", options:{fontSize:11}},
],
[
{text:"Delivery (Late FGR)", options:{bold:true, fontSize:11}},
{text:"37+0 (CPR <5th); 38+0 (3–10th alone)", options:{fontSize:11}},
{text:"37–38 wks with abnormal Doppler", options:{fontSize:11}},
{text:"37 wks if abnormal; 38 wks if SGA only", options:{fontSize:11}},
{text:"37+0 to 38+0 depending on Doppler", options:{fontSize:11}},
],
[
{text:"Biomarkers", options:{bold:true, fontSize:11}},
{text:"sFlt-1/PlGF: not routinely recommended", options:{fontSize:11}},
{text:"PAPP-A, PlGF for screening", options:{fontSize:11}},
{text:"PlGF + UtA for 1st tri screening", options:{fontSize:11}},
{text:"PlGF <100 pg/mL useful screening", options:{fontSize:11}},
],
];
addTable(s19, guidelineRows, 0.2, 1.12, 13.0, [2.3, 2.7, 2.7, 2.65, 2.65]);
s19.addText("ISUOG 2020 | ACOG Practice Bulletin | SOGC Guideline No.442 (2023) | RCOG Green-top No.31 (2024)", {
x:0, y:5.32, w:"100%", h:0.18, fontSize:8.5, color:C.lgray, align:"center", fontFace:"Calibri"
});
// ════════════════════════════════════════════════════════════════════════════
// SLIDE 20 — KEY TAKEAWAYS / SUMMARY
// ════════════════════════════════════════════════════════════════════════════
let s20 = pres.addSlide();
s20.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:"100%", fill:{color:C.navy} });
s20.addShape(pres.ShapeType.rect, { x:0, y:0, w:"100%", h:0.08, fill:{color:C.accent} });
s20.addShape(pres.ShapeType.rect, { x:0, y:5.42, w:"100%", h:0.08, fill:{color:C.teal} });
s20.addText("Key Takeaways", {
x:0.5, y:0.12, w:12.3, h:0.65,
fontSize:28, bold:true, color:C.white, fontFace:"Calibri", align:"center"
});
const takeaways = [
"SGA is a SIZE description (<10th %ile); FGR is a PATHOLOGICAL PROCESS — the two overlap but are NOT synonymous",
"The distinction between constitutional SGA and FGR requires Doppler velocimetry, growth velocity, and biophysical assessment",
"FGR is classified as early (<32 wks, severe Doppler changes) vs late (≥32 wks, subtle, often CPR-based) — management differs significantly",
"Doppler surveillance (UA → MCA/CPR → DV) is the cornerstone of FGR monitoring and delivery timing",
"Symmetric FGR (chromosomal/infectious cause) vs Asymmetric FGR (placental; brain-sparing) — HC/AC ratio is key",
"Staging (PORTO system) guides clinical decision-making: Stage I–IV based on Doppler and CTG findings",
"Aspirin from <16 weeks significantly reduces FGR and pre-eclampsia risk in high-risk patients (all major guidelines)",
"FGR fetuses face both immediate perinatal complications and long-term metabolic/cardiovascular programming (Barker hypothesis)",
"ISUOG 2020, SOGC 2023, and RCOG 2024 provide harmonized but not identical frameworks — know your local guideline",
];
let tkItems = takeaways.map((t,i) => ({
text: (i+1) + ". " + t,
options: { bullet:false, fontSize:15, color:C.white, fontFace:"Calibri", breakLine:true, paraSpaceAfter:5 }
}));
tkItems[tkItems.length-1].options.breakLine = false;
s20.addText(tkItems, { x:0.6, y:0.85, w:12.1, h:4.45, valign:"top", margin:[2,4,2,4] });
// ─── WRITE FILE ────────────────────────────────────────────────────────────
pres.writeFile({ fileName: "/home/daytona/workspace/sga-fgr-ppt/SGA_vs_FGR_Presentation.pptx" })
.then(() => console.log("SUCCESS: SGA_vs_FGR_Presentation.pptx created"))
.catch(err => { console.error("ERROR:", err); process.exit(1); });
cd /home/daytona/workspace/sga-fgr-ppt && node create_pptx.js 2>&1
ls -lh /home/daytona/workspace/sga-fgr-ppt/SGA_vs_FGR_Presentation.pptx
SGA vs FGR Presentation
Presentation · PPTX
| # | Slide Title |
|---|---|
| 1 | Title Slide - SGA vs FGR with subtitle & source credits |
| 2 | Outline - All 20 topic headings at a glance |
| 3 | Historical Evolution - From Lubchenco (1960s) to modern FGR definitions |
| 4 | Definitions (2-column) - SGA vs FGR side-by-side with key thresholds |
| 5 | Epidemiology - Incidence globally, recurrence risk, perinatal impact |
| 6 | Normal Fetal Growth Physiology - 3 phases, growth rates, determinants |
| 7 | Symmetric vs Asymmetric FGR (2-column) - Causes, features, prognosis |
| 8 | Early-Onset vs Late-Onset FGR (2-column) - Doppler patterns, delivery |
| 9 | Etiology & Risk Factors - Maternal/fetal/placental causes |
| 10 | Pathophysiology - Placental insufficiency, brain-sparing, O₂ data |
| 11 | Screening & Prediction - 1st trimester combined, UtA, PlGF, PAPP-A |
| 12 | Ultrasound Diagnosis - Biometry, EFW, growth charts, serial scans |
| 13 | Doppler Velocimetry - UA, MCA, CPR, UtA, DV - progressive staging |
| 14 | Staging Table (PORTO/Barcelona) - Stages I–IV with mortality estimates |
| 15 | Biomarkers - sFlt-1/PlGF ratio, PAPP-A, AFP, limitations |
| 16 | Management Overview - Constitutional SGA vs confirmed FGR protocols |
| 17 | Delivery Timing Table (ISUOG) - Week-by-week trigger thresholds |
| 18 | Perinatal Outcomes - Short-term complications + Barker hypothesis |
| 19 | Guideline Comparison Table - ISUOG / ACOG / SOGC 2023 / RCOG 2024 |
| 20 | Key Takeaways - 9 core clinical messages |