bin neu in der TikZ-Welt und versuche derzeit folgendes umzusetzen

Mir fehlt noch die graue Fläche. Hier mein Quellcode:
\documentclass{scrreprt} \usepackage{tikz} \begin{document} \begin{tikzpicture}[scale=1] % Axis \coordinate (y) at (0,4); \coordinate (x) at (-5,0); \draw[<-] (y) node[above] {$Im$} -- (0,-4); \draw[->] (x)-- (5,0) node[right]{$Re$}; \draw [dashed] (-4, 1.5) -- (4,-1.5); \draw [black, thick] (-4,1.5) circle [radius=0.5]; \draw [black, thick] (4,-1.5) circle [radius=0.5]; \filldraw [black] (-4,1.5) circle (1pt) node[below, black] {$-w$}; \draw (-5,0.75) node {$U_r(-w)$}; \filldraw [black] (4,-1.5) circle (1pt) node[below, black] {$w$}; \draw (3,-2.25) node {$U_r(w)$}; \end{tikzpicture} \end{document}

Wie kann ich das umsetzen? Und wie färbe ich die Kreise in einem noch graueren Ton? Danke schonmal.
Will dann auch soetwas umsetzen:

Viele Grüße