SVG Code
<svg xmlns=“http://www.w3.org/2000/svg” viewBox=“0 0 800 600” width=“100%” height=“100%”> <!-- Background --> <rect width=“100%” height=“100%” fill=“#ffffff” />
<!-- Main Wobbly Border --> <path d=“M 160 65 L 240 60 L 380 58 L 550 56 L 680 62 L 750 65 L 745 140 L 730 280 L 715 420 L 675 550 L 580 555 L 450 535 L 300 522 L 140 520 L 138 410 L 142 290 L 150 170 L 160 65 Z” fill=“none” stroke=“#000000” stroke-width=“3.5” stroke-linejoin=“round” stroke-linecap=“round” />
<!-- Red Shape (3.2 GHz) --> <path d=“M 175 517 L 175 490 L 210 486 L 250 484 L 300 489 L 340 493 L 342 503 L 340 511 L 280 510 L 220 514 Z” fill=“#c44343” stroke=“#000000” stroke-width=“2.5” stroke-linejoin=“round” />
<!-- Green Shape (3.3 GHz) --> <path d=“M 422 531 L 435 380 L 452 230 L 470 95 L 510 98 L 570 108 L 638 115 L 620 260 L 595 400 L 575 544 L 510 546 L 460 538 Z” fill=“#61b360” stroke=“#000000” stroke-width=“2.5” stroke-linejoin=“round” />
<!-- Y-Axis Ticks --> <!-- 3.285 Tick --> <path d=“M 149 180 L 140 181 L 133 178” fill=“none” stroke=“#000000” stroke-width=“3” stroke-linecap=“round” stroke-linejoin=“round”/> <!-- 3.25 Tick --> <path d=“M 141 295 L 130 294 L 125 296” fill=“none” stroke=“#000000” stroke-width=“3” stroke-linecap=“round” stroke-linejoin=“round”/> <!-- 3.215 Tick (with slight hook) --> <path d=“M 137 410 L 128 412 C 122 414, 122 420, 126 422” fill=“none” stroke=“#000000” stroke-width=“3” stroke-linecap=“round” stroke-linejoin=“round”/>
<!-- Text Labels --> <g font-family=“Arial, Helvetica, sans-serif” font-weight=“bold” font-size=“28” fill=“#000000”>
<!-- Y-Axis (Right-aligned to ensure clean spacing from the wobbly border) -->
<text x="115" y="75" text-anchor="end">3.32</text>
<text x="115" y="188" text-anchor="end">3.285</text>
<text x="115" y="303" text-anchor="end">3.25</text>
<text x="115" y="418" text-anchor="end">3.215</text>
<text x="115" y="535" text-anchor="end">3.18</text>
<!-- Bar Labels (Center-aligned over their respective shapes) -->
<text x="255" y="470" text-anchor="middle">3.2 GHz</text>
<text x="550" y="80" text-anchor="middle">3.3 GHz</text>
</g> </svg>
