In a file found on this page I found the following graphic. What I need is to change the numbers by letters A, B, C, D ...
\documentclass[tikz,border=7pt]{standalone}
\begin{document}
\begin{tikzpicture}[
every node/.style={fill=red,circle, text=white, inner sep=0, minimum size=14},
every path/.style={draw=white,double=black, very thick}
]
\foreach \i in {-1,0,1}
\foreach[evaluate={\k=int(5-3*\j+\i)}] \j in {-1,0,1}
\path (\i,\j) node (\k) {\k};
\foreach[count=\i, evaluate={\k=int(9+\i)}] \a in {45,0,-45,-90}
\path (\a:3) node (\k) {\k};
\draw (1) to (2) to (3) to[out=0,in=135] (11);
\draw (4) to (5) to (6) to (11);
\draw (7) to (8) to (9) to[out=0,in=-135] (11);
\draw (1) to (4) to (7) to[out=-90,in=135] (13);
\draw (2) to (5) to (8) to (13);
\draw (3) to (6) to (9) to[out=-90,in=45] (13);
\draw (7) to[out=135,in=135, distance=100] (2) (2) to (6) (6) to[out=-45,in=90] (12);
\draw (1) to (5) to (9) to (12);
\draw (3) to[out=135,in=135, distance=100] (4) (4) to (8) (8) to[out=-45,in=180] (12);
\draw (1) to[out=-135,in=-135, distance=100] (8) (8) to (6) (6) to[out=45,in=-90] (10);
\draw (7) to (5) to (3) to (10);
\draw (9) to[out=-135,in=-135, distance=100] (4) (4) to (2) (2) to[out=45,in=180] (10);
\draw[bend left=17] (10) to (11) (11) to (12) (12) to (13);
\end{tikzpicture}
\end{document}


