{
let [w, h] = [640, 480];
let s = w / 15;
let [dx, dy] = [s * 11, s * 5];
return svg`
<svg width=${w} height=${h}>
<!-- Main rectangle -->
<rect x=${(w - dx) / 2} y=${(h - dy) / 2} width=${dx} height=${dy} />
<!-- First big white square -->
<rect x=${(w - dx) / 2 + s} y=${(h - dy) / 2 + s}
width=${s * 3} height=${s * 3}
fill=white />
<!-- Second big white square -->
<rect x=${(w - dx) / 2 + s * 7} y=${(h - dy) / 2 + s}
width=${s * 3} height=${s * 3}
fill=white />
<!-- First small white square -->
<rect x=${(w - dx) / 2 + 5 * s} y=${(h - dy) / 2 + s}
width=${s} height=${s}
fill=white />
<!-- Second small white square -->
<rect x=${(w - dx) / 2 + 5 * s} y=${(h - dy) / 2 + s * 3}
width=${s} height=${s}
fill=white />
<!-- First small black square -->
<rect x=${(w - dx) / 2 + 2 * s} y=${(h - dy) / 2 + s * 2}
width=${s} height=${s}
fill=black />
<!-- Second small black square -->
<rect x=${(w - dx) / 2 + 8 * s} y=${(h - dy) / 2 + s * 2}
width=${s} height=${s}
fill=black />
</svg>
`;
}