docs/diploma

changeset 399:a641bea7a087

added source for call graph, modified Makefile; adjusted includegraphics
author meillo@marmaro.de
date Sat, 07 Feb 2009 22:51:17 +0100
parents 40c2c6810f38
children 5254a119ad56
files thesis/fig/Makefile thesis/fig/callgraph.ps thesis/tex/4-MasqmailsFuture.tex
diffstat 3 files changed, 9419 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/thesis/fig/Makefile	Sat Feb 07 22:43:07 2009 +0100
     1.2 +++ b/thesis/fig/Makefile	Sat Feb 07 22:51:17 2009 +0100
     1.3 @@ -15,6 +15,7 @@
     1.4  masqmail-channels.eps \
     1.5  proxy-setup.eps \
     1.6  ipc-protocol.eps \
     1.7 +callgraph.eps \
     1.8  
     1.9  
    1.10  .PHONY: all
    1.11 @@ -30,6 +31,11 @@
    1.12  	@echo ">>>> processing: $*"
    1.13  	pic $*.pic | troff -fP | grops | ps2eps -f > $*.eps
    1.14  
    1.15 +.SUFFIXES: .ps .eps
    1.16 +.ps.eps: *.ps
    1.17 +	@echo ">>>> processing: $*"
    1.18 +	ps2eps -f $*.ps > $*.eps
    1.19 +
    1.20  
    1.21  .PHONY: clean
    1.22  clean:
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/thesis/fig/callgraph.ps	Sat Feb 07 22:51:17 2009 +0100
     2.3 @@ -0,0 +1,9413 @@
     2.4 +%!PS-Adobe-3.0 EPSF-3.0
     2.5 +%%Creator: Graphviz version 2.20.2 (Sun Oct 12 22:28:10 UTC 2008)
     2.6 +%%For: (meillo) Meillo  r e t u r n s,,,
     2.7 +%%Title: callgraph
     2.8 +%%Pages: (atend)
     2.9 +%%BoundingBox: (atend)
    2.10 +%%EndComments
    2.11 +save
    2.12 +%%BeginProlog
    2.13 +/DotDict 200 dict def
    2.14 +DotDict begin
    2.15 +
    2.16 +
    2.17 +%%BeginResource: procset graphviz 0 0
    2.18 +
    2.19 +/InvScaleFactor 1.0 def
    2.20 +/set_scale {
    2.21 +       dup 1 exch div /InvScaleFactor exch def
    2.22 +       scale
    2.23 +} bind def
    2.24 +
    2.25 +% styles
    2.26 +/solid { [] 0 setdash } bind def
    2.27 +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
    2.28 +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
    2.29 +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
    2.30 +/bold { 2 setlinewidth } bind def
    2.31 +/filled { } bind def
    2.32 +/unfilled { } bind def
    2.33 +/rounded { } bind def
    2.34 +/diagonals { } bind def
    2.35 +
    2.36 +% hooks for setting color 
    2.37 +/nodecolor { sethsbcolor } bind def
    2.38 +/edgecolor { sethsbcolor } bind def
    2.39 +/graphcolor { sethsbcolor } bind def
    2.40 +/nopcolor {pop pop pop} bind def
    2.41 +
    2.42 +
    2.43 +/boxprim {				% xcorner ycorner xsize ysize
    2.44 +		4 2 roll
    2.45 +		moveto
    2.46 +		2 copy
    2.47 +		exch 0 rlineto
    2.48 +		0 exch rlineto
    2.49 +		pop neg 0 rlineto
    2.50 +		closepath
    2.51 +} bind def
    2.52 +
    2.53 +/ellipse_path {
    2.54 +	/ry exch def
    2.55 +	/rx exch def
    2.56 +	/y exch def
    2.57 +	/x exch def
    2.58 +	matrix currentmatrix
    2.59 +	newpath
    2.60 +	x y translate
    2.61 +	rx ry scale
    2.62 +	0 0 1 0 360 arc
    2.63 +	setmatrix
    2.64 +} bind def
    2.65 +
    2.66 +/endpage { showpage } bind def
    2.67 +/showpage { } def
    2.68 +
    2.69 +/layercolorseq
    2.70 +	[	% layer color sequence - darkest to lightest
    2.71 +		[0 0 0]
    2.72 +		[.2 .8 .8]
    2.73 +		[.4 .8 .8]
    2.74 +		[.6 .8 .8]
    2.75 +		[.8 .8 .8]
    2.76 +	]
    2.77 +def
    2.78 +
    2.79 +/layerlen layercolorseq length def
    2.80 +
    2.81 +/setlayer {/maxlayer exch def /curlayer exch def
    2.82 +	layercolorseq curlayer 1 sub layerlen mod get
    2.83 +	aload pop sethsbcolor
    2.84 +	/nodecolor {nopcolor} def
    2.85 +	/edgecolor {nopcolor} def
    2.86 +	/graphcolor {nopcolor} def
    2.87 +} bind def
    2.88 +
    2.89 +/onlayer { curlayer ne {invis} if } def
    2.90 +
    2.91 +/onlayers {
    2.92 +	/myupper exch def
    2.93 +	/mylower exch def
    2.94 +	curlayer mylower lt
    2.95 +	curlayer myupper gt
    2.96 +	or
    2.97 +	{invis} if
    2.98 +} def
    2.99 +
   2.100 +/curlayer 0 def
   2.101 +
   2.102 +%%EndResource
   2.103 +%%EndProlog
   2.104 +%%BeginSetup
   2.105 +1 setmiterlimit
   2.106 +% /arrowlength 10 def
   2.107 +% /arrowwidth 5 def
   2.108 +
   2.109 +% make sure pdfmark is harmless for PS-interpreters other than Distiller
   2.110 +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
   2.111 +% make '<<' and '>>' safe on PS Level 1 devices
   2.112 +/languagelevel where {pop languagelevel}{1} ifelse
   2.113 +2 lt {
   2.114 +    userdict (<<) cvn ([) cvn load put
   2.115 +    userdict (>>) cvn ([) cvn load put
   2.116 +} if
   2.117 +
   2.118 +%%EndSetup
   2.119 +%%Page: 1 1
   2.120 +%%PageBoundingBox: 36 36 540 458
   2.121 +%%PageOrientation: Portrait
   2.122 +gsave
   2.123 +36 36 504 422 boxprim clip newpath
   2.124 +0.114545 0.114545 set_scale 0 rotate 318.286 318.286 translate
   2.125 +% skip_comment
   2.126 +gsave
   2.127 +1 setlinewidth
   2.128 +0.000 0.000 0.000 nodecolor
   2.129 +4294 1674 68.79 18 ellipse_path stroke
   2.130 +0.000 0.000 0.000 nodecolor
   2.131 +grestore
   2.132 +% skip_comment->skip_comment
   2.133 +gsave
   2.134 +1 setlinewidth
   2.135 +solid
   2.136 +0.000 0.000 0.000 edgecolor
   2.137 +newpath 4255 1689 moveto
   2.138 +4243 1700 4256 1710 4294 1710 curveto
   2.139 +4321 1710 4335 1705 4337 1698 curveto
   2.140 +stroke
   2.141 +0.000 0.000 0.000 edgecolor
   2.142 +newpath 4340.26 1696.72 moveto
   2.143 +4333 1689 lineto
   2.144 +4333.86 1699.56 lineto
   2.145 +closepath fill
   2.146 +1 setlinewidth
   2.147 +solid
   2.148 +0.000 0.000 0.000 edgecolor
   2.149 +newpath 4340.26 1696.72 moveto
   2.150 +4333 1689 lineto
   2.151 +4333.86 1699.56 lineto
   2.152 +closepath stroke
   2.153 +grestore
   2.154 +% parse_address_list
   2.155 +gsave
   2.156 +1 setlinewidth
   2.157 +0.000 0.000 0.000 nodecolor
   2.158 +3031 1902 82.89 18 ellipse_path stroke
   2.159 +0.000 0.000 0.000 nodecolor
   2.160 +grestore
   2.161 +% parse_list
   2.162 +gsave
   2.163 +1 setlinewidth
   2.164 +0.000 0.000 0.000 nodecolor
   2.165 +3284 1967 47.95 18 ellipse_path stroke
   2.166 +0.000 0.000 0.000 nodecolor
   2.167 +grestore
   2.168 +% parse_address_list->parse_list
   2.169 +gsave
   2.170 +1 setlinewidth
   2.171 +solid
   2.172 +0.000 0.000 0.000 edgecolor
   2.173 +newpath 3085 1916 moveto
   2.174 +3130 1927 3191 1943 3234 1955 curveto
   2.175 +stroke
   2.176 +0.000 0.000 0.000 edgecolor
   2.177 +newpath 3233.51 1958.47 moveto
   2.178 +3244 1957 lineto
   2.179 +3234.88 1951.61 lineto
   2.180 +closepath fill
   2.181 +1 setlinewidth
   2.182 +solid
   2.183 +0.000 0.000 0.000 edgecolor
   2.184 +newpath 3233.51 1958.47 moveto
   2.185 +3244 1957 lineto
   2.186 +3234.88 1951.61 lineto
   2.187 +closepath stroke
   2.188 +grestore
   2.189 +% create_address
   2.190 +gsave
   2.191 +1 setlinewidth
   2.192 +0.000 0.000 0.000 nodecolor
   2.193 +3537 1404 68.99 18 ellipse_path stroke
   2.194 +0.000 0.000 0.000 nodecolor
   2.195 +grestore
   2.196 +% parse_address_list->create_address
   2.197 +gsave
   2.198 +1 setlinewidth
   2.199 +solid
   2.200 +0.000 0.000 0.000 edgecolor
   2.201 +newpath 3049 1884 moveto
   2.202 +3073 1859 3116 1810 3140 1761 curveto
   2.203 +3170 1700 3128 1661 3176 1615 curveto
   2.204 +3247 1547 3321 1639 3392 1572 curveto
   2.205 +3439 1527 3383 1476 3428 1431 curveto
   2.206 +3437 1422 3448 1416 3460 1412 curveto
   2.207 +stroke
   2.208 +0.000 0.000 0.000 edgecolor
   2.209 +newpath 3461.43 1415.23 moveto
   2.210 +3470 1409 lineto
   2.211 +3459.42 1408.52 lineto
   2.212 +closepath fill
   2.213 +1 setlinewidth
   2.214 +solid
   2.215 +0.000 0.000 0.000 edgecolor
   2.216 +newpath 3461.43 1415.23 moveto
   2.217 +3470 1409 lineto
   2.218 +3459.42 1408.52 lineto
   2.219 +closepath stroke
   2.220 +grestore
   2.221 +% _create_address
   2.222 +gsave
   2.223 +1 setlinewidth
   2.224 +0.000 0.000 0.000 nodecolor
   2.225 +3805 1566 75.05 18 ellipse_path stroke
   2.226 +0.000 0.000 0.000 nodecolor
   2.227 +grestore
   2.228 +% create_address->_create_address
   2.229 +gsave
   2.230 +1 setlinewidth
   2.231 +solid
   2.232 +0.000 0.000 0.000 edgecolor
   2.233 +newpath 3597 1413 moveto
   2.234 +3613 1417 3631 1423 3646 1431 curveto
   2.235 +3701 1459 3754 1510 3782 1540 curveto
   2.236 +stroke
   2.237 +0.000 0.000 0.000 edgecolor
   2.238 +newpath 3779.78 1542.78 moveto
   2.239 +3789 1548 lineto
   2.240 +3785.05 1538.17 lineto
   2.241 +closepath fill
   2.242 +1 setlinewidth
   2.243 +solid
   2.244 +0.000 0.000 0.000 edgecolor
   2.245 +newpath 3779.78 1542.78 moveto
   2.246 +3789 1548 lineto
   2.247 +3785.05 1538.17 lineto
   2.248 +closepath stroke
   2.249 +grestore
   2.250 +% destroy_message
   2.251 +gsave
   2.252 +1 setlinewidth
   2.253 +0.000 0.000 0.000 nodecolor
   2.254 +771 2060 78.02 18 ellipse_path stroke
   2.255 +0.000 0.000 0.000 nodecolor
   2.256 +grestore
   2.257 +% msg_free_data
   2.258 +gsave
   2.259 +1 setlinewidth
   2.260 +0.000 0.000 0.000 nodecolor
   2.261 +3284 2803 68.79 18 ellipse_path stroke
   2.262 +0.000 0.000 0.000 nodecolor
   2.263 +grestore
   2.264 +% destroy_message->msg_free_data
   2.265 +gsave
   2.266 +1 setlinewidth
   2.267 +solid
   2.268 +0.000 0.000 0.000 edgecolor
   2.269 +newpath 848 2064 moveto
   2.270 +1024 2074 1469 2106 1832 2185 curveto
   2.271 +1963 2213 1999 2217 2118 2277 curveto
   2.272 +2267 2350 2279 2410 2422 2492 curveto
   2.273 +2520 2547 2547 2557 2652 2595 curveto
   2.274 +2754 2630 2808 2582 2886 2656 curveto
   2.275 +2924 2690 2883 2732 2922 2765 curveto
   2.276 +2944 2782 3107 2793 3206 2799 curveto
   2.277 +stroke
   2.278 +0.000 0.000 0.000 edgecolor
   2.279 +newpath 3205.7 2802.49 moveto
   2.280 +3216 2800 lineto
   2.281 +3206.4 2795.52 lineto
   2.282 +closepath fill
   2.283 +1 setlinewidth
   2.284 +solid
   2.285 +0.000 0.000 0.000 edgecolor
   2.286 +newpath 3205.7 2802.49 moveto
   2.287 +3216 2800 lineto
   2.288 +3206.4 2795.52 lineto
   2.289 +closepath stroke
   2.290 +grestore
   2.291 +% table_read
   2.292 +gsave
   2.293 +1 setlinewidth
   2.294 +0.000 0.000 0.000 nodecolor
   2.295 +1442 1702 50.92 18 ellipse_path stroke
   2.296 +0.000 0.000 0.000 nodecolor
   2.297 +grestore
   2.298 +% parse_table_pair
   2.299 +gsave
   2.300 +1 setlinewidth
   2.301 +0.000 0.000 0.000 nodecolor
   2.302 +3031 1452 75.05 18 ellipse_path stroke
   2.303 +0.000 0.000 0.000 nodecolor
   2.304 +grestore
   2.305 +% table_read->parse_table_pair
   2.306 +gsave
   2.307 +1 setlinewidth
   2.308 +solid
   2.309 +0.000 0.000 0.000 edgecolor
   2.310 +newpath 1446 1684 moveto
   2.311 +1469 1589 1577 1144 1578 1142 curveto
   2.312 +1634 1096 2832 1051 2886 1099 curveto
   2.313 +2935 1142 2887 1333 2922 1387 curveto
   2.314 +2935 1408 2958 1423 2979 1433 curveto
   2.315 +stroke
   2.316 +0.000 0.000 0.000 edgecolor
   2.317 +newpath 2977.44 1436.14 moveto
   2.318 +2988 1437 lineto
   2.319 +2980.28 1429.74 lineto
   2.320 +closepath fill
   2.321 +1 setlinewidth
   2.322 +solid
   2.323 +0.000 0.000 0.000 edgecolor
   2.324 +newpath 2977.44 1436.14 moveto
   2.325 +2988 1437 lineto
   2.326 +2980.28 1429.74 lineto
   2.327 +closepath stroke
   2.328 +grestore
   2.329 +% read_queue
   2.330 +gsave
   2.331 +1 setlinewidth
   2.332 +0.000 0.000 0.000 nodecolor
   2.333 +578 1158 55.79 18 ellipse_path stroke
   2.334 +0.000 0.000 0.000 nodecolor
   2.335 +grestore
   2.336 +% msg_spool_read
   2.337 +gsave
   2.338 +1 setlinewidth
   2.339 +0.000 0.000 0.000 nodecolor
   2.340 +771 1120 75.94 18 ellipse_path stroke
   2.341 +0.000 0.000 0.000 nodecolor
   2.342 +grestore
   2.343 +% read_queue->msg_spool_read
   2.344 +gsave
   2.345 +1 setlinewidth
   2.346 +solid
   2.347 +0.000 0.000 0.000 edgecolor
   2.348 +newpath 626 1149 moveto
   2.349 +649 1145 677 1139 702 1134 curveto
   2.350 +stroke
   2.351 +0.000 0.000 0.000 edgecolor
   2.352 +newpath 702.88 1137.39 moveto
   2.353 +712 1132 lineto
   2.354 +701.51 1130.53 lineto
   2.355 +closepath fill
   2.356 +1 setlinewidth
   2.357 +solid
   2.358 +0.000 0.000 0.000 edgecolor
   2.359 +newpath 702.88 1137.39 moveto
   2.360 +712 1132 lineto
   2.361 +701.51 1130.53 lineto
   2.362 +closepath stroke
   2.363 +grestore
   2.364 +% spool_read_header
   2.365 +gsave
   2.366 +1 setlinewidth
   2.367 +0.000 0.000 0.000 nodecolor
   2.368 +3031 364 84.97 18 ellipse_path stroke
   2.369 +0.000 0.000 0.000 nodecolor
   2.370 +grestore
   2.371 +% msg_spool_read->spool_read_header
   2.372 +gsave
   2.373 +1 setlinewidth
   2.374 +solid
   2.375 +0.000 0.000 0.000 edgecolor
   2.376 +newpath 778 1102 moveto
   2.377 +793 1065 832 980 886 925 curveto
   2.378 +1090 719 1153 586 1442 586 curveto
   2.379 +1442 586 1442 586 1705 586 curveto
   2.380 +1956 586 2725 429 2961 379 curveto
   2.381 +stroke
   2.382 +0.000 0.000 0.000 edgecolor
   2.383 +newpath 2961.88 382.39 moveto
   2.384 +2971 377 lineto
   2.385 +2960.51 375.53 lineto
   2.386 +closepath fill
   2.387 +1 setlinewidth
   2.388 +solid
   2.389 +0.000 0.000 0.000 edgecolor
   2.390 +newpath 2961.88 382.39 moveto
   2.391 +2971 377 lineto
   2.392 +2960.51 375.53 lineto
   2.393 +closepath stroke
   2.394 +grestore
   2.395 +% spool_read_data
   2.396 +gsave
   2.397 +1 setlinewidth
   2.398 +0.000 0.000 0.000 nodecolor
   2.399 +3284 1512 75.94 18 ellipse_path stroke
   2.400 +0.000 0.000 0.000 nodecolor
   2.401 +grestore
   2.402 +% msg_spool_read->spool_read_data
   2.403 +gsave
   2.404 +1 setlinewidth
   2.405 +solid
   2.406 +0.000 0.000 0.000 edgecolor
   2.407 +newpath 841 1113 moveto
   2.408 +1028 1093 1554 1043 1993 1042 curveto
   2.409 +1993 1042 1993 1042 2769 1042 curveto
   2.410 +2979 1042 3035 1153 3140 1333 curveto
   2.411 +3170 1382 3140 1413 3176 1458 curveto
   2.412 +3190 1473 3208 1485 3227 1494 curveto
   2.413 +stroke
   2.414 +0.000 0.000 0.000 edgecolor
   2.415 +newpath 3225.44 1497.14 moveto
   2.416 +3236 1498 lineto
   2.417 +3228.28 1490.74 lineto
   2.418 +closepath fill
   2.419 +1 setlinewidth
   2.420 +solid
   2.421 +0.000 0.000 0.000 edgecolor
   2.422 +newpath 3225.44 1497.14 moveto
   2.423 +3236 1498 lineto
   2.424 +3228.28 1490.74 lineto
   2.425 +closepath stroke
   2.426 +grestore
   2.427 +% create_message
   2.428 +gsave
   2.429 +1 setlinewidth
   2.430 +0.000 0.000 0.000 nodecolor
   2.431 +961 1044 71.77 18 ellipse_path stroke
   2.432 +0.000 0.000 0.000 nodecolor
   2.433 +grestore
   2.434 +% msg_spool_read->create_message
   2.435 +gsave
   2.436 +1 setlinewidth
   2.437 +solid
   2.438 +0.000 0.000 0.000 edgecolor
   2.439 +newpath 810 1104 moveto
   2.440 +840 1092 880 1076 912 1063 curveto
   2.441 +stroke
   2.442 +0.000 0.000 0.000 edgecolor
   2.443 +newpath 914.02 1065.96 moveto
   2.444 +922 1059 lineto
   2.445 +911.42 1059.46 lineto
   2.446 +closepath fill
   2.447 +1 setlinewidth
   2.448 +solid
   2.449 +0.000 0.000 0.000 edgecolor
   2.450 +newpath 914.02 1065.96 moveto
   2.451 +922 1059 lineto
   2.452 +911.42 1059.46 lineto
   2.453 +closepath stroke
   2.454 +grestore
   2.455 +% smtp_out_init
   2.456 +gsave
   2.457 +1 setlinewidth
   2.458 +0.000 0.000 0.000 nodecolor
   2.459 +2519 1326 64.12 18 ellipse_path stroke
   2.460 +0.000 0.000 0.000 nodecolor
   2.461 +grestore
   2.462 +% check_response
   2.463 +gsave
   2.464 +1 setlinewidth
   2.465 +0.000 0.000 0.000 nodecolor
   2.466 +2769 1234 73.85 18 ellipse_path stroke
   2.467 +0.000 0.000 0.000 nodecolor
   2.468 +grestore
   2.469 +% smtp_out_init->check_response
   2.470 +gsave
   2.471 +1 setlinewidth
   2.472 +solid
   2.473 +0.000 0.000 0.000 edgecolor
   2.474 +newpath 2568 1314 moveto
   2.475 +2584 1309 2601 1303 2616 1294 curveto
   2.476 +2635 1284 2633 1272 2652 1261 curveto
   2.477 +2665 1254 2680 1249 2695 1245 curveto
   2.478 +stroke
   2.479 +0.000 0.000 0.000 edgecolor
   2.480 +newpath 2695.88 1248.39 moveto
   2.481 +2705 1243 lineto
   2.482 +2694.51 1241.53 lineto
   2.483 +closepath fill
   2.484 +1 setlinewidth
   2.485 +solid
   2.486 +0.000 0.000 0.000 edgecolor
   2.487 +newpath 2695.88 1248.39 moveto
   2.488 +2705 1243 lineto
   2.489 +2694.51 1241.53 lineto
   2.490 +closepath stroke
   2.491 +grestore
   2.492 +% smtp_out_log_failure
   2.493 +gsave
   2.494 +1 setlinewidth
   2.495 +0.000 0.000 0.000 nodecolor
   2.496 +2769 1288 93.81 18 ellipse_path stroke
   2.497 +0.000 0.000 0.000 nodecolor
   2.498 +grestore
   2.499 +% smtp_out_init->smtp_out_log_failure
   2.500 +gsave
   2.501 +1 setlinewidth
   2.502 +solid
   2.503 +0.000 0.000 0.000 edgecolor
   2.504 +newpath 2576 1317 moveto
   2.505 +2608 1312 2649 1306 2685 1301 curveto
   2.506 +stroke
   2.507 +0.000 0.000 0.000 edgecolor
   2.508 +newpath 2685.88 1304.39 moveto
   2.509 +2695 1299 lineto
   2.510 +2684.51 1297.53 lineto
   2.511 +closepath fill
   2.512 +1 setlinewidth
   2.513 +solid
   2.514 +0.000 0.000 0.000 edgecolor
   2.515 +newpath 2685.88 1304.39 moveto
   2.516 +2695 1299 lineto
   2.517 +2684.51 1297.53 lineto
   2.518 +closepath stroke
   2.519 +grestore
   2.520 +% read_response
   2.521 +gsave
   2.522 +1 setlinewidth
   2.523 +0.000 0.000 0.000 nodecolor
   2.524 +2769 1180 68.1 18 ellipse_path stroke
   2.525 +0.000 0.000 0.000 nodecolor
   2.526 +grestore
   2.527 +% smtp_out_init->read_response
   2.528 +gsave
   2.529 +1 setlinewidth
   2.530 +solid
   2.531 +0.000 0.000 0.000 edgecolor
   2.532 +newpath 2574 1316 moveto
   2.533 +2589 1312 2604 1305 2616 1294 curveto
   2.534 +2647 1266 2621 1235 2652 1207 curveto
   2.535 +2663 1197 2678 1191 2693 1186 curveto
   2.536 +stroke
   2.537 +0.000 0.000 0.000 edgecolor
   2.538 +newpath 2693.88 1189.39 moveto
   2.539 +2703 1184 lineto
   2.540 +2692.51 1182.53 lineto
   2.541 +closepath fill
   2.542 +1 setlinewidth
   2.543 +solid
   2.544 +0.000 0.000 0.000 edgecolor
   2.545 +newpath 2693.88 1189.39 moveto
   2.546 +2703 1184 lineto
   2.547 +2692.51 1182.53 lineto
   2.548 +closepath stroke
   2.549 +grestore
   2.550 +% get_response_arg
   2.551 +gsave
   2.552 +1 setlinewidth
   2.553 +0.000 0.000 0.000 nodecolor
   2.554 +2769 1126 79.91 18 ellipse_path stroke
   2.555 +0.000 0.000 0.000 nodecolor
   2.556 +grestore
   2.557 +% smtp_out_init->get_response_arg
   2.558 +gsave
   2.559 +1 setlinewidth
   2.560 +solid
   2.561 +0.000 0.000 0.000 edgecolor
   2.562 +newpath 2576 1317 moveto
   2.563 +2591 1313 2606 1305 2616 1294 curveto
   2.564 +2661 1247 2606 1199 2652 1153 curveto
   2.565 +2661 1144 2671 1139 2682 1135 curveto
   2.566 +stroke
   2.567 +0.000 0.000 0.000 edgecolor
   2.568 +newpath 2684.02 1137.96 moveto
   2.569 +2692 1131 lineto
   2.570 +2681.42 1131.46 lineto
   2.571 +closepath fill
   2.572 +1 setlinewidth
   2.573 +solid
   2.574 +0.000 0.000 0.000 edgecolor
   2.575 +newpath 2684.02 1137.96 moveto
   2.576 +2692 1131 lineto
   2.577 +2681.42 1131.46 lineto
   2.578 +closepath stroke
   2.579 +grestore
   2.580 +% read_sockline
   2.581 +gsave
   2.582 +1 setlinewidth
   2.583 +0.000 0.000 0.000 nodecolor
   2.584 +3284 253 64.12 18 ellipse_path stroke
   2.585 +0.000 0.000 0.000 nodecolor
   2.586 +grestore
   2.587 +% read_response->read_sockline
   2.588 +gsave
   2.589 +1 setlinewidth
   2.590 +solid
   2.591 +0.000 0.000 0.000 edgecolor
   2.592 +newpath 2837 1179 moveto
   2.593 +2856 1176 2874 1168 2886 1153 curveto
   2.594 +2945 1084 2863 406 2922 337 curveto
   2.595 +2987 263 3044 318 3140 294 curveto
   2.596 +3170 287 3204 277 3231 270 curveto
   2.597 +stroke
   2.598 +0.000 0.000 0.000 edgecolor
   2.599 +newpath 3232.43 273.23 moveto
   2.600 +3241 267 lineto
   2.601 +3230.42 266.52 lineto
   2.602 +closepath fill
   2.603 +1 setlinewidth
   2.604 +solid
   2.605 +0.000 0.000 0.000 edgecolor
   2.606 +newpath 3232.43 273.23 moveto
   2.607 +3241 267 lineto
   2.608 +3230.42 266.52 lineto
   2.609 +closepath stroke
   2.610 +grestore
   2.611 +% deliver_finish_list
   2.612 +gsave
   2.613 +1 setlinewidth
   2.614 +0.000 0.000 0.000 nodecolor
   2.615 +2270 2208 79.22 18 ellipse_path stroke
   2.616 +0.000 0.000 0.000 nodecolor
   2.617 +grestore
   2.618 +% deliver_finish
   2.619 +gsave
   2.620 +1 setlinewidth
   2.621 +0.000 0.000 0.000 nodecolor
   2.622 +2519 2208 62.04 18 ellipse_path stroke
   2.623 +0.000 0.000 0.000 nodecolor
   2.624 +grestore
   2.625 +% deliver_finish_list->deliver_finish
   2.626 +gsave
   2.627 +1 setlinewidth
   2.628 +solid
   2.629 +0.000 0.000 0.000 edgecolor
   2.630 +newpath 2349 2208 moveto
   2.631 +2380 2208 2416 2208 2446 2208 curveto
   2.632 +stroke
   2.633 +0.000 0.000 0.000 edgecolor
   2.634 +newpath 2446 2211.5 moveto
   2.635 +2456 2208 lineto
   2.636 +2446 2204.5 lineto
   2.637 +closepath fill
   2.638 +1 setlinewidth
   2.639 +solid
   2.640 +0.000 0.000 0.000 edgecolor
   2.641 +newpath 2446 2211.5 moveto
   2.642 +2456 2208 lineto
   2.643 +2446 2204.5 lineto
   2.644 +closepath stroke
   2.645 +grestore
   2.646 +% addr_is_finished_children
   2.647 +gsave
   2.648 +1 setlinewidth
   2.649 +0.000 0.000 0.000 nodecolor
   2.650 +2769 2334 111.88 18 ellipse_path stroke
   2.651 +0.000 0.000 0.000 nodecolor
   2.652 +grestore
   2.653 +% deliver_finish->addr_is_finished_children
   2.654 +gsave
   2.655 +1 setlinewidth
   2.656 +solid
   2.657 +0.000 0.000 0.000 edgecolor
   2.658 +newpath 2537 2225 moveto
   2.659 +2562 2248 2607 2286 2652 2307 curveto
   2.660 +2662 2312 2672 2315 2682 2318 curveto
   2.661 +stroke
   2.662 +0.000 0.000 0.000 edgecolor
   2.663 +newpath 2681.42 2321.48 moveto
   2.664 +2692 2321 lineto
   2.665 +2683.43 2314.77 lineto
   2.666 +closepath fill
   2.667 +1 setlinewidth
   2.668 +solid
   2.669 +0.000 0.000 0.000 edgecolor
   2.670 +newpath 2681.42 2321.48 moveto
   2.671 +2692 2321 lineto
   2.672 +2683.43 2314.77 lineto
   2.673 +closepath stroke
   2.674 +grestore
   2.675 +% spool_delete_all
   2.676 +gsave
   2.677 +1 setlinewidth
   2.678 +0.000 0.000 0.000 nodecolor
   2.679 +2769 1780 73.85 18 ellipse_path stroke
   2.680 +0.000 0.000 0.000 nodecolor
   2.681 +grestore
   2.682 +% deliver_finish->spool_delete_all
   2.683 +gsave
   2.684 +1 setlinewidth
   2.685 +solid
   2.686 +0.000 0.000 0.000 edgecolor
   2.687 +newpath 2542 2191 moveto
   2.688 +2565 2173 2600 2141 2616 2106 curveto
   2.689 +2673 1986 2566 1911 2652 1812 curveto
   2.690 +2662 1801 2675 1793 2688 1789 curveto
   2.691 +stroke
   2.692 +0.000 0.000 0.000 edgecolor
   2.693 +newpath 2689.43 1792.23 moveto
   2.694 +2698 1786 lineto
   2.695 +2687.42 1785.52 lineto
   2.696 +closepath fill
   2.697 +1 setlinewidth
   2.698 +solid
   2.699 +0.000 0.000 0.000 edgecolor
   2.700 +newpath 2689.43 1792.23 moveto
   2.701 +2698 1786 lineto
   2.702 +2687.42 1785.52 lineto
   2.703 +closepath stroke
   2.704 +grestore
   2.705 +% addr_is_delivered_children
   2.706 +gsave
   2.707 +1 setlinewidth
   2.708 +0.000 0.000 0.000 nodecolor
   2.709 +2769 2208 116.24 18 ellipse_path stroke
   2.710 +0.000 0.000 0.000 nodecolor
   2.711 +grestore
   2.712 +% deliver_finish->addr_is_delivered_children
   2.713 +gsave
   2.714 +1 setlinewidth
   2.715 +solid
   2.716 +0.000 0.000 0.000 edgecolor
   2.717 +newpath 2582 2208 moveto
   2.718 +2600 2208 2621 2208 2642 2208 curveto
   2.719 +stroke
   2.720 +0.000 0.000 0.000 edgecolor
   2.721 +newpath 2642 2211.5 moveto
   2.722 +2652 2208 lineto
   2.723 +2642 2204.5 lineto
   2.724 +closepath fill
   2.725 +1 setlinewidth
   2.726 +solid
   2.727 +0.000 0.000 0.000 edgecolor
   2.728 +newpath 2642 2211.5 moveto
   2.729 +2652 2208 lineto
   2.730 +2642 2204.5 lineto
   2.731 +closepath stroke
   2.732 +grestore
   2.733 +% spool_write
   2.734 +gsave
   2.735 +1 setlinewidth
   2.736 +0.000 0.000 0.000 nodecolor
   2.737 +2769 654 56.98 18 ellipse_path stroke
   2.738 +0.000 0.000 0.000 nodecolor
   2.739 +grestore
   2.740 +% deliver_finish->spool_write
   2.741 +gsave
   2.742 +1 setlinewidth
   2.743 +solid
   2.744 +0.000 0.000 0.000 edgecolor
   2.745 +newpath 2523 2190 moveto
   2.746 +2537 2118 2590 1847 2616 1623 curveto
   2.747 +2644 1391 2615 1329 2652 1099 curveto
   2.748 +2679 939 2737 751 2760 682 curveto
   2.749 +stroke
   2.750 +0.000 0.000 0.000 edgecolor
   2.751 +newpath 2763.48 682.58 moveto
   2.752 +2763 672 lineto
   2.753 +2756.77 680.57 lineto
   2.754 +closepath fill
   2.755 +1 setlinewidth
   2.756 +solid
   2.757 +0.000 0.000 0.000 edgecolor
   2.758 +newpath 2763.48 682.58 moveto
   2.759 +2763 672 lineto
   2.760 +2756.77 680.57 lineto
   2.761 +closepath stroke
   2.762 +grestore
   2.763 +% update_non_rcpt_list
   2.764 +gsave
   2.765 +1 setlinewidth
   2.766 +0.000 0.000 0.000 nodecolor
   2.767 +2769 2280 93.81 18 ellipse_path stroke
   2.768 +0.000 0.000 0.000 nodecolor
   2.769 +grestore
   2.770 +% deliver_finish->update_non_rcpt_list
   2.771 +gsave
   2.772 +1 setlinewidth
   2.773 +solid
   2.774 +0.000 0.000 0.000 edgecolor
   2.775 +newpath 2558 2222 moveto
   2.776 +2585 2231 2620 2243 2652 2253 curveto
   2.777 +2667 2257 2682 2260 2696 2264 curveto
   2.778 +stroke
   2.779 +0.000 0.000 0.000 edgecolor
   2.780 +newpath 2695.51 2267.47 moveto
   2.781 +2706 2266 lineto
   2.782 +2696.88 2260.61 lineto
   2.783 +closepath fill
   2.784 +1 setlinewidth
   2.785 +solid
   2.786 +0.000 0.000 0.000 edgecolor
   2.787 +newpath 2695.51 2267.47 moveto
   2.788 +2706 2266 lineto
   2.789 +2696.88 2260.61 lineto
   2.790 +closepath stroke
   2.791 +grestore
   2.792 +% resolve_dns_a
   2.793 +gsave
   2.794 +1 setlinewidth
   2.795 +0.000 0.000 0.000 nodecolor
   2.796 +3284 2306 66.9 18 ellipse_path stroke
   2.797 +0.000 0.000 0.000 nodecolor
   2.798 +grestore
   2.799 +% dns_resolve
   2.800 +gsave
   2.801 +1 setlinewidth
   2.802 +0.000 0.000 0.000 nodecolor
   2.803 +3537 2252 57.87 18 ellipse_path stroke
   2.804 +0.000 0.000 0.000 nodecolor
   2.805 +grestore
   2.806 +% resolve_dns_a->dns_resolve
   2.807 +gsave
   2.808 +1 setlinewidth
   2.809 +solid
   2.810 +0.000 0.000 0.000 edgecolor
   2.811 +newpath 3337 2295 moveto
   2.812 +3379 2286 3436 2274 3479 2264 curveto
   2.813 +stroke
   2.814 +0.000 0.000 0.000 edgecolor
   2.815 +newpath 3479.88 2267.39 moveto
   2.816 +3489 2262 lineto
   2.817 +3478.51 2260.53 lineto
   2.818 +closepath fill
   2.819 +1 setlinewidth
   2.820 +solid
   2.821 +0.000 0.000 0.000 edgecolor
   2.822 +newpath 3479.88 2267.39 moveto
   2.823 +3489 2262 lineto
   2.824 +3478.51 2260.53 lineto
   2.825 +closepath stroke
   2.826 +grestore
   2.827 +% dns_next
   2.828 +gsave
   2.829 +1 setlinewidth
   2.830 +0.000 0.000 0.000 nodecolor
   2.831 +3537 2306 46.06 18 ellipse_path stroke
   2.832 +0.000 0.000 0.000 nodecolor
   2.833 +grestore
   2.834 +% resolve_dns_a->dns_next
   2.835 +gsave
   2.836 +1 setlinewidth
   2.837 +solid
   2.838 +0.000 0.000 0.000 edgecolor
   2.839 +newpath 3352 2306 moveto
   2.840 +3392 2306 3442 2306 3480 2306 curveto
   2.841 +stroke
   2.842 +0.000 0.000 0.000 edgecolor
   2.843 +newpath 3480 2309.5 moveto
   2.844 +3490 2306 lineto
   2.845 +3480 2302.5 lineto
   2.846 +closepath fill
   2.847 +1 setlinewidth
   2.848 +solid
   2.849 +0.000 0.000 0.000 edgecolor
   2.850 +newpath 3480 2309.5 moveto
   2.851 +3490 2306 lineto
   2.852 +3480 2302.5 lineto
   2.853 +closepath stroke
   2.854 +grestore
   2.855 +% addr_is_local
   2.856 +gsave
   2.857 +1 setlinewidth
   2.858 +0.000 0.000 0.000 nodecolor
   2.859 +3031 3406 63.93 18 ellipse_path stroke
   2.860 +0.000 0.000 0.000 nodecolor
   2.861 +grestore
   2.862 +% create_address_qualified
   2.863 +gsave
   2.864 +1 setlinewidth
   2.865 +0.000 0.000 0.000 nodecolor
   2.866 +3284 1431 107.21 18 ellipse_path stroke
   2.867 +0.000 0.000 0.000 nodecolor
   2.868 +grestore
   2.869 +% addr_is_local->create_address_qualified
   2.870 +gsave
   2.871 +1 setlinewidth
   2.872 +solid
   2.873 +0.000 0.000 0.000 edgecolor
   2.874 +newpath 3038 3388 moveto
   2.875 +3059 3334 3119 3170 3140 3029 curveto
   2.876 +3154 2944 3131 1557 3176 1485 curveto
   2.877 +3186 1470 3201 1458 3217 1450 curveto
   2.878 +stroke
   2.879 +0.000 0.000 0.000 edgecolor
   2.880 +newpath 3218.28 1453.26 moveto
   2.881 +3226 1446 lineto
   2.882 +3215.44 1446.86 lineto
   2.883 +closepath fill
   2.884 +1 setlinewidth
   2.885 +solid
   2.886 +0.000 0.000 0.000 edgecolor
   2.887 +newpath 3218.28 1453.26 moveto
   2.888 +3226 1446 lineto
   2.889 +3215.44 1446.86 lineto
   2.890 +closepath stroke
   2.891 +grestore
   2.892 +% addr_isequal
   2.893 +gsave
   2.894 +1 setlinewidth
   2.895 +0.000 0.000 0.000 nodecolor
   2.896 +3537 3558 59.96 18 ellipse_path stroke
   2.897 +0.000 0.000 0.000 nodecolor
   2.898 +grestore
   2.899 +% addr_is_local->addr_isequal
   2.900 +gsave
   2.901 +1 setlinewidth
   2.902 +solid
   2.903 +0.000 0.000 0.000 edgecolor
   2.904 +newpath 3076 3419 moveto
   2.905 +3096 3425 3119 3431 3140 3438 curveto
   2.906 +3269 3477 3299 3494 3428 3531 curveto
   2.907 +3445 3535 3463 3540 3480 3544 curveto
   2.908 +stroke
   2.909 +0.000 0.000 0.000 edgecolor
   2.910 +newpath 3479.42 3547.48 moveto
   2.911 +3490 3547 lineto
   2.912 +3481.43 3540.77 lineto
   2.913 +closepath fill
   2.914 +1 setlinewidth
   2.915 +solid
   2.916 +0.000 0.000 0.000 edgecolor
   2.917 +newpath 3479.42 3547.48 moveto
   2.918 +3490 3547 lineto
   2.919 +3481.43 3540.77 lineto
   2.920 +closepath stroke
   2.921 +grestore
   2.922 +% destroy_address
   2.923 +gsave
   2.924 +1 setlinewidth
   2.925 +0.000 0.000 0.000 nodecolor
   2.926 +3284 3268 75.24 18 ellipse_path stroke
   2.927 +0.000 0.000 0.000 nodecolor
   2.928 +grestore
   2.929 +% addr_is_local->destroy_address
   2.930 +gsave
   2.931 +1 setlinewidth
   2.932 +solid
   2.933 +0.000 0.000 0.000 edgecolor
   2.934 +newpath 3049 3389 moveto
   2.935 +3074 3364 3125 3319 3176 3295 curveto
   2.936 +3188 3289 3201 3285 3213 3282 curveto
   2.937 +stroke
   2.938 +0.000 0.000 0.000 edgecolor
   2.939 +newpath 3214.43 3285.23 moveto
   2.940 +3223 3279 lineto
   2.941 +3212.42 3278.52 lineto
   2.942 +closepath fill
   2.943 +1 setlinewidth
   2.944 +solid
   2.945 +0.000 0.000 0.000 edgecolor
   2.946 +newpath 3214.43 3285.23 moveto
   2.947 +3223 3279 lineto
   2.948 +3212.42 3278.52 lineto
   2.949 +closepath stroke
   2.950 +grestore
   2.951 +% create_address_qualified->create_address
   2.952 +gsave
   2.953 +1 setlinewidth
   2.954 +solid
   2.955 +0.000 0.000 0.000 edgecolor
   2.956 +newpath 3375 1421 moveto
   2.957 +3404 1418 3435 1415 3463 1412 curveto
   2.958 +stroke
   2.959 +0.000 0.000 0.000 edgecolor
   2.960 +newpath 3463.4 1415.48 moveto
   2.961 +3473 1411 lineto
   2.962 +3462.7 1408.51 lineto
   2.963 +closepath fill
   2.964 +1 setlinewidth
   2.965 +solid
   2.966 +0.000 0.000 0.000 edgecolor
   2.967 +newpath 3463.4 1415.48 moveto
   2.968 +3473 1411 lineto
   2.969 +3462.7 1408.51 lineto
   2.970 +closepath stroke
   2.971 +grestore
   2.972 +% make_server_socket
   2.973 +gsave
   2.974 +1 setlinewidth
   2.975 +0.000 0.000 0.000 nodecolor
   2.976 +373 678 91.03 18 ellipse_path stroke
   2.977 +0.000 0.000 0.000 nodecolor
   2.978 +grestore
   2.979 +% init_sockaddr
   2.980 +gsave
   2.981 +1 setlinewidth
   2.982 +0.000 0.000 0.000 nodecolor
   2.983 +578 678 64.12 18 ellipse_path stroke
   2.984 +0.000 0.000 0.000 nodecolor
   2.985 +grestore
   2.986 +% make_server_socket->init_sockaddr
   2.987 +gsave
   2.988 +1 setlinewidth
   2.989 +solid
   2.990 +0.000 0.000 0.000 edgecolor
   2.991 +newpath 464 678 moveto
   2.992 +477 678 491 678 503 678 curveto
   2.993 +stroke
   2.994 +0.000 0.000 0.000 edgecolor
   2.995 +newpath 503 681.5 moveto
   2.996 +513 678 lineto
   2.997 +503 674.5 lineto
   2.998 +closepath fill
   2.999 +1 setlinewidth
  2.1000 +solid
  2.1001 +0.000 0.000 0.000 edgecolor
  2.1002 +newpath 503 681.5 moveto
  2.1003 +513 678 lineto
  2.1004 +503 674.5 lineto
  2.1005 +closepath stroke
  2.1006 +grestore
  2.1007 +% spool_read_header->create_address
  2.1008 +gsave
  2.1009 +1 setlinewidth
  2.1010 +solid
  2.1011 +0.000 0.000 0.000 edgecolor
  2.1012 +newpath 3079 349 moveto
  2.1013 +3114 339 3157 326 3176 323 curveto
  2.1014 +3272 310 3320 260 3392 323 curveto
  2.1015 +3475 395 3526 1212 3535 1376 curveto
  2.1016 +stroke
  2.1017 +0.000 0.000 0.000 edgecolor
  2.1018 +newpath 3531.52 1376.4 moveto
  2.1019 +3536 1386 lineto
  2.1020 +3538.49 1375.7 lineto
  2.1021 +closepath fill
  2.1022 +1 setlinewidth
  2.1023 +solid
  2.1024 +0.000 0.000 0.000 edgecolor
  2.1025 +newpath 3531.52 1376.4 moveto
  2.1026 +3536 1386 lineto
  2.1027 +3538.49 1375.7 lineto
  2.1028 +closepath stroke
  2.1029 +grestore
  2.1030 +% get_header
  2.1031 +gsave
  2.1032 +1 setlinewidth
  2.1033 +0.000 0.000 0.000 nodecolor
  2.1034 +3284 199 53.01 18 ellipse_path stroke
  2.1035 +0.000 0.000 0.000 nodecolor
  2.1036 +grestore
  2.1037 +% spool_read_header->get_header
  2.1038 +gsave
  2.1039 +1 setlinewidth
  2.1040 +solid
  2.1041 +0.000 0.000 0.000 edgecolor
  2.1042 +newpath 3045 346 moveto
  2.1043 +3068 317 3120 257 3176 226 curveto
  2.1044 +3191 219 3209 212 3225 208 curveto
  2.1045 +stroke
  2.1046 +0.000 0.000 0.000 edgecolor
  2.1047 +newpath 3225.88 211.39 moveto
  2.1048 +3235 206 lineto
  2.1049 +3224.51 204.53 lineto
  2.1050 +closepath fill
  2.1051 +1 setlinewidth
  2.1052 +solid
  2.1053 +0.000 0.000 0.000 edgecolor
  2.1054 +newpath 3225.88 211.39 moveto
  2.1055 +3235 206 lineto
  2.1056 +3224.51 204.53 lineto
  2.1057 +closepath stroke
  2.1058 +grestore
  2.1059 +% create_address_pipe
  2.1060 +gsave
  2.1061 +1 setlinewidth
  2.1062 +0.000 0.000 0.000 nodecolor
  2.1063 +3284 383 91.22 18 ellipse_path stroke
  2.1064 +0.000 0.000 0.000 nodecolor
  2.1065 +grestore
  2.1066 +% spool_read_header->create_address_pipe
  2.1067 +gsave
  2.1068 +1 setlinewidth
  2.1069 +solid
  2.1070 +0.000 0.000 0.000 edgecolor
  2.1071 +newpath 3112 370 moveto
  2.1072 +3136 372 3163 374 3188 376 curveto
  2.1073 +stroke
  2.1074 +0.000 0.000 0.000 edgecolor
  2.1075 +newpath 3187.7 379.49 moveto
  2.1076 +3198 377 lineto
  2.1077 +3188.4 372.52 lineto
  2.1078 +closepath fill
  2.1079 +1 setlinewidth
  2.1080 +solid
  2.1081 +0.000 0.000 0.000 edgecolor
  2.1082 +newpath 3187.7 379.49 moveto
  2.1083 +3198 377 lineto
  2.1084 +3188.4 372.52 lineto
  2.1085 +closepath stroke
  2.1086 +grestore
  2.1087 +% read_line
  2.1088 +gsave
  2.1089 +1 setlinewidth
  2.1090 +0.000 0.000 0.000 nodecolor
  2.1091 +3537 1512 45.86 18 ellipse_path stroke
  2.1092 +0.000 0.000 0.000 nodecolor
  2.1093 +grestore
  2.1094 +% spool_read_header->read_line
  2.1095 +gsave
  2.1096 +1 setlinewidth
  2.1097 +solid
  2.1098 +0.000 0.000 0.000 edgecolor
  2.1099 +newpath 3096 352 moveto
  2.1100 +3189 337 3352 317 3392 356 curveto
  2.1101 +3483 444 3350 1387 3428 1485 curveto
  2.1102 +3441 1500 3462 1508 3481 1511 curveto
  2.1103 +stroke
  2.1104 +0.000 0.000 0.000 edgecolor
  2.1105 +newpath 3480.7 1514.49 moveto
  2.1106 +3491 1512 lineto
  2.1107 +3481.4 1507.52 lineto
  2.1108 +closepath fill
  2.1109 +1 setlinewidth
  2.1110 +solid
  2.1111 +0.000 0.000 0.000 edgecolor
  2.1112 +newpath 3480.7 1514.49 moveto
  2.1113 +3491 1512 lineto
  2.1114 +3481.4 1507.52 lineto
  2.1115 +closepath stroke
  2.1116 +grestore
  2.1117 +% fail_msg
  2.1118 +gsave
  2.1119 +1 setlinewidth
  2.1120 +0.000 0.000 0.000 nodecolor
  2.1121 +3031 2704 43.78 18 ellipse_path stroke
  2.1122 +0.000 0.000 0.000 nodecolor
  2.1123 +grestore
  2.1124 +% fail_msg->msg_free_data
  2.1125 +gsave
  2.1126 +1 setlinewidth
  2.1127 +solid
  2.1128 +0.000 0.000 0.000 edgecolor
  2.1129 +newpath 3072 2710 moveto
  2.1130 +3094 2715 3120 2723 3140 2736 curveto
  2.1131 +3161 2748 3156 2763 3176 2776 curveto
  2.1132 +3187 2782 3200 2787 3213 2791 curveto
  2.1133 +stroke
  2.1134 +0.000 0.000 0.000 edgecolor
  2.1135 +newpath 3212.42 2794.48 moveto
  2.1136 +3223 2794 lineto
  2.1137 +3214.43 2787.77 lineto
  2.1138 +closepath fill
  2.1139 +1 setlinewidth
  2.1140 +solid
  2.1141 +0.000 0.000 0.000 edgecolor
  2.1142 +newpath 3212.42 2794.48 moveto
  2.1143 +3223 2794 lineto
  2.1144 +3214.43 2787.77 lineto
  2.1145 +closepath stroke
  2.1146 +grestore
  2.1147 +% fail_msg->create_address_qualified
  2.1148 +gsave
  2.1149 +1 setlinewidth
  2.1150 +solid
  2.1151 +0.000 0.000 0.000 edgecolor
  2.1152 +newpath 3075 2705 moveto
  2.1153 +3098 2703 3125 2696 3140 2677 curveto
  2.1154 +3224 2573 3105 1596 3176 1485 curveto
  2.1155 +3186 1470 3201 1458 3217 1450 curveto
  2.1156 +stroke
  2.1157 +0.000 0.000 0.000 edgecolor
  2.1158 +newpath 3218.28 1453.26 moveto
  2.1159 +3226 1446 lineto
  2.1160 +3215.44 1446.86 lineto
  2.1161 +closepath fill
  2.1162 +1 setlinewidth
  2.1163 +solid
  2.1164 +0.000 0.000 0.000 edgecolor
  2.1165 +newpath 3218.28 1453.26 moveto
  2.1166 +3226 1446 lineto
  2.1167 +3215.44 1446.86 lineto
  2.1168 +closepath stroke
  2.1169 +grestore
  2.1170 +% fail_msg->destroy_address
  2.1171 +gsave
  2.1172 +1 setlinewidth
  2.1173 +solid
  2.1174 +0.000 0.000 0.000 edgecolor
  2.1175 +newpath 3043 2722 moveto
  2.1176 +3066 2757 3116 2842 3140 2921 curveto
  2.1177 +3178 3045 3102 3105 3176 3212 curveto
  2.1178 +3188 3229 3207 3242 3227 3250 curveto
  2.1179 +stroke
  2.1180 +0.000 0.000 0.000 edgecolor
  2.1181 +newpath 3225.44 3253.14 moveto
  2.1182 +3236 3254 lineto
  2.1183 +3228.28 3246.74 lineto
  2.1184 +closepath fill
  2.1185 +1 setlinewidth
  2.1186 +solid
  2.1187 +0.000 0.000 0.000 edgecolor
  2.1188 +newpath 3225.44 3253.14 moveto
  2.1189 +3236 3254 lineto
  2.1190 +3228.28 3246.74 lineto
  2.1191 +closepath stroke
  2.1192 +grestore
  2.1193 +% copy_modify_address
  2.1194 +gsave
  2.1195 +1 setlinewidth
  2.1196 +0.000 0.000 0.000 nodecolor
  2.1197 +3284 2416 98.87 18 ellipse_path stroke
  2.1198 +0.000 0.000 0.000 nodecolor
  2.1199 +grestore
  2.1200 +% fail_msg->copy_modify_address
  2.1201 +gsave
  2.1202 +1 setlinewidth
  2.1203 +solid
  2.1204 +0.000 0.000 0.000 edgecolor
  2.1205 +newpath 3075 2704 moveto
  2.1206 +3098 2701 3124 2695 3140 2677 curveto
  2.1207 +3211 2599 3106 2520 3176 2443 curveto
  2.1208 +3181 2438 3186 2434 3191 2431 curveto
  2.1209 +stroke
  2.1210 +0.000 0.000 0.000 edgecolor
  2.1211 +newpath 3192.96 2433.92 moveto
  2.1212 +3200 2426 lineto
  2.1213 +3189.56 2427.8 lineto
  2.1214 +closepath fill
  2.1215 +1 setlinewidth
  2.1216 +solid
  2.1217 +0.000 0.000 0.000 edgecolor
  2.1218 +newpath 3192.96 2433.92 moveto
  2.1219 +3200 2426 lineto
  2.1220 +3189.56 2427.8 lineto
  2.1221 +closepath stroke
  2.1222 +grestore
  2.1223 +% destroy_table
  2.1224 +gsave
  2.1225 +1 setlinewidth
  2.1226 +0.000 0.000 0.000 nodecolor
  2.1227 +3284 3322 63.93 18 ellipse_path stroke
  2.1228 +0.000 0.000 0.000 nodecolor
  2.1229 +grestore
  2.1230 +% fail_msg->destroy_table
  2.1231 +gsave
  2.1232 +1 setlinewidth
  2.1233 +solid
  2.1234 +0.000 0.000 0.000 edgecolor
  2.1235 +newpath 3043 2722 moveto
  2.1236 +3066 2757 3118 2842 3140 2921 curveto
  2.1237 +3164 3001 3122 3231 3176 3295 curveto
  2.1238 +3185 3305 3198 3312 3211 3316 curveto
  2.1239 +stroke
  2.1240 +0.000 0.000 0.000 edgecolor
  2.1241 +newpath 3210.42 3319.48 moveto
  2.1242 +3221 3319 lineto
  2.1243 +3212.43 3312.77 lineto
  2.1244 +closepath fill
  2.1245 +1 setlinewidth
  2.1246 +solid
  2.1247 +0.000 0.000 0.000 edgecolor
  2.1248 +newpath 3210.42 3319.48 moveto
  2.1249 +3221 3319 lineto
  2.1250 +3212.43 3312.77 lineto
  2.1251 +closepath stroke
  2.1252 +grestore
  2.1253 +% var_table_conf
  2.1254 +gsave
  2.1255 +1 setlinewidth
  2.1256 +0.000 0.000 0.000 nodecolor
  2.1257 +3284 2695 68.99 18 ellipse_path stroke
  2.1258 +0.000 0.000 0.000 nodecolor
  2.1259 +grestore
  2.1260 +% fail_msg->var_table_conf
  2.1261 +gsave
  2.1262 +1 setlinewidth
  2.1263 +solid
  2.1264 +0.000 0.000 0.000 edgecolor
  2.1265 +newpath 3075 2702 moveto
  2.1266 +3111 2701 3162 2699 3205 2697 curveto
  2.1267 +stroke
  2.1268 +0.000 0.000 0.000 edgecolor
  2.1269 +newpath 3205 2700.5 moveto
  2.1270 +3215 2697 lineto
  2.1271 +3205 2693.5 lineto
  2.1272 +closepath fill
  2.1273 +1 setlinewidth
  2.1274 +solid
  2.1275 +0.000 0.000 0.000 edgecolor
  2.1276 +newpath 3205 2700.5 moveto
  2.1277 +3215 2697 lineto
  2.1278 +3205 2693.5 lineto
  2.1279 +closepath stroke
  2.1280 +grestore
  2.1281 +% addr_string
  2.1282 +gsave
  2.1283 +1 setlinewidth
  2.1284 +0.000 0.000 0.000 nodecolor
  2.1285 +3284 821 55.09 18 ellipse_path stroke
  2.1286 +0.000 0.000 0.000 nodecolor
  2.1287 +grestore
  2.1288 +% fail_msg->addr_string
  2.1289 +gsave
  2.1290 +1 setlinewidth
  2.1291 +solid
  2.1292 +0.000 0.000 0.000 edgecolor
  2.1293 +newpath 3075 2705 moveto
  2.1294 +3098 2703 3125 2696 3140 2677 curveto
  2.1295 +3187 2619 3168 1423 3176 1350 curveto
  2.1296 +3199 1156 3256 928 3276 849 curveto
  2.1297 +stroke
  2.1298 +0.000 0.000 0.000 edgecolor
  2.1299 +newpath 3279.48 849.58 moveto
  2.1300 +3279 839 lineto
  2.1301 +3272.77 847.57 lineto
  2.1302 +closepath fill
  2.1303 +1 setlinewidth
  2.1304 +solid
  2.1305 +0.000 0.000 0.000 edgecolor
  2.1306 +newpath 3279.48 849.58 moveto
  2.1307 +3279 839 lineto
  2.1308 +3272.77 847.57 lineto
  2.1309 +closepath stroke
  2.1310 +grestore
  2.1311 +% fail_msg->spool_read_data
  2.1312 +gsave
  2.1313 +1 setlinewidth
  2.1314 +solid
  2.1315 +0.000 0.000 0.000 edgecolor
  2.1316 +newpath 3075 2705 moveto
  2.1317 +3098 2703 3125 2696 3140 2677 curveto
  2.1318 +3215 2585 3128 1722 3176 1615 curveto
  2.1319 +3191 1581 3223 1553 3249 1535 curveto
  2.1320 +stroke
  2.1321 +0.000 0.000 0.000 edgecolor
  2.1322 +newpath 3251.1 1537.8 moveto
  2.1323 +3257 1529 lineto
  2.1324 +3246.9 1532.2 lineto
  2.1325 +closepath fill
  2.1326 +1 setlinewidth
  2.1327 +solid
  2.1328 +0.000 0.000 0.000 edgecolor
  2.1329 +newpath 3251.1 1537.8 moveto
  2.1330 +3257 1529 lineto
  2.1331 +3246.9 1532.2 lineto
  2.1332 +closepath stroke
  2.1333 +grestore
  2.1334 +% peidopen
  2.1335 +gsave
  2.1336 +1 setlinewidth
  2.1337 +0.000 0.000 0.000 nodecolor
  2.1338 +3284 2603 46.75 18 ellipse_path stroke
  2.1339 +0.000 0.000 0.000 nodecolor
  2.1340 +grestore
  2.1341 +% fail_msg->peidopen
  2.1342 +gsave
  2.1343 +1 setlinewidth
  2.1344 +solid
  2.1345 +0.000 0.000 0.000 edgecolor
  2.1346 +newpath 3074 2700 moveto
  2.1347 +3095 2696 3120 2689 3140 2677 curveto
  2.1348 +3161 2664 3156 2648 3176 2635 curveto
  2.1349 +3192 2624 3212 2617 3230 2612 curveto
  2.1350 +stroke
  2.1351 +0.000 0.000 0.000 edgecolor
  2.1352 +newpath 3230.88 2615.39 moveto
  2.1353 +3240 2610 lineto
  2.1354 +3229.51 2608.53 lineto
  2.1355 +closepath fill
  2.1356 +1 setlinewidth
  2.1357 +solid
  2.1358 +0.000 0.000 0.000 edgecolor
  2.1359 +newpath 3230.88 2615.39 moveto
  2.1360 +3240 2610 lineto
  2.1361 +3229.51 2608.53 lineto
  2.1362 +closepath stroke
  2.1363 +grestore
  2.1364 +% addr_isequal_parent
  2.1365 +gsave
  2.1366 +1 setlinewidth
  2.1367 +0.000 0.000 0.000 nodecolor
  2.1368 +3284 2749 89.14 18 ellipse_path stroke
  2.1369 +0.000 0.000 0.000 nodecolor
  2.1370 +grestore
  2.1371 +% fail_msg->addr_isequal_parent
  2.1372 +gsave
  2.1373 +1 setlinewidth
  2.1374 +solid
  2.1375 +0.000 0.000 0.000 edgecolor
  2.1376 +newpath 3071 2711 moveto
  2.1377 +3107 2718 3162 2727 3207 2735 curveto
  2.1378 +stroke
  2.1379 +0.000 0.000 0.000 edgecolor
  2.1380 +newpath 3206.51 2738.47 moveto
  2.1381 +3217 2737 lineto
  2.1382 +3207.88 2731.61 lineto
  2.1383 +closepath fill
  2.1384 +1 setlinewidth
  2.1385 +solid
  2.1386 +0.000 0.000 0.000 edgecolor
  2.1387 +newpath 3206.51 2738.47 moveto
  2.1388 +3217 2737 lineto
  2.1389 +3207.88 2731.61 lineto
  2.1390 +closepath stroke
  2.1391 +grestore
  2.1392 +% var_table_msg
  2.1393 +gsave
  2.1394 +1 setlinewidth
  2.1395 +0.000 0.000 0.000 nodecolor
  2.1396 +3284 2857 68.1 18 ellipse_path stroke
  2.1397 +0.000 0.000 0.000 nodecolor
  2.1398 +grestore
  2.1399 +% fail_msg->var_table_msg
  2.1400 +gsave
  2.1401 +1 setlinewidth
  2.1402 +solid
  2.1403 +0.000 0.000 0.000 edgecolor
  2.1404 +newpath 3046 2721 moveto
  2.1405 +3070 2748 3122 2801 3176 2830 curveto
  2.1406 +3188 2836 3202 2841 3216 2845 curveto
  2.1407 +stroke
  2.1408 +0.000 0.000 0.000 edgecolor
  2.1409 +newpath 3215.51 2848.47 moveto
  2.1410 +3226 2847 lineto
  2.1411 +3216.88 2841.61 lineto
  2.1412 +closepath fill
  2.1413 +1 setlinewidth
  2.1414 +solid
  2.1415 +0.000 0.000 0.000 edgecolor
  2.1416 +newpath 3215.51 2848.47 moveto
  2.1417 +3226 2847 lineto
  2.1418 +3216.88 2841.61 lineto
  2.1419 +closepath stroke
  2.1420 +grestore
  2.1421 +% fail_msg->read_sockline
  2.1422 +gsave
  2.1423 +1 setlinewidth
  2.1424 +solid
  2.1425 +0.000 0.000 0.000 edgecolor
  2.1426 +newpath 3075 2705 moveto
  2.1427 +3098 2703 3125 2696 3140 2677 curveto
  2.1428 +3221 2576 3125 475 3176 356 curveto
  2.1429 +3191 322 3223 293 3249 275 curveto
  2.1430 +stroke
  2.1431 +0.000 0.000 0.000 edgecolor
  2.1432 +newpath 3251.1 277.8 moveto
  2.1433 +3257 269 lineto
  2.1434 +3246.9 272.2 lineto
  2.1435 +closepath fill
  2.1436 +1 setlinewidth
  2.1437 +solid
  2.1438 +0.000 0.000 0.000 edgecolor
  2.1439 +newpath 3251.1 277.8 moveto
  2.1440 +3257 269 lineto
  2.1441 +3246.9 272.2 lineto
  2.1442 +closepath stroke
  2.1443 +grestore
  2.1444 +% expand
  2.1445 +gsave
  2.1446 +1 setlinewidth
  2.1447 +0.000 0.000 0.000 nodecolor
  2.1448 +3284 3185 39.11 18 ellipse_path stroke
  2.1449 +0.000 0.000 0.000 nodecolor
  2.1450 +grestore
  2.1451 +% fail_msg->expand
  2.1452 +gsave
  2.1453 +1 setlinewidth
  2.1454 +solid
  2.1455 +0.000 0.000 0.000 edgecolor
  2.1456 +newpath 3040 2722 moveto
  2.1457 +3079 2794 3224 3071 3270 3158 curveto
  2.1458 +stroke
  2.1459 +0.000 0.000 0.000 edgecolor
  2.1460 +newpath 3267.08 3159.96 moveto
  2.1461 +3275 3167 lineto
  2.1462 +3273.2 3156.56 lineto
  2.1463 +closepath fill
  2.1464 +1 setlinewidth
  2.1465 +solid
  2.1466 +0.000 0.000 0.000 edgecolor
  2.1467 +newpath 3267.08 3159.96 moveto
  2.1468 +3275 3167 lineto
  2.1469 +3273.2 3156.56 lineto
  2.1470 +closepath stroke
  2.1471 +grestore
  2.1472 +% create_pair_string
  2.1473 +gsave
  2.1474 +1 setlinewidth
  2.1475 +0.000 0.000 0.000 nodecolor
  2.1476 +3537 2857 80.11 18 ellipse_path stroke
  2.1477 +0.000 0.000 0.000 nodecolor
  2.1478 +grestore
  2.1479 +% fail_msg->create_pair_string
  2.1480 +gsave
  2.1481 +1 setlinewidth
  2.1482 +solid
  2.1483 +0.000 0.000 0.000 edgecolor
  2.1484 +newpath 3069 2695 moveto
  2.1485 +3090 2689 3116 2683 3140 2677 curveto
  2.1486 +3249 2649 3292 2618 3392 2668 curveto
  2.1487 +3461 2701 3506 2786 3526 2830 curveto
  2.1488 +stroke
  2.1489 +0.000 0.000 0.000 edgecolor
  2.1490 +newpath 3522.74 2831.28 moveto
  2.1491 +3530 2839 lineto
  2.1492 +3529.14 2828.44 lineto
  2.1493 +closepath fill
  2.1494 +1 setlinewidth
  2.1495 +solid
  2.1496 +0.000 0.000 0.000 edgecolor
  2.1497 +newpath 3522.74 2831.28 moveto
  2.1498 +3530 2839 lineto
  2.1499 +3529.14 2828.44 lineto
  2.1500 +closepath stroke
  2.1501 +grestore
  2.1502 +% var_table_conf->create_pair_string
  2.1503 +gsave
  2.1504 +1 setlinewidth
  2.1505 +solid
  2.1506 +0.000 0.000 0.000 edgecolor
  2.1507 +newpath 3344 2704 moveto
  2.1508 +3360 2708 3377 2714 3392 2722 curveto
  2.1509 +3444 2750 3491 2800 3516 2831 curveto
  2.1510 +stroke
  2.1511 +0.000 0.000 0.000 edgecolor
  2.1512 +newpath 3513.78 2833.78 moveto
  2.1513 +3523 2839 lineto
  2.1514 +3519.05 2829.17 lineto
  2.1515 +closepath fill
  2.1516 +1 setlinewidth
  2.1517 +solid
  2.1518 +0.000 0.000 0.000 edgecolor
  2.1519 +newpath 3513.78 2833.78 moveto
  2.1520 +3523 2839 lineto
  2.1521 +3519.05 2829.17 lineto
  2.1522 +closepath stroke
  2.1523 +grestore
  2.1524 +% spool_read_data->read_line
  2.1525 +gsave
  2.1526 +1 setlinewidth
  2.1527 +solid
  2.1528 +0.000 0.000 0.000 edgecolor
  2.1529 +newpath 3361 1512 moveto
  2.1530 +3399 1512 3446 1512 3481 1512 curveto
  2.1531 +stroke
  2.1532 +0.000 0.000 0.000 edgecolor
  2.1533 +newpath 3481 1515.5 moveto
  2.1534 +3491 1512 lineto
  2.1535 +3481 1508.5 lineto
  2.1536 +closepath fill
  2.1537 +1 setlinewidth
  2.1538 +solid
  2.1539 +0.000 0.000 0.000 edgecolor
  2.1540 +newpath 3481 1515.5 moveto
  2.1541 +3491 1512 lineto
  2.1542 +3481 1508.5 lineto
  2.1543 +closepath stroke
  2.1544 +grestore
  2.1545 +% create_argv
  2.1546 +gsave
  2.1547 +1 setlinewidth
  2.1548 +0.000 0.000 0.000 nodecolor
  2.1549 +3537 2603 55.79 18 ellipse_path stroke
  2.1550 +0.000 0.000 0.000 nodecolor
  2.1551 +grestore
  2.1552 +% peidopen->create_argv
  2.1553 +gsave
  2.1554 +1 setlinewidth
  2.1555 +solid
  2.1556 +0.000 0.000 0.000 edgecolor
  2.1557 +newpath 3332 2603 moveto
  2.1558 +3371 2603 3427 2603 3470 2603 curveto
  2.1559 +stroke
  2.1560 +0.000 0.000 0.000 edgecolor
  2.1561 +newpath 3470 2606.5 moveto
  2.1562 +3480 2603 lineto
  2.1563 +3470 2599.5 lineto
  2.1564 +closepath fill
  2.1565 +1 setlinewidth
  2.1566 +solid
  2.1567 +0.000 0.000 0.000 edgecolor
  2.1568 +newpath 3470 2606.5 moveto
  2.1569 +3480 2603 lineto
  2.1570 +3470 2599.5 lineto
  2.1571 +closepath stroke
  2.1572 +grestore
  2.1573 +% addr_isequal_parent->addr_isequal
  2.1574 +gsave
  2.1575 +1 setlinewidth
  2.1576 +solid
  2.1577 +0.000 0.000 0.000 edgecolor
  2.1578 +newpath 3365 2757 moveto
  2.1579 +3376 2761 3385 2767 3392 2776 curveto
  2.1580 +3499 2905 3322 3401 3428 3531 curveto
  2.1581 +3438 3542 3452 3550 3467 3554 curveto
  2.1582 +stroke
  2.1583 +0.000 0.000 0.000 edgecolor
  2.1584 +newpath 3466.51 3557.47 moveto
  2.1585 +3477 3556 lineto
  2.1586 +3467.88 3550.61 lineto
  2.1587 +closepath fill
  2.1588 +1 setlinewidth
  2.1589 +solid
  2.1590 +0.000 0.000 0.000 edgecolor
  2.1591 +newpath 3466.51 3557.47 moveto
  2.1592 +3477 3556 lineto
  2.1593 +3467.88 3550.61 lineto
  2.1594 +closepath stroke
  2.1595 +grestore
  2.1596 +% var_table_msg->create_pair_string
  2.1597 +gsave
  2.1598 +1 setlinewidth
  2.1599 +solid
  2.1600 +0.000 0.000 0.000 edgecolor
  2.1601 +newpath 3352 2857 moveto
  2.1602 +3381 2857 3415 2857 3446 2857 curveto
  2.1603 +stroke
  2.1604 +0.000 0.000 0.000 edgecolor
  2.1605 +newpath 3446 2860.5 moveto
  2.1606 +3456 2857 lineto
  2.1607 +3446 2853.5 lineto
  2.1608 +closepath fill
  2.1609 +1 setlinewidth
  2.1610 +solid
  2.1611 +0.000 0.000 0.000 edgecolor
  2.1612 +newpath 3446 2860.5 moveto
  2.1613 +3456 2857 lineto
  2.1614 +3446 2853.5 lineto
  2.1615 +closepath stroke
  2.1616 +grestore
  2.1617 +% alarm_on
  2.1618 +gsave
  2.1619 +1 setlinewidth
  2.1620 +0.000 0.000 0.000 nodecolor
  2.1621 +3537 118 46.75 18 ellipse_path stroke
  2.1622 +0.000 0.000 0.000 nodecolor
  2.1623 +grestore
  2.1624 +% read_sockline->alarm_on
  2.1625 +gsave
  2.1626 +1 setlinewidth
  2.1627 +solid
  2.1628 +0.000 0.000 0.000 edgecolor
  2.1629 +newpath 3346 248 moveto
  2.1630 +3362 244 3379 237 3392 226 curveto
  2.1631 +3423 201 3398 171 3428 145 curveto
  2.1632 +3442 133 3462 126 3480 123 curveto
  2.1633 +stroke
  2.1634 +0.000 0.000 0.000 edgecolor
  2.1635 +newpath 3480.88 126.39 moveto
  2.1636 +3490 121 lineto
  2.1637 +3479.51 119.53 lineto
  2.1638 +closepath fill
  2.1639 +1 setlinewidth
  2.1640 +solid
  2.1641 +0.000 0.000 0.000 edgecolor
  2.1642 +newpath 3480.88 126.39 moveto
  2.1643 +3490 121 lineto
  2.1644 +3479.51 119.53 lineto
  2.1645 +closepath stroke
  2.1646 +grestore
  2.1647 +% _read_line
  2.1648 +gsave
  2.1649 +1 setlinewidth
  2.1650 +0.000 0.000 0.000 nodecolor
  2.1651 +3537 280 50.92 18 ellipse_path stroke
  2.1652 +0.000 0.000 0.000 nodecolor
  2.1653 +grestore
  2.1654 +% read_sockline->_read_line
  2.1655 +gsave
  2.1656 +1 setlinewidth
  2.1657 +solid
  2.1658 +0.000 0.000 0.000 edgecolor
  2.1659 +newpath 3344 259 moveto
  2.1660 +3384 264 3438 269 3478 274 curveto
  2.1661 +stroke
  2.1662 +0.000 0.000 0.000 edgecolor
  2.1663 +newpath 3477.7 277.49 moveto
  2.1664 +3488 275 lineto
  2.1665 +3478.4 270.52 lineto
  2.1666 +closepath fill
  2.1667 +1 setlinewidth
  2.1668 +solid
  2.1669 +0.000 0.000 0.000 edgecolor
  2.1670 +newpath 3477.7 277.49 moveto
  2.1671 +3488 275 lineto
  2.1672 +3478.4 270.52 lineto
  2.1673 +closepath stroke
  2.1674 +grestore
  2.1675 +% _read_chug
  2.1676 +gsave
  2.1677 +1 setlinewidth
  2.1678 +0.000 0.000 0.000 nodecolor
  2.1679 +3537 226 56.98 18 ellipse_path stroke
  2.1680 +0.000 0.000 0.000 nodecolor
  2.1681 +grestore
  2.1682 +% read_sockline->_read_chug
  2.1683 +gsave
  2.1684 +1 setlinewidth
  2.1685 +solid
  2.1686 +0.000 0.000 0.000 edgecolor
  2.1687 +newpath 3344 247 moveto
  2.1688 +3383 242 3433 237 3473 233 curveto
  2.1689 +stroke
  2.1690 +0.000 0.000 0.000 edgecolor
  2.1691 +newpath 3473.4 236.48 moveto
  2.1692 +3483 232 lineto
  2.1693 +3472.7 229.51 lineto
  2.1694 +closepath fill
  2.1695 +1 setlinewidth
  2.1696 +solid
  2.1697 +0.000 0.000 0.000 edgecolor
  2.1698 +newpath 3473.4 236.48 moveto
  2.1699 +3483 232 lineto
  2.1700 +3472.7 229.51 lineto
  2.1701 +closepath stroke
  2.1702 +grestore
  2.1703 +% alarm_off
  2.1704 +gsave
  2.1705 +1 setlinewidth
  2.1706 +0.000 0.000 0.000 nodecolor
  2.1707 +3537 172 48.14 18 ellipse_path stroke
  2.1708 +0.000 0.000 0.000 nodecolor
  2.1709 +grestore
  2.1710 +% read_sockline->alarm_off
  2.1711 +gsave
  2.1712 +1 setlinewidth
  2.1713 +solid
  2.1714 +0.000 0.000 0.000 edgecolor
  2.1715 +newpath 3340 244 moveto
  2.1716 +3357 240 3376 234 3392 226 curveto
  2.1717 +3411 218 3410 208 3428 199 curveto
  2.1718 +3445 191 3464 185 3482 181 curveto
  2.1719 +stroke
  2.1720 +0.000 0.000 0.000 edgecolor
  2.1721 +newpath 3482.88 184.39 moveto
  2.1722 +3492 179 lineto
  2.1723 +3481.51 177.53 lineto
  2.1724 +closepath fill
  2.1725 +1 setlinewidth
  2.1726 +solid
  2.1727 +0.000 0.000 0.000 edgecolor
  2.1728 +newpath 3482.88 184.39 moveto
  2.1729 +3492 179 lineto
  2.1730 +3481.51 177.53 lineto
  2.1731 +closepath stroke
  2.1732 +grestore
  2.1733 +% table_find
  2.1734 +gsave
  2.1735 +1 setlinewidth
  2.1736 +0.000 0.000 0.000 nodecolor
  2.1737 +3537 3450 50.03 18 ellipse_path stroke
  2.1738 +0.000 0.000 0.000 nodecolor
  2.1739 +grestore
  2.1740 +% expand->table_find
  2.1741 +gsave
  2.1742 +1 setlinewidth
  2.1743 +solid
  2.1744 +0.000 0.000 0.000 edgecolor
  2.1745 +newpath 3315 3196 moveto
  2.1746 +3339 3206 3370 3221 3392 3241 curveto
  2.1747 +3453 3295 3502 3380 3524 3423 curveto
  2.1748 +stroke
  2.1749 +0.000 0.000 0.000 edgecolor
  2.1750 +newpath 3520.74 3424.28 moveto
  2.1751 +3528 3432 lineto
  2.1752 +3527.14 3421.44 lineto
  2.1753 +closepath fill
  2.1754 +1 setlinewidth
  2.1755 +solid
  2.1756 +0.000 0.000 0.000 edgecolor
  2.1757 +newpath 3520.74 3424.28 moveto
  2.1758 +3528 3432 lineto
  2.1759 +3527.14 3421.44 lineto
  2.1760 +closepath stroke
  2.1761 +grestore
  2.1762 +% deliver
  2.1763 +gsave
  2.1764 +1 setlinewidth
  2.1765 +0.000 0.000 0.000 nodecolor
  2.1766 +771 2220 36.83 18 ellipse_path stroke
  2.1767 +0.000 0.000 0.000 nodecolor
  2.1768 +grestore
  2.1769 +% deliver_msg_list
  2.1770 +gsave
  2.1771 +1 setlinewidth
  2.1772 +0.000 0.000 0.000 nodecolor
  2.1773 +961 2266 73.85 18 ellipse_path stroke
  2.1774 +0.000 0.000 0.000 nodecolor
  2.1775 +grestore
  2.1776 +% deliver->deliver_msg_list
  2.1777 +gsave
  2.1778 +1 setlinewidth
  2.1779 +solid
  2.1780 +0.000 0.000 0.000 edgecolor
  2.1781 +newpath 805 2228 moveto
  2.1782 +830 2234 867 2243 898 2251 curveto
  2.1783 +stroke
  2.1784 +0.000 0.000 0.000 edgecolor
  2.1785 +newpath 897.51 2254.47 moveto
  2.1786 +908 2253 lineto
  2.1787 +898.88 2247.61 lineto
  2.1788 +closepath fill
  2.1789 +1 setlinewidth
  2.1790 +solid
  2.1791 +0.000 0.000 0.000 edgecolor
  2.1792 +newpath 897.51 2254.47 moveto
  2.1793 +908 2253 lineto
  2.1794 +898.88 2247.61 lineto
  2.1795 +closepath stroke
  2.1796 +grestore
  2.1797 +% deliver_msg_list->table_read
  2.1798 +gsave
  2.1799 +1 setlinewidth
  2.1800 +solid
  2.1801 +0.000 0.000 0.000 edgecolor
  2.1802 +newpath 974 2248 moveto
  2.1803 +992 2223 1029 2177 1072 2155 curveto
  2.1804 +1166 2105 1231 2186 1306 2112 curveto
  2.1805 +1366 2052 1317 2006 1342 1926 curveto
  2.1806 +1365 1852 1406 1770 1427 1729 curveto
  2.1807 +stroke
  2.1808 +0.000 0.000 0.000 edgecolor
  2.1809 +newpath 1430.2 1730.44 moveto
  2.1810 +1432 1720 lineto
  2.1811 +1424.08 1727.04 lineto
  2.1812 +closepath fill
  2.1813 +1 setlinewidth
  2.1814 +solid
  2.1815 +0.000 0.000 0.000 edgecolor
  2.1816 +newpath 1430.2 1730.44 moveto
  2.1817 +1432 1720 lineto
  2.1818 +1424.08 1727.04 lineto
  2.1819 +closepath stroke
  2.1820 +grestore
  2.1821 +% deliver_msg_list->create_address_qualified
  2.1822 +gsave
  2.1823 +1 setlinewidth
  2.1824 +solid
  2.1825 +0.000 0.000 0.000 edgecolor
  2.1826 +newpath 964 2248 moveto
  2.1827 +986 2124 1133 1399 1578 1104 curveto
  2.1828 +1723 1008 3012 912 3140 1028 curveto
  2.1829 +3203 1085 3122 1340 3176 1404 curveto
  2.1830 +3180 1408 3184 1412 3189 1415 curveto
  2.1831 +stroke
  2.1832 +0.000 0.000 0.000 edgecolor
  2.1833 +newpath 3187.56 1418.2 moveto
  2.1834 +3198 1420 lineto
  2.1835 +3190.96 1412.08 lineto
  2.1836 +closepath fill
  2.1837 +1 setlinewidth
  2.1838 +solid
  2.1839 +0.000 0.000 0.000 edgecolor
  2.1840 +newpath 3187.56 1418.2 moveto
  2.1841 +3198 1420 lineto
  2.1842 +3190.96 1412.08 lineto
  2.1843 +closepath stroke
  2.1844 +grestore
  2.1845 +% deliver_msg_list->destroy_table
  2.1846 +gsave
  2.1847 +1 setlinewidth
  2.1848 +solid
  2.1849 +0.000 0.000 0.000 edgecolor
  2.1850 +newpath 1013 2279 moveto
  2.1851 +1022 2284 1030 2290 1036 2298 curveto
  2.1852 +1096 2385 1009 3163 1072 3248 curveto
  2.1853 +1185 3396 1685 3475 1868 3509 curveto
  2.1854 +2111 3553 2176 3528 2422 3534 curveto
  2.1855 +2629 3538 2681 3550 2886 3531 curveto
  2.1856 +3001 3519 3041 3540 3140 3484 curveto
  2.1857 +3198 3451 3245 3385 3269 3349 curveto
  2.1858 +stroke
  2.1859 +0.000 0.000 0.000 edgecolor
  2.1860 +newpath 3272.2 3350.44 moveto
  2.1861 +3274 3340 lineto
  2.1862 +3266.08 3347.04 lineto
  2.1863 +closepath fill
  2.1864 +1 setlinewidth
  2.1865 +solid
  2.1866 +0.000 0.000 0.000 edgecolor
  2.1867 +newpath 3272.2 3350.44 moveto
  2.1868 +3274 3340 lineto
  2.1869 +3266.08 3347.04 lineto
  2.1870 +closepath stroke
  2.1871 +grestore
  2.1872 +% rcptlist_with_one_of_hostlist
  2.1873 +gsave
  2.1874 +1 setlinewidth
  2.1875 +0.000 0.000 0.000 nodecolor
  2.1876 +1993 2704 125.08 18 ellipse_path stroke
  2.1877 +0.000 0.000 0.000 nodecolor
  2.1878 +grestore
  2.1879 +% deliver_msg_list->rcptlist_with_one_of_hostlist
  2.1880 +gsave
  2.1881 +1 setlinewidth
  2.1882 +solid
  2.1883 +0.000 0.000 0.000 edgecolor
  2.1884 +newpath 1013 2279 moveto
  2.1885 +1022 2284 1030 2290 1036 2298 curveto
  2.1886 +1084 2362 1014 2603 1072 2659 curveto
  2.1887 +1186 2766 1663 2736 1882 2716 curveto
  2.1888 +stroke
  2.1889 +0.000 0.000 0.000 edgecolor
  2.1890 +newpath 1882.4 2719.48 moveto
  2.1891 +1892 2715 lineto
  2.1892 +1881.7 2712.51 lineto
  2.1893 +closepath fill
  2.1894 +1 setlinewidth
  2.1895 +solid
  2.1896 +0.000 0.000 0.000 edgecolor
  2.1897 +newpath 1882.4 2719.48 moveto
  2.1898 +1892 2715 lineto
  2.1899 +1881.7 2712.51 lineto
  2.1900 +closepath stroke
  2.1901 +grestore
  2.1902 +% spool_unlock
  2.1903 +gsave
  2.1904 +1 setlinewidth
  2.1905 +0.000 0.000 0.000 nodecolor
  2.1906 +1189 879 64.12 18 ellipse_path stroke
  2.1907 +0.000 0.000 0.000 nodecolor
  2.1908 +grestore
  2.1909 +% deliver_msg_list->spool_unlock
  2.1910 +gsave
  2.1911 +1 setlinewidth
  2.1912 +solid
  2.1913 +0.000 0.000 0.000 edgecolor
  2.1914 +newpath 962 2248 moveto
  2.1915 +970 2092 1031 981 1072 925 curveto
  2.1916 +1085 909 1104 898 1123 891 curveto
  2.1917 +stroke
  2.1918 +0.000 0.000 0.000 edgecolor
  2.1919 +newpath 1124.43 894.23 moveto
  2.1920 +1133 888 lineto
  2.1921 +1122.42 887.52 lineto
  2.1922 +closepath fill
  2.1923 +1 setlinewidth
  2.1924 +solid
  2.1925 +0.000 0.000 0.000 edgecolor
  2.1926 +newpath 1124.43 894.23 moveto
  2.1927 +1133 888 lineto
  2.1928 +1122.42 887.52 lineto
  2.1929 +closepath stroke
  2.1930 +grestore
  2.1931 +% read_route_list
  2.1932 +gsave
  2.1933 +1 setlinewidth
  2.1934 +0.000 0.000 0.000 nodecolor
  2.1935 +1442 2052 68.79 18 ellipse_path stroke
  2.1936 +0.000 0.000 0.000 nodecolor
  2.1937 +grestore
  2.1938 +% deliver_msg_list->read_route_list
  2.1939 +gsave
  2.1940 +1 setlinewidth
  2.1941 +solid
  2.1942 +0.000 0.000 0.000 edgecolor
  2.1943 +newpath 1027 2257 moveto
  2.1944 +1120 2245 1283 2222 1306 2209 curveto
  2.1945 +1362 2178 1405 2115 1427 2079 curveto
  2.1946 +stroke
  2.1947 +0.000 0.000 0.000 edgecolor
  2.1948 +newpath 1430.2 2080.44 moveto
  2.1949 +1432 2070 lineto
  2.1950 +1424.08 2077.04 lineto
  2.1951 +closepath fill
  2.1952 +1 setlinewidth
  2.1953 +solid
  2.1954 +0.000 0.000 0.000 edgecolor
  2.1955 +newpath 1430.2 2080.44 moveto
  2.1956 +1432 2070 lineto
  2.1957 +1424.08 2077.04 lineto
  2.1958 +closepath stroke
  2.1959 +grestore
  2.1960 +% destroy_route_list
  2.1961 +gsave
  2.1962 +1 setlinewidth
  2.1963 +0.000 0.000 0.000 nodecolor
  2.1964 +1442 2647 80.8 18 ellipse_path stroke
  2.1965 +0.000 0.000 0.000 nodecolor
  2.1966 +grestore
  2.1967 +% deliver_msg_list->destroy_route_list
  2.1968 +gsave
  2.1969 +1 setlinewidth
  2.1970 +solid
  2.1971 +0.000 0.000 0.000 edgecolor
  2.1972 +newpath 1013 2279 moveto
  2.1973 +1022 2284 1030 2290 1036 2298 curveto
  2.1974 +1079 2354 1022 2565 1072 2615 curveto
  2.1975 +1154 2694 1297 2679 1379 2663 curveto
  2.1976 +stroke
  2.1977 +0.000 0.000 0.000 edgecolor
  2.1978 +newpath 1379.88 2666.39 moveto
  2.1979 +1389 2661 lineto
  2.1980 +1378.51 2659.53 lineto
  2.1981 +closepath fill
  2.1982 +1 setlinewidth
  2.1983 +solid
  2.1984 +0.000 0.000 0.000 edgecolor
  2.1985 +newpath 1379.88 2666.39 moveto
  2.1986 +1389 2661 lineto
  2.1987 +1378.51 2659.53 lineto
  2.1988 +closepath stroke
  2.1989 +grestore
  2.1990 +% spool_lock
  2.1991 +gsave
  2.1992 +1 setlinewidth
  2.1993 +0.000 0.000 0.000 nodecolor
  2.1994 +1189 952 54.9 18 ellipse_path stroke
  2.1995 +0.000 0.000 0.000 nodecolor
  2.1996 +grestore
  2.1997 +% deliver_msg_list->spool_lock
  2.1998 +gsave
  2.1999 +1 setlinewidth
  2.2000 +solid
  2.2001 +0.000 0.000 0.000 edgecolor
  2.2002 +newpath 964 2248 moveto
  2.2003 +989 2105 1153 1157 1184 980 curveto
  2.2004 +stroke
  2.2005 +0.000 0.000 0.000 edgecolor
  2.2006 +newpath 1187.47 980.49 moveto
  2.2007 +1186 970 lineto
  2.2008 +1180.61 979.12 lineto
  2.2009 +closepath fill
  2.2010 +1 setlinewidth
  2.2011 +solid
  2.2012 +0.000 0.000 0.000 edgecolor
  2.2013 +newpath 1187.47 980.49 moveto
  2.2014 +1186 970 lineto
  2.2015 +1180.61 979.12 lineto
  2.2016 +closepath stroke
  2.2017 +grestore
  2.2018 +% alias_expand
  2.2019 +gsave
  2.2020 +1 setlinewidth
  2.2021 +0.000 0.000 0.000 nodecolor
  2.2022 +2769 3436 61.15 18 ellipse_path stroke
  2.2023 +0.000 0.000 0.000 nodecolor
  2.2024 +grestore
  2.2025 +% deliver_msg_list->alias_expand
  2.2026 +gsave
  2.2027 +1 setlinewidth
  2.2028 +solid
  2.2029 +0.000 0.000 0.000 edgecolor
  2.2030 +newpath 1013 2279 moveto
  2.2031 +1022 2284 1030 2290 1036 2298 curveto
  2.2032 +1093 2380 1005 3123 1072 3198 curveto
  2.2033 +1184 3321 2393 3411 2699 3431 curveto
  2.2034 +stroke
  2.2035 +0.000 0.000 0.000 edgecolor
  2.2036 +newpath 2698.7 3434.49 moveto
  2.2037 +2709 3432 lineto
  2.2038 +2699.4 3427.52 lineto
  2.2039 +closepath fill
  2.2040 +1 setlinewidth
  2.2041 +solid
  2.2042 +0.000 0.000 0.000 edgecolor
  2.2043 +newpath 2698.7 3434.49 moveto
  2.2044 +2709 3432 lineto
  2.2045 +2699.4 3427.52 lineto
  2.2046 +closepath stroke
  2.2047 +grestore
  2.2048 +% create_msg_out_list
  2.2049 +gsave
  2.2050 +1 setlinewidth
  2.2051 +0.000 0.000 0.000 nodecolor
  2.2052 +1189 2892 89.14 18 ellipse_path stroke
  2.2053 +0.000 0.000 0.000 nodecolor
  2.2054 +grestore
  2.2055 +% deliver_msg_list->create_msg_out_list
  2.2056 +gsave
  2.2057 +1 setlinewidth
  2.2058 +solid
  2.2059 +0.000 0.000 0.000 edgecolor
  2.2060 +newpath 1013 2279 moveto
  2.2061 +1022 2284 1030 2290 1036 2298 curveto
  2.2062 +1095 2378 1036 2652 1072 2745 curveto
  2.2063 +1092 2794 1134 2840 1162 2867 curveto
  2.2064 +stroke
  2.2065 +0.000 0.000 0.000 edgecolor
  2.2066 +newpath 1159.45 2869.4 moveto
  2.2067 +1169 2874 lineto
  2.2068 +1164.4 2864.45 lineto
  2.2069 +closepath fill
  2.2070 +1 setlinewidth
  2.2071 +solid
  2.2072 +0.000 0.000 0.000 edgecolor
  2.2073 +newpath 1159.45 2869.4 moveto
  2.2074 +1169 2874 lineto
  2.2075 +1164.4 2864.45 lineto
  2.2076 +closepath stroke
  2.2077 +grestore
  2.2078 +% rcptlist_with_addr_is_local
  2.2079 +gsave
  2.2080 +1 setlinewidth
  2.2081 +0.000 0.000 0.000 nodecolor
  2.2082 +1189 3171 116.24 18 ellipse_path stroke
  2.2083 +0.000 0.000 0.000 nodecolor
  2.2084 +grestore
  2.2085 +% deliver_msg_list->rcptlist_with_addr_is_local
  2.2086 +gsave
  2.2087 +1 setlinewidth
  2.2088 +solid
  2.2089 +0.000 0.000 0.000 edgecolor
  2.2090 +newpath 1013 2279 moveto
  2.2091 +1022 2284 1030 2290 1036 2298 curveto
  2.2092 +1076 2354 1056 2851 1072 2919 curveto
  2.2093 +1094 3006 1146 3099 1173 3144 curveto
  2.2094 +stroke
  2.2095 +0.000 0.000 0.000 edgecolor
  2.2096 +newpath 1170.08 3145.96 moveto
  2.2097 +1178 3153 lineto
  2.2098 +1176.2 3142.56 lineto
  2.2099 +closepath fill
  2.2100 +1 setlinewidth
  2.2101 +solid
  2.2102 +0.000 0.000 0.000 edgecolor
  2.2103 +newpath 1170.08 3145.96 moveto
  2.2104 +1178 3153 lineto
  2.2105 +1176.2 3142.56 lineto
  2.2106 +closepath stroke
  2.2107 +grestore
  2.2108 +% deliver_msgout_list_online
  2.2109 +gsave
  2.2110 +1 setlinewidth
  2.2111 +0.000 0.000 0.000 nodecolor
  2.2112 +1189 2316 114.15 18 ellipse_path stroke
  2.2113 +0.000 0.000 0.000 nodecolor
  2.2114 +grestore
  2.2115 +% deliver_msg_list->deliver_msgout_list_online
  2.2116 +gsave
  2.2117 +1 setlinewidth
  2.2118 +solid
  2.2119 +0.000 0.000 0.000 edgecolor
  2.2120 +newpath 1016 2278 moveto
  2.2121 +1045 2284 1081 2292 1112 2299 curveto
  2.2122 +stroke
  2.2123 +0.000 0.000 0.000 edgecolor
  2.2124 +newpath 1111.51 2302.47 moveto
  2.2125 +1122 2301 lineto
  2.2126 +1112.88 2295.61 lineto
  2.2127 +closepath fill
  2.2128 +1 setlinewidth
  2.2129 +solid
  2.2130 +0.000 0.000 0.000 edgecolor
  2.2131 +newpath 1111.51 2302.47 moveto
  2.2132 +1122 2301 lineto
  2.2133 +1112.88 2295.61 lineto
  2.2134 +closepath stroke
  2.2135 +grestore
  2.2136 +% clone_msg_out
  2.2137 +gsave
  2.2138 +1 setlinewidth
  2.2139 +0.000 0.000 0.000 nodecolor
  2.2140 +1705 2574 70.88 18 ellipse_path stroke
  2.2141 +0.000 0.000 0.000 nodecolor
  2.2142 +grestore
  2.2143 +% deliver_msg_list->clone_msg_out
  2.2144 +gsave
  2.2145 +1 setlinewidth
  2.2146 +solid
  2.2147 +0.000 0.000 0.000 edgecolor
  2.2148 +newpath 1009 2280 moveto
  2.2149 +1019 2284 1028 2290 1036 2298 curveto
  2.2150 +1064 2324 1044 2349 1072 2375 curveto
  2.2151 +1232 2517 1494 2558 1625 2569 curveto
  2.2152 +stroke
  2.2153 +0.000 0.000 0.000 edgecolor
  2.2154 +newpath 1624.7 2572.49 moveto
  2.2155 +1635 2570 lineto
  2.2156 +1625.4 2565.52 lineto
  2.2157 +closepath fill
  2.2158 +1 setlinewidth
  2.2159 +solid
  2.2160 +0.000 0.000 0.000 edgecolor
  2.2161 +newpath 1624.7 2572.49 moveto
  2.2162 +1635 2570 lineto
  2.2163 +1625.4 2565.52 lineto
  2.2164 +closepath stroke
  2.2165 +grestore
  2.2166 +% deliver_route_msg_list
  2.2167 +gsave
  2.2168 +1 setlinewidth
  2.2169 +0.000 0.000 0.000 nodecolor
  2.2170 +1442 2366 98.87 18 ellipse_path stroke
  2.2171 +0.000 0.000 0.000 nodecolor
  2.2172 +grestore
  2.2173 +% deliver_msg_list->deliver_route_msg_list
  2.2174 +gsave
  2.2175 +1 setlinewidth
  2.2176 +solid
  2.2177 +0.000 0.000 0.000 edgecolor
  2.2178 +newpath 1005 2280 moveto
  2.2179 +1016 2285 1027 2291 1036 2298 curveto
  2.2180 +1057 2313 1050 2331 1072 2343 curveto
  2.2181 +1161 2389 1279 2387 1358 2379 curveto
  2.2182 +stroke
  2.2183 +0.000 0.000 0.000 edgecolor
  2.2184 +newpath 1358.4 2382.48 moveto
  2.2185 +1368 2378 lineto
  2.2186 +1357.7 2375.51 lineto
  2.2187 +closepath fill
  2.2188 +1 setlinewidth
  2.2189 +solid
  2.2190 +0.000 0.000 0.000 edgecolor
  2.2191 +newpath 1358.4 2382.48 moveto
  2.2192 +1368 2378 lineto
  2.2193 +1357.7 2375.51 lineto
  2.2194 +closepath stroke
  2.2195 +grestore
  2.2196 +% destroy_msg_out_list
  2.2197 +gsave
  2.2198 +1 setlinewidth
  2.2199 +0.000 0.000 0.000 nodecolor
  2.2200 +1705 2266 95.89 18 ellipse_path stroke
  2.2201 +0.000 0.000 0.000 nodecolor
  2.2202 +grestore
  2.2203 +% deliver_msg_list->destroy_msg_out_list
  2.2204 +gsave
  2.2205 +1 setlinewidth
  2.2206 +solid
  2.2207 +0.000 0.000 0.000 edgecolor
  2.2208 +newpath 1036 2266 moveto
  2.2209 +1168 2266 1446 2266 1599 2266 curveto
  2.2210 +stroke
  2.2211 +0.000 0.000 0.000 edgecolor
  2.2212 +newpath 1599 2269.5 moveto
  2.2213 +1609 2266 lineto
  2.2214 +1599 2262.5 lineto
  2.2215 +closepath fill
  2.2216 +1 setlinewidth
  2.2217 +solid
  2.2218 +0.000 0.000 0.000 edgecolor
  2.2219 +newpath 1599 2269.5 moveto
  2.2220 +1609 2266 lineto
  2.2221 +1599 2262.5 lineto
  2.2222 +closepath stroke
  2.2223 +grestore
  2.2224 +% deliver_local
  2.2225 +gsave
  2.2226 +1 setlinewidth
  2.2227 +0.000 0.000 0.000 nodecolor
  2.2228 +2270 2691 59.96 18 ellipse_path stroke
  2.2229 +0.000 0.000 0.000 nodecolor
  2.2230 +grestore
  2.2231 +% deliver_msg_list->deliver_local
  2.2232 +gsave
  2.2233 +1 setlinewidth
  2.2234 +solid
  2.2235 +0.000 0.000 0.000 edgecolor
  2.2236 +newpath 1011 2279 moveto
  2.2237 +1021 2284 1029 2290 1036 2298 curveto
  2.2238 +1081 2350 1027 2397 1072 2449 curveto
  2.2239 +1157 2545 1220 2513 1342 2550 curveto
  2.2240 +1445 2580 1473 2582 1578 2601 curveto
  2.2241 +1807 2640 2079 2670 2203 2684 curveto
  2.2242 +stroke
  2.2243 +0.000 0.000 0.000 edgecolor
  2.2244 +newpath 2202.7 2687.49 moveto
  2.2245 +2213 2685 lineto
  2.2246 +2203.4 2680.52 lineto
  2.2247 +closepath fill
  2.2248 +1 setlinewidth
  2.2249 +solid
  2.2250 +0.000 0.000 0.000 edgecolor
  2.2251 +newpath 2202.7 2687.49 moveto
  2.2252 +2213 2685 lineto
  2.2253 +2203.4 2680.52 lineto
  2.2254 +closepath stroke
  2.2255 +grestore
  2.2256 +% create_local_route
  2.2257 +gsave
  2.2258 +1 setlinewidth
  2.2259 +0.000 0.000 0.000 nodecolor
  2.2260 +1189 2182 82.19 18 ellipse_path stroke
  2.2261 +0.000 0.000 0.000 nodecolor
  2.2262 +grestore
  2.2263 +% deliver_msg_list->create_local_route
  2.2264 +gsave
  2.2265 +1 setlinewidth
  2.2266 +solid
  2.2267 +0.000 0.000 0.000 edgecolor
  2.2268 +newpath 992 2249 moveto
  2.2269 +1014 2238 1044 2224 1072 2214 curveto
  2.2270 +1089 2208 1106 2202 1123 2198 curveto
  2.2271 +stroke
  2.2272 +0.000 0.000 0.000 edgecolor
  2.2273 +newpath 1124.43 2201.23 moveto
  2.2274 +1133 2195 lineto
  2.2275 +1122.42 2194.52 lineto
  2.2276 +closepath fill
  2.2277 +1 setlinewidth
  2.2278 +solid
  2.2279 +0.000 0.000 0.000 edgecolor
  2.2280 +newpath 1124.43 2201.23 moveto
  2.2281 +1133 2195 lineto
  2.2282 +1122.42 2194.52 lineto
  2.2283 +closepath stroke
  2.2284 +grestore
  2.2285 +% accept_message_prepare
  2.2286 +gsave
  2.2287 +1 setlinewidth
  2.2288 +0.000 0.000 0.000 nodecolor
  2.2289 +3031 456 109.1 18 ellipse_path stroke
  2.2290 +0.000 0.000 0.000 nodecolor
  2.2291 +grestore
  2.2292 +% accept_message_prepare->create_address
  2.2293 +gsave
  2.2294 +1 setlinewidth
  2.2295 +solid
  2.2296 +0.000 0.000 0.000 edgecolor
  2.2297 +newpath 3111 468 moveto
  2.2298 +3122 473 3132 479 3140 488 curveto
  2.2299 +3199 553 3115 619 3176 680 curveto
  2.2300 +3245 750 3323 655 3392 723 curveto
  2.2301 +3488 817 3527 1259 3535 1376 curveto
  2.2302 +stroke
  2.2303 +0.000 0.000 0.000 edgecolor
  2.2304 +newpath 3531.52 1376.4 moveto
  2.2305 +3536 1386 lineto
  2.2306 +3538.49 1375.7 lineto
  2.2307 +closepath fill
  2.2308 +1 setlinewidth
  2.2309 +solid
  2.2310 +0.000 0.000 0.000 edgecolor
  2.2311 +newpath 3531.52 1376.4 moveto
  2.2312 +3536 1386 lineto
  2.2313 +3538.49 1375.7 lineto
  2.2314 +closepath stroke
  2.2315 +grestore
  2.2316 +% accept_message_prepare->create_address_qualified
  2.2317 +gsave
  2.2318 +1 setlinewidth
  2.2319 +solid
  2.2320 +0.000 0.000 0.000 edgecolor
  2.2321 +newpath 3043 474 moveto
  2.2322 +3067 510 3120 594 3140 673 curveto
  2.2323 +3161 752 3125 1341 3176 1404 curveto
  2.2324 +3180 1408 3184 1412 3188 1415 curveto
  2.2325 +stroke
  2.2326 +0.000 0.000 0.000 edgecolor
  2.2327 +newpath 3186.56 1418.2 moveto
  2.2328 +3197 1420 lineto
  2.2329 +3189.96 1412.08 lineto
  2.2330 +closepath fill
  2.2331 +1 setlinewidth
  2.2332 +solid
  2.2333 +0.000 0.000 0.000 edgecolor
  2.2334 +newpath 3186.56 1418.2 moveto
  2.2335 +3197 1420 lineto
  2.2336 +3189.96 1412.08 lineto
  2.2337 +closepath stroke
  2.2338 +grestore
  2.2339 +% accept_message_prepare->destroy_address
  2.2340 +gsave
  2.2341 +1 setlinewidth
  2.2342 +solid
  2.2343 +0.000 0.000 0.000 edgecolor
  2.2344 +newpath 3044 474 moveto
  2.2345 +3068 510 3121 594 3140 673 curveto
  2.2346 +3174 811 3102 3091 3176 3212 curveto
  2.2347 +3187 3230 3206 3242 3225 3251 curveto
  2.2348 +stroke
  2.2349 +0.000 0.000 0.000 edgecolor
  2.2350 +newpath 3223.44 3254.14 moveto
  2.2351 +3234 3255 lineto
  2.2352 +3226.28 3247.74 lineto
  2.2353 +closepath fill
  2.2354 +1 setlinewidth
  2.2355 +solid
  2.2356 +0.000 0.000 0.000 edgecolor
  2.2357 +newpath 3223.44 3254.14 moveto
  2.2358 +3234 3255 lineto
  2.2359 +3226.28 3247.74 lineto
  2.2360 +closepath stroke
  2.2361 +grestore
  2.2362 +% accept_message_prepare->addr_string
  2.2363 +gsave
  2.2364 +1 setlinewidth
  2.2365 +solid
  2.2366 +0.000 0.000 0.000 edgecolor
  2.2367 +newpath 3073 473 moveto
  2.2368 +3097 484 3125 502 3140 526 curveto
  2.2369 +3204 626 3100 700 3176 789 curveto
  2.2370 +3188 802 3204 810 3220 815 curveto
  2.2371 +stroke
  2.2372 +0.000 0.000 0.000 edgecolor
  2.2373 +newpath 3219.51 818.47 moveto
  2.2374 +3230 817 lineto
  2.2375 +3220.88 811.61 lineto
  2.2376 +closepath fill
  2.2377 +1 setlinewidth
  2.2378 +solid
  2.2379 +0.000 0.000 0.000 edgecolor
  2.2380 +newpath 3219.51 818.47 moveto
  2.2381 +3230 817 lineto
  2.2382 +3220.88 811.61 lineto
  2.2383 +closepath stroke
  2.2384 +grestore
  2.2385 +% string_base62
  2.2386 +gsave
  2.2387 +1 setlinewidth
  2.2388 +0.000 0.000 0.000 nodecolor
  2.2389 +3284 545 64.12 18 ellipse_path stroke
  2.2390 +0.000 0.000 0.000 nodecolor
  2.2391 +grestore
  2.2392 +% accept_message_prepare->string_base62
  2.2393 +gsave
  2.2394 +1 setlinewidth
  2.2395 +solid
  2.2396 +0.000 0.000 0.000 edgecolor
  2.2397 +newpath 3096 471 moveto
  2.2398 +3111 475 3126 481 3140 488 curveto
  2.2399 +3159 498 3158 509 3176 518 curveto
  2.2400 +3189 524 3204 530 3218 534 curveto
  2.2401 +stroke
  2.2402 +0.000 0.000 0.000 edgecolor
  2.2403 +newpath 3217.51 537.47 moveto
  2.2404 +3228 536 lineto
  2.2405 +3218.88 530.61 lineto
  2.2406 +closepath fill
  2.2407 +1 setlinewidth
  2.2408 +solid
  2.2409 +0.000 0.000 0.000 edgecolor
  2.2410 +newpath 3217.51 537.47 moveto
  2.2411 +3228 536 lineto
  2.2412 +3218.88 530.61 lineto
  2.2413 +closepath stroke
  2.2414 +grestore
  2.2415 +% _g_list_addr_isequal
  2.2416 +gsave
  2.2417 +1 setlinewidth
  2.2418 +0.000 0.000 0.000 nodecolor
  2.2419 +3284 491 91.22 18 ellipse_path stroke
  2.2420 +0.000 0.000 0.000 nodecolor
  2.2421 +grestore
  2.2422 +% accept_message_prepare->_g_list_addr_isequal
  2.2423 +gsave
  2.2424 +1 setlinewidth
  2.2425 +dotted
  2.2426 +0.000 0.000 0.000 edgecolor
  2.2427 +newpath 3115 468 moveto
  2.2428 +3142 472 3172 476 3199 480 curveto
  2.2429 +stroke
  2.2430 +0.000 0.000 0.000 edgecolor
  2.2431 +newpath 3198.7 483.49 moveto
  2.2432 +3209 481 lineto
  2.2433 +3199.4 476.52 lineto
  2.2434 +closepath fill
  2.2435 +1 setlinewidth
  2.2436 +solid
  2.2437 +0.000 0.000 0.000 edgecolor
  2.2438 +newpath 3198.7 483.49 moveto
  2.2439 +3209 481 lineto
  2.2440 +3199.4 476.52 lineto
  2.2441 +closepath stroke
  2.2442 +grestore
  2.2443 +% find_header
  2.2444 +gsave
  2.2445 +1 setlinewidth
  2.2446 +0.000 0.000 0.000 nodecolor
  2.2447 +3284 437 56.98 18 ellipse_path stroke
  2.2448 +0.000 0.000 0.000 nodecolor
  2.2449 +grestore
  2.2450 +% accept_message_prepare->find_header
  2.2451 +gsave
  2.2452 +1 setlinewidth
  2.2453 +solid
  2.2454 +0.000 0.000 0.000 edgecolor
  2.2455 +newpath 3130 449 moveto
  2.2456 +3159 446 3191 444 3218 442 curveto
  2.2457 +stroke
  2.2458 +0.000 0.000 0.000 edgecolor
  2.2459 +newpath 3218.4 445.48 moveto
  2.2460 +3228 441 lineto
  2.2461 +3217.7 438.51 lineto
  2.2462 +closepath fill
  2.2463 +1 setlinewidth
  2.2464 +solid
  2.2465 +0.000 0.000 0.000 edgecolor
  2.2466 +newpath 3218.4 445.48 moveto
  2.2467 +3228 441 lineto
  2.2468 +3217.7 438.51 lineto
  2.2469 +closepath stroke
  2.2470 +grestore
  2.2471 +% addr_list_append_rfc822
  2.2472 +gsave
  2.2473 +1 setlinewidth
  2.2474 +0.000 0.000 0.000 nodecolor
  2.2475 +3537 1566 109.1 18 ellipse_path stroke
  2.2476 +0.000 0.000 0.000 nodecolor
  2.2477 +grestore
  2.2478 +% accept_message_prepare->addr_list_append_rfc822
  2.2479 +gsave
  2.2480 +1 setlinewidth
  2.2481 +solid
  2.2482 +0.000 0.000 0.000 edgecolor
  2.2483 +newpath 3072 473 moveto
  2.2484 +3096 484 3124 502 3140 526 curveto
  2.2485 +3189 598 3121 651 3176 716 curveto
  2.2486 +3243 794 3332 712 3392 794 curveto
  2.2487 +3442 861 3376 1474 3428 1539 curveto
  2.2488 +3432 1543 3436 1547 3440 1550 curveto
  2.2489 +stroke
  2.2490 +0.000 0.000 0.000 edgecolor
  2.2491 +newpath 3438.56 1553.2 moveto
  2.2492 +3449 1555 lineto
  2.2493 +3441.96 1547.08 lineto
  2.2494 +closepath fill
  2.2495 +1 setlinewidth
  2.2496 +solid
  2.2497 +0.000 0.000 0.000 edgecolor
  2.2498 +newpath 3438.56 1553.2 moveto
  2.2499 +3449 1555 lineto
  2.2500 +3441.96 1547.08 lineto
  2.2501 +closepath stroke
  2.2502 +grestore
  2.2503 +% rec_timestamp
  2.2504 +gsave
  2.2505 +1 setlinewidth
  2.2506 +0.000 0.000 0.000 nodecolor
  2.2507 +3284 653 68.1 18 ellipse_path stroke
  2.2508 +0.000 0.000 0.000 nodecolor
  2.2509 +grestore
  2.2510 +% accept_message_prepare->rec_timestamp
  2.2511 +gsave
  2.2512 +1 setlinewidth
  2.2513 +solid
  2.2514 +0.000 0.000 0.000 edgecolor
  2.2515 +newpath 3110 468 moveto
  2.2516 +3121 473 3132 479 3140 488 curveto
  2.2517 +3185 534 3131 582 3176 626 curveto
  2.2518 +3185 635 3197 641 3208 645 curveto
  2.2519 +stroke
  2.2520 +0.000 0.000 0.000 edgecolor
  2.2521 +newpath 3207.42 648.48 moveto
  2.2522 +3218 648 lineto
  2.2523 +3209.43 641.77 lineto
  2.2524 +closepath fill
  2.2525 +1 setlinewidth
  2.2526 +solid
  2.2527 +0.000 0.000 0.000 edgecolor
  2.2528 +newpath 3207.42 648.48 moveto
  2.2529 +3218 648 lineto
  2.2530 +3209.43 641.77 lineto
  2.2531 +closepath stroke
  2.2532 +grestore
  2.2533 +% header_fold
  2.2534 +gsave
  2.2535 +1 setlinewidth
  2.2536 +0.000 0.000 0.000 nodecolor
  2.2537 +3284 599 57.17 18 ellipse_path stroke
  2.2538 +0.000 0.000 0.000 nodecolor
  2.2539 +grestore
  2.2540 +% accept_message_prepare->header_fold
  2.2541 +gsave
  2.2542 +1 setlinewidth
  2.2543 +solid
  2.2544 +0.000 0.000 0.000 edgecolor
  2.2545 +newpath 3107 469 moveto
  2.2546 +3119 474 3131 480 3140 488 curveto
  2.2547 +3171 515 3146 546 3176 572 curveto
  2.2548 +3187 583 3203 589 3218 593 curveto
  2.2549 +stroke
  2.2550 +0.000 0.000 0.000 edgecolor
  2.2551 +newpath 3217.51 596.47 moveto
  2.2552 +3228 595 lineto
  2.2553 +3218.88 589.61 lineto
  2.2554 +closepath fill
  2.2555 +1 setlinewidth
  2.2556 +solid
  2.2557 +0.000 0.000 0.000 edgecolor
  2.2558 +newpath 3217.51 596.47 moveto
  2.2559 +3228 595 lineto
  2.2560 +3218.88 589.61 lineto
  2.2561 +closepath stroke
  2.2562 +grestore
  2.2563 +% create_header
  2.2564 +gsave
  2.2565 +1 setlinewidth
  2.2566 +0.000 0.000 0.000 nodecolor
  2.2567 +3284 1377 64.12 18 ellipse_path stroke
  2.2568 +0.000 0.000 0.000 nodecolor
  2.2569 +grestore
  2.2570 +% accept_message_prepare->create_header
  2.2571 +gsave
  2.2572 +1 setlinewidth
  2.2573 +solid
  2.2574 +0.000 0.000 0.000 edgecolor
  2.2575 +newpath 3042 474 moveto
  2.2576 +3064 510 3113 596 3140 673 curveto
  2.2577 +3141 676 3252 1218 3278 1349 curveto
  2.2578 +stroke
  2.2579 +0.000 0.000 0.000 edgecolor
  2.2580 +newpath 3274.61 1349.88 moveto
  2.2581 +3280 1359 lineto
  2.2582 +3281.47 1348.51 lineto
  2.2583 +closepath fill
  2.2584 +1 setlinewidth
  2.2585 +solid
  2.2586 +0.000 0.000 0.000 edgecolor
  2.2587 +newpath 3274.61 1349.88 moveto
  2.2588 +3280 1359 lineto
  2.2589 +3281.47 1348.51 lineto
  2.2590 +closepath stroke
  2.2591 +grestore
  2.2592 +% destroy_header
  2.2593 +gsave
  2.2594 +1 setlinewidth
  2.2595 +0.000 0.000 0.000 nodecolor
  2.2596 +3284 1826 70.88 18 ellipse_path stroke
  2.2597 +0.000 0.000 0.000 nodecolor
  2.2598 +grestore
  2.2599 +% accept_message_prepare->destroy_header
  2.2600 +gsave
  2.2601 +1 setlinewidth
  2.2602 +solid
  2.2603 +0.000 0.000 0.000 edgecolor
  2.2604 +newpath 3044 474 moveto
  2.2605 +3068 510 3120 594 3140 673 curveto
  2.2606 +3169 787 3129 1616 3176 1723 curveto
  2.2607 +3191 1757 3223 1785 3249 1803 curveto
  2.2608 +stroke
  2.2609 +0.000 0.000 0.000 edgecolor
  2.2610 +newpath 3246.9 1805.8 moveto
  2.2611 +3257 1809 lineto
  2.2612 +3251.1 1800.2 lineto
  2.2613 +closepath fill
  2.2614 +1 setlinewidth
  2.2615 +solid
  2.2616 +0.000 0.000 0.000 edgecolor
  2.2617 +newpath 3246.9 1805.8 moveto
  2.2618 +3257 1809 lineto
  2.2619 +3251.1 1800.2 lineto
  2.2620 +closepath stroke
  2.2621 +grestore
  2.2622 +% addr_list_append_rfc822->_create_address
  2.2623 +gsave
  2.2624 +1 setlinewidth
  2.2625 +solid
  2.2626 +0.000 0.000 0.000 edgecolor
  2.2627 +newpath 3646 1566 moveto
  2.2628 +3670 1566 3696 1566 3720 1566 curveto
  2.2629 +stroke
  2.2630 +0.000 0.000 0.000 edgecolor
  2.2631 +newpath 3720 1569.5 moveto
  2.2632 +3730 1566 lineto
  2.2633 +3720 1562.5 lineto
  2.2634 +closepath fill
  2.2635 +1 setlinewidth
  2.2636 +solid
  2.2637 +0.000 0.000 0.000 edgecolor
  2.2638 +newpath 3720 1569.5 moveto
  2.2639 +3730 1566 lineto
  2.2640 +3720 1562.5 lineto
  2.2641 +closepath stroke
  2.2642 +grestore
  2.2643 +% pipe_out
  2.2644 +gsave
  2.2645 +1 setlinewidth
  2.2646 +0.000 0.000 0.000 nodecolor
  2.2647 +2519 2764 45.86 18 ellipse_path stroke
  2.2648 +0.000 0.000 0.000 nodecolor
  2.2649 +grestore
  2.2650 +% pipe_out->peidopen
  2.2651 +gsave
  2.2652 +1 setlinewidth
  2.2653 +solid
  2.2654 +0.000 0.000 0.000 edgecolor
  2.2655 +newpath 2557 2754 moveto
  2.2656 +2575 2749 2597 2743 2616 2737 curveto
  2.2657 +2755 2692 2780 2652 2922 2623 curveto
  2.2658 +3028 2601 3154 2599 3227 2601 curveto
  2.2659 +stroke
  2.2660 +0.000 0.000 0.000 edgecolor
  2.2661 +newpath 3227 2604.5 moveto
  2.2662 +3237 2601 lineto
  2.2663 +3227 2597.5 lineto
  2.2664 +closepath fill
  2.2665 +1 setlinewidth
  2.2666 +solid
  2.2667 +0.000 0.000 0.000 edgecolor
  2.2668 +newpath 3227 2604.5 moveto
  2.2669 +3237 2601 lineto
  2.2670 +3227 2597.5 lineto
  2.2671 +closepath stroke
  2.2672 +grestore
  2.2673 +% addr_find_ancestor
  2.2674 +gsave
  2.2675 +1 setlinewidth
  2.2676 +0.000 0.000 0.000 nodecolor
  2.2677 +2769 2818 87.05 18 ellipse_path stroke
  2.2678 +0.000 0.000 0.000 nodecolor
  2.2679 +grestore
  2.2680 +% pipe_out->addr_find_ancestor
  2.2681 +gsave
  2.2682 +1 setlinewidth
  2.2683 +solid
  2.2684 +0.000 0.000 0.000 edgecolor
  2.2685 +newpath 2559 2773 moveto
  2.2686 +2596 2781 2653 2793 2698 2803 curveto
  2.2687 +stroke
  2.2688 +0.000 0.000 0.000 edgecolor
  2.2689 +newpath 2697.51 2806.47 moveto
  2.2690 +2708 2805 lineto
  2.2691 +2698.88 2799.61 lineto
  2.2692 +closepath fill
  2.2693 +1 setlinewidth
  2.2694 +solid
  2.2695 +0.000 0.000 0.000 edgecolor
  2.2696 +newpath 2697.51 2806.47 moveto
  2.2697 +2708 2805 lineto
  2.2698 +2698.88 2799.61 lineto
  2.2699 +closepath stroke
  2.2700 +grestore
  2.2701 +% set_euidgid
  2.2702 +gsave
  2.2703 +1 setlinewidth
  2.2704 +0.000 0.000 0.000 nodecolor
  2.2705 +3031 821 55.09 18 ellipse_path stroke
  2.2706 +0.000 0.000 0.000 nodecolor
  2.2707 +grestore
  2.2708 +% pipe_out->set_euidgid
  2.2709 +gsave
  2.2710 +1 setlinewidth
  2.2711 +solid
  2.2712 +0.000 0.000 0.000 edgecolor
  2.2713 +newpath 2565 2762 moveto
  2.2714 +2584 2759 2604 2752 2616 2737 curveto
  2.2715 +2670 2669 2609 2034 2652 1959 curveto
  2.2716 +2714 1851 2823 1913 2886 1807 curveto
  2.2717 +2940 1716 2907 1437 2922 1333 curveto
  2.2718 +2950 1147 3004 926 3023 849 curveto
  2.2719 +stroke
  2.2720 +0.000 0.000 0.000 edgecolor
  2.2721 +newpath 3026.48 849.58 moveto
  2.2722 +3026 839 lineto
  2.2723 +3019.77 847.57 lineto
  2.2724 +closepath fill
  2.2725 +1 setlinewidth
  2.2726 +solid
  2.2727 +0.000 0.000 0.000 edgecolor
  2.2728 +newpath 3026.48 849.58 moveto
  2.2729 +3026 839 lineto
  2.2730 +3019.77 847.57 lineto
  2.2731 +closepath stroke
  2.2732 +grestore
  2.2733 +% message_stream
  2.2734 +gsave
  2.2735 +1 setlinewidth
  2.2736 +0.000 0.000 0.000 nodecolor
  2.2737 +2769 2764 75.05 18 ellipse_path stroke
  2.2738 +0.000 0.000 0.000 nodecolor
  2.2739 +grestore
  2.2740 +% pipe_out->message_stream
  2.2741 +gsave
  2.2742 +1 setlinewidth
  2.2743 +solid
  2.2744 +0.000 0.000 0.000 edgecolor
  2.2745 +newpath 2565 2764 moveto
  2.2746 +2598 2764 2644 2764 2684 2764 curveto
  2.2747 +stroke
  2.2748 +0.000 0.000 0.000 edgecolor
  2.2749 +newpath 2684 2767.5 moveto
  2.2750 +2694 2764 lineto
  2.2751 +2684 2760.5 lineto
  2.2752 +closepath fill
  2.2753 +1 setlinewidth
  2.2754 +solid
  2.2755 +0.000 0.000 0.000 edgecolor
  2.2756 +newpath 2684 2767.5 moveto
  2.2757 +2694 2764 lineto
  2.2758 +2684 2760.5 lineto
  2.2759 +closepath stroke
  2.2760 +grestore
  2.2761 +% read_route
  2.2762 +gsave
  2.2763 +1 setlinewidth
  2.2764 +0.000 0.000 0.000 nodecolor
  2.2765 +2769 2116 52.81 18 ellipse_path stroke
  2.2766 +0.000 0.000 0.000 nodecolor
  2.2767 +grestore
  2.2768 +% read_route->parse_address_list
  2.2769 +gsave
  2.2770 +1 setlinewidth
  2.2771 +solid
  2.2772 +0.000 0.000 0.000 edgecolor
  2.2773 +newpath 2822 2113 moveto
  2.2774 +2844 2109 2869 2101 2886 2084 curveto
  2.2775 +2934 2034 2875 1983 2922 1934 curveto
  2.2776 +2930 1925 2939 1919 2950 1915 curveto
  2.2777 +stroke
  2.2778 +0.000 0.000 0.000 edgecolor
  2.2779 +newpath 2951.28 1918.26 moveto
  2.2780 +2959 1911 lineto
  2.2781 +2948.44 1911.86 lineto
  2.2782 +closepath fill
  2.2783 +1 setlinewidth
  2.2784 +solid
  2.2785 +0.000 0.000 0.000 edgecolor
  2.2786 +newpath 2951.28 1918.26 moveto
  2.2787 +2959 1911 lineto
  2.2788 +2948.44 1911.86 lineto
  2.2789 +closepath stroke
  2.2790 +grestore
  2.2791 +% read_route->parse_list
  2.2792 +gsave
  2.2793 +1 setlinewidth
  2.2794 +solid
  2.2795 +0.000 0.000 0.000 edgecolor
  2.2796 +newpath 2821 2113 moveto
  2.2797 +2844 2109 2869 2101 2886 2084 curveto
  2.2798 +2924 2047 2880 2003 2922 1972 curveto
  2.2799 +2969 1937 3139 1950 3228 1960 curveto
  2.2800 +stroke
  2.2801 +0.000 0.000 0.000 edgecolor
  2.2802 +newpath 3227.7 1963.49 moveto
  2.2803 +3238 1961 lineto
  2.2804 +3228.4 1956.52 lineto
  2.2805 +closepath fill
  2.2806 +1 setlinewidth
  2.2807 +solid
  2.2808 +0.000 0.000 0.000 edgecolor
  2.2809 +newpath 3227.7 1963.49 moveto
  2.2810 +3238 1961 lineto
  2.2811 +3228.4 1956.52 lineto
  2.2812 +closepath stroke
  2.2813 +grestore
  2.2814 +% read_route->create_address
  2.2815 +gsave
  2.2816 +1 setlinewidth
  2.2817 +solid
  2.2818 +0.000 0.000 0.000 edgecolor
  2.2819 +newpath 2796 2100 moveto
  2.2820 +2824 2083 2866 2052 2886 2013 curveto
  2.2821 +2950 1891 2845 1820 2922 1707 curveto
  2.2822 +2932 1693 3161 1577 3176 1572 curveto
  2.2823 +3269 1541 3318 1601 3392 1539 curveto
  2.2824 +3431 1506 3391 1465 3428 1431 curveto
  2.2825 +3438 1422 3449 1417 3461 1412 curveto
  2.2826 +stroke
  2.2827 +0.000 0.000 0.000 edgecolor
  2.2828 +newpath 3462.43 1415.23 moveto
  2.2829 +3471 1409 lineto
  2.2830 +3460.42 1408.52 lineto
  2.2831 +closepath fill
  2.2832 +1 setlinewidth
  2.2833 +solid
  2.2834 +0.000 0.000 0.000 edgecolor
  2.2835 +newpath 3462.43 1415.23 moveto
  2.2836 +3471 1409 lineto
  2.2837 +3460.42 1408.52 lineto
  2.2838 +closepath stroke
  2.2839 +grestore
  2.2840 +% read_route->parse_table_pair
  2.2841 +gsave
  2.2842 +1 setlinewidth
  2.2843 +solid
  2.2844 +0.000 0.000 0.000 edgecolor
  2.2845 +newpath 2796 2100 moveto
  2.2846 +2824 2083 2866 2052 2886 2013 curveto
  2.2847 +2970 1847 2857 1771 2922 1598 curveto
  2.2848 +2940 1550 2979 1504 3005 1477 curveto
  2.2849 +stroke
  2.2850 +0.000 0.000 0.000 edgecolor
  2.2851 +newpath 3007.4 1479.55 moveto
  2.2852 +3012 1470 lineto
  2.2853 +3002.45 1474.6 lineto
  2.2854 +closepath fill
  2.2855 +1 setlinewidth
  2.2856 +solid
  2.2857 +0.000 0.000 0.000 edgecolor
  2.2858 +newpath 3007.4 1479.55 moveto
  2.2859 +3012 1470 lineto
  2.2860 +3002.45 1474.6 lineto
  2.2861 +closepath stroke
  2.2862 +grestore
  2.2863 +% read_route->resolve_dns_a
  2.2864 +gsave
  2.2865 +1 setlinewidth
  2.2866 +dotted
  2.2867 +0.000 0.000 0.000 edgecolor
  2.2868 +newpath 2821 2119 moveto
  2.2869 +2844 2123 2869 2132 2886 2148 curveto
  2.2870 +2921 2180 2886 2218 2922 2249 curveto
  2.2871 +3004 2316 3133 2320 3213 2315 curveto
  2.2872 +stroke
  2.2873 +0.000 0.000 0.000 edgecolor
  2.2874 +newpath 3213.4 2318.48 moveto
  2.2875 +3223 2314 lineto
  2.2876 +3212.7 2311.51 lineto
  2.2877 +closepath fill
  2.2878 +1 setlinewidth
  2.2879 +solid
  2.2880 +0.000 0.000 0.000 edgecolor
  2.2881 +newpath 3213.4 2318.48 moveto
  2.2882 +3223 2314 lineto
  2.2883 +3212.7 2311.51 lineto
  2.2884 +closepath stroke
  2.2885 +grestore
  2.2886 +% parse_boolean
  2.2887 +gsave
  2.2888 +1 setlinewidth
  2.2889 +0.000 0.000 0.000 nodecolor
  2.2890 +3031 2520 68.1 18 ellipse_path stroke
  2.2891 +0.000 0.000 0.000 nodecolor
  2.2892 +grestore
  2.2893 +% read_route->parse_boolean
  2.2894 +gsave
  2.2895 +1 setlinewidth
  2.2896 +solid
  2.2897 +0.000 0.000 0.000 edgecolor
  2.2898 +newpath 2810 2128 moveto
  2.2899 +2836 2137 2868 2154 2886 2181 curveto
  2.2900 +2964 2297 2830 2388 2922 2493 curveto
  2.2901 +2931 2503 2942 2509 2954 2513 curveto
  2.2902 +stroke
  2.2903 +0.000 0.000 0.000 edgecolor
  2.2904 +newpath 2953.42 2516.48 moveto
  2.2905 +2964 2516 lineto
  2.2906 +2955.43 2509.77 lineto
  2.2907 +closepath fill
  2.2908 +1 setlinewidth
  2.2909 +solid
  2.2910 +0.000 0.000 0.000 edgecolor
  2.2911 +newpath 2953.42 2516.48 moveto
  2.2912 +2964 2516 lineto
  2.2913 +2955.43 2509.77 lineto
  2.2914 +closepath stroke
  2.2915 +grestore
  2.2916 +% resolve_byname
  2.2917 +gsave
  2.2918 +1 setlinewidth
  2.2919 +0.000 0.000 0.000 nodecolor
  2.2920 +3284 2100 73.85 18 ellipse_path stroke
  2.2921 +0.000 0.000 0.000 nodecolor
  2.2922 +grestore
  2.2923 +% read_route->resolve_byname
  2.2924 +gsave
  2.2925 +1 setlinewidth
  2.2926 +dotted
  2.2927 +0.000 0.000 0.000 edgecolor
  2.2928 +newpath 2812 2105 moveto
  2.2929 +2842 2098 2885 2089 2922 2086 curveto
  2.2930 +3019 2076 3044 2081 3140 2086 curveto
  2.2931 +3162 2087 3185 2089 3207 2091 curveto
  2.2932 +stroke
  2.2933 +0.000 0.000 0.000 edgecolor
  2.2934 +newpath 3206.7 2094.49 moveto
  2.2935 +3217 2092 lineto
  2.2936 +3207.4 2087.52 lineto
  2.2937 +closepath fill
  2.2938 +1 setlinewidth
  2.2939 +solid
  2.2940 +0.000 0.000 0.000 edgecolor
  2.2941 +newpath 3206.7 2094.49 moveto
  2.2942 +3217 2092 lineto
  2.2943 +3207.4 2087.52 lineto
  2.2944 +closepath stroke
  2.2945 +grestore
  2.2946 +% parse_resolve_list
  2.2947 +gsave
  2.2948 +1 setlinewidth
  2.2949 +0.000 0.000 0.000 nodecolor
  2.2950 +3031 2222 80.8 18 ellipse_path stroke
  2.2951 +0.000 0.000 0.000 nodecolor
  2.2952 +grestore
  2.2953 +% read_route->parse_resolve_list
  2.2954 +gsave
  2.2955 +1 setlinewidth
  2.2956 +solid
  2.2957 +0.000 0.000 0.000 edgecolor
  2.2958 +newpath 2818 2123 moveto
  2.2959 +2840 2127 2866 2135 2886 2148 curveto
  2.2960 +2907 2161 2902 2176 2922 2190 curveto
  2.2961 +2933 2197 2946 2203 2959 2207 curveto
  2.2962 +stroke
  2.2963 +0.000 0.000 0.000 edgecolor
  2.2964 +newpath 2958.42 2210.48 moveto
  2.2965 +2969 2210 lineto
  2.2966 +2960.43 2203.77 lineto
  2.2967 +closepath fill
  2.2968 +1 setlinewidth
  2.2969 +solid
  2.2970 +0.000 0.000 0.000 edgecolor
  2.2971 +newpath 2958.42 2210.48 moveto
  2.2972 +2969 2210 lineto
  2.2973 +2960.43 2203.77 lineto
  2.2974 +closepath stroke
  2.2975 +grestore
  2.2976 +% read_statement
  2.2977 +gsave
  2.2978 +1 setlinewidth
  2.2979 +0.000 0.000 0.000 nodecolor
  2.2980 +3031 2466 68.99 18 ellipse_path stroke
  2.2981 +0.000 0.000 0.000 nodecolor
  2.2982 +grestore
  2.2983 +% read_route->read_statement
  2.2984 +gsave
  2.2985 +1 setlinewidth
  2.2986 +solid
  2.2987 +0.000 0.000 0.000 edgecolor
  2.2988 +newpath 2808 2128 moveto
  2.2989 +2834 2138 2867 2155 2886 2181 curveto
  2.2990 +2926 2231 2895 2262 2922 2320 curveto
  2.2991 +2945 2366 2982 2413 3007 2440 curveto
  2.2992 +stroke
  2.2993 +0.000 0.000 0.000 edgecolor
  2.2994 +newpath 3004.78 2442.78 moveto
  2.2995 +3014 2448 lineto
  2.2996 +3010.05 2438.17 lineto
  2.2997 +closepath fill
  2.2998 +1 setlinewidth
  2.2999 +solid
  2.3000 +0.000 0.000 0.000 edgecolor
  2.3001 +newpath 3004.78 2442.78 moveto
  2.3002 +3014 2448 lineto
  2.3003 +3010.05 2438.17 lineto
  2.3004 +closepath stroke
  2.3005 +grestore
  2.3006 +% resolve_dns_mx
  2.3007 +gsave
  2.3008 +1 setlinewidth
  2.3009 +0.000 0.000 0.000 nodecolor
  2.3010 +3284 2222 75.05 18 ellipse_path stroke
  2.3011 +0.000 0.000 0.000 nodecolor
  2.3012 +grestore
  2.3013 +% read_route->resolve_dns_mx
  2.3014 +gsave
  2.3015 +1 setlinewidth
  2.3016 +dotted
  2.3017 +0.000 0.000 0.000 edgecolor
  2.3018 +newpath 2815 2125 moveto
  2.3019 +2906 2143 3111 2186 3217 2208 curveto
  2.3020 +stroke
  2.3021 +0.000 0.000 0.000 edgecolor
  2.3022 +newpath 3216.51 2211.47 moveto
  2.3023 +3227 2210 lineto
  2.3024 +3217.88 2204.61 lineto
  2.3025 +closepath fill
  2.3026 +1 setlinewidth
  2.3027 +solid
  2.3028 +0.000 0.000 0.000 edgecolor
  2.3029 +newpath 3216.51 2211.47 moveto
  2.3030 +3227 2210 lineto
  2.3031 +3217.88 2204.61 lineto
  2.3032 +closepath stroke
  2.3033 +grestore
  2.3034 +% parse_interface
  2.3035 +gsave
  2.3036 +1 setlinewidth
  2.3037 +0.000 0.000 0.000 nodecolor
  2.3038 +3031 2650 70.18 18 ellipse_path stroke
  2.3039 +0.000 0.000 0.000 nodecolor
  2.3040 +grestore
  2.3041 +% read_route->parse_interface
  2.3042 +gsave
  2.3043 +1 setlinewidth
  2.3044 +solid
  2.3045 +0.000 0.000 0.000 edgecolor
  2.3046 +newpath 2810 2128 moveto
  2.3047 +2836 2137 2869 2154 2886 2181 curveto
  2.3048 +2976 2317 2851 2400 2922 2547 curveto
  2.3049 +2939 2580 2971 2608 2996 2627 curveto
  2.3050 +stroke
  2.3051 +0.000 0.000 0.000 edgecolor
  2.3052 +newpath 2993.9 2629.8 moveto
  2.3053 +3004 2633 lineto
  2.3054 +2998.1 2624.2 lineto
  2.3055 +closepath fill
  2.3056 +1 setlinewidth
  2.3057 +solid
  2.3058 +0.000 0.000 0.000 edgecolor
  2.3059 +newpath 2993.9 2629.8 moveto
  2.3060 +3004 2633 lineto
  2.3061 +2998.1 2624.2 lineto
  2.3062 +closepath stroke
  2.3063 +grestore
  2.3064 +% parse_resolve_list->parse_list
  2.3065 +gsave
  2.3066 +1 setlinewidth
  2.3067 +solid
  2.3068 +0.000 0.000 0.000 edgecolor
  2.3069 +newpath 3048 2204 moveto
  2.3070 +3075 2176 3129 2120 3176 2073 curveto
  2.3071 +3205 2044 3237 2013 3259 1991 curveto
  2.3072 +stroke
  2.3073 +0.000 0.000 0.000 edgecolor
  2.3074 +newpath 3261.4 1993.55 moveto
  2.3075 +3266 1984 lineto
  2.3076 +3256.45 1988.6 lineto
  2.3077 +closepath fill
  2.3078 +1 setlinewidth
  2.3079 +solid
  2.3080 +0.000 0.000 0.000 edgecolor
  2.3081 +newpath 3261.4 1993.55 moveto
  2.3082 +3266 1984 lineto
  2.3083 +3256.45 1988.6 lineto
  2.3084 +closepath stroke
  2.3085 +grestore
  2.3086 +% parse_resolve_list->resolve_dns_a
  2.3087 +gsave
  2.3088 +1 setlinewidth
  2.3089 +dotted
  2.3090 +0.000 0.000 0.000 edgecolor
  2.3091 +newpath 3082 2236 moveto
  2.3092 +3101 2241 3121 2248 3140 2254 curveto
  2.3093 +3172 2265 3208 2277 3235 2287 curveto
  2.3094 +stroke
  2.3095 +0.000 0.000 0.000 edgecolor
  2.3096 +newpath 3234.42 2290.54 moveto
  2.3097 +3245 2291 lineto
  2.3098 +3237.02 2284.04 lineto
  2.3099 +closepath fill
  2.3100 +1 setlinewidth
  2.3101 +solid
  2.3102 +0.000 0.000 0.000 edgecolor
  2.3103 +newpath 3234.42 2290.54 moveto
  2.3104 +3245 2291 lineto
  2.3105 +3237.02 2284.04 lineto
  2.3106 +closepath stroke
  2.3107 +grestore
  2.3108 +% parse_resolve_list->resolve_byname
  2.3109 +gsave
  2.3110 +1 setlinewidth
  2.3111 +dotted
  2.3112 +0.000 0.000 0.000 edgecolor
  2.3113 +newpath 3065 2206 moveto
  2.3114 +3111 2183 3191 2144 3241 2120 curveto
  2.3115 +stroke
  2.3116 +0.000 0.000 0.000 edgecolor
  2.3117 +newpath 3242.28 2123.26 moveto
  2.3118 +3250 2116 lineto
  2.3119 +3239.44 2116.86 lineto
  2.3120 +closepath fill
  2.3121 +1 setlinewidth
  2.3122 +solid
  2.3123 +0.000 0.000 0.000 edgecolor
  2.3124 +newpath 3242.28 2123.26 moveto
  2.3125 +3250 2116 lineto
  2.3126 +3239.44 2116.86 lineto
  2.3127 +closepath stroke
  2.3128 +grestore
  2.3129 +% parse_resolve_list->resolve_dns_mx
  2.3130 +gsave
  2.3131 +1 setlinewidth
  2.3132 +dotted
  2.3133 +0.000 0.000 0.000 edgecolor
  2.3134 +newpath 3113 2222 moveto
  2.3135 +3141 2222 3171 2222 3199 2222 curveto
  2.3136 +stroke
  2.3137 +0.000 0.000 0.000 edgecolor
  2.3138 +newpath 3199 2225.5 moveto
  2.3139 +3209 2222 lineto
  2.3140 +3199 2218.5 lineto
  2.3141 +closepath fill
  2.3142 +1 setlinewidth
  2.3143 +solid
  2.3144 +0.000 0.000 0.000 edgecolor
  2.3145 +newpath 3199 2225.5 moveto
  2.3146 +3209 2222 lineto
  2.3147 +3199 2218.5 lineto
  2.3148 +closepath stroke
  2.3149 +grestore
  2.3150 +% eat_spaces
  2.3151 +gsave
  2.3152 +1 setlinewidth
  2.3153 +0.000 0.000 0.000 nodecolor
  2.3154 +3284 2470 54.2 18 ellipse_path stroke
  2.3155 +0.000 0.000 0.000 nodecolor
  2.3156 +grestore
  2.3157 +% read_statement->eat_spaces
  2.3158 +gsave
  2.3159 +1 setlinewidth
  2.3160 +solid
  2.3161 +0.000 0.000 0.000 edgecolor
  2.3162 +newpath 3100 2467 moveto
  2.3163 +3137 2468 3183 2468 3220 2469 curveto
  2.3164 +stroke
  2.3165 +0.000 0.000 0.000 edgecolor
  2.3166 +newpath 3220 2472.5 moveto
  2.3167 +3230 2469 lineto
  2.3168 +3220 2465.5 lineto
  2.3169 +closepath fill
  2.3170 +1 setlinewidth
  2.3171 +solid
  2.3172 +0.000 0.000 0.000 edgecolor
  2.3173 +newpath 3220 2472.5 moveto
  2.3174 +3230 2469 lineto
  2.3175 +3220 2465.5 lineto
  2.3176 +closepath stroke
  2.3177 +grestore
  2.3178 +% resolve_dns_mx->dns_resolve
  2.3179 +gsave
  2.3180 +1 setlinewidth
  2.3181 +solid
  2.3182 +0.000 0.000 0.000 edgecolor
  2.3183 +newpath 3351 2230 moveto
  2.3184 +3388 2235 3435 2240 3472 2245 curveto
  2.3185 +stroke
  2.3186 +0.000 0.000 0.000 edgecolor
  2.3187 +newpath 3471.7 2248.49 moveto
  2.3188 +3482 2246 lineto
  2.3189 +3472.4 2241.52 lineto
  2.3190 +closepath fill
  2.3191 +1 setlinewidth
  2.3192 +solid
  2.3193 +0.000 0.000 0.000 edgecolor
  2.3194 +newpath 3471.7 2248.49 moveto
  2.3195 +3482 2246 lineto
  2.3196 +3472.4 2241.52 lineto
  2.3197 +closepath stroke
  2.3198 +grestore
  2.3199 +% resolve_dns_mx->dns_next
  2.3200 +gsave
  2.3201 +1 setlinewidth
  2.3202 +solid
  2.3203 +0.000 0.000 0.000 edgecolor
  2.3204 +newpath 3320 2238 moveto
  2.3205 +3349 2250 3391 2267 3428 2279 curveto
  2.3206 +3447 2285 3468 2290 3486 2295 curveto
  2.3207 +stroke
  2.3208 +0.000 0.000 0.000 edgecolor
  2.3209 +newpath 3485.51 2298.47 moveto
  2.3210 +3496 2297 lineto
  2.3211 +3486.88 2291.61 lineto
  2.3212 +closepath fill
  2.3213 +1 setlinewidth
  2.3214 +solid
  2.3215 +0.000 0.000 0.000 edgecolor
  2.3216 +newpath 3485.51 2298.47 moveto
  2.3217 +3496 2297 lineto
  2.3218 +3486.88 2291.61 lineto
  2.3219 +closepath stroke
  2.3220 +grestore
  2.3221 +% _mx_sort_func
  2.3222 +gsave
  2.3223 +1 setlinewidth
  2.3224 +0.000 0.000 0.000 nodecolor
  2.3225 +3537 2198 70.88 18 ellipse_path stroke
  2.3226 +0.000 0.000 0.000 nodecolor
  2.3227 +grestore
  2.3228 +% resolve_dns_mx->_mx_sort_func
  2.3229 +gsave
  2.3230 +1 setlinewidth
  2.3231 +dotted
  2.3232 +0.000 0.000 0.000 edgecolor
  2.3233 +newpath 3354 2215 moveto
  2.3234 +3387 2212 3426 2209 3460 2205 curveto
  2.3235 +stroke
  2.3236 +0.000 0.000 0.000 edgecolor
  2.3237 +newpath 3460.4 2208.48 moveto
  2.3238 +3470 2204 lineto
  2.3239 +3459.7 2201.51 lineto
  2.3240 +closepath fill
  2.3241 +1 setlinewidth
  2.3242 +solid
  2.3243 +0.000 0.000 0.000 edgecolor
  2.3244 +newpath 3460.4 2208.48 moveto
  2.3245 +3470 2204 lineto
  2.3246 +3459.7 2201.51 lineto
  2.3247 +closepath stroke
  2.3248 +grestore
  2.3249 +% addr_is_finished_children->addr_is_finished_children
  2.3250 +gsave
  2.3251 +1 setlinewidth
  2.3252 +solid
  2.3253 +0.000 0.000 0.000 edgecolor
  2.3254 +newpath 2725 2351 moveto
  2.3255 +2716 2361 2730 2370 2769 2370 curveto
  2.3256 +2794 2370 2809 2366 2814 2361 curveto
  2.3257 +stroke
  2.3258 +0.000 0.000 0.000 edgecolor
  2.3259 +newpath 2817.48 2360.6 moveto
  2.3260 +2813 2351 lineto
  2.3261 +2810.51 2361.3 lineto
  2.3262 +closepath fill
  2.3263 +1 setlinewidth
  2.3264 +solid
  2.3265 +0.000 0.000 0.000 edgecolor
  2.3266 +newpath 2817.48 2360.6 moveto
  2.3267 +2813 2351 lineto
  2.3268 +2810.51 2361.3 lineto
  2.3269 +closepath stroke
  2.3270 +grestore
  2.3271 +% msg_rcptlist_route
  2.3272 +gsave
  2.3273 +1 setlinewidth
  2.3274 +0.000 0.000 0.000 nodecolor
  2.3275 +1705 2520 84.08 18 ellipse_path stroke
  2.3276 +0.000 0.000 0.000 nodecolor
  2.3277 +grestore
  2.3278 +% msg_rcptlist_route->rcptlist_with_one_of_hostlist
  2.3279 +gsave
  2.3280 +1 setlinewidth
  2.3281 +solid
  2.3282 +0.000 0.000 0.000 edgecolor
  2.3283 +newpath 1780 2528 moveto
  2.3284 +1798 2532 1816 2538 1832 2547 curveto
  2.3285 +1894 2579 1947 2642 1974 2678 curveto
  2.3286 +stroke
  2.3287 +0.000 0.000 0.000 edgecolor
  2.3288 +newpath 1971.2 2680.1 moveto
  2.3289 +1980 2686 lineto
  2.3290 +1976.8 2675.9 lineto
  2.3291 +closepath fill
  2.3292 +1 setlinewidth
  2.3293 +solid
  2.3294 +0.000 0.000 0.000 edgecolor
  2.3295 +newpath 1971.2 2680.1 moveto
  2.3296 +1980 2686 lineto
  2.3297 +1976.8 2675.9 lineto
  2.3298 +closepath stroke
  2.3299 +grestore
  2.3300 +% spool_delete_all->set_euidgid
  2.3301 +gsave
  2.3302 +1 setlinewidth
  2.3303 +solid
  2.3304 +0.000 0.000 0.000 edgecolor
  2.3305 +newpath 2798 1763 moveto
  2.3306 +2826 1746 2867 1715 2886 1677 curveto
  2.3307 +2922 1608 2910 1408 2922 1333 curveto
  2.3308 +2952 1147 3005 926 3024 849 curveto
  2.3309 +stroke
  2.3310 +0.000 0.000 0.000 edgecolor
  2.3311 +newpath 3027.47 849.49 moveto
  2.3312 +3026 839 lineto
  2.3313 +3020.61 848.12 lineto
  2.3314 +closepath fill
  2.3315 +1 setlinewidth
  2.3316 +solid
  2.3317 +0.000 0.000 0.000 edgecolor
  2.3318 +newpath 3027.47 849.49 moveto
  2.3319 +3026 839 lineto
  2.3320 +3020.61 848.12 lineto
  2.3321 +closepath stroke
  2.3322 +grestore
  2.3323 +% sig_timeout_handler
  2.3324 +gsave
  2.3325 +1 setlinewidth
  2.3326 +0.000 0.000 0.000 nodecolor
  2.3327 +3805 118 89.14 18 ellipse_path stroke
  2.3328 +0.000 0.000 0.000 nodecolor
  2.3329 +grestore
  2.3330 +% alarm_on->sig_timeout_handler
  2.3331 +gsave
  2.3332 +1 setlinewidth
  2.3333 +dotted
  2.3334 +0.000 0.000 0.000 edgecolor
  2.3335 +newpath 3585 118 moveto
  2.3336 +3618 118 3664 118 3705 118 curveto
  2.3337 +stroke
  2.3338 +0.000 0.000 0.000 edgecolor
  2.3339 +newpath 3705 121.5 moveto
  2.3340 +3715 118 lineto
  2.3341 +3705 114.5 lineto
  2.3342 +closepath fill
  2.3343 +1 setlinewidth
  2.3344 +solid
  2.3345 +0.000 0.000 0.000 edgecolor
  2.3346 +newpath 3705 121.5 moveto
  2.3347 +3715 118 lineto
  2.3348 +3705 114.5 lineto
  2.3349 +closepath stroke
  2.3350 +grestore
  2.3351 +% smtp_out_rset
  2.3352 +gsave
  2.3353 +1 setlinewidth
  2.3354 +0.000 0.000 0.000 nodecolor
  2.3355 +2519 1380 66.9 18 ellipse_path stroke
  2.3356 +0.000 0.000 0.000 nodecolor
  2.3357 +grestore
  2.3358 +% smtp_out_rset->check_response
  2.3359 +gsave
  2.3360 +1 setlinewidth
  2.3361 +solid
  2.3362 +0.000 0.000 0.000 edgecolor
  2.3363 +newpath 2580 1372 moveto
  2.3364 +2593 1368 2606 1362 2616 1353 curveto
  2.3365 +2649 1323 2619 1290 2652 1261 curveto
  2.3366 +2662 1252 2675 1247 2688 1243 curveto
  2.3367 +stroke
  2.3368 +0.000 0.000 0.000 edgecolor
  2.3369 +newpath 2689.43 1246.23 moveto
  2.3370 +2698 1240 lineto
  2.3371 +2687.42 1239.52 lineto
  2.3372 +closepath fill
  2.3373 +1 setlinewidth
  2.3374 +solid
  2.3375 +0.000 0.000 0.000 edgecolor
  2.3376 +newpath 2689.43 1246.23 moveto
  2.3377 +2698 1240 lineto
  2.3378 +2687.42 1239.52 lineto
  2.3379 +closepath stroke
  2.3380 +grestore
  2.3381 +% smtp_out_rset->smtp_out_log_failure
  2.3382 +gsave
  2.3383 +1 setlinewidth
  2.3384 +solid
  2.3385 +0.000 0.000 0.000 edgecolor
  2.3386 +newpath 2574 1369 moveto
  2.3387 +2588 1365 2603 1360 2616 1353 curveto
  2.3388 +2635 1342 2633 1330 2652 1320 curveto
  2.3389 +2664 1314 2678 1308 2692 1304 curveto
  2.3390 +stroke
  2.3391 +0.000 0.000 0.000 edgecolor
  2.3392 +newpath 2693.43 1307.23 moveto
  2.3393 +2702 1301 lineto
  2.3394 +2691.42 1300.52 lineto
  2.3395 +closepath fill
  2.3396 +1 setlinewidth
  2.3397 +solid
  2.3398 +0.000 0.000 0.000 edgecolor
  2.3399 +newpath 2693.43 1307.23 moveto
  2.3400 +2702 1301 lineto
  2.3401 +2691.42 1300.52 lineto
  2.3402 +closepath stroke
  2.3403 +grestore
  2.3404 +% smtp_out_rset->read_response
  2.3405 +gsave
  2.3406 +1 setlinewidth
  2.3407 +solid
  2.3408 +0.000 0.000 0.000 edgecolor
  2.3409 +newpath 2581 1373 moveto
  2.3410 +2594 1369 2607 1363 2616 1353 curveto
  2.3411 +2663 1306 2605 1254 2652 1207 curveto
  2.3412 +2663 1196 2677 1190 2692 1186 curveto
  2.3413 +stroke
  2.3414 +0.000 0.000 0.000 edgecolor
  2.3415 +newpath 2693.43 1189.23 moveto
  2.3416 +2702 1183 lineto
  2.3417 +2691.42 1182.52 lineto
  2.3418 +closepath fill
  2.3419 +1 setlinewidth
  2.3420 +solid
  2.3421 +0.000 0.000 0.000 edgecolor
  2.3422 +newpath 2693.43 1189.23 moveto
  2.3423 +2702 1183 lineto
  2.3424 +2691.42 1182.52 lineto
  2.3425 +closepath stroke
  2.3426 +grestore
  2.3427 +% get_from_name
  2.3428 +gsave
  2.3429 +1 setlinewidth
  2.3430 +0.000 0.000 0.000 nodecolor
  2.3431 +1189 3543 71.77 18 ellipse_path stroke
  2.3432 +0.000 0.000 0.000 nodecolor
  2.3433 +grestore
  2.3434 +% get_from_file
  2.3435 +gsave
  2.3436 +1 setlinewidth
  2.3437 +0.000 0.000 0.000 nodecolor
  2.3438 +1442 3482 63.23 18 ellipse_path stroke
  2.3439 +0.000 0.000 0.000 nodecolor
  2.3440 +grestore
  2.3441 +% get_from_name->get_from_file
  2.3442 +gsave
  2.3443 +1 setlinewidth
  2.3444 +solid
  2.3445 +0.000 0.000 0.000 edgecolor
  2.3446 +newpath 1241 3530 moveto
  2.3447 +1283 3521 1341 3506 1384 3496 curveto
  2.3448 +stroke
  2.3449 +0.000 0.000 0.000 edgecolor
  2.3450 +newpath 1384.88 3499.39 moveto
  2.3451 +1394 3494 lineto
  2.3452 +1383.51 3492.53 lineto
  2.3453 +closepath fill
  2.3454 +1 setlinewidth
  2.3455 +solid
  2.3456 +0.000 0.000 0.000 edgecolor
  2.3457 +newpath 1384.88 3499.39 moveto
  2.3458 +1394 3494 lineto
  2.3459 +1383.51 3492.53 lineto
  2.3460 +closepath stroke
  2.3461 +grestore
  2.3462 +% get_from_name->table_find
  2.3463 +gsave
  2.3464 +1 setlinewidth
  2.3465 +solid
  2.3466 +0.000 0.000 0.000 edgecolor
  2.3467 +newpath 1224 3559 moveto
  2.3468 +1305 3595 1518 3680 1705 3680 curveto
  2.3469 +1705 3680 1705 3680 3031 3680 curveto
  2.3470 +3203 3680 3263 3654 3392 3542 curveto
  2.3471 +3417 3520 3402 3497 3428 3477 curveto
  2.3472 +3442 3466 3461 3459 3478 3455 curveto
  2.3473 +stroke
  2.3474 +0.000 0.000 0.000 edgecolor
  2.3475 +newpath 3478.88 3458.39 moveto
  2.3476 +3488 3453 lineto
  2.3477 +3477.51 3451.53 lineto
  2.3478 +closepath fill
  2.3479 +1 setlinewidth
  2.3480 +solid
  2.3481 +0.000 0.000 0.000 edgecolor
  2.3482 +newpath 3478.88 3458.39 moveto
  2.3483 +3488 3453 lineto
  2.3484 +3477.51 3451.53 lineto
  2.3485 +closepath stroke
  2.3486 +grestore
  2.3487 +% destroy_get_conf
  2.3488 +gsave
  2.3489 +1 setlinewidth
  2.3490 +0.000 0.000 0.000 nodecolor
  2.3491 +1993 3482 79.91 18 ellipse_path stroke
  2.3492 +0.000 0.000 0.000 nodecolor
  2.3493 +grestore
  2.3494 +% get_from_file->destroy_get_conf
  2.3495 +gsave
  2.3496 +1 setlinewidth
  2.3497 +solid
  2.3498 +0.000 0.000 0.000 edgecolor
  2.3499 +newpath 1505 3482 moveto
  2.3500 +1603 3482 1790 3482 1903 3482 curveto
  2.3501 +stroke
  2.3502 +0.000 0.000 0.000 edgecolor
  2.3503 +newpath 1903 3485.5 moveto
  2.3504 +1913 3482 lineto
  2.3505 +1903 3478.5 lineto
  2.3506 +closepath fill
  2.3507 +1 setlinewidth
  2.3508 +solid
  2.3509 +0.000 0.000 0.000 edgecolor
  2.3510 +newpath 1903 3485.5 moveto
  2.3511 +1913 3482 lineto
  2.3512 +1903 3478.5 lineto
  2.3513 +closepath stroke
  2.3514 +grestore
  2.3515 +% read_get_conf
  2.3516 +gsave
  2.3517 +1 setlinewidth
  2.3518 +0.000 0.000 0.000 nodecolor
  2.3519 +2769 2482 66.9 18 ellipse_path stroke
  2.3520 +0.000 0.000 0.000 nodecolor
  2.3521 +grestore
  2.3522 +% get_from_file->read_get_conf
  2.3523 +gsave
  2.3524 +1 setlinewidth
  2.3525 +solid
  2.3526 +0.000 0.000 0.000 edgecolor
  2.3527 +newpath 1466 3465 moveto
  2.3528 +1563 3395 1934 3116 2118 2795 curveto
  2.3529 +2149 2742 2112 2707 2154 2664 curveto
  2.3530 +2300 2515 2561 2486 2691 2482 curveto
  2.3531 +stroke
  2.3532 +0.000 0.000 0.000 edgecolor
  2.3533 +newpath 2691 2485.5 moveto
  2.3534 +2701 2482 lineto
  2.3535 +2691 2478.5 lineto
  2.3536 +closepath fill
  2.3537 +1 setlinewidth
  2.3538 +solid
  2.3539 +0.000 0.000 0.000 edgecolor
  2.3540 +newpath 2691 2485.5 moveto
  2.3541 +2701 2482 lineto
  2.3542 +2691 2478.5 lineto
  2.3543 +closepath stroke
  2.3544 +grestore
  2.3545 +% table_find_func
  2.3546 +gsave
  2.3547 +1 setlinewidth
  2.3548 +0.000 0.000 0.000 nodecolor
  2.3549 +3805 3477 71.77 18 ellipse_path stroke
  2.3550 +0.000 0.000 0.000 nodecolor
  2.3551 +grestore
  2.3552 +% table_find->table_find_func
  2.3553 +gsave
  2.3554 +1 setlinewidth
  2.3555 +solid
  2.3556 +0.000 0.000 0.000 edgecolor
  2.3557 +newpath 3585 3455 moveto
  2.3558 +3624 3459 3681 3465 3727 3469 curveto
  2.3559 +stroke
  2.3560 +0.000 0.000 0.000 edgecolor
  2.3561 +newpath 3726.7 3472.49 moveto
  2.3562 +3737 3470 lineto
  2.3563 +3727.4 3465.52 lineto
  2.3564 +closepath fill
  2.3565 +1 setlinewidth
  2.3566 +solid
  2.3567 +0.000 0.000 0.000 edgecolor
  2.3568 +newpath 3726.7 3472.49 moveto
  2.3569 +3737 3470 lineto
  2.3570 +3727.4 3465.52 lineto
  2.3571 +closepath stroke
  2.3572 +grestore
  2.3573 +% smtp_out_msg
  2.3574 +gsave
  2.3575 +1 setlinewidth
  2.3576 +0.000 0.000 0.000 nodecolor
  2.3577 +2519 1434 68.99 18 ellipse_path stroke
  2.3578 +0.000 0.000 0.000 nodecolor
  2.3579 +grestore
  2.3580 +% smtp_out_msg->check_response
  2.3581 +gsave
  2.3582 +1 setlinewidth
  2.3583 +solid
  2.3584 +0.000 0.000 0.000 edgecolor
  2.3585 +newpath 2583 1427 moveto
  2.3586 +2595 1422 2607 1416 2616 1407 curveto
  2.3587 +2663 1359 2605 1308 2652 1261 curveto
  2.3588 +2662 1251 2674 1245 2686 1241 curveto
  2.3589 +stroke
  2.3590 +0.000 0.000 0.000 edgecolor
  2.3591 +newpath 2687.43 1244.23 moveto
  2.3592 +2696 1238 lineto
  2.3593 +2685.42 1237.52 lineto
  2.3594 +closepath fill
  2.3595 +1 setlinewidth
  2.3596 +solid
  2.3597 +0.000 0.000 0.000 edgecolor
  2.3598 +newpath 2687.43 1244.23 moveto
  2.3599 +2696 1238 lineto
  2.3600 +2685.42 1237.52 lineto
  2.3601 +closepath stroke
  2.3602 +grestore
  2.3603 +% smtp_out_msg->smtp_out_log_failure
  2.3604 +gsave
  2.3605 +1 setlinewidth
  2.3606 +solid
  2.3607 +0.000 0.000 0.000 edgecolor
  2.3608 +newpath 2581 1426 moveto
  2.3609 +2594 1422 2606 1416 2616 1407 curveto
  2.3610 +2648 1379 2621 1347 2652 1320 curveto
  2.3611 +2661 1312 2672 1306 2683 1302 curveto
  2.3612 +stroke
  2.3613 +0.000 0.000 0.000 edgecolor
  2.3614 +newpath 2683.62 1305.48 moveto
  2.3615 +2692 1299 lineto
  2.3616 +2681.41 1298.84 lineto
  2.3617 +closepath fill
  2.3618 +1 setlinewidth
  2.3619 +solid
  2.3620 +0.000 0.000 0.000 edgecolor
  2.3621 +newpath 2683.62 1305.48 moveto
  2.3622 +2692 1299 lineto
  2.3623 +2681.41 1298.84 lineto
  2.3624 +closepath stroke
  2.3625 +grestore
  2.3626 +% smtp_out_msg->read_response
  2.3627 +gsave
  2.3628 +1 setlinewidth
  2.3629 +solid
  2.3630 +0.000 0.000 0.000 edgecolor
  2.3631 +newpath 2583 1427 moveto
  2.3632 +2596 1423 2607 1417 2616 1407 curveto
  2.3633 +2677 1340 2590 1273 2652 1207 curveto
  2.3634 +2663 1196 2677 1189 2692 1185 curveto
  2.3635 +stroke
  2.3636 +0.000 0.000 0.000 edgecolor
  2.3637 +newpath 2693.43 1188.23 moveto
  2.3638 +2702 1182 lineto
  2.3639 +2691.42 1181.52 lineto
  2.3640 +closepath fill
  2.3641 +1 setlinewidth
  2.3642 +solid
  2.3643 +0.000 0.000 0.000 edgecolor
  2.3644 +newpath 2693.43 1188.23 moveto
  2.3645 +2702 1182 lineto
  2.3646 +2691.42 1181.52 lineto
  2.3647 +closepath stroke
  2.3648 +grestore
  2.3649 +% smtp_out_msg->addr_string
  2.3650 +gsave
  2.3651 +1 setlinewidth
  2.3652 +solid
  2.3653 +0.000 0.000 0.000 edgecolor
  2.3654 +newpath 2578 1425 moveto
  2.3655 +2592 1421 2605 1415 2616 1407 curveto
  2.3656 +2640 1390 2628 1368 2652 1353 curveto
  2.3657 +2741 1296 2795 1367 2886 1315 curveto
  2.3658 +3089 1198 3230 933 3272 848 curveto
  2.3659 +stroke
  2.3660 +0.000 0.000 0.000 edgecolor
  2.3661 +newpath 3275.14 849.56 moveto
  2.3662 +3276 839 lineto
  2.3663 +3268.74 846.72 lineto
  2.3664 +closepath fill
  2.3665 +1 setlinewidth
  2.3666 +solid
  2.3667 +0.000 0.000 0.000 edgecolor
  2.3668 +newpath 3275.14 849.56 moveto
  2.3669 +3276 839 lineto
  2.3670 +3268.74 846.72 lineto
  2.3671 +closepath stroke
  2.3672 +grestore
  2.3673 +% msg_calc_size
  2.3674 +gsave
  2.3675 +1 setlinewidth
  2.3676 +0.000 0.000 0.000 nodecolor
  2.3677 +2769 1380 68.1 18 ellipse_path stroke
  2.3678 +0.000 0.000 0.000 nodecolor
  2.3679 +grestore
  2.3680 +% smtp_out_msg->msg_calc_size
  2.3681 +gsave
  2.3682 +1 setlinewidth
  2.3683 +solid
  2.3684 +0.000 0.000 0.000 edgecolor
  2.3685 +newpath 2573 1422 moveto
  2.3686 +2612 1414 2665 1403 2706 1393 curveto
  2.3687 +stroke
  2.3688 +0.000 0.000 0.000 edgecolor
  2.3689 +newpath 2706.88 1396.39 moveto
  2.3690 +2716 1391 lineto
  2.3691 +2705.51 1389.53 lineto
  2.3692 +closepath fill
  2.3693 +1 setlinewidth
  2.3694 +solid
  2.3695 +0.000 0.000 0.000 edgecolor
  2.3696 +newpath 2706.88 1396.39 moveto
  2.3697 +2716 1391 lineto
  2.3698 +2705.51 1389.53 lineto
  2.3699 +closepath stroke
  2.3700 +grestore
  2.3701 +% send_data_line
  2.3702 +gsave
  2.3703 +1 setlinewidth
  2.3704 +0.000 0.000 0.000 nodecolor
  2.3705 +2769 1434 68.79 18 ellipse_path stroke
  2.3706 +0.000 0.000 0.000 nodecolor
  2.3707 +grestore
  2.3708 +% smtp_out_msg->send_data_line
  2.3709 +gsave
  2.3710 +1 setlinewidth
  2.3711 +solid
  2.3712 +0.000 0.000 0.000 edgecolor
  2.3713 +newpath 2589 1434 moveto
  2.3714 +2621 1434 2657 1434 2690 1434 curveto
  2.3715 +stroke
  2.3716 +0.000 0.000 0.000 edgecolor
  2.3717 +newpath 2690 1437.5 moveto
  2.3718 +2700 1434 lineto
  2.3719 +2690 1430.5 lineto
  2.3720 +closepath fill
  2.3721 +1 setlinewidth
  2.3722 +solid
  2.3723 +0.000 0.000 0.000 edgecolor
  2.3724 +newpath 2690 1437.5 moveto
  2.3725 +2700 1434 lineto
  2.3726 +2690 1430.5 lineto
  2.3727 +closepath stroke
  2.3728 +grestore
  2.3729 +% smtp_out_mark_rcpts
  2.3730 +gsave
  2.3731 +1 setlinewidth
  2.3732 +0.000 0.000 0.000 nodecolor
  2.3733 +2769 1488 97.98 18 ellipse_path stroke
  2.3734 +0.000 0.000 0.000 nodecolor
  2.3735 +grestore
  2.3736 +% smtp_out_msg->smtp_out_mark_rcpts
  2.3737 +gsave
  2.3738 +1 setlinewidth
  2.3739 +solid
  2.3740 +0.000 0.000 0.000 edgecolor
  2.3741 +newpath 2573 1446 moveto
  2.3742 +2609 1453 2657 1463 2696 1472 curveto
  2.3743 +stroke
  2.3744 +0.000 0.000 0.000 edgecolor
  2.3745 +newpath 2695.51 1475.47 moveto
  2.3746 +2706 1474 lineto
  2.3747 +2696.88 1468.61 lineto
  2.3748 +closepath fill
  2.3749 +1 setlinewidth
  2.3750 +solid
  2.3751 +0.000 0.000 0.000 edgecolor
  2.3752 +newpath 2695.51 1475.47 moveto
  2.3753 +2706 1474 lineto
  2.3754 +2696.88 1468.61 lineto
  2.3755 +closepath stroke
  2.3756 +grestore
  2.3757 +% get_daemon
  2.3758 +gsave
  2.3759 +1 setlinewidth
  2.3760 +0.000 0.000 0.000 nodecolor
  2.3761 +170 852 57.87 18 ellipse_path stroke
  2.3762 +0.000 0.000 0.000 nodecolor
  2.3763 +grestore
  2.3764 +% get_online
  2.3765 +gsave
  2.3766 +1 setlinewidth
  2.3767 +0.000 0.000 0.000 nodecolor
  2.3768 +1189 3451 50.22 18 ellipse_path stroke
  2.3769 +0.000 0.000 0.000 nodecolor
  2.3770 +grestore
  2.3771 +% get_daemon->get_online
  2.3772 +gsave
  2.3773 +1 setlinewidth
  2.3774 +solid
  2.3775 +0.000 0.000 0.000 edgecolor
  2.3776 +newpath 171 870 moveto
  2.3777 +174 961 193 1377 282 1704 curveto
  2.3778 +347 1939 336 2027 500 2209 curveto
  2.3779 +683 2411 894 2274 1036 2507 curveto
  2.3780 +1090 2593 1009 3339 1072 3419 curveto
  2.3781 +1086 3436 1108 3445 1129 3448 curveto
  2.3782 +stroke
  2.3783 +0.000 0.000 0.000 edgecolor
  2.3784 +newpath 1128.51 3451.47 moveto
  2.3785 +1139 3450 lineto
  2.3786 +1129.88 3444.61 lineto
  2.3787 +closepath fill
  2.3788 +1 setlinewidth
  2.3789 +solid
  2.3790 +0.000 0.000 0.000 edgecolor
  2.3791 +newpath 1128.51 3451.47 moveto
  2.3792 +1139 3450 lineto
  2.3793 +1129.88 3444.61 lineto
  2.3794 +closepath stroke
  2.3795 +grestore
  2.3796 +% sighup_handler
  2.3797 +gsave
  2.3798 +1 setlinewidth
  2.3799 +0.000 0.000 0.000 nodecolor
  2.3800 +373 824 70.18 18 ellipse_path stroke
  2.3801 +0.000 0.000 0.000 nodecolor
  2.3802 +grestore
  2.3803 +% get_daemon->sighup_handler
  2.3804 +gsave
  2.3805 +1 setlinewidth
  2.3806 +dotted
  2.3807 +0.000 0.000 0.000 edgecolor
  2.3808 +newpath 224 845 moveto
  2.3809 +248 841 276 837 301 834 curveto
  2.3810 +stroke
  2.3811 +0.000 0.000 0.000 edgecolor
  2.3812 +newpath 301.4 837.48 moveto
  2.3813 +311 833 lineto
  2.3814 +300.7 830.51 lineto
  2.3815 +closepath fill
  2.3816 +1 setlinewidth
  2.3817 +solid
  2.3818 +0.000 0.000 0.000 edgecolor
  2.3819 +newpath 301.4 837.48 moveto
  2.3820 +311 833 lineto
  2.3821 +300.7 830.51 lineto
  2.3822 +closepath stroke
  2.3823 +grestore
  2.3824 +% sigchld_handler
  2.3825 +gsave
  2.3826 +1 setlinewidth
  2.3827 +0.000 0.000 0.000 nodecolor
  2.3828 +578 750 71.77 18 ellipse_path stroke
  2.3829 +0.000 0.000 0.000 nodecolor
  2.3830 +grestore
  2.3831 +% get_daemon->sigchld_handler
  2.3832 +gsave
  2.3833 +1 setlinewidth
  2.3834 +dotted
  2.3835 +0.000 0.000 0.000 edgecolor
  2.3836 +newpath 206 866 moveto
  2.3837 +264 888 384 920 464 869 curveto
  2.3838 +496 850 476 822 500 795 curveto
  2.3839 +509 786 521 777 532 771 curveto
  2.3840 +stroke
  2.3841 +0.000 0.000 0.000 edgecolor
  2.3842 +newpath 533.96 773.92 moveto
  2.3843 +541 766 lineto
  2.3844 +530.56 767.8 lineto
  2.3845 +closepath fill
  2.3846 +1 setlinewidth
  2.3847 +solid
  2.3848 +0.000 0.000 0.000 edgecolor
  2.3849 +newpath 533.96 773.92 moveto
  2.3850 +541 766 lineto
  2.3851 +530.56 767.8 lineto
  2.3852 +closepath stroke
  2.3853 +grestore
  2.3854 +% get_online->get_from_file
  2.3855 +gsave
  2.3856 +1 setlinewidth
  2.3857 +solid
  2.3858 +0.000 0.000 0.000 edgecolor
  2.3859 +newpath 1237 3457 moveto
  2.3860 +1275 3462 1330 3468 1374 3474 curveto
  2.3861 +stroke
  2.3862 +0.000 0.000 0.000 edgecolor
  2.3863 +newpath 1373.7 3477.49 moveto
  2.3864 +1384 3475 lineto
  2.3865 +1374.4 3470.52 lineto
  2.3866 +closepath fill
  2.3867 +1 setlinewidth
  2.3868 +solid
  2.3869 +0.000 0.000 0.000 edgecolor
  2.3870 +newpath 1373.7 3477.49 moveto
  2.3871 +1384 3475 lineto
  2.3872 +1374.4 3470.52 lineto
  2.3873 +closepath stroke
  2.3874 +grestore
  2.3875 +% get_online->table_find
  2.3876 +gsave
  2.3877 +1 setlinewidth
  2.3878 +solid
  2.3879 +0.000 0.000 0.000 edgecolor
  2.3880 +newpath 1220 3465 moveto
  2.3881 +1251 3479 1299 3498 1342 3509 curveto
  2.3882 +2010 3674 2200 3650 2886 3610 curveto
  2.3883 +3000 3603 3030 3605 3140 3580 curveto
  2.3884 +3273 3548 3298 3516 3428 3477 curveto
  2.3885 +3446 3471 3466 3466 3484 3462 curveto
  2.3886 +stroke
  2.3887 +0.000 0.000 0.000 edgecolor
  2.3888 +newpath 3485.43 3465.23 moveto
  2.3889 +3494 3459 lineto
  2.3890 +3483.42 3458.52 lineto
  2.3891 +closepath fill
  2.3892 +1 setlinewidth
  2.3893 +solid
  2.3894 +0.000 0.000 0.000 edgecolor
  2.3895 +newpath 3485.43 3465.23 moveto
  2.3896 +3494 3459 lineto
  2.3897 +3483.42 3458.52 lineto
  2.3898 +closepath stroke
  2.3899 +grestore
  2.3900 +% detect_online
  2.3901 +gsave
  2.3902 +1 setlinewidth
  2.3903 +0.000 0.000 0.000 nodecolor
  2.3904 +1442 2312 62.04 18 ellipse_path stroke
  2.3905 +0.000 0.000 0.000 nodecolor
  2.3906 +grestore
  2.3907 +% get_online->detect_online
  2.3908 +gsave
  2.3909 +1 setlinewidth
  2.3910 +solid
  2.3911 +0.000 0.000 0.000 edgecolor
  2.3912 +newpath 1200 3433 moveto
  2.3913 +1225 3393 1283 3292 1306 3198 curveto
  2.3914 +1329 3105 1283 2413 1342 2339 curveto
  2.3915 +1350 2330 1360 2323 1371 2319 curveto
  2.3916 +stroke
  2.3917 +0.000 0.000 0.000 edgecolor
  2.3918 +newpath 1372.43 2322.23 moveto
  2.3919 +1381 2316 lineto
  2.3920 +1370.42 2315.52 lineto
  2.3921 +closepath fill
  2.3922 +1 setlinewidth
  2.3923 +solid
  2.3924 +0.000 0.000 0.000 edgecolor
  2.3925 +newpath 1372.43 2322.23 moveto
  2.3926 +1381 2316 lineto
  2.3927 +1370.42 2315.52 lineto
  2.3928 +closepath stroke
  2.3929 +grestore
  2.3930 +% sighup_handler->sighup_handler
  2.3931 +gsave
  2.3932 +1 setlinewidth
  2.3933 +dotted
  2.3934 +0.000 0.000 0.000 edgecolor
  2.3935 +newpath 338 840 moveto
  2.3936 +329 850 341 860 373 860 curveto
  2.3937 +394 860 406 856 410 850 curveto
  2.3938 +stroke
  2.3939 +0.000 0.000 0.000 edgecolor
  2.3940 +newpath 413.39 849.12 moveto
  2.3941 +408 840 lineto
  2.3942 +406.53 850.49 lineto
  2.3943 +closepath fill
  2.3944 +1 setlinewidth
  2.3945 +solid
  2.3946 +0.000 0.000 0.000 edgecolor
  2.3947 +newpath 413.39 849.12 moveto
  2.3948 +408 840 lineto
  2.3949 +406.53 850.49 lineto
  2.3950 +closepath stroke
  2.3951 +grestore
  2.3952 +% sigchld_handler->sigchld_handler
  2.3953 +gsave
  2.3954 +1 setlinewidth
  2.3955 +dotted
  2.3956 +0.000 0.000 0.000 edgecolor
  2.3957 +newpath 545 766 moveto
  2.3958 +536 776 548 786 578 786 curveto
  2.3959 +598 786 610 782 613 776 curveto
  2.3960 +stroke
  2.3961 +0.000 0.000 0.000 edgecolor
  2.3962 +newpath 616.39 775.12 moveto
  2.3963 +611 766 lineto
  2.3964 +609.53 776.49 lineto
  2.3965 +closepath fill
  2.3966 +1 setlinewidth
  2.3967 +solid
  2.3968 +0.000 0.000 0.000 edgecolor
  2.3969 +newpath 616.39 775.12 moveto
  2.3970 +611 766 lineto
  2.3971 +609.53 776.49 lineto
  2.3972 +closepath stroke
  2.3973 +grestore
  2.3974 +% destroy_get_conf->destroy_address
  2.3975 +gsave
  2.3976 +1 setlinewidth
  2.3977 +solid
  2.3978 +0.000 0.000 0.000 edgecolor
  2.3979 +newpath 2065 3490 moveto
  2.3980 +2151 3498 2296 3512 2422 3518 curveto
  2.3981 +2583 3524 3026 3545 3140 3433 curveto
  2.3982 +3186 3388 3131 3339 3176 3295 curveto
  2.3983 +3184 3287 3193 3282 3204 3278 curveto
  2.3984 +stroke
  2.3985 +0.000 0.000 0.000 edgecolor
  2.3986 +newpath 3205.28 3281.26 moveto
  2.3987 +3213 3274 lineto
  2.3988 +3202.44 3274.86 lineto
  2.3989 +closepath fill
  2.3990 +1 setlinewidth
  2.3991 +solid
  2.3992 +0.000 0.000 0.000 edgecolor
  2.3993 +newpath 3205.28 3281.26 moveto
  2.3994 +3213 3274 lineto
  2.3995 +3202.44 3274.86 lineto
  2.3996 +closepath stroke
  2.3997 +grestore
  2.3998 +% peopen
  2.3999 +gsave
  2.4000 +1 setlinewidth
  2.4001 +0.000 0.000 0.000 nodecolor
  2.4002 +1705 2212 39.11 18 ellipse_path stroke
  2.4003 +0.000 0.000 0.000 nodecolor
  2.4004 +grestore
  2.4005 +% detect_online->peopen
  2.4006 +gsave
  2.4007 +1 setlinewidth
  2.4008 +solid
  2.4009 +0.000 0.000 0.000 edgecolor
  2.4010 +newpath 1468 2295 moveto
  2.4011 +1494 2279 1538 2253 1578 2239 curveto
  2.4012 +1603 2229 1633 2223 1657 2219 curveto
  2.4013 +stroke
  2.4014 +0.000 0.000 0.000 edgecolor
  2.4015 +newpath 1657.88 2222.39 moveto
  2.4016 +1667 2217 lineto
  2.4017 +1656.51 2215.53 lineto
  2.4018 +closepath fill
  2.4019 +1 setlinewidth
  2.4020 +solid
  2.4021 +0.000 0.000 0.000 edgecolor
  2.4022 +newpath 1657.88 2222.39 moveto
  2.4023 +1667 2217 lineto
  2.4024 +1656.51 2215.53 lineto
  2.4025 +closepath stroke
  2.4026 +grestore
  2.4027 +% addr_is_delivered_children->addr_is_delivered_children
  2.4028 +gsave
  2.4029 +1 setlinewidth
  2.4030 +solid
  2.4031 +0.000 0.000 0.000 edgecolor
  2.4032 +newpath 2725 2225 moveto
  2.4033 +2716 2235 2731 2244 2769 2244 curveto
  2.4034 +2793 2244 2808 2240 2813 2235 curveto
  2.4035 +stroke
  2.4036 +0.000 0.000 0.000 edgecolor
  2.4037 +newpath 2816.5 2235 moveto
  2.4038 +2813 2225 lineto
  2.4039 +2809.5 2235 lineto
  2.4040 +closepath fill
  2.4041 +1 setlinewidth
  2.4042 +solid
  2.4043 +0.000 0.000 0.000 edgecolor
  2.4044 +newpath 2816.5 2235 moveto
  2.4045 +2813 2225 lineto
  2.4046 +2809.5 2235 lineto
  2.4047 +closepath stroke
  2.4048 +grestore
  2.4049 +% spool_write->addr_string
  2.4050 +gsave
  2.4051 +1 setlinewidth
  2.4052 +solid
  2.4053 +0.000 0.000 0.000 edgecolor
  2.4054 +newpath 2824 649 moveto
  2.4055 +2916 643 3092 636 3140 673 curveto
  2.4056 +3183 707 3138 752 3176 789 curveto
  2.4057 +3188 801 3204 809 3220 814 curveto
  2.4058 +stroke
  2.4059 +0.000 0.000 0.000 edgecolor
  2.4060 +newpath 3219.51 817.47 moveto
  2.4061 +3230 816 lineto
  2.4062 +3220.88 810.61 lineto
  2.4063 +closepath fill
  2.4064 +1 setlinewidth
  2.4065 +solid
  2.4066 +0.000 0.000 0.000 edgecolor
  2.4067 +newpath 3219.51 817.47 moveto
  2.4068 +3230 816 lineto
  2.4069 +3220.88 810.61 lineto
  2.4070 +closepath stroke
  2.4071 +grestore
  2.4072 +% spool_write->set_euidgid
  2.4073 +gsave
  2.4074 +1 setlinewidth
  2.4075 +solid
  2.4076 +0.000 0.000 0.000 edgecolor
  2.4077 +newpath 2796 670 moveto
  2.4078 +2820 684 2856 705 2886 724 curveto
  2.4079 +2926 749 2970 779 2999 799 curveto
  2.4080 +stroke
  2.4081 +0.000 0.000 0.000 edgecolor
  2.4082 +newpath 2996.9 801.8 moveto
  2.4083 +3007 805 lineto
  2.4084 +3001.1 796.2 lineto
  2.4085 +closepath fill
  2.4086 +1 setlinewidth
  2.4087 +solid
  2.4088 +0.000 0.000 0.000 edgecolor
  2.4089 +newpath 2996.9 801.8 moveto
  2.4090 +3007 805 lineto
  2.4091 +3001.1 796.2 lineto
  2.4092 +closepath stroke
  2.4093 +grestore
  2.4094 +% spool_write_rcpt
  2.4095 +gsave
  2.4096 +1 setlinewidth
  2.4097 +0.000 0.000 0.000 nodecolor
  2.4098 +3031 700 77.83 18 ellipse_path stroke
  2.4099 +0.000 0.000 0.000 nodecolor
  2.4100 +grestore
  2.4101 +% spool_write->spool_write_rcpt
  2.4102 +gsave
  2.4103 +1 setlinewidth
  2.4104 +solid
  2.4105 +0.000 0.000 0.000 edgecolor
  2.4106 +newpath 2819 663 moveto
  2.4107 +2859 670 2915 679 2959 687 curveto
  2.4108 +stroke
  2.4109 +0.000 0.000 0.000 edgecolor
  2.4110 +newpath 2958.51 690.47 moveto
  2.4111 +2969 689 lineto
  2.4112 +2959.88 683.61 lineto
  2.4113 +closepath fill
  2.4114 +1 setlinewidth
  2.4115 +solid
  2.4116 +0.000 0.000 0.000 edgecolor
  2.4117 +newpath 2958.51 690.47 moveto
  2.4118 +2969 689 lineto
  2.4119 +2959.88 683.61 lineto
  2.4120 +closepath stroke
  2.4121 +grestore
  2.4122 +% is_privileged_user
  2.4123 +gsave
  2.4124 +1 setlinewidth
  2.4125 +0.000 0.000 0.000 nodecolor
  2.4126 +373 456 80.8 18 ellipse_path stroke
  2.4127 +0.000 0.000 0.000 nodecolor
  2.4128 +grestore
  2.4129 +% is_ingroup
  2.4130 +gsave
  2.4131 +1 setlinewidth
  2.4132 +0.000 0.000 0.000 nodecolor
  2.4133 +578 418 52.12 18 ellipse_path stroke
  2.4134 +0.000 0.000 0.000 nodecolor
  2.4135 +grestore
  2.4136 +% is_privileged_user->is_ingroup
  2.4137 +gsave
  2.4138 +1 setlinewidth
  2.4139 +solid
  2.4140 +0.000 0.000 0.000 edgecolor
  2.4141 +newpath 436 444 moveto
  2.4142 +463 439 495 433 522 428 curveto
  2.4143 +stroke
  2.4144 +0.000 0.000 0.000 edgecolor
  2.4145 +newpath 522.88 431.39 moveto
  2.4146 +532 426 lineto
  2.4147 +521.51 424.53 lineto
  2.4148 +closepath fill
  2.4149 +1 setlinewidth
  2.4150 +solid
  2.4151 +0.000 0.000 0.000 edgecolor
  2.4152 +newpath 522.88 431.39 moveto
  2.4153 +532 426 lineto
  2.4154 +521.51 424.53 lineto
  2.4155 +closepath stroke
  2.4156 +grestore
  2.4157 +% read_conf
  2.4158 +gsave
  2.4159 +1 setlinewidth
  2.4160 +0.000 0.000 0.000 nodecolor
  2.4161 +2769 2910 50.22 18 ellipse_path stroke
  2.4162 +0.000 0.000 0.000 nodecolor
  2.4163 +grestore
  2.4164 +% read_conf->parse_list
  2.4165 +gsave
  2.4166 +1 setlinewidth
  2.4167 +solid
  2.4168 +0.000 0.000 0.000 edgecolor
  2.4169 +newpath 2809 2899 moveto
  2.4170 +2836 2889 2869 2872 2886 2845 curveto
  2.4171 +2963 2722 2849 2319 2922 2195 curveto
  2.4172 +2993 2074 3155 2008 3236 1981 curveto
  2.4173 +stroke
  2.4174 +0.000 0.000 0.000 edgecolor
  2.4175 +newpath 3237.43 1984.23 moveto
  2.4176 +3246 1978 lineto
  2.4177 +3235.42 1977.52 lineto
  2.4178 +closepath fill
  2.4179 +1 setlinewidth
  2.4180 +solid
  2.4181 +0.000 0.000 0.000 edgecolor
  2.4182 +newpath 3237.43 1984.23 moveto
  2.4183 +3246 1978 lineto
  2.4184 +3235.42 1977.52 lineto
  2.4185 +closepath stroke
  2.4186 +grestore
  2.4187 +% read_conf->create_pair_string
  2.4188 +gsave
  2.4189 +1 setlinewidth
  2.4190 +solid
  2.4191 +0.000 0.000 0.000 edgecolor
  2.4192 +newpath 2820 2910 moveto
  2.4193 +2926 2910 3181 2908 3392 2884 curveto
  2.4194 +3417 2881 3445 2876 3469 2872 curveto
  2.4195 +stroke
  2.4196 +0.000 0.000 0.000 edgecolor
  2.4197 +newpath 3469.88 2875.39 moveto
  2.4198 +3479 2870 lineto
  2.4199 +3468.51 2868.53 lineto
  2.4200 +closepath fill
  2.4201 +1 setlinewidth
  2.4202 +solid
  2.4203 +0.000 0.000 0.000 edgecolor
  2.4204 +newpath 3469.88 2875.39 moveto
  2.4205 +3479 2870 lineto
  2.4206 +3468.51 2868.53 lineto
  2.4207 +closepath stroke
  2.4208 +grestore
  2.4209 +% read_conf->parse_boolean
  2.4210 +gsave
  2.4211 +1 setlinewidth
  2.4212 +solid
  2.4213 +0.000 0.000 0.000 edgecolor
  2.4214 +newpath 2808 2898 moveto
  2.4215 +2834 2888 2867 2871 2886 2845 curveto
  2.4216 +2944 2763 2876 2711 2922 2623 curveto
  2.4217 +2940 2590 2972 2562 2997 2543 curveto
  2.4218 +stroke
  2.4219 +0.000 0.000 0.000 edgecolor
  2.4220 +newpath 2999.1 2545.8 moveto
  2.4221 +3005 2537 lineto
  2.4222 +2994.9 2540.2 lineto
  2.4223 +closepath fill
  2.4224 +1 setlinewidth
  2.4225 +solid
  2.4226 +0.000 0.000 0.000 edgecolor
  2.4227 +newpath 2999.1 2545.8 moveto
  2.4228 +3005 2537 lineto
  2.4229 +2994.9 2540.2 lineto
  2.4230 +closepath stroke
  2.4231 +grestore
  2.4232 +% read_conf->read_statement
  2.4233 +gsave
  2.4234 +1 setlinewidth
  2.4235 +solid
  2.4236 +0.000 0.000 0.000 edgecolor
  2.4237 +newpath 2809 2899 moveto
  2.4238 +2835 2889 2868 2872 2886 2845 curveto
  2.4239 +2930 2779 2871 2552 2922 2493 curveto
  2.4240 +2931 2484 2941 2477 2953 2473 curveto
  2.4241 +stroke
  2.4242 +0.000 0.000 0.000 edgecolor
  2.4243 +newpath 2954.43 2476.23 moveto
  2.4244 +2963 2470 lineto
  2.4245 +2952.42 2469.52 lineto
  2.4246 +closepath fill
  2.4247 +1 setlinewidth
  2.4248 +solid
  2.4249 +0.000 0.000 0.000 edgecolor
  2.4250 +newpath 2954.43 2476.23 moveto
  2.4251 +2963 2470 lineto
  2.4252 +2952.42 2469.52 lineto
  2.4253 +closepath stroke
  2.4254 +grestore
  2.4255 +% read_conf->parse_interface
  2.4256 +gsave
  2.4257 +1 setlinewidth
  2.4258 +solid
  2.4259 +0.000 0.000 0.000 edgecolor
  2.4260 +newpath 2807 2898 moveto
  2.4261 +2833 2888 2867 2871 2886 2845 curveto
  2.4262 +2932 2783 2869 2731 2922 2677 curveto
  2.4263 +2931 2668 2942 2662 2953 2658 curveto
  2.4264 +stroke
  2.4265 +0.000 0.000 0.000 edgecolor
  2.4266 +newpath 2954.43 2661.23 moveto
  2.4267 +2963 2655 lineto
  2.4268 +2952.42 2654.52 lineto
  2.4269 +closepath fill
  2.4270 +1 setlinewidth
  2.4271 +solid
  2.4272 +0.000 0.000 0.000 edgecolor
  2.4273 +newpath 2954.43 2661.23 moveto
  2.4274 +2963 2655 lineto
  2.4275 +2952.42 2654.52 lineto
  2.4276 +closepath stroke
  2.4277 +grestore
  2.4278 +% create_pair
  2.4279 +gsave
  2.4280 +1 setlinewidth
  2.4281 +0.000 0.000 0.000 nodecolor
  2.4282 +3031 2948 54.2 18 ellipse_path stroke
  2.4283 +0.000 0.000 0.000 nodecolor
  2.4284 +grestore
  2.4285 +% read_conf->create_pair
  2.4286 +gsave
  2.4287 +1 setlinewidth
  2.4288 +solid
  2.4289 +0.000 0.000 0.000 edgecolor
  2.4290 +newpath 2816 2917 moveto
  2.4291 +2859 2924 2923 2933 2971 2940 curveto
  2.4292 +stroke
  2.4293 +0.000 0.000 0.000 edgecolor
  2.4294 +newpath 2970.7 2943.49 moveto
  2.4295 +2981 2941 lineto
  2.4296 +2971.4 2936.52 lineto
  2.4297 +closepath fill
  2.4298 +1 setlinewidth
  2.4299 +solid
  2.4300 +0.000 0.000 0.000 edgecolor
  2.4301 +newpath 2970.7 2943.49 moveto
  2.4302 +2981 2941 lineto
  2.4303 +2971.4 2936.52 lineto
  2.4304 +closepath stroke
  2.4305 +grestore
  2.4306 +% time_interval
  2.4307 +gsave
  2.4308 +1 setlinewidth
  2.4309 +0.000 0.000 0.000 nodecolor
  2.4310 +3031 3002 59.96 18 ellipse_path stroke
  2.4311 +0.000 0.000 0.000 nodecolor
  2.4312 +grestore
  2.4313 +% read_conf->time_interval
  2.4314 +gsave
  2.4315 +1 setlinewidth
  2.4316 +solid
  2.4317 +0.000 0.000 0.000 edgecolor
  2.4318 +newpath 2818 2915 moveto
  2.4319 +2840 2918 2865 2925 2886 2937 curveto
  2.4320 +2907 2948 2902 2963 2922 2975 curveto
  2.4321 +2935 2982 2951 2988 2966 2993 curveto
  2.4322 +stroke
  2.4323 +0.000 0.000 0.000 edgecolor
  2.4324 +newpath 2965.51 2996.47 moveto
  2.4325 +2976 2995 lineto
  2.4326 +2966.88 2989.61 lineto
  2.4327 +closepath fill
  2.4328 +1 setlinewidth
  2.4329 +solid
  2.4330 +0.000 0.000 0.000 edgecolor
  2.4331 +newpath 2965.51 2996.47 moveto
  2.4332 +2976 2995 lineto
  2.4333 +2966.88 2989.61 lineto
  2.4334 +closepath stroke
  2.4335 +grestore
  2.4336 +% smtp_out_open
  2.4337 +gsave
  2.4338 +1 setlinewidth
  2.4339 +0.000 0.000 0.000 nodecolor
  2.4340 +2519 1542 72.96 18 ellipse_path stroke
  2.4341 +0.000 0.000 0.000 nodecolor
  2.4342 +grestore
  2.4343 +% create_smtpbase
  2.4344 +gsave
  2.4345 +1 setlinewidth
  2.4346 +0.000 0.000 0.000 nodecolor
  2.4347 +2769 1596 75.94 18 ellipse_path stroke
  2.4348 +0.000 0.000 0.000 nodecolor
  2.4349 +grestore
  2.4350 +% smtp_out_open->create_smtpbase
  2.4351 +gsave
  2.4352 +1 setlinewidth
  2.4353 +solid
  2.4354 +0.000 0.000 0.000 edgecolor
  2.4355 +newpath 2574 1554 moveto
  2.4356 +2612 1562 2662 1573 2702 1582 curveto
  2.4357 +stroke
  2.4358 +0.000 0.000 0.000 edgecolor
  2.4359 +newpath 2701.51 1585.47 moveto
  2.4360 +2712 1584 lineto
  2.4361 +2702.88 1578.61 lineto
  2.4362 +closepath fill
  2.4363 +1 setlinewidth
  2.4364 +solid
  2.4365 +0.000 0.000 0.000 edgecolor
  2.4366 +newpath 2701.51 1585.47 moveto
  2.4367 +2712 1584 lineto
  2.4368 +2702.88 1578.61 lineto
  2.4369 +closepath stroke
  2.4370 +grestore
  2.4371 +% connect_resolvelist
  2.4372 +gsave
  2.4373 +1 setlinewidth
  2.4374 +0.000 0.000 0.000 nodecolor
  2.4375 +2769 1542 84.97 18 ellipse_path stroke
  2.4376 +0.000 0.000 0.000 nodecolor
  2.4377 +grestore
  2.4378 +% smtp_out_open->connect_resolvelist
  2.4379 +gsave
  2.4380 +1 setlinewidth
  2.4381 +solid
  2.4382 +0.000 0.000 0.000 edgecolor
  2.4383 +newpath 2592 1542 moveto
  2.4384 +2618 1542 2646 1542 2673 1542 curveto
  2.4385 +stroke
  2.4386 +0.000 0.000 0.000 edgecolor
  2.4387 +newpath 2673 1545.5 moveto
  2.4388 +2683 1542 lineto
  2.4389 +2673 1538.5 lineto
  2.4390 +closepath fill
  2.4391 +1 setlinewidth
  2.4392 +solid
  2.4393 +0.000 0.000 0.000 edgecolor
  2.4394 +newpath 2673 1545.5 moveto
  2.4395 +2683 1542 lineto
  2.4396 +2673 1538.5 lineto
  2.4397 +closepath stroke
  2.4398 +grestore
  2.4399 +% connect_hostlist
  2.4400 +gsave
  2.4401 +1 setlinewidth
  2.4402 +0.000 0.000 0.000 nodecolor
  2.4403 +3031 1360 75.05 18 ellipse_path stroke
  2.4404 +0.000 0.000 0.000 nodecolor
  2.4405 +grestore
  2.4406 +% connect_resolvelist->connect_hostlist
  2.4407 +gsave
  2.4408 +1 setlinewidth
  2.4409 +solid
  2.4410 +0.000 0.000 0.000 edgecolor
  2.4411 +newpath 2849 1535 moveto
  2.4412 +2863 1531 2876 1525 2886 1515 curveto
  2.4413 +2928 1475 2882 1432 2922 1392 curveto
  2.4414 +2931 1383 2943 1376 2955 1371 curveto
  2.4415 +stroke
  2.4416 +0.000 0.000 0.000 edgecolor
  2.4417 +newpath 2955.62 1374.48 moveto
  2.4418 +2964 1368 lineto
  2.4419 +2953.41 1367.84 lineto
  2.4420 +closepath fill
  2.4421 +1 setlinewidth
  2.4422 +solid
  2.4423 +0.000 0.000 0.000 edgecolor
  2.4424 +newpath 2955.62 1374.48 moveto
  2.4425 +2964 1368 lineto
  2.4426 +2953.41 1367.84 lineto
  2.4427 +closepath stroke
  2.4428 +grestore
  2.4429 +% peopen->peidopen
  2.4430 +gsave
  2.4431 +1 setlinewidth
  2.4432 +solid
  2.4433 +0.000 0.000 0.000 edgecolor
  2.4434 +newpath 1744 2214 moveto
  2.4435 +1819 2219 1986 2233 2118 2277 curveto
  2.4436 +2263 2323 2283 2373 2422 2432 curveto
  2.4437 +2522 2473 2548 2483 2652 2509 curveto
  2.4438 +2861 2559 3116 2587 3228 2598 curveto
  2.4439 +stroke
  2.4440 +0.000 0.000 0.000 edgecolor
  2.4441 +newpath 3227.7 2601.49 moveto
  2.4442 +3238 2599 lineto
  2.4443 +3228.4 2594.52 lineto
  2.4444 +closepath fill
  2.4445 +1 setlinewidth
  2.4446 +solid
  2.4447 +0.000 0.000 0.000 edgecolor
  2.4448 +newpath 3227.7 2601.49 moveto
  2.4449 +3238 2599 lineto
  2.4450 +3228.4 2594.52 lineto
  2.4451 +closepath stroke
  2.4452 +grestore
  2.4453 +% route_is_allowed_mail_local
  2.4454 +gsave
  2.4455 +1 setlinewidth
  2.4456 +0.000 0.000 0.000 nodecolor
  2.4457 +1705 2358 121.1 18 ellipse_path stroke
  2.4458 +0.000 0.000 0.000 nodecolor
  2.4459 +grestore
  2.4460 +% _g_list_strcmp
  2.4461 +gsave
  2.4462 +1 setlinewidth
  2.4463 +0.000 0.000 0.000 nodecolor
  2.4464 +1993 2358 68.99 18 ellipse_path stroke
  2.4465 +0.000 0.000 0.000 nodecolor
  2.4466 +grestore
  2.4467 +% route_is_allowed_mail_local->_g_list_strcmp
  2.4468 +gsave
  2.4469 +1 setlinewidth
  2.4470 +dotted
  2.4471 +0.000 0.000 0.000 edgecolor
  2.4472 +newpath 1827 2358 moveto
  2.4473 +1856 2358 1886 2358 1913 2358 curveto
  2.4474 +stroke
  2.4475 +0.000 0.000 0.000 edgecolor
  2.4476 +newpath 1913 2361.5 moveto
  2.4477 +1923 2358 lineto
  2.4478 +1913 2354.5 lineto
  2.4479 +closepath fill
  2.4480 +1 setlinewidth
  2.4481 +solid
  2.4482 +0.000 0.000 0.000 edgecolor
  2.4483 +newpath 1913 2361.5 moveto
  2.4484 +1923 2358 lineto
  2.4485 +1913 2354.5 lineto
  2.4486 +closepath stroke
  2.4487 +grestore
  2.4488 +% spool_write_rcpt->addr_string
  2.4489 +gsave
  2.4490 +1 setlinewidth
  2.4491 +solid
  2.4492 +0.000 0.000 0.000 edgecolor
  2.4493 +newpath 3094 711 moveto
  2.4494 +3110 715 3127 722 3140 732 curveto
  2.4495 +3164 751 3153 771 3176 789 curveto
  2.4496 +3189 800 3207 806 3223 811 curveto
  2.4497 +stroke
  2.4498 +0.000 0.000 0.000 edgecolor
  2.4499 +newpath 3222.42 814.48 moveto
  2.4500 +3233 814 lineto
  2.4501 +3224.43 807.77 lineto
  2.4502 +closepath fill
  2.4503 +1 setlinewidth
  2.4504 +solid
  2.4505 +0.000 0.000 0.000 edgecolor
  2.4506 +newpath 3222.42 814.48 moveto
  2.4507 +3233 814 lineto
  2.4508 +3224.43 807.77 lineto
  2.4509 +closepath stroke
  2.4510 +grestore
  2.4511 +% destroy_msg_out
  2.4512 +gsave
  2.4513 +1 setlinewidth
  2.4514 +0.000 0.000 0.000 nodecolor
  2.4515 +1993 2304 79.22 18 ellipse_path stroke
  2.4516 +0.000 0.000 0.000 nodecolor
  2.4517 +grestore
  2.4518 +% destroy_msg_out->destroy_address
  2.4519 +gsave
  2.4520 +1 setlinewidth
  2.4521 +solid
  2.4522 +0.000 0.000 0.000 edgecolor
  2.4523 +newpath 2072 2305 moveto
  2.4524 +2089 2309 2106 2317 2118 2331 curveto
  2.4525 +2206 2432 2087 2817 2154 2933 curveto
  2.4526 +2216 3039 2312 2985 2386 3083 curveto
  2.4527 +2419 3124 2385 3159 2422 3196 curveto
  2.4528 +2531 3301 3007 3285 3201 3274 curveto
  2.4529 +stroke
  2.4530 +0.000 0.000 0.000 edgecolor
  2.4531 +newpath 3201.4 3277.48 moveto
  2.4532 +3211 3273 lineto
  2.4533 +3200.7 3270.51 lineto
  2.4534 +closepath fill
  2.4535 +1 setlinewidth
  2.4536 +solid
  2.4537 +0.000 0.000 0.000 edgecolor
  2.4538 +newpath 3201.4 3277.48 moveto
  2.4539 +3211 3273 lineto
  2.4540 +3200.7 3270.51 lineto
  2.4541 +closepath stroke
  2.4542 +grestore
  2.4543 +% destroy_msg_out->destroy_header
  2.4544 +gsave
  2.4545 +1 setlinewidth
  2.4546 +solid
  2.4547 +0.000 0.000 0.000 edgecolor
  2.4548 +newpath 2006 2286 moveto
  2.4549 +2030 2253 2088 2183 2154 2148 curveto
  2.4550 +2354 2042 2430 2084 2652 2046 curveto
  2.4551 +2704 2037 2848 2049 2886 2013 curveto
  2.4552 +2946 1956 2860 1884 2922 1832 curveto
  2.4553 +2964 1796 3118 1806 3211 1817 curveto
  2.4554 +stroke
  2.4555 +0.000 0.000 0.000 edgecolor
  2.4556 +newpath 3210.7 1820.49 moveto
  2.4557 +3221 1818 lineto
  2.4558 +3211.4 1813.52 lineto
  2.4559 +closepath fill
  2.4560 +1 setlinewidth
  2.4561 +solid
  2.4562 +0.000 0.000 0.000 edgecolor
  2.4563 +newpath 3210.7 1820.49 moveto
  2.4564 +3221 1818 lineto
  2.4565 +3211.4 1813.52 lineto
  2.4566 +closepath stroke
  2.4567 +grestore
  2.4568 +% smtp_out_open_child
  2.4569 +gsave
  2.4570 +1 setlinewidth
  2.4571 +0.000 0.000 0.000 nodecolor
  2.4572 +2519 1596 96.09 18 ellipse_path stroke
  2.4573 +0.000 0.000 0.000 nodecolor
  2.4574 +grestore
  2.4575 +% smtp_out_open_child->create_smtpbase
  2.4576 +gsave
  2.4577 +1 setlinewidth
  2.4578 +solid
  2.4579 +0.000 0.000 0.000 edgecolor
  2.4580 +newpath 2616 1596 moveto
  2.4581 +2637 1596 2660 1596 2682 1596 curveto
  2.4582 +stroke
  2.4583 +0.000 0.000 0.000 edgecolor
  2.4584 +newpath 2682 1599.5 moveto
  2.4585 +2692 1596 lineto
  2.4586 +2682 1592.5 lineto
  2.4587 +closepath fill
  2.4588 +1 setlinewidth
  2.4589 +solid
  2.4590 +0.000 0.000 0.000 edgecolor
  2.4591 +newpath 2682 1599.5 moveto
  2.4592 +2692 1596 lineto
  2.4593 +2682 1592.5 lineto
  2.4594 +closepath stroke
  2.4595 +grestore
  2.4596 +% child
  2.4597 +gsave
  2.4598 +1 setlinewidth
  2.4599 +0.000 0.000 0.000 nodecolor
  2.4600 +2769 1650 29.88 18 ellipse_path stroke
  2.4601 +0.000 0.000 0.000 nodecolor
  2.4602 +grestore
  2.4603 +% smtp_out_open_child->child
  2.4604 +gsave
  2.4605 +1 setlinewidth
  2.4606 +solid
  2.4607 +0.000 0.000 0.000 edgecolor
  2.4608 +newpath 2582 1610 moveto
  2.4609 +2629 1620 2691 1634 2731 1642 curveto
  2.4610 +stroke
  2.4611 +0.000 0.000 0.000 edgecolor
  2.4612 +newpath 2730.51 1645.47 moveto
  2.4613 +2741 1644 lineto
  2.4614 +2731.88 1638.61 lineto
  2.4615 +closepath fill
  2.4616 +1 setlinewidth
  2.4617 +solid
  2.4618 +0.000 0.000 0.000 edgecolor
  2.4619 +newpath 2730.51 1645.47 moveto
  2.4620 +2741 1644 lineto
  2.4621 +2731.88 1638.61 lineto
  2.4622 +closepath stroke
  2.4623 +grestore
  2.4624 +% parse_address_rfc821
  2.4625 +gsave
  2.4626 +1 setlinewidth
  2.4627 +0.000 0.000 0.000 nodecolor
  2.4628 +4062 1566 97.98 18 ellipse_path stroke
  2.4629 +0.000 0.000 0.000 nodecolor
  2.4630 +grestore
  2.4631 +% _create_address->parse_address_rfc821
  2.4632 +gsave
  2.4633 +1 setlinewidth
  2.4634 +solid
  2.4635 +0.000 0.000 0.000 edgecolor
  2.4636 +newpath 3880 1566 moveto
  2.4637 +3903 1566 3929 1566 3954 1566 curveto
  2.4638 +stroke
  2.4639 +0.000 0.000 0.000 edgecolor
  2.4640 +newpath 3954 1569.5 moveto
  2.4641 +3964 1566 lineto
  2.4642 +3954 1562.5 lineto
  2.4643 +closepath fill
  2.4644 +1 setlinewidth
  2.4645 +solid
  2.4646 +0.000 0.000 0.000 edgecolor
  2.4647 +newpath 3954 1569.5 moveto
  2.4648 +3964 1566 lineto
  2.4649 +3954 1562.5 lineto
  2.4650 +closepath stroke
  2.4651 +grestore
  2.4652 +% parse_address_rfc822
  2.4653 +gsave
  2.4654 +1 setlinewidth
  2.4655 +0.000 0.000 0.000 nodecolor
  2.4656 +4062 1620 97.98 18 ellipse_path stroke
  2.4657 +0.000 0.000 0.000 nodecolor
  2.4658 +grestore
  2.4659 +% _create_address->parse_address_rfc822
  2.4660 +gsave
  2.4661 +1 setlinewidth
  2.4662 +solid
  2.4663 +0.000 0.000 0.000 edgecolor
  2.4664 +newpath 3862 1578 moveto
  2.4665 +3899 1585 3947 1596 3987 1604 curveto
  2.4666 +stroke
  2.4667 +0.000 0.000 0.000 edgecolor
  2.4668 +newpath 3986.51 1607.47 moveto
  2.4669 +3997 1606 lineto
  2.4670 +3987.88 1600.61 lineto
  2.4671 +closepath fill
  2.4672 +1 setlinewidth
  2.4673 +solid
  2.4674 +0.000 0.000 0.000 edgecolor
  2.4675 +newpath 3986.51 1607.47 moveto
  2.4676 +3997 1606 lineto
  2.4677 +3987.88 1600.61 lineto
  2.4678 +closepath stroke
  2.4679 +grestore
  2.4680 +% spool_unlock->set_euidgid
  2.4681 +gsave
  2.4682 +1 setlinewidth
  2.4683 +solid
  2.4684 +0.000 0.000 0.000 edgecolor
  2.4685 +newpath 1228 865 moveto
  2.4686 +1259 854 1303 840 1342 833 curveto
  2.4687 +1502 806 1544 814 1705 814 curveto
  2.4688 +1705 814 1705 814 2519 814 curveto
  2.4689 +2679 814 2867 818 2965 820 curveto
  2.4690 +stroke
  2.4691 +0.000 0.000 0.000 edgecolor
  2.4692 +newpath 2965 823.5 moveto
  2.4693 +2975 820 lineto
  2.4694 +2965 816.5 lineto
  2.4695 +closepath fill
  2.4696 +1 setlinewidth
  2.4697 +solid
  2.4698 +0.000 0.000 0.000 edgecolor
  2.4699 +newpath 2965 823.5 moveto
  2.4700 +2975 820 lineto
  2.4701 +2965 816.5 lineto
  2.4702 +closepath stroke
  2.4703 +grestore
  2.4704 +% dot_unlock
  2.4705 +gsave
  2.4706 +1 setlinewidth
  2.4707 +0.000 0.000 0.000 nodecolor
  2.4708 +1442 860 55.09 18 ellipse_path stroke
  2.4709 +0.000 0.000 0.000 nodecolor
  2.4710 +grestore
  2.4711 +% spool_unlock->dot_unlock
  2.4712 +gsave
  2.4713 +1 setlinewidth
  2.4714 +solid
  2.4715 +0.000 0.000 0.000 edgecolor
  2.4716 +newpath 1252 874 moveto
  2.4717 +1290 871 1339 868 1378 865 curveto
  2.4718 +stroke
  2.4719 +0.000 0.000 0.000 edgecolor
  2.4720 +newpath 1378.4 868.48 moveto
  2.4721 +1388 864 lineto
  2.4722 +1377.7 861.51 lineto
  2.4723 +closepath fill
  2.4724 +1 setlinewidth
  2.4725 +solid
  2.4726 +0.000 0.000 0.000 edgecolor
  2.4727 +newpath 1378.4 868.48 moveto
  2.4728 +1388 864 lineto
  2.4729 +1377.7 861.51 lineto
  2.4730 +closepath stroke
  2.4731 +grestore
  2.4732 +% create_address_rfc822
  2.4733 +gsave
  2.4734 +1 setlinewidth
  2.4735 +0.000 0.000 0.000 nodecolor
  2.4736 +3537 1620 100.06 18 ellipse_path stroke
  2.4737 +0.000 0.000 0.000 nodecolor
  2.4738 +grestore
  2.4739 +% create_address_rfc822->_create_address
  2.4740 +gsave
  2.4741 +1 setlinewidth
  2.4742 +solid
  2.4743 +0.000 0.000 0.000 edgecolor
  2.4744 +newpath 3604 1607 moveto
  2.4745 +3645 1599 3697 1588 3738 1580 curveto
  2.4746 +stroke
  2.4747 +0.000 0.000 0.000 edgecolor
  2.4748 +newpath 3738.88 1583.39 moveto
  2.4749 +3748 1578 lineto
  2.4750 +3737.51 1576.53 lineto
  2.4751 +closepath fill
  2.4752 +1 setlinewidth
  2.4753 +solid
  2.4754 +0.000 0.000 0.000 edgecolor
  2.4755 +newpath 3738.88 1583.39 moveto
  2.4756 +3748 1578 lineto
  2.4757 +3737.51 1576.53 lineto
  2.4758 +closepath stroke
  2.4759 +grestore
  2.4760 +% deliver_msglist_host_smtp
  2.4761 +gsave
  2.4762 +1 setlinewidth
  2.4763 +0.000 0.000 0.000 nodecolor
  2.4764 +2270 1542 114.85 18 ellipse_path stroke
  2.4765 +0.000 0.000 0.000 nodecolor
  2.4766 +grestore
  2.4767 +% deliver_msglist_host_smtp->msg_free_data
  2.4768 +gsave
  2.4769 +1 setlinewidth
  2.4770 +solid
  2.4771 +0.000 0.000 0.000 edgecolor
  2.4772 +newpath 2274 1560 moveto
  2.4773 +2288 1635 2346 1934 2386 2181 curveto
  2.4774 +2396 2236 2388 2387 2422 2432 curveto
  2.4775 +2559 2609 2733 2464 2886 2628 curveto
  2.4776 +2920 2663 2886 2699 2922 2731 curveto
  2.4777 +2997 2795 3044 2754 3140 2774 curveto
  2.4778 +3166 2779 3195 2785 3220 2790 curveto
  2.4779 +stroke
  2.4780 +0.000 0.000 0.000 edgecolor
  2.4781 +newpath 3219.51 2793.47 moveto
  2.4782 +3230 2792 lineto
  2.4783 +3220.88 2786.61 lineto
  2.4784 +closepath fill
  2.4785 +1 setlinewidth
  2.4786 +solid
  2.4787 +0.000 0.000 0.000 edgecolor
  2.4788 +newpath 3219.51 2793.47 moveto
  2.4789 +3230 2792 lineto
  2.4790 +3220.88 2786.61 lineto
  2.4791 +closepath stroke
  2.4792 +grestore
  2.4793 +% deliver_msglist_host_smtp->smtp_out_init
  2.4794 +gsave
  2.4795 +1 setlinewidth
  2.4796 +solid
  2.4797 +0.000 0.000 0.000 edgecolor
  2.4798 +newpath 2279 1524 moveto
  2.4799 +2300 1486 2353 1399 2422 1353 curveto
  2.4800 +2431 1347 2442 1342 2453 1338 curveto
  2.4801 +stroke
  2.4802 +0.000 0.000 0.000 edgecolor
  2.4803 +newpath 2454.43 1341.23 moveto
  2.4804 +2463 1335 lineto
  2.4805 +2452.42 1334.52 lineto
  2.4806 +closepath fill
  2.4807 +1 setlinewidth
  2.4808 +solid
  2.4809 +0.000 0.000 0.000 edgecolor
  2.4810 +newpath 2454.43 1341.23 moveto
  2.4811 +2463 1335 lineto
  2.4812 +2452.42 1334.52 lineto
  2.4813 +closepath stroke
  2.4814 +grestore
  2.4815 +% deliver_msglist_host_smtp->deliver_finish
  2.4816 +gsave
  2.4817 +1 setlinewidth
  2.4818 +solid
  2.4819 +0.000 0.000 0.000 edgecolor
  2.4820 +newpath 2277 1560 moveto
  2.4821 +2312 1652 2467 2069 2508 2180 curveto
  2.4822 +stroke
  2.4823 +0.000 0.000 0.000 edgecolor
  2.4824 +newpath 2505.04 2182.02 moveto
  2.4825 +2512 2190 lineto
  2.4826 +2511.54 2179.42 lineto
  2.4827 +closepath fill
  2.4828 +1 setlinewidth
  2.4829 +solid
  2.4830 +0.000 0.000 0.000 edgecolor
  2.4831 +newpath 2505.04 2182.02 moveto
  2.4832 +2512 2190 lineto
  2.4833 +2511.54 2179.42 lineto
  2.4834 +closepath stroke
  2.4835 +grestore
  2.4836 +% deliver_msglist_host_smtp->spool_read_data
  2.4837 +gsave
  2.4838 +1 setlinewidth
  2.4839 +solid
  2.4840 +0.000 0.000 0.000 edgecolor
  2.4841 +newpath 2298 1559 moveto
  2.4842 +2328 1578 2377 1606 2422 1623 curveto
  2.4843 +2521 1660 2548 1664 2652 1677 curveto
  2.4844 +2756 1688 2805 1741 2886 1677 curveto
  2.4845 +2942 1633 2868 1566 2922 1522 curveto
  2.4846 +2964 1488 3111 1494 3205 1503 curveto
  2.4847 +stroke
  2.4848 +0.000 0.000 0.000 edgecolor
  2.4849 +newpath 3204.7 1506.49 moveto
  2.4850 +3215 1504 lineto
  2.4851 +3205.4 1499.52 lineto
  2.4852 +closepath fill
  2.4853 +1 setlinewidth
  2.4854 +solid
  2.4855 +0.000 0.000 0.000 edgecolor
  2.4856 +newpath 3204.7 1506.49 moveto
  2.4857 +3215 1504 lineto
  2.4858 +3205.4 1499.52 lineto
  2.4859 +closepath stroke
  2.4860 +grestore
  2.4861 +% deliver_msglist_host_smtp->smtp_out_rset
  2.4862 +gsave
  2.4863 +1 setlinewidth
  2.4864 +solid
  2.4865 +0.000 0.000 0.000 edgecolor
  2.4866 +newpath 2285 1524 moveto
  2.4867 +2311 1495 2365 1438 2422 1407 curveto
  2.4868 +2432 1402 2443 1397 2454 1393 curveto
  2.4869 +stroke
  2.4870 +0.000 0.000 0.000 edgecolor
  2.4871 +newpath 2455.43 1396.23 moveto
  2.4872 +2464 1390 lineto
  2.4873 +2453.42 1389.52 lineto
  2.4874 +closepath fill
  2.4875 +1 setlinewidth
  2.4876 +solid
  2.4877 +0.000 0.000 0.000 edgecolor
  2.4878 +newpath 2455.43 1396.23 moveto
  2.4879 +2464 1390 lineto
  2.4880 +2453.42 1389.52 lineto
  2.4881 +closepath stroke
  2.4882 +grestore
  2.4883 +% deliver_msglist_host_smtp->smtp_out_msg
  2.4884 +gsave
  2.4885 +1 setlinewidth
  2.4886 +solid
  2.4887 +0.000 0.000 0.000 edgecolor
  2.4888 +newpath 2309 1525 moveto
  2.4889 +2354 1506 2427 1474 2474 1454 curveto
  2.4890 +stroke
  2.4891 +0.000 0.000 0.000 edgecolor
  2.4892 +newpath 2475.28 1457.26 moveto
  2.4893 +2483 1450 lineto
  2.4894 +2472.44 1450.86 lineto
  2.4895 +closepath fill
  2.4896 +1 setlinewidth
  2.4897 +solid
  2.4898 +0.000 0.000 0.000 edgecolor
  2.4899 +newpath 2475.28 1457.26 moveto
  2.4900 +2483 1450 lineto
  2.4901 +2472.44 1450.86 lineto
  2.4902 +closepath stroke
  2.4903 +grestore
  2.4904 +% deliver_msglist_host_smtp->smtp_out_mark_rcpts
  2.4905 +gsave
  2.4906 +1 setlinewidth
  2.4907 +solid
  2.4908 +0.000 0.000 0.000 edgecolor
  2.4909 +newpath 2341 1528 moveto
  2.4910 +2366 1523 2395 1518 2422 1515 curveto
  2.4911 +2503 1505 2595 1498 2664 1494 curveto
  2.4912 +stroke
  2.4913 +0.000 0.000 0.000 edgecolor
  2.4914 +newpath 2664.4 1497.48 moveto
  2.4915 +2674 1493 lineto
  2.4916 +2663.7 1490.51 lineto
  2.4917 +closepath fill
  2.4918 +1 setlinewidth
  2.4919 +solid
  2.4920 +0.000 0.000 0.000 edgecolor
  2.4921 +newpath 2664.4 1497.48 moveto
  2.4922 +2674 1493 lineto
  2.4923 +2663.7 1490.51 lineto
  2.4924 +closepath stroke
  2.4925 +grestore
  2.4926 +% deliver_msglist_host_smtp->smtp_out_open
  2.4927 +gsave
  2.4928 +1 setlinewidth
  2.4929 +solid
  2.4930 +0.000 0.000 0.000 edgecolor
  2.4931 +newpath 2386 1542 moveto
  2.4932 +2402 1542 2419 1542 2436 1542 curveto
  2.4933 +stroke
  2.4934 +0.000 0.000 0.000 edgecolor
  2.4935 +newpath 2436 1545.5 moveto
  2.4936 +2446 1542 lineto
  2.4937 +2436 1538.5 lineto
  2.4938 +closepath fill
  2.4939 +1 setlinewidth
  2.4940 +solid
  2.4941 +0.000 0.000 0.000 edgecolor
  2.4942 +newpath 2436 1545.5 moveto
  2.4943 +2446 1542 lineto
  2.4944 +2436 1538.5 lineto
  2.4945 +closepath stroke
  2.4946 +grestore
  2.4947 +% deliver_msglist_host_smtp->smtp_out_open_child
  2.4948 +gsave
  2.4949 +1 setlinewidth
  2.4950 +solid
  2.4951 +0.000 0.000 0.000 edgecolor
  2.4952 +newpath 2338 1557 moveto
  2.4953 +2371 1564 2411 1573 2445 1580 curveto
  2.4954 +stroke
  2.4955 +0.000 0.000 0.000 edgecolor
  2.4956 +newpath 2444.51 1583.47 moveto
  2.4957 +2455 1582 lineto
  2.4958 +2445.88 1576.61 lineto
  2.4959 +closepath fill
  2.4960 +1 setlinewidth
  2.4961 +solid
  2.4962 +0.000 0.000 0.000 edgecolor
  2.4963 +newpath 2444.51 1583.47 moveto
  2.4964 +2455 1582 lineto
  2.4965 +2445.88 1576.61 lineto
  2.4966 +closepath stroke
  2.4967 +grestore
  2.4968 +% set_heloname
  2.4969 +gsave
  2.4970 +1 setlinewidth
  2.4971 +0.000 0.000 0.000 nodecolor
  2.4972 +2519 1180 63.93 18 ellipse_path stroke
  2.4973 +0.000 0.000 0.000 nodecolor
  2.4974 +grestore
  2.4975 +% deliver_msglist_host_smtp->set_heloname
  2.4976 +gsave
  2.4977 +1 setlinewidth
  2.4978 +solid
  2.4979 +0.000 0.000 0.000 edgecolor
  2.4980 +newpath 2280 1524 moveto
  2.4981 +2301 1485 2351 1390 2386 1307 curveto
  2.4982 +2405 1264 2388 1240 2422 1207 curveto
  2.4983 +2430 1199 2440 1194 2450 1190 curveto
  2.4984 +stroke
  2.4985 +0.000 0.000 0.000 edgecolor
  2.4986 +newpath 2451.43 1193.23 moveto
  2.4987 +2460 1187 lineto
  2.4988 +2449.42 1186.52 lineto
  2.4989 +closepath fill
  2.4990 +1 setlinewidth
  2.4991 +solid
  2.4992 +0.000 0.000 0.000 edgecolor
  2.4993 +newpath 2451.43 1193.23 moveto
  2.4994 +2460 1187 lineto
  2.4995 +2449.42 1186.52 lineto
  2.4996 +closepath stroke
  2.4997 +grestore
  2.4998 +% destroy_smtpbase
  2.4999 +gsave
  2.5000 +1 setlinewidth
  2.5001 +0.000 0.000 0.000 nodecolor
  2.5002 +2519 1126 82.19 18 ellipse_path stroke
  2.5003 +0.000 0.000 0.000 nodecolor
  2.5004 +grestore
  2.5005 +% deliver_msglist_host_smtp->destroy_smtpbase
  2.5006 +gsave
  2.5007 +1 setlinewidth
  2.5008 +solid
  2.5009 +0.000 0.000 0.000 edgecolor
  2.5010 +newpath 2281 1524 moveto
  2.5011 +2303 1485 2356 1391 2386 1307 curveto
  2.5012 +2410 1241 2374 1204 2422 1153 curveto
  2.5013 +2427 1148 2433 1144 2439 1140 curveto
  2.5014 +stroke
  2.5015 +0.000 0.000 0.000 edgecolor
  2.5016 +newpath 2441.02 1142.96 moveto
  2.5017 +2449 1136 lineto
  2.5018 +2438.42 1136.46 lineto
  2.5019 +closepath fill
  2.5020 +1 setlinewidth
  2.5021 +solid
  2.5022 +0.000 0.000 0.000 edgecolor
  2.5023 +newpath 2441.02 1142.96 moveto
  2.5024 +2449 1136 lineto
  2.5025 +2438.42 1136.46 lineto
  2.5026 +closepath stroke
  2.5027 +grestore
  2.5028 +% pop_before_smtp
  2.5029 +gsave
  2.5030 +1 setlinewidth
  2.5031 +0.000 0.000 0.000 nodecolor
  2.5032 +2519 2405 80.8 18 ellipse_path stroke
  2.5033 +0.000 0.000 0.000 nodecolor
  2.5034 +grestore
  2.5035 +% deliver_msglist_host_smtp->pop_before_smtp
  2.5036 +gsave
  2.5037 +1 setlinewidth
  2.5038 +solid
  2.5039 +0.000 0.000 0.000 edgecolor
  2.5040 +newpath 2272 1560 moveto
  2.5041 +2281 1641 2323 1977 2422 2235 curveto
  2.5042 +2443 2289 2479 2346 2500 2379 curveto
  2.5043 +stroke
  2.5044 +0.000 0.000 0.000 edgecolor
  2.5045 +newpath 2497.2 2381.1 moveto
  2.5046 +2506 2387 lineto
  2.5047 +2502.8 2376.9 lineto
  2.5048 +closepath fill
  2.5049 +1 setlinewidth
  2.5050 +solid
  2.5051 +0.000 0.000 0.000 edgecolor
  2.5052 +newpath 2497.2 2381.1 moveto
  2.5053 +2506 2387 lineto
  2.5054 +2502.8 2376.9 lineto
  2.5055 +closepath stroke
  2.5056 +grestore
  2.5057 +% delivery_failures
  2.5058 +gsave
  2.5059 +1 setlinewidth
  2.5060 +0.000 0.000 0.000 nodecolor
  2.5061 +2519 2856 73.85 18 ellipse_path stroke
  2.5062 +0.000 0.000 0.000 nodecolor
  2.5063 +grestore
  2.5064 +% deliver_msglist_host_smtp->delivery_failures
  2.5065 +gsave
  2.5066 +1 setlinewidth
  2.5067 +solid
  2.5068 +0.000 0.000 0.000 edgecolor
  2.5069 +newpath 2274 1560 moveto
  2.5070 +2291 1636 2357 1933 2386 2181 curveto
  2.5071 +2395 2248 2389 2732 2422 2791 curveto
  2.5072 +2433 2811 2452 2825 2471 2835 curveto
  2.5073 +stroke
  2.5074 +0.000 0.000 0.000 edgecolor
  2.5075 +newpath 2469.56 2838.2 moveto
  2.5076 +2480 2840 lineto
  2.5077 +2472.96 2832.08 lineto
  2.5078 +closepath fill
  2.5079 +1 setlinewidth
  2.5080 +solid
  2.5081 +0.000 0.000 0.000 edgecolor
  2.5082 +newpath 2469.56 2838.2 moveto
  2.5083 +2480 2840 lineto
  2.5084 +2472.96 2832.08 lineto
  2.5085 +closepath stroke
  2.5086 +grestore
  2.5087 +% smtp_out_quit
  2.5088 +gsave
  2.5089 +1 setlinewidth
  2.5090 +0.000 0.000 0.000 nodecolor
  2.5091 +2519 1234 68.1 18 ellipse_path stroke
  2.5092 +0.000 0.000 0.000 nodecolor
  2.5093 +grestore
  2.5094 +% deliver_msglist_host_smtp->smtp_out_quit
  2.5095 +gsave
  2.5096 +1 setlinewidth
  2.5097 +solid
  2.5098 +0.000 0.000 0.000 edgecolor
  2.5099 +newpath 2278 1524 moveto
  2.5100 +2302 1469 2378 1303 2422 1266 curveto
  2.5101 +2431 1258 2443 1252 2454 1248 curveto
  2.5102 +stroke
  2.5103 +0.000 0.000 0.000 edgecolor
  2.5104 +newpath 2455.43 1251.23 moveto
  2.5105 +2464 1245 lineto
  2.5106 +2453.42 1244.52 lineto
  2.5107 +closepath fill
  2.5108 +1 setlinewidth
  2.5109 +solid
  2.5110 +0.000 0.000 0.000 edgecolor
  2.5111 +newpath 2455.43 1251.23 moveto
  2.5112 +2464 1245 lineto
  2.5113 +2453.42 1244.52 lineto
  2.5114 +closepath stroke
  2.5115 +grestore
  2.5116 +% pop_before_smtp->resolve_dns_a
  2.5117 +gsave
  2.5118 +1 setlinewidth
  2.5119 +dotted
  2.5120 +0.000 0.000 0.000 edgecolor
  2.5121 +newpath 2598 2410 moveto
  2.5122 +2616 2411 2634 2411 2652 2412 curveto
  2.5123 +2756 2414 2795 2461 2886 2412 curveto
  2.5124 +2912 2398 2898 2373 2922 2358 curveto
  2.5125 +3010 2302 3132 2296 3210 2300 curveto
  2.5126 +stroke
  2.5127 +0.000 0.000 0.000 edgecolor
  2.5128 +newpath 3210 2303.5 moveto
  2.5129 +3220 2300 lineto
  2.5130 +3210 2296.5 lineto
  2.5131 +closepath fill
  2.5132 +1 setlinewidth
  2.5133 +solid
  2.5134 +0.000 0.000 0.000 edgecolor
  2.5135 +newpath 3210 2303.5 moveto
  2.5136 +3220 2300 lineto
  2.5137 +3210 2296.5 lineto
  2.5138 +closepath stroke
  2.5139 +grestore
  2.5140 +% pop_before_smtp->resolve_byname
  2.5141 +gsave
  2.5142 +1 setlinewidth
  2.5143 +dotted
  2.5144 +0.000 0.000 0.000 edgecolor
  2.5145 +newpath 2600 2404 moveto
  2.5146 +2702 2403 2866 2397 2886 2379 curveto
  2.5147 +2972 2298 2836 2196 2922 2117 curveto
  2.5148 +2963 2080 3111 2085 3205 2092 curveto
  2.5149 +stroke
  2.5150 +0.000 0.000 0.000 edgecolor
  2.5151 +newpath 3204.7 2095.49 moveto
  2.5152 +3215 2093 lineto
  2.5153 +3205.4 2088.52 lineto
  2.5154 +closepath fill
  2.5155 +1 setlinewidth
  2.5156 +solid
  2.5157 +0.000 0.000 0.000 edgecolor
  2.5158 +newpath 3204.7 2095.49 moveto
  2.5159 +3215 2093 lineto
  2.5160 +3205.4 2088.52 lineto
  2.5161 +closepath stroke
  2.5162 +grestore
  2.5163 +% pop_before_smtp->read_get_conf
  2.5164 +gsave
  2.5165 +1 setlinewidth
  2.5166 +solid
  2.5167 +0.000 0.000 0.000 edgecolor
  2.5168 +newpath 2563 2420 moveto
  2.5169 +2589 2429 2622 2440 2652 2450 curveto
  2.5170 +2671 2456 2692 2462 2711 2467 curveto
  2.5171 +stroke
  2.5172 +0.000 0.000 0.000 edgecolor
  2.5173 +newpath 2710.51 2470.47 moveto
  2.5174 +2721 2469 lineto
  2.5175 +2711.88 2463.61 lineto
  2.5176 +closepath fill
  2.5177 +1 setlinewidth
  2.5178 +solid
  2.5179 +0.000 0.000 0.000 edgecolor
  2.5180 +newpath 2710.51 2470.47 moveto
  2.5181 +2721 2469 lineto
  2.5182 +2711.88 2463.61 lineto
  2.5183 +closepath stroke
  2.5184 +grestore
  2.5185 +% delivery_failures->fail_msg
  2.5186 +gsave
  2.5187 +1 setlinewidth
  2.5188 +solid
  2.5189 +0.000 0.000 0.000 edgecolor
  2.5190 +newpath 2579 2867 moveto
  2.5191 +2654 2878 2785 2887 2886 2845 curveto
  2.5192 +2943 2820 2990 2763 3014 2730 curveto
  2.5193 +stroke
  2.5194 +0.000 0.000 0.000 edgecolor
  2.5195 +newpath 3017.37 2731.26 moveto
  2.5196 +3020 2721 lineto
  2.5197 +3011.54 2727.38 lineto
  2.5198 +closepath fill
  2.5199 +1 setlinewidth
  2.5200 +solid
  2.5201 +0.000 0.000 0.000 edgecolor
  2.5202 +newpath 3017.37 2731.26 moveto
  2.5203 +3020 2721 lineto
  2.5204 +3011.54 2727.38 lineto
  2.5205 +closepath stroke
  2.5206 +grestore
  2.5207 +% warn_msg
  2.5208 +gsave
  2.5209 +1 setlinewidth
  2.5210 +0.000 0.000 0.000 nodecolor
  2.5211 +2769 2964 50.92 18 ellipse_path stroke
  2.5212 +0.000 0.000 0.000 nodecolor
  2.5213 +grestore
  2.5214 +% delivery_failures->warn_msg
  2.5215 +gsave
  2.5216 +1 setlinewidth
  2.5217 +solid
  2.5218 +0.000 0.000 0.000 edgecolor
  2.5219 +newpath 2581 2866 moveto
  2.5220 +2594 2870 2606 2875 2616 2883 curveto
  2.5221 +2640 2899 2629 2920 2652 2937 curveto
  2.5222 +2668 2948 2689 2955 2708 2959 curveto
  2.5223 +stroke
  2.5224 +0.000 0.000 0.000 edgecolor
  2.5225 +newpath 2707.51 2962.47 moveto
  2.5226 +2718 2961 lineto
  2.5227 +2708.88 2955.61 lineto
  2.5228 +closepath fill
  2.5229 +1 setlinewidth
  2.5230 +solid
  2.5231 +0.000 0.000 0.000 edgecolor
  2.5232 +newpath 2707.51 2962.47 moveto
  2.5233 +2718 2961 lineto
  2.5234 +2708.88 2955.61 lineto
  2.5235 +closepath stroke
  2.5236 +grestore
  2.5237 +% table_find_fnmatch
  2.5238 +gsave
  2.5239 +1 setlinewidth
  2.5240 +0.000 0.000 0.000 nodecolor
  2.5241 +3537 1788 86.17 18 ellipse_path stroke
  2.5242 +0.000 0.000 0.000 nodecolor
  2.5243 +grestore
  2.5244 +% table_find_fnmatch->table_find_func
  2.5245 +gsave
  2.5246 +1 setlinewidth
  2.5247 +solid
  2.5248 +0.000 0.000 0.000 edgecolor
  2.5249 +newpath 3543 1806 moveto
  2.5250 +3562 1860 3617 2028 3646 2171 curveto
  2.5251 +3748 2677 3794 3308 3803 3449 curveto
  2.5252 +stroke
  2.5253 +0.000 0.000 0.000 edgecolor
  2.5254 +newpath 3799.52 3449.4 moveto
  2.5255 +3804 3459 lineto
  2.5256 +3806.49 3448.7 lineto
  2.5257 +closepath fill
  2.5258 +1 setlinewidth
  2.5259 +solid
  2.5260 +0.000 0.000 0.000 edgecolor
  2.5261 +newpath 3799.52 3449.4 moveto
  2.5262 +3804 3459 lineto
  2.5263 +3806.49 3448.7 lineto
  2.5264 +closepath stroke
  2.5265 +grestore
  2.5266 +% fnmatch0
  2.5267 +gsave
  2.5268 +1 setlinewidth
  2.5269 +0.000 0.000 0.000 nodecolor
  2.5270 +3805 1788 46.75 18 ellipse_path stroke
  2.5271 +0.000 0.000 0.000 nodecolor
  2.5272 +grestore
  2.5273 +% table_find_fnmatch->fnmatch0
  2.5274 +gsave
  2.5275 +1 setlinewidth
  2.5276 +dotted
  2.5277 +0.000 0.000 0.000 edgecolor
  2.5278 +newpath 3623 1788 moveto
  2.5279 +3664 1788 3711 1788 3747 1788 curveto
  2.5280 +stroke
  2.5281 +0.000 0.000 0.000 edgecolor
  2.5282 +newpath 3747 1791.5 moveto
  2.5283 +3757 1788 lineto
  2.5284 +3747 1784.5 lineto
  2.5285 +closepath fill
  2.5286 +1 setlinewidth
  2.5287 +solid
  2.5288 +0.000 0.000 0.000 edgecolor
  2.5289 +newpath 3747 1791.5 moveto
  2.5290 +3757 1788 lineto
  2.5291 +3747 1784.5 lineto
  2.5292 +closepath stroke
  2.5293 +grestore
  2.5294 +% read_domain
  2.5295 +gsave
  2.5296 +1 setlinewidth
  2.5297 +0.000 0.000 0.000 nodecolor
  2.5298 +4294 1620 61.84 18 ellipse_path stroke
  2.5299 +0.000 0.000 0.000 nodecolor
  2.5300 +grestore
  2.5301 +% parse_address_rfc821->read_domain
  2.5302 +gsave
  2.5303 +1 setlinewidth
  2.5304 +solid
  2.5305 +0.000 0.000 0.000 edgecolor
  2.5306 +newpath 4123 1580 moveto
  2.5307 +4158 1588 4201 1598 4236 1607 curveto
  2.5308 +stroke
  2.5309 +0.000 0.000 0.000 edgecolor
  2.5310 +newpath 4235.51 1610.47 moveto
  2.5311 +4246 1609 lineto
  2.5312 +4236.88 1603.61 lineto
  2.5313 +closepath fill
  2.5314 +1 setlinewidth
  2.5315 +solid
  2.5316 +0.000 0.000 0.000 edgecolor
  2.5317 +newpath 4235.51 1610.47 moveto
  2.5318 +4246 1609 lineto
  2.5319 +4236.88 1603.61 lineto
  2.5320 +closepath stroke
  2.5321 +grestore
  2.5322 +% read_word_with_dots
  2.5323 +gsave
  2.5324 +1 setlinewidth
  2.5325 +0.000 0.000 0.000 nodecolor
  2.5326 +4294 1566 96.78 18 ellipse_path stroke
  2.5327 +0.000 0.000 0.000 nodecolor
  2.5328 +grestore
  2.5329 +% parse_address_rfc821->read_word_with_dots
  2.5330 +gsave
  2.5331 +1 setlinewidth
  2.5332 +solid
  2.5333 +0.000 0.000 0.000 edgecolor
  2.5334 +newpath 4160 1566 moveto
  2.5335 +4169 1566 4177 1566 4186 1566 curveto
  2.5336 +stroke
  2.5337 +0.000 0.000 0.000 edgecolor
  2.5338 +newpath 4186 1569.5 moveto
  2.5339 +4196 1566 lineto
  2.5340 +4186 1562.5 lineto
  2.5341 +closepath fill
  2.5342 +1 setlinewidth
  2.5343 +solid
  2.5344 +0.000 0.000 0.000 edgecolor
  2.5345 +newpath 4186 1569.5 moveto
  2.5346 +4196 1566 lineto
  2.5347 +4186 1562.5 lineto
  2.5348 +closepath stroke
  2.5349 +grestore
  2.5350 +% parse_address_rfc822->skip_comment
  2.5351 +gsave
  2.5352 +1 setlinewidth
  2.5353 +solid
  2.5354 +0.000 0.000 0.000 edgecolor
  2.5355 +newpath 4123 1634 moveto
  2.5356 +4157 1642 4199 1652 4233 1660 curveto
  2.5357 +stroke
  2.5358 +0.000 0.000 0.000 edgecolor
  2.5359 +newpath 4232.51 1663.47 moveto
  2.5360 +4243 1662 lineto
  2.5361 +4233.88 1656.61 lineto
  2.5362 +closepath fill
  2.5363 +1 setlinewidth
  2.5364 +solid
  2.5365 +0.000 0.000 0.000 edgecolor
  2.5366 +newpath 4232.51 1663.47 moveto
  2.5367 +4243 1662 lineto
  2.5368 +4233.88 1656.61 lineto
  2.5369 +closepath stroke
  2.5370 +grestore
  2.5371 +% parse_address_rfc822->read_domain
  2.5372 +gsave
  2.5373 +1 setlinewidth
  2.5374 +solid
  2.5375 +0.000 0.000 0.000 edgecolor
  2.5376 +newpath 4160 1620 moveto
  2.5377 +4180 1620 4202 1620 4222 1620 curveto
  2.5378 +stroke
  2.5379 +0.000 0.000 0.000 edgecolor
  2.5380 +newpath 4222 1623.5 moveto
  2.5381 +4232 1620 lineto
  2.5382 +4222 1616.5 lineto
  2.5383 +closepath fill
  2.5384 +1 setlinewidth
  2.5385 +solid
  2.5386 +0.000 0.000 0.000 edgecolor
  2.5387 +newpath 4222 1623.5 moveto
  2.5388 +4232 1620 lineto
  2.5389 +4222 1616.5 lineto
  2.5390 +closepath stroke
  2.5391 +grestore
  2.5392 +% parse_address_rfc822->read_word_with_dots
  2.5393 +gsave
  2.5394 +1 setlinewidth
  2.5395 +solid
  2.5396 +0.000 0.000 0.000 edgecolor
  2.5397 +newpath 4123 1606 moveto
  2.5398 +4154 1599 4192 1590 4224 1582 curveto
  2.5399 +stroke
  2.5400 +0.000 0.000 0.000 edgecolor
  2.5401 +newpath 4224.88 1585.39 moveto
  2.5402 +4234 1580 lineto
  2.5403 +4223.51 1578.53 lineto
  2.5404 +closepath fill
  2.5405 +1 setlinewidth
  2.5406 +solid
  2.5407 +0.000 0.000 0.000 edgecolor
  2.5408 +newpath 4224.88 1585.39 moveto
  2.5409 +4234 1580 lineto
  2.5410 +4223.51 1578.53 lineto
  2.5411 +closepath stroke
  2.5412 +grestore
  2.5413 +% table_find_case
  2.5414 +gsave
  2.5415 +1 setlinewidth
  2.5416 +0.000 0.000 0.000 nodecolor
  2.5417 +3537 3504 71.77 18 ellipse_path stroke
  2.5418 +0.000 0.000 0.000 nodecolor
  2.5419 +grestore
  2.5420 +% table_find_case->table_find_func
  2.5421 +gsave
  2.5422 +1 setlinewidth
  2.5423 +solid
  2.5424 +0.000 0.000 0.000 edgecolor
  2.5425 +newpath 3604 3497 moveto
  2.5426 +3642 3493 3689 3489 3727 3485 curveto
  2.5427 +stroke
  2.5428 +0.000 0.000 0.000 edgecolor
  2.5429 +newpath 3727.4 3488.48 moveto
  2.5430 +3737 3484 lineto
  2.5431 +3726.7 3481.51 lineto
  2.5432 +closepath fill
  2.5433 +1 setlinewidth
  2.5434 +solid
  2.5435 +0.000 0.000 0.000 edgecolor
  2.5436 +newpath 3727.4 3488.48 moveto
  2.5437 +3737 3484 lineto
  2.5438 +3726.7 3481.51 lineto
  2.5439 +closepath stroke
  2.5440 +grestore
  2.5441 +% destroy_msg_list
  2.5442 +gsave
  2.5443 +1 setlinewidth
  2.5444 +0.000 0.000 0.000 nodecolor
  2.5445 +578 2125 77.83 18 ellipse_path stroke
  2.5446 +0.000 0.000 0.000 nodecolor
  2.5447 +grestore
  2.5448 +% destroy_msg_list->destroy_message
  2.5449 +gsave
  2.5450 +1 setlinewidth
  2.5451 +solid
  2.5452 +0.000 0.000 0.000 edgecolor
  2.5453 +newpath 622 2110 moveto
  2.5454 +650 2101 687 2089 716 2078 curveto
  2.5455 +stroke
  2.5456 +0.000 0.000 0.000 edgecolor
  2.5457 +newpath 717.43 2081.23 moveto
  2.5458 +726 2075 lineto
  2.5459 +715.42 2074.52 lineto
  2.5460 +closepath fill
  2.5461 +1 setlinewidth
  2.5462 +solid
  2.5463 +0.000 0.000 0.000 edgecolor
  2.5464 +newpath 717.43 2081.23 moveto
  2.5465 +726 2075 lineto
  2.5466 +715.42 2074.52 lineto
  2.5467 +closepath stroke
  2.5468 +grestore
  2.5469 +% warn_msg->fail_msg
  2.5470 +gsave
  2.5471 +1 setlinewidth
  2.5472 +solid
  2.5473 +0.000 0.000 0.000 edgecolor
  2.5474 +newpath 2820 2961 moveto
  2.5475 +2842 2958 2867 2951 2886 2937 curveto
  2.5476 +2961 2884 3004 2781 3022 2732 curveto
  2.5477 +stroke
  2.5478 +0.000 0.000 0.000 edgecolor
  2.5479 +newpath 3025.48 2732.58 moveto
  2.5480 +3025 2722 lineto
  2.5481 +3018.77 2730.57 lineto
  2.5482 +closepath fill
  2.5483 +1 setlinewidth
  2.5484 +solid
  2.5485 +0.000 0.000 0.000 edgecolor
  2.5486 +newpath 3025.48 2732.58 moveto
  2.5487 +3025 2722 lineto
  2.5488 +3018.77 2730.57 lineto
  2.5489 +closepath stroke
  2.5490 +grestore
  2.5491 +% warn_msg->time_interval
  2.5492 +gsave
  2.5493 +1 setlinewidth
  2.5494 +solid
  2.5495 +0.000 0.000 0.000 edgecolor
  2.5496 +newpath 2817 2971 moveto
  2.5497 +2859 2978 2920 2986 2966 2993 curveto
  2.5498 +stroke
  2.5499 +0.000 0.000 0.000 edgecolor
  2.5500 +newpath 2965.7 2996.49 moveto
  2.5501 +2976 2994 lineto
  2.5502 +2966.4 2989.52 lineto
  2.5503 +closepath fill
  2.5504 +1 setlinewidth
  2.5505 +solid
  2.5506 +0.000 0.000 0.000 edgecolor
  2.5507 +newpath 2965.7 2996.49 moveto
  2.5508 +2976 2994 lineto
  2.5509 +2966.4 2989.52 lineto
  2.5510 +closepath stroke
  2.5511 +grestore
  2.5512 +% deliver_msglist_host
  2.5513 +gsave
  2.5514 +1 setlinewidth
  2.5515 +0.000 0.000 0.000 nodecolor
  2.5516 +1993 2412 91.03 18 ellipse_path stroke
  2.5517 +0.000 0.000 0.000 nodecolor
  2.5518 +grestore
  2.5519 +% deliver_msglist_host->deliver_msglist_host_smtp
  2.5520 +gsave
  2.5521 +1 setlinewidth
  2.5522 +solid
  2.5523 +0.000 0.000 0.000 edgecolor
  2.5524 +newpath 2081 2407 moveto
  2.5525 +2095 2403 2108 2396 2118 2385 curveto
  2.5526 +2155 2346 2145 2200 2154 2148 curveto
  2.5527 +2192 1924 2246 1656 2264 1570 curveto
  2.5528 +stroke
  2.5529 +0.000 0.000 0.000 edgecolor
  2.5530 +newpath 2267.47 1570.49 moveto
  2.5531 +2266 1560 lineto
  2.5532 +2260.61 1569.12 lineto
  2.5533 +closepath fill
  2.5534 +1 setlinewidth
  2.5535 +solid
  2.5536 +0.000 0.000 0.000 edgecolor
  2.5537 +newpath 2267.47 1570.49 moveto
  2.5538 +2266 1560 lineto
  2.5539 +2260.61 1569.12 lineto
  2.5540 +closepath stroke
  2.5541 +grestore
  2.5542 +% deliver_msglist_host_pipe
  2.5543 +gsave
  2.5544 +1 setlinewidth
  2.5545 +0.000 0.000 0.000 nodecolor
  2.5546 +2270 2906 112.07 18 ellipse_path stroke
  2.5547 +0.000 0.000 0.000 nodecolor
  2.5548 +grestore
  2.5549 +% deliver_msglist_host->deliver_msglist_host_pipe
  2.5550 +gsave
  2.5551 +1 setlinewidth
  2.5552 +solid
  2.5553 +0.000 0.000 0.000 edgecolor
  2.5554 +newpath 2081 2417 moveto
  2.5555 +2095 2421 2108 2428 2118 2439 curveto
  2.5556 +2161 2485 2134 2659 2154 2718 curveto
  2.5557 +2176 2781 2222 2845 2249 2880 curveto
  2.5558 +stroke
  2.5559 +0.000 0.000 0.000 edgecolor
  2.5560 +newpath 2246.2 2882.1 moveto
  2.5561 +2255 2888 lineto
  2.5562 +2251.8 2877.9 lineto
  2.5563 +closepath fill
  2.5564 +1 setlinewidth
  2.5565 +solid
  2.5566 +0.000 0.000 0.000 edgecolor
  2.5567 +newpath 2246.2 2882.1 moveto
  2.5568 +2255 2888 lineto
  2.5569 +2251.8 2877.9 lineto
  2.5570 +closepath stroke
  2.5571 +grestore
  2.5572 +% deliver_msglist_host_pipe->msg_free_data
  2.5573 +gsave
  2.5574 +1 setlinewidth
  2.5575 +solid
  2.5576 +0.000 0.000 0.000 edgecolor
  2.5577 +newpath 2339 2920 moveto
  2.5578 +2365 2926 2395 2932 2422 2937 curveto
  2.5579 +2508 2953 2534 2940 2616 2970 curveto
  2.5580 +2634 2976 2635 2984 2652 2991 curveto
  2.5581 +2653 2991 2922 3028 2922 3029 curveto
  2.5582 +3019 3035 3066 3091 3140 3029 curveto
  2.5583 +3209 2971 3115 2895 3176 2830 curveto
  2.5584 +3185 2821 3196 2814 3207 2810 curveto
  2.5585 +stroke
  2.5586 +0.000 0.000 0.000 edgecolor
  2.5587 +newpath 3208.43 2813.23 moveto
  2.5588 +3217 2807 lineto
  2.5589 +3206.42 2806.52 lineto
  2.5590 +closepath fill
  2.5591 +1 setlinewidth
  2.5592 +solid
  2.5593 +0.000 0.000 0.000 edgecolor
  2.5594 +newpath 3208.43 2813.23 moveto
  2.5595 +3217 2807 lineto
  2.5596 +3206.42 2806.52 lineto
  2.5597 +closepath stroke
  2.5598 +grestore
  2.5599 +% deliver_msglist_host_pipe->deliver_finish
  2.5600 +gsave
  2.5601 +1 setlinewidth
  2.5602 +solid
  2.5603 +0.000 0.000 0.000 edgecolor
  2.5604 +newpath 2285 2888 moveto
  2.5605 +2311 2856 2364 2786 2386 2718 curveto
  2.5606 +2443 2547 2351 2480 2422 2316 curveto
  2.5607 +2437 2282 2467 2251 2489 2231 curveto
  2.5608 +stroke
  2.5609 +0.000 0.000 0.000 edgecolor
  2.5610 +newpath 2491.1 2233.8 moveto
  2.5611 +2497 2225 lineto
  2.5612 +2486.9 2228.2 lineto
  2.5613 +closepath fill
  2.5614 +1 setlinewidth
  2.5615 +solid
  2.5616 +0.000 0.000 0.000 edgecolor
  2.5617 +newpath 2491.1 2233.8 moveto
  2.5618 +2497 2225 lineto
  2.5619 +2486.9 2228.2 lineto
  2.5620 +closepath stroke
  2.5621 +grestore
  2.5622 +% deliver_msglist_host_pipe->destroy_table
  2.5623 +gsave
  2.5624 +1 setlinewidth
  2.5625 +solid
  2.5626 +0.000 0.000 0.000 edgecolor
  2.5627 +newpath 2289 2924 moveto
  2.5628 +2315 2950 2361 2999 2386 3050 curveto
  2.5629 +2416 3109 2376 3147 2422 3196 curveto
  2.5630 +2530 3308 3021 3322 3210 3322 curveto
  2.5631 +stroke
  2.5632 +0.000 0.000 0.000 edgecolor
  2.5633 +newpath 3210 3325.5 moveto
  2.5634 +3220 3322 lineto
  2.5635 +3210 3318.5 lineto
  2.5636 +closepath fill
  2.5637 +1 setlinewidth
  2.5638 +solid
  2.5639 +0.000 0.000 0.000 edgecolor
  2.5640 +newpath 3210 3325.5 moveto
  2.5641 +3220 3322 lineto
  2.5642 +3210 3318.5 lineto
  2.5643 +closepath stroke
  2.5644 +grestore
  2.5645 +% deliver_msglist_host_pipe->spool_read_data
  2.5646 +gsave
  2.5647 +1 setlinewidth
  2.5648 +solid
  2.5649 +0.000 0.000 0.000 edgecolor
  2.5650 +newpath 2285 2888 moveto
  2.5651 +2311 2856 2363 2786 2386 2718 curveto
  2.5652 +2436 2574 2340 2505 2422 2378 curveto
  2.5653 +2477 2294 2562 2348 2616 2265 curveto
  2.5654 +2692 2150 2574 2071 2652 1959 curveto
  2.5655 +2719 1863 2819 1936 2886 1842 curveto
  2.5656 +2953 1749 2842 1669 2922 1588 curveto
  2.5657 +2991 1518 3047 1584 3140 1554 curveto
  2.5658 +3158 1548 3159 1541 3176 1535 curveto
  2.5659 +3187 1531 3199 1528 3211 1525 curveto
  2.5660 +stroke
  2.5661 +0.000 0.000 0.000 edgecolor
  2.5662 +newpath 3212.43 1528.23 moveto
  2.5663 +3221 1522 lineto
  2.5664 +3210.42 1521.52 lineto
  2.5665 +closepath fill
  2.5666 +1 setlinewidth
  2.5667 +solid
  2.5668 +0.000 0.000 0.000 edgecolor
  2.5669 +newpath 3212.43 1528.23 moveto
  2.5670 +3221 1522 lineto
  2.5671 +3210.42 1521.52 lineto
  2.5672 +closepath stroke
  2.5673 +grestore
  2.5674 +% deliver_msglist_host_pipe->var_table_msg
  2.5675 +gsave
  2.5676 +1 setlinewidth
  2.5677 +solid
  2.5678 +0.000 0.000 0.000 edgecolor
  2.5679 +newpath 2306 2923 moveto
  2.5680 +2337 2937 2382 2957 2422 2970 curveto
  2.5681 +2507 2996 2531 2990 2616 3013 curveto
  2.5682 +2633 3017 2636 3020 2652 3024 curveto
  2.5683 +2771 3050 2802 3053 2922 3062 curveto
  2.5684 +3019 3068 3055 3106 3140 3062 curveto
  2.5685 +3213 3024 3257 2931 3275 2884 curveto
  2.5686 +stroke
  2.5687 +0.000 0.000 0.000 edgecolor
  2.5688 +newpath 3278.16 2885.59 moveto
  2.5689 +3278 2875 lineto
  2.5690 +3271.52 2883.38 lineto
  2.5691 +closepath fill
  2.5692 +1 setlinewidth
  2.5693 +solid
  2.5694 +0.000 0.000 0.000 edgecolor
  2.5695 +newpath 3278.16 2885.59 moveto
  2.5696 +3278 2875 lineto
  2.5697 +3271.52 2883.38 lineto
  2.5698 +closepath stroke
  2.5699 +grestore
  2.5700 +% deliver_msglist_host_pipe->expand
  2.5701 +gsave
  2.5702 +1 setlinewidth
  2.5703 +solid
  2.5704 +0.000 0.000 0.000 edgecolor
  2.5705 +newpath 2288 2924 moveto
  2.5706 +2313 2950 2357 3001 2386 3050 curveto
  2.5707 +2408 3086 2389 3111 2422 3138 curveto
  2.5708 +2673 3337 3105 3236 3241 3198 curveto
  2.5709 +stroke
  2.5710 +0.000 0.000 0.000 edgecolor
  2.5711 +newpath 3242.43 3201.23 moveto
  2.5712 +3251 3195 lineto
  2.5713 +3240.42 3194.52 lineto
  2.5714 +closepath fill
  2.5715 +1 setlinewidth
  2.5716 +solid
  2.5717 +0.000 0.000 0.000 edgecolor
  2.5718 +newpath 3242.43 3201.23 moveto
  2.5719 +3251 3195 lineto
  2.5720 +3240.42 3194.52 lineto
  2.5721 +closepath stroke
  2.5722 +grestore
  2.5723 +% deliver_msglist_host_pipe->pipe_out
  2.5724 +gsave
  2.5725 +1 setlinewidth
  2.5726 +solid
  2.5727 +0.000 0.000 0.000 edgecolor
  2.5728 +newpath 2301 2889 moveto
  2.5729 +2347 2863 2435 2812 2484 2784 curveto
  2.5730 +stroke
  2.5731 +0.000 0.000 0.000 edgecolor
  2.5732 +newpath 2485.96 2786.92 moveto
  2.5733 +2493 2779 lineto
  2.5734 +2482.56 2780.8 lineto
  2.5735 +closepath fill
  2.5736 +1 setlinewidth
  2.5737 +solid
  2.5738 +0.000 0.000 0.000 edgecolor
  2.5739 +newpath 2485.96 2786.92 moveto
  2.5740 +2493 2779 lineto
  2.5741 +2482.56 2780.8 lineto
  2.5742 +closepath stroke
  2.5743 +grestore
  2.5744 +% deliver_msglist_host_pipe->delivery_failures
  2.5745 +gsave
  2.5746 +1 setlinewidth
  2.5747 +solid
  2.5748 +0.000 0.000 0.000 edgecolor
  2.5749 +newpath 2340 2892 moveto
  2.5750 +2375 2885 2417 2877 2451 2870 curveto
  2.5751 +stroke
  2.5752 +0.000 0.000 0.000 edgecolor
  2.5753 +newpath 2451.88 2873.39 moveto
  2.5754 +2461 2868 lineto
  2.5755 +2450.51 2866.53 lineto
  2.5756 +closepath fill
  2.5757 +1 setlinewidth
  2.5758 +solid
  2.5759 +0.000 0.000 0.000 edgecolor
  2.5760 +newpath 2451.88 2873.39 moveto
  2.5761 +2461 2868 lineto
  2.5762 +2450.51 2866.53 lineto
  2.5763 +closepath stroke
  2.5764 +grestore
  2.5765 +% var_table_rcpt
  2.5766 +gsave
  2.5767 +1 setlinewidth
  2.5768 +0.000 0.000 0.000 nodecolor
  2.5769 +2519 3040 66.9 18 ellipse_path stroke
  2.5770 +0.000 0.000 0.000 nodecolor
  2.5771 +grestore
  2.5772 +% deliver_msglist_host_pipe->var_table_rcpt
  2.5773 +gsave
  2.5774 +1 setlinewidth
  2.5775 +solid
  2.5776 +0.000 0.000 0.000 edgecolor
  2.5777 +newpath 2293 2924 moveto
  2.5778 +2321 2946 2373 2984 2422 3008 curveto
  2.5779 +2435 3014 2449 3019 2462 3024 curveto
  2.5780 +stroke
  2.5781 +0.000 0.000 0.000 edgecolor
  2.5782 +newpath 2461.42 3027.48 moveto
  2.5783 +2472 3027 lineto
  2.5784 +2463.43 3020.77 lineto
  2.5785 +closepath fill
  2.5786 +1 setlinewidth
  2.5787 +solid
  2.5788 +0.000 0.000 0.000 edgecolor
  2.5789 +newpath 2461.42 3027.48 moveto
  2.5790 +2472 3027 lineto
  2.5791 +2463.43 3020.77 lineto
  2.5792 +closepath stroke
  2.5793 +grestore
  2.5794 +% get_all
  2.5795 +gsave
  2.5796 +1 setlinewidth
  2.5797 +0.000 0.000 0.000 nodecolor
  2.5798 +961 2702 36.13 18 ellipse_path stroke
  2.5799 +0.000 0.000 0.000 nodecolor
  2.5800 +grestore
  2.5801 +% get_all->get_from_file
  2.5802 +gsave
  2.5803 +1 setlinewidth
  2.5804 +solid
  2.5805 +0.000 0.000 0.000 edgecolor
  2.5806 +newpath 967 2720 moveto
  2.5807 +981 2765 1019 2891 1036 2999 curveto
  2.5808 +1045 3051 1034 3441 1072 3478 curveto
  2.5809 +1114 3518 1282 3503 1376 3491 curveto
  2.5810 +stroke
  2.5811 +0.000 0.000 0.000 edgecolor
  2.5812 +newpath 1376.4 3494.48 moveto
  2.5813 +1386 3490 lineto
  2.5814 +1375.7 3487.51 lineto
  2.5815 +closepath fill
  2.5816 +1 setlinewidth
  2.5817 +solid
  2.5818 +0.000 0.000 0.000 edgecolor
  2.5819 +newpath 1376.4 3494.48 moveto
  2.5820 +1386 3490 lineto
  2.5821 +1375.7 3487.51 lineto
  2.5822 +closepath stroke
  2.5823 +grestore
  2.5824 +% read_route_list->set_euidgid
  2.5825 +gsave
  2.5826 +1 setlinewidth
  2.5827 +solid
  2.5828 +0.000 0.000 0.000 edgecolor
  2.5829 +newpath 1455 2034 moveto
  2.5830 +1519 1942 1826 1518 2154 1253 curveto
  2.5831 +2349 1095 2425 1092 2652 986 curveto
  2.5832 +2772 931 2916 869 2987 839 curveto
  2.5833 +stroke
  2.5834 +0.000 0.000 0.000 edgecolor
  2.5835 +newpath 2989.02 841.96 moveto
  2.5836 +2997 835 lineto
  2.5837 +2986.42 835.46 lineto
  2.5838 +closepath fill
  2.5839 +1 setlinewidth
  2.5840 +solid
  2.5841 +0.000 0.000 0.000 edgecolor
  2.5842 +newpath 2989.02 841.96 moveto
  2.5843 +2997 835 lineto
  2.5844 +2986.42 835.46 lineto
  2.5845 +closepath stroke
  2.5846 +grestore
  2.5847 +% read_route_list->read_route
  2.5848 +gsave
  2.5849 +1 setlinewidth
  2.5850 +solid
  2.5851 +0.000 0.000 0.000 edgecolor
  2.5852 +newpath 1506 2045 moveto
  2.5853 +1609 2035 1817 2016 1993 2016 curveto
  2.5854 +1993 2016 1993 2016 2270 2016 curveto
  2.5855 +2439 2016 2634 2072 2721 2100 curveto
  2.5856 +stroke
  2.5857 +0.000 0.000 0.000 edgecolor
  2.5858 +newpath 2720.42 2103.48 moveto
  2.5859 +2731 2103 lineto
  2.5860 +2722.43 2096.77 lineto
  2.5861 +closepath fill
  2.5862 +1 setlinewidth
  2.5863 +solid
  2.5864 +0.000 0.000 0.000 edgecolor
  2.5865 +newpath 2720.42 2103.48 moveto
  2.5866 +2731 2103 lineto
  2.5867 +2722.43 2096.77 lineto
  2.5868 +closepath stroke
  2.5869 +grestore
  2.5870 +% smtp_deliver
  2.5871 +gsave
  2.5872 +1 setlinewidth
  2.5873 +0.000 0.000 0.000 nodecolor
  2.5874 +2270 1280 61.15 18 ellipse_path stroke
  2.5875 +0.000 0.000 0.000 nodecolor
  2.5876 +grestore
  2.5877 +% smtp_deliver->smtp_out_init
  2.5878 +gsave
  2.5879 +1 setlinewidth
  2.5880 +solid
  2.5881 +0.000 0.000 0.000 edgecolor
  2.5882 +newpath 2322 1290 moveto
  2.5883 +2361 1296 2414 1306 2455 1314 curveto
  2.5884 +stroke
  2.5885 +0.000 0.000 0.000 edgecolor
  2.5886 +newpath 2454.51 1317.47 moveto
  2.5887 +2465 1316 lineto
  2.5888 +2455.88 1310.61 lineto
  2.5889 +closepath fill
  2.5890 +1 setlinewidth
  2.5891 +solid
  2.5892 +0.000 0.000 0.000 edgecolor
  2.5893 +newpath 2454.51 1317.47 moveto
  2.5894 +2465 1316 lineto
  2.5895 +2455.88 1310.61 lineto
  2.5896 +closepath stroke
  2.5897 +grestore
  2.5898 +% smtp_deliver->smtp_out_msg
  2.5899 +gsave
  2.5900 +1 setlinewidth
  2.5901 +solid
  2.5902 +0.000 0.000 0.000 edgecolor
  2.5903 +newpath 2286 1297 moveto
  2.5904 +2312 1325 2367 1378 2422 1407 curveto
  2.5905 +2432 1412 2444 1417 2455 1420 curveto
  2.5906 +stroke
  2.5907 +0.000 0.000 0.000 edgecolor
  2.5908 +newpath 2454.42 1423.48 moveto
  2.5909 +2465 1423 lineto
  2.5910 +2456.43 1416.77 lineto
  2.5911 +closepath fill
  2.5912 +1 setlinewidth
  2.5913 +solid
  2.5914 +0.000 0.000 0.000 edgecolor
  2.5915 +newpath 2454.42 1423.48 moveto
  2.5916 +2465 1423 lineto
  2.5917 +2456.43 1416.77 lineto
  2.5918 +closepath stroke
  2.5919 +grestore
  2.5920 +% smtp_deliver->smtp_out_open
  2.5921 +gsave
  2.5922 +1 setlinewidth
  2.5923 +solid
  2.5924 +0.000 0.000 0.000 edgecolor
  2.5925 +newpath 2283 1298 moveto
  2.5926 +2309 1331 2366 1405 2422 1461 curveto
  2.5927 +2443 1481 2469 1503 2489 1519 curveto
  2.5928 +stroke
  2.5929 +0.000 0.000 0.000 edgecolor
  2.5930 +newpath 2486.9 1521.8 moveto
  2.5931 +2497 1525 lineto
  2.5932 +2491.1 1516.2 lineto
  2.5933 +closepath fill
  2.5934 +1 setlinewidth
  2.5935 +solid
  2.5936 +0.000 0.000 0.000 edgecolor
  2.5937 +newpath 2486.9 1521.8 moveto
  2.5938 +2497 1525 lineto
  2.5939 +2491.1 1516.2 lineto
  2.5940 +closepath stroke
  2.5941 +grestore
  2.5942 +% smtp_deliver->set_heloname
  2.5943 +gsave
  2.5944 +1 setlinewidth
  2.5945 +solid
  2.5946 +0.000 0.000 0.000 edgecolor
  2.5947 +newpath 2299 1264 moveto
  2.5948 +2330 1248 2378 1224 2422 1207 curveto
  2.5949 +2435 1202 2448 1198 2461 1195 curveto
  2.5950 +stroke
  2.5951 +0.000 0.000 0.000 edgecolor
  2.5952 +newpath 2462.43 1198.23 moveto
  2.5953 +2471 1192 lineto
  2.5954 +2460.42 1191.52 lineto
  2.5955 +closepath fill
  2.5956 +1 setlinewidth
  2.5957 +solid
  2.5958 +0.000 0.000 0.000 edgecolor
  2.5959 +newpath 2462.43 1198.23 moveto
  2.5960 +2471 1192 lineto
  2.5961 +2460.42 1191.52 lineto
  2.5962 +closepath stroke
  2.5963 +grestore
  2.5964 +% smtp_deliver->destroy_smtpbase
  2.5965 +gsave
  2.5966 +1 setlinewidth
  2.5967 +solid
  2.5968 +0.000 0.000 0.000 edgecolor
  2.5969 +newpath 2286 1263 moveto
  2.5970 +2312 1235 2367 1182 2422 1153 curveto
  2.5971 +2431 1148 2441 1145 2450 1142 curveto
  2.5972 +stroke
  2.5973 +0.000 0.000 0.000 edgecolor
  2.5974 +newpath 2451.43 1145.23 moveto
  2.5975 +2460 1139 lineto
  2.5976 +2449.42 1138.52 lineto
  2.5977 +closepath fill
  2.5978 +1 setlinewidth
  2.5979 +solid
  2.5980 +0.000 0.000 0.000 edgecolor
  2.5981 +newpath 2451.43 1145.23 moveto
  2.5982 +2460 1139 lineto
  2.5983 +2449.42 1138.52 lineto
  2.5984 +closepath stroke
  2.5985 +grestore
  2.5986 +% smtp_deliver->smtp_out_quit
  2.5987 +gsave
  2.5988 +1 setlinewidth
  2.5989 +solid
  2.5990 +0.000 0.000 0.000 edgecolor
  2.5991 +newpath 2322 1270 moveto
  2.5992 +2360 1264 2412 1254 2453 1246 curveto
  2.5993 +stroke
  2.5994 +0.000 0.000 0.000 edgecolor
  2.5995 +newpath 2453.88 1249.39 moveto
  2.5996 +2463 1244 lineto
  2.5997 +2452.51 1242.53 lineto
  2.5998 +closepath fill
  2.5999 +1 setlinewidth
  2.6000 +solid
  2.6001 +0.000 0.000 0.000 edgecolor
  2.6002 +newpath 2453.88 1249.39 moveto
  2.6003 +2463 1244 lineto
  2.6004 +2452.51 1242.53 lineto
  2.6005 +closepath stroke
  2.6006 +grestore
  2.6007 +% destroy_route
  2.6008 +gsave
  2.6009 +1 setlinewidth
  2.6010 +0.000 0.000 0.000 nodecolor
  2.6011 +1705 2768 64.82 18 ellipse_path stroke
  2.6012 +0.000 0.000 0.000 nodecolor
  2.6013 +grestore
  2.6014 +% destroy_route_list->destroy_route
  2.6015 +gsave
  2.6016 +1 setlinewidth
  2.6017 +solid
  2.6018 +0.000 0.000 0.000 edgecolor
  2.6019 +newpath 1493 2661 moveto
  2.6020 +1509 2666 1527 2672 1542 2679 curveto
  2.6021 +1588 2698 1638 2727 1670 2746 curveto
  2.6022 +stroke
  2.6023 +0.000 0.000 0.000 edgecolor
  2.6024 +newpath 1668.56 2749.2 moveto
  2.6025 +1679 2751 lineto
  2.6026 +1671.96 2743.08 lineto
  2.6027 +closepath fill
  2.6028 +1 setlinewidth
  2.6029 +solid
  2.6030 +0.000 0.000 0.000 edgecolor
  2.6031 +newpath 1668.56 2749.2 moveto
  2.6032 +1679 2751 lineto
  2.6033 +1671.96 2743.08 lineto
  2.6034 +closepath stroke
  2.6035 +grestore
  2.6036 +% destroy_route->destroy_table
  2.6037 +gsave
  2.6038 +1 setlinewidth
  2.6039 +solid
  2.6040 +0.000 0.000 0.000 edgecolor
  2.6041 +newpath 1771 2769 moveto
  2.6042 +1793 2773 1817 2782 1832 2800 curveto
  2.6043 +1893 2871 1803 3154 1868 3221 curveto
  2.6044 +1951 3304 2805 3323 2922 3330 curveto
  2.6045 +3022 3335 3138 3330 3212 3327 curveto
  2.6046 +stroke
  2.6047 +0.000 0.000 0.000 edgecolor
  2.6048 +newpath 3212.4 3330.48 moveto
  2.6049 +3222 3326 lineto
  2.6050 +3211.7 3323.51 lineto
  2.6051 +closepath fill
  2.6052 +1 setlinewidth
  2.6053 +solid
  2.6054 +0.000 0.000 0.000 edgecolor
  2.6055 +newpath 3212.4 3330.48 moveto
  2.6056 +3222 3326 lineto
  2.6057 +3211.7 3323.51 lineto
  2.6058 +closepath stroke
  2.6059 +grestore
  2.6060 +% _g_list_free_all
  2.6061 +gsave
  2.6062 +1 setlinewidth
  2.6063 +0.000 0.000 0.000 nodecolor
  2.6064 +1993 2768 70.88 18 ellipse_path stroke
  2.6065 +0.000 0.000 0.000 nodecolor
  2.6066 +grestore
  2.6067 +% destroy_route->_g_list_free_all
  2.6068 +gsave
  2.6069 +1 setlinewidth
  2.6070 +solid
  2.6071 +0.000 0.000 0.000 edgecolor
  2.6072 +newpath 1771 2768 moveto
  2.6073 +1813 2768 1867 2768 1912 2768 curveto
  2.6074 +stroke
  2.6075 +0.000 0.000 0.000 edgecolor
  2.6076 +newpath 1912 2771.5 moveto
  2.6077 +1922 2768 lineto
  2.6078 +1912 2764.5 lineto
  2.6079 +closepath fill
  2.6080 +1 setlinewidth
  2.6081 +solid
  2.6082 +0.000 0.000 0.000 edgecolor
  2.6083 +newpath 1912 2771.5 moveto
  2.6084 +1922 2768 lineto
  2.6085 +1912 2764.5 lineto
  2.6086 +closepath stroke
  2.6087 +grestore
  2.6088 +% _g_list_addrcmp
  2.6089 +gsave
  2.6090 +1 setlinewidth
  2.6091 +0.000 0.000 0.000 nodecolor
  2.6092 +1993 2520 77.13 18 ellipse_path stroke
  2.6093 +0.000 0.000 0.000 nodecolor
  2.6094 +grestore
  2.6095 +% addr_match
  2.6096 +gsave
  2.6097 +1 setlinewidth
  2.6098 +0.000 0.000 0.000 nodecolor
  2.6099 +2270 3110 57.17 18 ellipse_path stroke
  2.6100 +0.000 0.000 0.000 nodecolor
  2.6101 +grestore
  2.6102 +% _g_list_addrcmp->addr_match
  2.6103 +gsave
  2.6104 +1 setlinewidth
  2.6105 +solid
  2.6106 +0.000 0.000 0.000 edgecolor
  2.6107 +newpath 2013 2537 moveto
  2.6108 +2042 2564 2095 2618 2118 2677 curveto
  2.6109 +2152 2760 2097 3009 2154 3078 curveto
  2.6110 +2167 3092 2185 3101 2203 3106 curveto
  2.6111 +stroke
  2.6112 +0.000 0.000 0.000 edgecolor
  2.6113 +newpath 2202.51 3109.47 moveto
  2.6114 +2213 3108 lineto
  2.6115 +2203.88 3102.61 lineto
  2.6116 +closepath fill
  2.6117 +1 setlinewidth
  2.6118 +solid
  2.6119 +0.000 0.000 0.000 edgecolor
  2.6120 +newpath 2202.51 3109.47 moveto
  2.6121 +2213 3108 lineto
  2.6122 +2203.88 3102.61 lineto
  2.6123 +closepath stroke
  2.6124 +grestore
  2.6125 +% accept_message_stream
  2.6126 +gsave
  2.6127 +1 setlinewidth
  2.6128 +0.000 0.000 0.000 nodecolor
  2.6129 +3031 199 105.12 18 ellipse_path stroke
  2.6130 +0.000 0.000 0.000 nodecolor
  2.6131 +grestore
  2.6132 +% accept_message_stream->get_header
  2.6133 +gsave
  2.6134 +1 setlinewidth
  2.6135 +solid
  2.6136 +0.000 0.000 0.000 edgecolor
  2.6137 +newpath 3137 199 moveto
  2.6138 +3165 199 3195 199 3220 199 curveto
  2.6139 +stroke
  2.6140 +0.000 0.000 0.000 edgecolor
  2.6141 +newpath 3220 202.5 moveto
  2.6142 +3230 199 lineto
  2.6143 +3220 195.5 lineto
  2.6144 +closepath fill
  2.6145 +1 setlinewidth
  2.6146 +solid
  2.6147 +0.000 0.000 0.000 edgecolor
  2.6148 +newpath 3220 202.5 moveto
  2.6149 +3230 199 lineto
  2.6150 +3220 195.5 lineto
  2.6151 +closepath stroke
  2.6152 +grestore
  2.6153 +% read_sockline1
  2.6154 +gsave
  2.6155 +1 setlinewidth
  2.6156 +0.000 0.000 0.000 nodecolor
  2.6157 +3284 145 68.99 18 ellipse_path stroke
  2.6158 +0.000 0.000 0.000 nodecolor
  2.6159 +grestore
  2.6160 +% accept_message_stream->read_sockline1
  2.6161 +gsave
  2.6162 +1 setlinewidth
  2.6163 +solid
  2.6164 +0.000 0.000 0.000 edgecolor
  2.6165 +newpath 3097 185 moveto
  2.6166 +3135 177 3182 167 3220 159 curveto
  2.6167 +stroke
  2.6168 +0.000 0.000 0.000 edgecolor
  2.6169 +newpath 3220.88 162.39 moveto
  2.6170 +3230 157 lineto
  2.6171 +3219.51 155.53 lineto
  2.6172 +closepath fill
  2.6173 +1 setlinewidth
  2.6174 +solid
  2.6175 +0.000 0.000 0.000 edgecolor
  2.6176 +newpath 3220.88 162.39 moveto
  2.6177 +3230 157 lineto
  2.6178 +3219.51 155.53 lineto
  2.6179 +closepath stroke
  2.6180 +grestore
  2.6181 +% read_sockline1->alarm_on
  2.6182 +gsave
  2.6183 +1 setlinewidth
  2.6184 +solid
  2.6185 +0.000 0.000 0.000 edgecolor
  2.6186 +newpath 3348 138 moveto
  2.6187 +3389 133 3442 128 3481 124 curveto
  2.6188 +stroke
  2.6189 +0.000 0.000 0.000 edgecolor
  2.6190 +newpath 3481.4 127.48 moveto
  2.6191 +3491 123 lineto
  2.6192 +3480.7 120.51 lineto
  2.6193 +closepath fill
  2.6194 +1 setlinewidth
  2.6195 +solid
  2.6196 +0.000 0.000 0.000 edgecolor
  2.6197 +newpath 3481.4 127.48 moveto
  2.6198 +3491 123 lineto
  2.6199 +3480.7 120.51 lineto
  2.6200 +closepath stroke
  2.6201 +grestore
  2.6202 +% read_sockline1->_read_line
  2.6203 +gsave
  2.6204 +1 setlinewidth
  2.6205 +solid
  2.6206 +0.000 0.000 0.000 edgecolor
  2.6207 +newpath 3349 152 moveto
  2.6208 +3364 156 3380 162 3392 172 curveto
  2.6209 +3423 198 3398 228 3428 253 curveto
  2.6210 +3441 265 3459 272 3476 275 curveto
  2.6211 +stroke
  2.6212 +0.000 0.000 0.000 edgecolor
  2.6213 +newpath 3475.51 278.47 moveto
  2.6214 +3486 277 lineto
  2.6215 +3476.88 271.61 lineto
  2.6216 +closepath fill
  2.6217 +1 setlinewidth
  2.6218 +solid
  2.6219 +0.000 0.000 0.000 edgecolor
  2.6220 +newpath 3475.51 278.47 moveto
  2.6221 +3486 277 lineto
  2.6222 +3476.88 271.61 lineto
  2.6223 +closepath stroke
  2.6224 +grestore
  2.6225 +% read_sockline1->_read_chug
  2.6226 +gsave
  2.6227 +1 setlinewidth
  2.6228 +solid
  2.6229 +0.000 0.000 0.000 edgecolor
  2.6230 +newpath 3342 155 moveto
  2.6231 +3359 159 3377 165 3392 172 curveto
  2.6232 +3411 181 3410 191 3428 199 curveto
  2.6233 +3443 206 3460 212 3476 216 curveto
  2.6234 +stroke
  2.6235 +0.000 0.000 0.000 edgecolor
  2.6236 +newpath 3475.51 219.47 moveto
  2.6237 +3486 218 lineto
  2.6238 +3476.88 212.61 lineto
  2.6239 +closepath fill
  2.6240 +1 setlinewidth
  2.6241 +solid
  2.6242 +0.000 0.000 0.000 edgecolor
  2.6243 +newpath 3475.51 219.47 moveto
  2.6244 +3486 218 lineto
  2.6245 +3476.88 212.61 lineto
  2.6246 +closepath stroke
  2.6247 +grestore
  2.6248 +% read_sockline1->alarm_off
  2.6249 +gsave
  2.6250 +1 setlinewidth
  2.6251 +solid
  2.6252 +0.000 0.000 0.000 edgecolor
  2.6253 +newpath 3348 152 moveto
  2.6254 +3388 157 3441 162 3480 166 curveto
  2.6255 +stroke
  2.6256 +0.000 0.000 0.000 edgecolor
  2.6257 +newpath 3479.7 169.49 moveto
  2.6258 +3490 167 lineto
  2.6259 +3480.4 162.52 lineto
  2.6260 +closepath fill
  2.6261 +1 setlinewidth
  2.6262 +solid
  2.6263 +0.000 0.000 0.000 edgecolor
  2.6264 +newpath 3479.7 169.49 moveto
  2.6265 +3490 167 lineto
  2.6266 +3480.4 162.52 lineto
  2.6267 +closepath stroke
  2.6268 +grestore
  2.6269 +% spool_lock->set_euidgid
  2.6270 +gsave
  2.6271 +1 setlinewidth
  2.6272 +solid
  2.6273 +0.000 0.000 0.000 edgecolor
  2.6274 +newpath 1236 943 moveto
  2.6275 +1266 937 1307 930 1342 925 curveto
  2.6276 +2025 845 2201 879 2886 832 curveto
  2.6277 +2912 830 2942 828 2967 826 curveto
  2.6278 +stroke
  2.6279 +0.000 0.000 0.000 edgecolor
  2.6280 +newpath 2967.4 829.48 moveto
  2.6281 +2977 825 lineto
  2.6282 +2966.7 822.51 lineto
  2.6283 +closepath fill
  2.6284 +1 setlinewidth
  2.6285 +solid
  2.6286 +0.000 0.000 0.000 edgecolor
  2.6287 +newpath 2967.4 829.48 moveto
  2.6288 +2977 825 lineto
  2.6289 +2966.7 822.51 lineto
  2.6290 +closepath stroke
  2.6291 +grestore
  2.6292 +% dot_lock
  2.6293 +gsave
  2.6294 +1 setlinewidth
  2.6295 +0.000 0.000 0.000 nodecolor
  2.6296 +1442 952 45.86 18 ellipse_path stroke
  2.6297 +0.000 0.000 0.000 nodecolor
  2.6298 +grestore
  2.6299 +% spool_lock->dot_lock
  2.6300 +gsave
  2.6301 +1 setlinewidth
  2.6302 +solid
  2.6303 +0.000 0.000 0.000 edgecolor
  2.6304 +newpath 1244 952 moveto
  2.6305 +1286 952 1344 952 1386 952 curveto
  2.6306 +stroke
  2.6307 +0.000 0.000 0.000 edgecolor
  2.6308 +newpath 1386 955.5 moveto
  2.6309 +1396 952 lineto
  2.6310 +1386 948.5 lineto
  2.6311 +closepath fill
  2.6312 +1 setlinewidth
  2.6313 +solid
  2.6314 +0.000 0.000 0.000 edgecolor
  2.6315 +newpath 1386 955.5 moveto
  2.6316 +1396 952 lineto
  2.6317 +1386 948.5 lineto
  2.6318 +closepath stroke
  2.6319 +grestore
  2.6320 +% read_get_conf->resolve_dns_a
  2.6321 +gsave
  2.6322 +1 setlinewidth
  2.6323 +dotted
  2.6324 +0.000 0.000 0.000 edgecolor
  2.6325 +newpath 2818 2470 moveto
  2.6326 +2839 2464 2864 2457 2886 2450 curveto
  2.6327 +3014 2409 3163 2353 3237 2325 curveto
  2.6328 +stroke
  2.6329 +0.000 0.000 0.000 edgecolor
  2.6330 +newpath 3238.28 2328.26 moveto
  2.6331 +3246 2321 lineto
  2.6332 +3235.44 2321.86 lineto
  2.6333 +closepath fill
  2.6334 +1 setlinewidth
  2.6335 +solid
  2.6336 +0.000 0.000 0.000 edgecolor
  2.6337 +newpath 3238.28 2328.26 moveto
  2.6338 +3246 2321 lineto
  2.6339 +3235.44 2321.86 lineto
  2.6340 +closepath stroke
  2.6341 +grestore
  2.6342 +% read_get_conf->create_address_qualified
  2.6343 +gsave
  2.6344 +1 setlinewidth
  2.6345 +solid
  2.6346 +0.000 0.000 0.000 edgecolor
  2.6347 +newpath 2798 2466 moveto
  2.6348 +2826 2448 2867 2418 2886 2379 curveto
  2.6349 +2958 2230 2837 1777 2922 1636 curveto
  2.6350 +2958 1576 3144 1490 3235 1452 curveto
  2.6351 +stroke
  2.6352 +0.000 0.000 0.000 edgecolor
  2.6353 +newpath 3236.28 1455.26 moveto
  2.6354 +3244 1448 lineto
  2.6355 +3233.44 1448.86 lineto
  2.6356 +closepath fill
  2.6357 +1 setlinewidth
  2.6358 +solid
  2.6359 +0.000 0.000 0.000 edgecolor
  2.6360 +newpath 3236.28 1455.26 moveto
  2.6361 +3244 1448 lineto
  2.6362 +3233.44 1448.86 lineto
  2.6363 +closepath stroke
  2.6364 +grestore
  2.6365 +% read_get_conf->parse_boolean
  2.6366 +gsave
  2.6367 +1 setlinewidth
  2.6368 +solid
  2.6369 +0.000 0.000 0.000 edgecolor
  2.6370 +newpath 2828 2491 moveto
  2.6371 +2868 2497 2919 2504 2961 2510 curveto
  2.6372 +stroke
  2.6373 +0.000 0.000 0.000 edgecolor
  2.6374 +newpath 2960.7 2513.49 moveto
  2.6375 +2971 2511 lineto
  2.6376 +2961.4 2506.52 lineto
  2.6377 +closepath fill
  2.6378 +1 setlinewidth
  2.6379 +solid
  2.6380 +0.000 0.000 0.000 edgecolor
  2.6381 +newpath 2960.7 2513.49 moveto
  2.6382 +2971 2511 lineto
  2.6383 +2961.4 2506.52 lineto
  2.6384 +closepath stroke
  2.6385 +grestore
  2.6386 +% read_get_conf->resolve_byname
  2.6387 +gsave
  2.6388 +1 setlinewidth
  2.6389 +dotted
  2.6390 +0.000 0.000 0.000 edgecolor
  2.6391 +newpath 2810 2468 moveto
  2.6392 +2836 2457 2868 2438 2886 2412 curveto
  2.6393 +2942 2331 2857 2267 2922 2195 curveto
  2.6394 +2961 2153 3114 2124 3208 2110 curveto
  2.6395 +stroke
  2.6396 +0.000 0.000 0.000 edgecolor
  2.6397 +newpath 3208.4 2113.48 moveto
  2.6398 +3218 2109 lineto
  2.6399 +3207.7 2106.51 lineto
  2.6400 +closepath fill
  2.6401 +1 setlinewidth
  2.6402 +solid
  2.6403 +0.000 0.000 0.000 edgecolor
  2.6404 +newpath 3208.4 2113.48 moveto
  2.6405 +3218 2109 lineto
  2.6406 +3207.7 2106.51 lineto
  2.6407 +closepath stroke
  2.6408 +grestore
  2.6409 +% read_get_conf->parse_resolve_list
  2.6410 +gsave
  2.6411 +1 setlinewidth
  2.6412 +solid
  2.6413 +0.000 0.000 0.000 edgecolor
  2.6414 +newpath 2802 2466 moveto
  2.6415 +2827 2454 2861 2434 2886 2412 curveto
  2.6416 +2894 2405 2974 2299 3011 2248 curveto
  2.6417 +stroke
  2.6418 +0.000 0.000 0.000 edgecolor
  2.6419 +newpath 3013.8 2250.1 moveto
  2.6420 +3017 2240 lineto
  2.6421 +3008.2 2245.9 lineto
  2.6422 +closepath fill
  2.6423 +1 setlinewidth
  2.6424 +solid
  2.6425 +0.000 0.000 0.000 edgecolor
  2.6426 +newpath 3013.8 2250.1 moveto
  2.6427 +3017 2240 lineto
  2.6428 +3008.2 2245.9 lineto
  2.6429 +closepath stroke
  2.6430 +grestore
  2.6431 +% read_get_conf->read_statement
  2.6432 +gsave
  2.6433 +1 setlinewidth
  2.6434 +solid
  2.6435 +0.000 0.000 0.000 edgecolor
  2.6436 +newpath 2835 2478 moveto
  2.6437 +2871 2475 2915 2473 2953 2471 curveto
  2.6438 +stroke
  2.6439 +0.000 0.000 0.000 edgecolor
  2.6440 +newpath 2953.4 2474.48 moveto
  2.6441 +2963 2470 lineto
  2.6442 +2952.7 2467.51 lineto
  2.6443 +closepath fill
  2.6444 +1 setlinewidth
  2.6445 +solid
  2.6446 +0.000 0.000 0.000 edgecolor
  2.6447 +newpath 2953.4 2474.48 moveto
  2.6448 +2963 2470 lineto
  2.6449 +2952.7 2467.51 lineto
  2.6450 +closepath stroke
  2.6451 +grestore
  2.6452 +% queue_run_online
  2.6453 +gsave
  2.6454 +1 setlinewidth
  2.6455 +0.000 0.000 0.000 nodecolor
  2.6456 +373 1677 79.91 18 ellipse_path stroke
  2.6457 +0.000 0.000 0.000 nodecolor
  2.6458 +grestore
  2.6459 +% queue_run_online->read_queue
  2.6460 +gsave
  2.6461 +1 setlinewidth
  2.6462 +solid
  2.6463 +0.000 0.000 0.000 edgecolor
  2.6464 +newpath 380 1659 moveto
  2.6465 +410 1582 530 1278 567 1185 curveto
  2.6466 +stroke
  2.6467 +0.000 0.000 0.000 edgecolor
  2.6468 +newpath 570.14 1186.56 moveto
  2.6469 +571 1176 lineto
  2.6470 +563.74 1183.72 lineto
  2.6471 +closepath fill
  2.6472 +1 setlinewidth
  2.6473 +solid
  2.6474 +0.000 0.000 0.000 edgecolor
  2.6475 +newpath 570.14 1186.56 moveto
  2.6476 +571 1176 lineto
  2.6477 +563.74 1183.72 lineto
  2.6478 +closepath stroke
  2.6479 +grestore
  2.6480 +% queue_run_online->deliver_msg_list
  2.6481 +gsave
  2.6482 +1 setlinewidth
  2.6483 +solid
  2.6484 +0.000 0.000 0.000 edgecolor
  2.6485 +newpath 376 1695 moveto
  2.6486 +388 1773 440 2078 500 2152 curveto
  2.6487 +592 2264 775 2276 881 2272 curveto
  2.6488 +stroke
  2.6489 +0.000 0.000 0.000 edgecolor
  2.6490 +newpath 881 2275.5 moveto
  2.6491 +891 2272 lineto
  2.6492 +881 2268.5 lineto
  2.6493 +closepath fill
  2.6494 +1 setlinewidth
  2.6495 +solid
  2.6496 +0.000 0.000 0.000 edgecolor
  2.6497 +newpath 881 2275.5 moveto
  2.6498 +891 2272 lineto
  2.6499 +881 2268.5 lineto
  2.6500 +closepath stroke
  2.6501 +grestore
  2.6502 +% queue_run_online->destroy_msg_list
  2.6503 +gsave
  2.6504 +1 setlinewidth
  2.6505 +solid
  2.6506 +0.000 0.000 0.000 edgecolor
  2.6507 +newpath 376 1695 moveto
  2.6508 +390 1767 444 2031 500 2093 curveto
  2.6509 +505 2099 511 2103 518 2107 curveto
  2.6510 +stroke
  2.6511 +0.000 0.000 0.000 edgecolor
  2.6512 +newpath 516.44 2110.14 moveto
  2.6513 +527 2111 lineto
  2.6514 +519.28 2103.74 lineto
  2.6515 +closepath fill
  2.6516 +1 setlinewidth
  2.6517 +solid
  2.6518 +0.000 0.000 0.000 edgecolor
  2.6519 +newpath 516.44 2110.14 moveto
  2.6520 +527 2111 lineto
  2.6521 +519.28 2103.74 lineto
  2.6522 +closepath stroke
  2.6523 +grestore
  2.6524 +% var_table_rcpt->create_pair_string
  2.6525 +gsave
  2.6526 +1 setlinewidth
  2.6527 +solid
  2.6528 +0.000 0.000 0.000 edgecolor
  2.6529 +newpath 2564 3053 moveto
  2.6530 +2668 3082 2931 3142 3140 3086 curveto
  2.6531 +3292 3045 3446 2931 3508 2882 curveto
  2.6532 +stroke
  2.6533 +0.000 0.000 0.000 edgecolor
  2.6534 +newpath 3510.78 2884.22 moveto
  2.6535 +3516 2875 lineto
  2.6536 +3506.17 2878.95 lineto
  2.6537 +closepath fill
  2.6538 +1 setlinewidth
  2.6539 +solid
  2.6540 +0.000 0.000 0.000 edgecolor
  2.6541 +newpath 3510.78 2884.22 moveto
  2.6542 +3516 2875 lineto
  2.6543 +3506.17 2878.95 lineto
  2.6544 +closepath stroke
  2.6545 +grestore
  2.6546 +% append_file
  2.6547 +gsave
  2.6548 +1 setlinewidth
  2.6549 +0.000 0.000 0.000 nodecolor
  2.6550 +2519 2710 55.79 18 ellipse_path stroke
  2.6551 +0.000 0.000 0.000 nodecolor
  2.6552 +grestore
  2.6553 +% append_file->message_stream
  2.6554 +gsave
  2.6555 +1 setlinewidth
  2.6556 +solid
  2.6557 +0.000 0.000 0.000 edgecolor
  2.6558 +newpath 2566 2720 moveto
  2.6559 +2604 2728 2660 2740 2703 2750 curveto
  2.6560 +stroke
  2.6561 +0.000 0.000 0.000 edgecolor
  2.6562 +newpath 2702.51 2753.47 moveto
  2.6563 +2713 2752 lineto
  2.6564 +2703.88 2746.61 lineto
  2.6565 +closepath fill
  2.6566 +1 setlinewidth
  2.6567 +solid
  2.6568 +0.000 0.000 0.000 edgecolor
  2.6569 +newpath 2702.51 2753.47 moveto
  2.6570 +2713 2752 lineto
  2.6571 +2703.88 2746.61 lineto
  2.6572 +closepath stroke
  2.6573 +grestore
  2.6574 +% smtp_in
  2.6575 +gsave
  2.6576 +1 setlinewidth
  2.6577 +0.000 0.000 0.000 nodecolor
  2.6578 +578 822 41.89 18 ellipse_path stroke
  2.6579 +0.000 0.000 0.000 nodecolor
  2.6580 +grestore
  2.6581 +% smtp_in->create_address
  2.6582 +gsave
  2.6583 +1 setlinewidth
  2.6584 +solid
  2.6585 +0.000 0.000 0.000 edgecolor
  2.6586 +newpath 619 816 moveto
  2.6587 +632 813 647 806 656 795 curveto
  2.6588 +701 747 646 699 692 651 curveto
  2.6589 +815 527 899 575 1072 549 curveto
  2.6590 +1186 533 3053 452 3140 526 curveto
  2.6591 +3206 582 3121 651 3176 716 curveto
  2.6592 +3243 794 3325 718 3392 794 curveto
  2.6593 +3471 883 3522 1268 3534 1376 curveto
  2.6594 +stroke
  2.6595 +0.000 0.000 0.000 edgecolor
  2.6596 +newpath 3530.52 1376.4 moveto
  2.6597 +3535 1386 lineto
  2.6598 +3537.49 1375.7 lineto
  2.6599 +closepath fill
  2.6600 +1 setlinewidth
  2.6601 +solid
  2.6602 +0.000 0.000 0.000 edgecolor
  2.6603 +newpath 3530.52 1376.4 moveto
  2.6604 +3535 1386 lineto
  2.6605 +3537.49 1375.7 lineto
  2.6606 +closepath stroke
  2.6607 +grestore
  2.6608 +% smtp_in->destroy_message
  2.6609 +gsave
  2.6610 +1 setlinewidth
  2.6611 +solid
  2.6612 +0.000 0.000 0.000 edgecolor
  2.6613 +newpath 583 840 moveto
  2.6614 +597 887 635 1019 656 1131 curveto
  2.6615 +723 1483 760 1918 769 2032 curveto
  2.6616 +stroke
  2.6617 +0.000 0.000 0.000 edgecolor
  2.6618 +newpath 765.52 2032.4 moveto
  2.6619 +770 2042 lineto
  2.6620 +772.49 2031.7 lineto
  2.6621 +closepath fill
  2.6622 +1 setlinewidth
  2.6623 +solid
  2.6624 +0.000 0.000 0.000 edgecolor
  2.6625 +newpath 765.52 2032.4 moveto
  2.6626 +770 2042 lineto
  2.6627 +772.49 2031.7 lineto
  2.6628 +closepath stroke
  2.6629 +grestore
  2.6630 +% smtp_in->addr_is_local
  2.6631 +gsave
  2.6632 +1 setlinewidth
  2.6633 +solid
  2.6634 +0.000 0.000 0.000 edgecolor
  2.6635 +newpath 584 840 moveto
  2.6636 +599 887 640 1018 656 1131 curveto
  2.6637 +672 1237 641 1994 692 2087 curveto
  2.6638 +734 2160 798 2126 850 2193 curveto
  2.6639 +880 2230 855 2257 886 2293 curveto
  2.6640 +936 2349 996 2306 1036 2370 curveto
  2.6641 +1089 2452 1011 3172 1072 3248 curveto
  2.6642 +1185 3385 2476 3454 2652 3463 curveto
  2.6643 +2756 3468 2790 3501 2886 3463 curveto
  2.6644 +2907 3454 2903 3439 2922 3429 curveto
  2.6645 +2934 3423 2948 3418 2961 3415 curveto
  2.6646 +stroke
  2.6647 +0.000 0.000 0.000 edgecolor
  2.6648 +newpath 2961.88 3418.39 moveto
  2.6649 +2971 3413 lineto
  2.6650 +2960.51 3411.53 lineto
  2.6651 +closepath fill
  2.6652 +1 setlinewidth
  2.6653 +solid
  2.6654 +0.000 0.000 0.000 edgecolor
  2.6655 +newpath 2961.88 3418.39 moveto
  2.6656 +2971 3413 lineto
  2.6657 +2960.51 3411.53 lineto
  2.6658 +closepath stroke
  2.6659 +grestore
  2.6660 +% smtp_in->create_address_qualified
  2.6661 +gsave
  2.6662 +1 setlinewidth
  2.6663 +solid
  2.6664 +0.000 0.000 0.000 edgecolor
  2.6665 +newpath 614 812 moveto
  2.6666 +636 806 666 799 692 795 curveto
  2.6667 +811 777 842 776 961 776 curveto
  2.6668 +961 776 961 776 2270 776 curveto
  2.6669 +2464 776 3001 660 3140 794 curveto
  2.6670 +3238 889 3090 1300 3176 1404 curveto
  2.6671 +3180 1408 3184 1412 3188 1415 curveto
  2.6672 +stroke
  2.6673 +0.000 0.000 0.000 edgecolor
  2.6674 +newpath 3186.56 1418.2 moveto
  2.6675 +3197 1420 lineto
  2.6676 +3189.96 1412.08 lineto
  2.6677 +closepath fill
  2.6678 +1 setlinewidth
  2.6679 +solid
  2.6680 +0.000 0.000 0.000 edgecolor
  2.6681 +newpath 3186.56 1418.2 moveto
  2.6682 +3197 1420 lineto
  2.6683 +3189.96 1412.08 lineto
  2.6684 +closepath stroke
  2.6685 +grestore
  2.6686 +% smtp_in->addr_string
  2.6687 +gsave
  2.6688 +1 setlinewidth
  2.6689 +solid
  2.6690 +0.000 0.000 0.000 edgecolor
  2.6691 +newpath 618 816 moveto
  2.6692 +631 812 646 805 656 795 curveto
  2.6693 +688 765 658 730 692 702 curveto
  2.6694 +787 627 841 662 961 662 curveto
  2.6695 +961 662 961 662 1442 662 curveto
  2.6696 +2084 662 2245 610 2886 627 curveto
  2.6697 +3000 631 3052 571 3140 641 curveto
  2.6698 +3187 678 3139 724 3176 769 curveto
  2.6699 +3191 786 3212 798 3232 806 curveto
  2.6700 +stroke
  2.6701 +0.000 0.000 0.000 edgecolor
  2.6702 +newpath 3230.44 809.14 moveto
  2.6703 +3241 810 lineto
  2.6704 +3233.28 802.74 lineto
  2.6705 +closepath fill
  2.6706 +1 setlinewidth
  2.6707 +solid
  2.6708 +0.000 0.000 0.000 edgecolor
  2.6709 +newpath 3230.44 809.14 moveto
  2.6710 +3241 810 lineto
  2.6711 +3233.28 802.74 lineto
  2.6712 +closepath stroke
  2.6713 +grestore
  2.6714 +% smtp_in->read_sockline
  2.6715 +gsave
  2.6716 +1 setlinewidth
  2.6717 +solid
  2.6718 +0.000 0.000 0.000 edgecolor
  2.6719 +newpath 619 817 moveto
  2.6720 +633 813 647 806 656 795 curveto
  2.6721 +731 705 611 618 692 534 curveto
  2.6722 +836 388 2315 280 2519 280 curveto
  2.6723 +2519 280 2519 280 2769 280 curveto
  2.6724 +2927 280 3113 267 3212 259 curveto
  2.6725 +stroke
  2.6726 +0.000 0.000 0.000 edgecolor
  2.6727 +newpath 3212.4 262.48 moveto
  2.6728 +3222 258 lineto
  2.6729 +3211.7 255.51 lineto
  2.6730 +closepath fill
  2.6731 +1 setlinewidth
  2.6732 +solid
  2.6733 +0.000 0.000 0.000 edgecolor
  2.6734 +newpath 3212.4 262.48 moveto
  2.6735 +3222 258 lineto
  2.6736 +3211.7 255.51 lineto
  2.6737 +closepath stroke
  2.6738 +grestore
  2.6739 +% smtp_in->deliver
  2.6740 +gsave
  2.6741 +1 setlinewidth
  2.6742 +solid
  2.6743 +0.000 0.000 0.000 edgecolor
  2.6744 +newpath 584 840 moveto
  2.6745 +600 887 641 1018 656 1131 curveto
  2.6746 +672 1242 650 2031 692 2135 curveto
  2.6747 +702 2160 725 2183 743 2198 curveto
  2.6748 +stroke
  2.6749 +0.000 0.000 0.000 edgecolor
  2.6750 +newpath 741.17 2201.05 moveto
  2.6751 +751 2205 lineto
  2.6752 +745.78 2195.78 lineto
  2.6753 +closepath fill
  2.6754 +1 setlinewidth
  2.6755 +solid
  2.6756 +0.000 0.000 0.000 edgecolor
  2.6757 +newpath 741.17 2201.05 moveto
  2.6758 +751 2205 lineto
  2.6759 +745.78 2195.78 lineto
  2.6760 +closepath stroke
  2.6761 +grestore
  2.6762 +% smtp_in->spool_write
  2.6763 +gsave
  2.6764 +1 setlinewidth
  2.6765 +solid
  2.6766 +0.000 0.000 0.000 edgecolor
  2.6767 +newpath 615 813 moveto
  2.6768 +628 809 644 803 656 795 curveto
  2.6769 +675 784 673 773 692 762 curveto
  2.6770 +801 705 839 700 961 700 curveto
  2.6771 +961 700 961 700 1705 700 curveto
  2.6772 +2084 700 2537 670 2703 659 curveto
  2.6773 +stroke
  2.6774 +0.000 0.000 0.000 edgecolor
  2.6775 +newpath 2703.4 662.48 moveto
  2.6776 +2713 658 lineto
  2.6777 +2702.7 655.51 lineto
  2.6778 +closepath fill
  2.6779 +1 setlinewidth
  2.6780 +solid
  2.6781 +0.000 0.000 0.000 edgecolor
  2.6782 +newpath 2703.4 662.48 moveto
  2.6783 +2713 658 lineto
  2.6784 +2702.7 655.51 lineto
  2.6785 +closepath stroke
  2.6786 +grestore
  2.6787 +% accept_message
  2.6788 +gsave
  2.6789 +1 setlinewidth
  2.6790 +0.000 0.000 0.000 nodecolor
  2.6791 +961 320 75.05 18 ellipse_path stroke
  2.6792 +0.000 0.000 0.000 nodecolor
  2.6793 +grestore
  2.6794 +% smtp_in->accept_message
  2.6795 +gsave
  2.6796 +1 setlinewidth
  2.6797 +solid
  2.6798 +0.000 0.000 0.000 edgecolor
  2.6799 +newpath 619 817 moveto
  2.6800 +633 813 647 806 656 795 curveto
  2.6801 +741 691 622 610 692 496 curveto
  2.6802 +742 415 846 363 908 339 curveto
  2.6803 +stroke
  2.6804 +0.000 0.000 0.000 edgecolor
  2.6805 +newpath 910.02 341.96 moveto
  2.6806 +918 335 lineto
  2.6807 +907.42 335.46 lineto
  2.6808 +closepath fill
  2.6809 +1 setlinewidth
  2.6810 +solid
  2.6811 +0.000 0.000 0.000 edgecolor
  2.6812 +newpath 910.02 341.96 moveto
  2.6813 +918 335 lineto
  2.6814 +907.42 335.46 lineto
  2.6815 +closepath stroke
  2.6816 +grestore
  2.6817 +% get_address
  2.6818 +gsave
  2.6819 +1 setlinewidth
  2.6820 +0.000 0.000 0.000 nodecolor
  2.6821 +771 822 57.87 18 ellipse_path stroke
  2.6822 +0.000 0.000 0.000 nodecolor
  2.6823 +grestore
  2.6824 +% smtp_in->get_address
  2.6825 +gsave
  2.6826 +1 setlinewidth
  2.6827 +solid
  2.6828 +0.000 0.000 0.000 edgecolor
  2.6829 +newpath 621 822 moveto
  2.6830 +645 822 675 822 702 822 curveto
  2.6831 +stroke
  2.6832 +0.000 0.000 0.000 edgecolor
  2.6833 +newpath 702 825.5 moveto
  2.6834 +712 822 lineto
  2.6835 +702 818.5 lineto
  2.6836 +closepath fill
  2.6837 +1 setlinewidth
  2.6838 +solid
  2.6839 +0.000 0.000 0.000 edgecolor
  2.6840 +newpath 702 825.5 moveto
  2.6841 +712 822 lineto
  2.6842 +702 818.5 lineto
  2.6843 +closepath stroke
  2.6844 +grestore
  2.6845 +% smtp_in->create_message
  2.6846 +gsave
  2.6847 +1 setlinewidth
  2.6848 +solid
  2.6849 +0.000 0.000 0.000 edgecolor
  2.6850 +newpath 599 838 moveto
  2.6851 +621 855 659 882 692 903 curveto
  2.6852 +769 950 864 997 918 1024 curveto
  2.6853 +stroke
  2.6854 +0.000 0.000 0.000 edgecolor
  2.6855 +newpath 916.44 1027.14 moveto
  2.6856 +927 1028 lineto
  2.6857 +919.28 1020.74 lineto
  2.6858 +closepath fill
  2.6859 +1 setlinewidth
  2.6860 +solid
  2.6861 +0.000 0.000 0.000 edgecolor
  2.6862 +newpath 916.44 1027.14 moveto
  2.6863 +927 1028 lineto
  2.6864 +919.28 1020.74 lineto
  2.6865 +closepath stroke
  2.6866 +grestore
  2.6867 +% smtp_printf
  2.6868 +gsave
  2.6869 +1 setlinewidth
  2.6870 +0.000 0.000 0.000 nodecolor
  2.6871 +771 876 55.79 18 ellipse_path stroke
  2.6872 +0.000 0.000 0.000 nodecolor
  2.6873 +grestore
  2.6874 +% smtp_in->smtp_printf
  2.6875 +gsave
  2.6876 +1 setlinewidth
  2.6877 +solid
  2.6878 +0.000 0.000 0.000 edgecolor
  2.6879 +newpath 614 832 moveto
  2.6880 +643 840 685 852 718 861 curveto
  2.6881 +stroke
  2.6882 +0.000 0.000 0.000 edgecolor
  2.6883 +newpath 717.42 864.48 moveto
  2.6884 +728 864 lineto
  2.6885 +719.43 857.77 lineto
  2.6886 +closepath fill
  2.6887 +1 setlinewidth
  2.6888 +solid
  2.6889 +0.000 0.000 0.000 edgecolor
  2.6890 +newpath 717.42 864.48 moveto
  2.6891 +728 864 lineto
  2.6892 +719.43 857.77 lineto
  2.6893 +closepath stroke
  2.6894 +grestore
  2.6895 +% accept_message->accept_message_prepare
  2.6896 +gsave
  2.6897 +1 setlinewidth
  2.6898 +solid
  2.6899 +0.000 0.000 0.000 edgecolor
  2.6900 +newpath 1036 320 moveto
  2.6901 +1131 320 1299 320 1442 320 curveto
  2.6902 +1442 320 1442 320 2519 320 curveto
  2.6903 +2697 320 2896 397 2985 435 curveto
  2.6904 +stroke
  2.6905 +0.000 0.000 0.000 edgecolor
  2.6906 +newpath 2983.44 438.14 moveto
  2.6907 +2994 439 lineto
  2.6908 +2986.28 431.74 lineto
  2.6909 +closepath fill
  2.6910 +1 setlinewidth
  2.6911 +solid
  2.6912 +0.000 0.000 0.000 edgecolor
  2.6913 +newpath 2983.44 438.14 moveto
  2.6914 +2994 439 lineto
  2.6915 +2986.28 431.74 lineto
  2.6916 +closepath stroke
  2.6917 +grestore
  2.6918 +% accept_message->accept_message_stream
  2.6919 +gsave
  2.6920 +1 setlinewidth
  2.6921 +solid
  2.6922 +0.000 0.000 0.000 edgecolor
  2.6923 +newpath 1011 307 moveto
  2.6924 +1098 284 1283 242 1442 242 curveto
  2.6925 +1442 242 1442 242 2519 242 curveto
  2.6926 +2666 242 2836 224 2938 211 curveto
  2.6927 +stroke
  2.6928 +0.000 0.000 0.000 edgecolor
  2.6929 +newpath 2938.4 214.48 moveto
  2.6930 +2948 210 lineto
  2.6931 +2937.7 207.51 lineto
  2.6932 +closepath fill
  2.6933 +1 setlinewidth
  2.6934 +solid
  2.6935 +0.000 0.000 0.000 edgecolor
  2.6936 +newpath 2938.4 214.48 moveto
  2.6937 +2948 210 lineto
  2.6938 +2937.7 207.51 lineto
  2.6939 +closepath stroke
  2.6940 +grestore
  2.6941 +% alias_expand->addr_is_local
  2.6942 +gsave
  2.6943 +1 setlinewidth
  2.6944 +solid
  2.6945 +0.000 0.000 0.000 edgecolor
  2.6946 +newpath 2826 3429 moveto
  2.6947 +2866 3425 2919 3419 2962 3414 curveto
  2.6948 +stroke
  2.6949 +0.000 0.000 0.000 edgecolor
  2.6950 +newpath 2962.4 3417.48 moveto
  2.6951 +2972 3413 lineto
  2.6952 +2961.7 3410.51 lineto
  2.6953 +closepath fill
  2.6954 +1 setlinewidth
  2.6955 +solid
  2.6956 +0.000 0.000 0.000 edgecolor
  2.6957 +newpath 2962.4 3417.48 moveto
  2.6958 +2972 3413 lineto
  2.6959 +2961.7 3410.51 lineto
  2.6960 +closepath stroke
  2.6961 +grestore
  2.6962 +% alias_expand->create_address_qualified
  2.6963 +gsave
  2.6964 +1 setlinewidth
  2.6965 +solid
  2.6966 +0.000 0.000 0.000 edgecolor
  2.6967 +newpath 2775 3418 moveto
  2.6968 +2796 3358 2862 3160 2886 2991 curveto
  2.6969 +2897 2920 2886 1768 2922 1707 curveto
  2.6970 +2980 1610 3068 1665 3140 1580 curveto
  2.6971 +3170 1545 3146 1518 3176 1485 curveto
  2.6972 +3189 1471 3207 1460 3225 1451 curveto
  2.6973 +stroke
  2.6974 +0.000 0.000 0.000 edgecolor
  2.6975 +newpath 3226.28 1454.26 moveto
  2.6976 +3234 1447 lineto
  2.6977 +3223.44 1447.86 lineto
  2.6978 +closepath fill
  2.6979 +1 setlinewidth
  2.6980 +solid
  2.6981 +0.000 0.000 0.000 edgecolor
  2.6982 +newpath 3226.28 1454.26 moveto
  2.6983 +3234 1447 lineto
  2.6984 +3223.44 1447.86 lineto
  2.6985 +closepath stroke
  2.6986 +grestore
  2.6987 +% alias_expand->addr_isequal
  2.6988 +gsave
  2.6989 +1 setlinewidth
  2.6990 +solid
  2.6991 +0.000 0.000 0.000 edgecolor
  2.6992 +newpath 2823 3445 moveto
  2.6993 +2961 3466 3325 3524 3474 3547 curveto
  2.6994 +stroke
  2.6995 +0.000 0.000 0.000 edgecolor
  2.6996 +newpath 3473.51 3550.47 moveto
  2.6997 +3484 3549 lineto
  2.6998 +3474.88 3543.61 lineto
  2.6999 +closepath fill
  2.7000 +1 setlinewidth
  2.7001 +solid
  2.7002 +0.000 0.000 0.000 edgecolor
  2.7003 +newpath 3473.51 3550.47 moveto
  2.7004 +3484 3549 lineto
  2.7005 +3474.88 3543.61 lineto
  2.7006 +closepath stroke
  2.7007 +grestore
  2.7008 +% alias_expand->create_address_pipe
  2.7009 +gsave
  2.7010 +1 setlinewidth
  2.7011 +solid
  2.7012 +0.000 0.000 0.000 edgecolor
  2.7013 +newpath 2775 3418 moveto
  2.7014 +2797 3358 2863 3160 2886 2991 curveto
  2.7015 +2896 2920 2875 483 2922 429 curveto
  2.7016 +2940 410 3085 396 3186 389 curveto
  2.7017 +stroke
  2.7018 +0.000 0.000 0.000 edgecolor
  2.7019 +newpath 3186.4 392.48 moveto
  2.7020 +3196 388 lineto
  2.7021 +3185.7 385.51 lineto
  2.7022 +closepath fill
  2.7023 +1 setlinewidth
  2.7024 +solid
  2.7025 +0.000 0.000 0.000 edgecolor
  2.7026 +newpath 3186.4 392.48 moveto
  2.7027 +3196 388 lineto
  2.7028 +3185.7 385.51 lineto
  2.7029 +closepath stroke
  2.7030 +grestore
  2.7031 +% alias_expand->table_find_func
  2.7032 +gsave
  2.7033 +1 setlinewidth
  2.7034 +solid
  2.7035 +0.000 0.000 0.000 edgecolor
  2.7036 +newpath 2800 3452 moveto
  2.7037 +2916 3507 3325 3684 3646 3585 curveto
  2.7038 +3699 3569 3750 3528 3779 3502 curveto
  2.7039 +stroke
  2.7040 +0.000 0.000 0.000 edgecolor
  2.7041 +newpath 3781.78 3504.22 moveto
  2.7042 +3787 3495 lineto
  2.7043 +3777.17 3498.95 lineto
  2.7044 +closepath fill
  2.7045 +1 setlinewidth
  2.7046 +solid
  2.7047 +0.000 0.000 0.000 edgecolor
  2.7048 +newpath 3781.78 3504.22 moveto
  2.7049 +3787 3495 lineto
  2.7050 +3777.17 3498.95 lineto
  2.7051 +closepath stroke
  2.7052 +grestore
  2.7053 +% map_address_header
  2.7054 +gsave
  2.7055 +1 setlinewidth
  2.7056 +0.000 0.000 0.000 nodecolor
  2.7057 +3284 1642 93.81 18 ellipse_path stroke
  2.7058 +0.000 0.000 0.000 nodecolor
  2.7059 +grestore
  2.7060 +% map_address_header->addr_list_append_rfc822
  2.7061 +gsave
  2.7062 +1 setlinewidth
  2.7063 +solid
  2.7064 +0.000 0.000 0.000 edgecolor
  2.7065 +newpath 3339 1627 moveto
  2.7066 +3356 1622 3375 1616 3392 1610 curveto
  2.7067 +3409 1603 3412 1598 3428 1593 curveto
  2.7068 +3439 1589 3449 1586 3460 1583 curveto
  2.7069 +stroke
  2.7070 +0.000 0.000 0.000 edgecolor
  2.7071 +newpath 3461.43 1586.23 moveto
  2.7072 +3470 1580 lineto
  2.7073 +3459.42 1579.52 lineto
  2.7074 +closepath fill
  2.7075 +1 setlinewidth
  2.7076 +solid
  2.7077 +0.000 0.000 0.000 edgecolor
  2.7078 +newpath 3461.43 1586.23 moveto
  2.7079 +3470 1580 lineto
  2.7080 +3459.42 1579.52 lineto
  2.7081 +closepath stroke
  2.7082 +grestore
  2.7083 +% map_address_header->table_find_fnmatch
  2.7084 +gsave
  2.7085 +1 setlinewidth
  2.7086 +solid
  2.7087 +0.000 0.000 0.000 edgecolor
  2.7088 +newpath 3353 1654 moveto
  2.7089 +3367 1658 3380 1663 3392 1669 curveto
  2.7090 +3440 1693 3487 1736 3514 1763 curveto
  2.7091 +stroke
  2.7092 +0.000 0.000 0.000 edgecolor
  2.7093 +newpath 3511.45 1765.4 moveto
  2.7094 +3521 1770 lineto
  2.7095 +3516.4 1760.45 lineto
  2.7096 +closepath fill
  2.7097 +1 setlinewidth
  2.7098 +solid
  2.7099 +0.000 0.000 0.000 edgecolor
  2.7100 +newpath 3511.45 1765.4 moveto
  2.7101 +3521 1770 lineto
  2.7102 +3516.4 1760.45 lineto
  2.7103 +closepath stroke
  2.7104 +grestore
  2.7105 +% queue_run
  2.7106 +gsave
  2.7107 +1 setlinewidth
  2.7108 +0.000 0.000 0.000 nodecolor
  2.7109 +373 1158 52.12 18 ellipse_path stroke
  2.7110 +0.000 0.000 0.000 nodecolor
  2.7111 +grestore
  2.7112 +% queue_run->read_queue
  2.7113 +gsave
  2.7114 +1 setlinewidth
  2.7115 +solid
  2.7116 +0.000 0.000 0.000 edgecolor
  2.7117 +newpath 425 1158 moveto
  2.7118 +452 1158 483 1158 511 1158 curveto
  2.7119 +stroke
  2.7120 +0.000 0.000 0.000 edgecolor
  2.7121 +newpath 511 1161.5 moveto
  2.7122 +521 1158 lineto
  2.7123 +511 1154.5 lineto
  2.7124 +closepath fill
  2.7125 +1 setlinewidth
  2.7126 +solid
  2.7127 +0.000 0.000 0.000 edgecolor
  2.7128 +newpath 511 1161.5 moveto
  2.7129 +521 1158 lineto
  2.7130 +511 1154.5 lineto
  2.7131 +closepath stroke
  2.7132 +grestore
  2.7133 +% queue_run->deliver_msg_list
  2.7134 +gsave
  2.7135 +1 setlinewidth
  2.7136 +solid
  2.7137 +0.000 0.000 0.000 edgecolor
  2.7138 +newpath 375 1176 moveto
  2.7139 +386 1277 454 1777 692 2087 curveto
  2.7140 +694 2089 855 2195 927 2243 curveto
  2.7141 +stroke
  2.7142 +0.000 0.000 0.000 edgecolor
  2.7143 +newpath 924.9 2245.8 moveto
  2.7144 +935 2249 lineto
  2.7145 +929.1 2240.2 lineto
  2.7146 +closepath fill
  2.7147 +1 setlinewidth
  2.7148 +solid
  2.7149 +0.000 0.000 0.000 edgecolor
  2.7150 +newpath 924.9 2245.8 moveto
  2.7151 +935 2249 lineto
  2.7152 +929.1 2240.2 lineto
  2.7153 +closepath stroke
  2.7154 +grestore
  2.7155 +% queue_run->destroy_msg_list
  2.7156 +gsave
  2.7157 +1 setlinewidth
  2.7158 +solid
  2.7159 +0.000 0.000 0.000 edgecolor
  2.7160 +newpath 377 1176 moveto
  2.7161 +391 1240 439 1463 464 1650 curveto
  2.7162 +477 1747 442 2013 500 2093 curveto
  2.7163 +504 2098 509 2103 515 2107 curveto
  2.7164 +stroke
  2.7165 +0.000 0.000 0.000 edgecolor
  2.7166 +newpath 513.56 2110.2 moveto
  2.7167 +524 2112 lineto
  2.7168 +516.96 2104.08 lineto
  2.7169 +closepath fill
  2.7170 +1 setlinewidth
  2.7171 +solid
  2.7172 +0.000 0.000 0.000 edgecolor
  2.7173 +newpath 513.56 2110.2 moveto
  2.7174 +524 2112 lineto
  2.7175 +516.96 2104.08 lineto
  2.7176 +closepath stroke
  2.7177 +grestore
  2.7178 +% set_identity
  2.7179 +gsave
  2.7180 +1 setlinewidth
  2.7181 +0.000 0.000 0.000 nodecolor
  2.7182 +170 494 55.09 18 ellipse_path stroke
  2.7183 +0.000 0.000 0.000 nodecolor
  2.7184 +grestore
  2.7185 +% set_identity->set_euidgid
  2.7186 +gsave
  2.7187 +1 setlinewidth
  2.7188 +solid
  2.7189 +0.000 0.000 0.000 edgecolor
  2.7190 +newpath 225 496 moveto
  2.7191 +341 501 619 515 850 534 curveto
  2.7192 +1637 600 1833 627 2616 724 curveto
  2.7193 +2737 739 2769 731 2886 762 curveto
  2.7194 +2923 772 2962 789 2991 802 curveto
  2.7195 +stroke
  2.7196 +0.000 0.000 0.000 edgecolor
  2.7197 +newpath 2989.44 805.14 moveto
  2.7198 +3000 806 lineto
  2.7199 +2992.28 798.74 lineto
  2.7200 +closepath fill
  2.7201 +1 setlinewidth
  2.7202 +solid
  2.7203 +0.000 0.000 0.000 edgecolor
  2.7204 +newpath 2989.44 805.14 moveto
  2.7205 +3000 806 lineto
  2.7206 +2992.28 798.74 lineto
  2.7207 +closepath stroke
  2.7208 +grestore
  2.7209 +% set_identity->is_privileged_user
  2.7210 +gsave
  2.7211 +1 setlinewidth
  2.7212 +solid
  2.7213 +0.000 0.000 0.000 edgecolor
  2.7214 +newpath 218 485 moveto
  2.7215 +243 481 273 475 301 470 curveto
  2.7216 +stroke
  2.7217 +0.000 0.000 0.000 edgecolor
  2.7218 +newpath 301.88 473.39 moveto
  2.7219 +311 468 lineto
  2.7220 +300.51 466.53 lineto
  2.7221 +closepath fill
  2.7222 +1 setlinewidth
  2.7223 +solid
  2.7224 +0.000 0.000 0.000 edgecolor
  2.7225 +newpath 301.88 473.39 moveto
  2.7226 +311 468 lineto
  2.7227 +300.51 466.53 lineto
  2.7228 +closepath stroke
  2.7229 +grestore
  2.7230 +% create_msg_out
  2.7231 +gsave
  2.7232 +1 setlinewidth
  2.7233 +0.000 0.000 0.000 nodecolor
  2.7234 +2270 3218 72.96 18 ellipse_path stroke
  2.7235 +0.000 0.000 0.000 nodecolor
  2.7236 +grestore
  2.7237 +% create_msg_out_list->create_msg_out
  2.7238 +gsave
  2.7239 +1 setlinewidth
  2.7240 +solid
  2.7241 +0.000 0.000 0.000 edgecolor
  2.7242 +newpath 1214 2909 moveto
  2.7243 +1300 2968 1594 3157 1868 3221 curveto
  2.7244 +1981 3246 2115 3238 2197 3228 curveto
  2.7245 +stroke
  2.7246 +0.000 0.000 0.000 edgecolor
  2.7247 +newpath 2197.4 3231.48 moveto
  2.7248 +2207 3227 lineto
  2.7249 +2196.7 3224.51 lineto
  2.7250 +closepath fill
  2.7251 +1 setlinewidth
  2.7252 +solid
  2.7253 +0.000 0.000 0.000 edgecolor
  2.7254 +newpath 2197.4 3231.48 moveto
  2.7255 +2207 3227 lineto
  2.7256 +2196.7 3224.51 lineto
  2.7257 +closepath stroke
  2.7258 +grestore
  2.7259 +% rcptlist_with_addr_is_local->addr_is_local
  2.7260 +gsave
  2.7261 +1 setlinewidth
  2.7262 +solid
  2.7263 +0.000 0.000 0.000 edgecolor
  2.7264 +newpath 1273 3184 moveto
  2.7265 +1440 3208 1828 3265 2154 3307 curveto
  2.7266 +2454 3345 2812 3383 2961 3399 curveto
  2.7267 +stroke
  2.7268 +0.000 0.000 0.000 edgecolor
  2.7269 +newpath 2960.7 3402.49 moveto
  2.7270 +2971 3400 lineto
  2.7271 +2961.4 3395.52 lineto
  2.7272 +closepath fill
  2.7273 +1 setlinewidth
  2.7274 +solid
  2.7275 +0.000 0.000 0.000 edgecolor
  2.7276 +newpath 2960.7 3402.49 moveto
  2.7277 +2971 3400 lineto
  2.7278 +2961.4 3395.52 lineto
  2.7279 +closepath stroke
  2.7280 +grestore
  2.7281 +% deliver_msgout_list_online->table_find
  2.7282 +gsave
  2.7283 +1 setlinewidth
  2.7284 +solid
  2.7285 +0.000 0.000 0.000 edgecolor
  2.7286 +newpath 1194 2334 moveto
  2.7287 +1211 2388 1266 2554 1342 2674 curveto
  2.7288 +1531 2969 1569 3079 1868 3262 curveto
  2.7289 +2263 3501 2425 3467 2886 3463 curveto
  2.7290 +3104 3461 3362 3454 3477 3451 curveto
  2.7291 +stroke
  2.7292 +0.000 0.000 0.000 edgecolor
  2.7293 +newpath 3477 3454.5 moveto
  2.7294 +3487 3451 lineto
  2.7295 +3477 3447.5 lineto
  2.7296 +closepath fill
  2.7297 +1 setlinewidth
  2.7298 +solid
  2.7299 +0.000 0.000 0.000 edgecolor
  2.7300 +newpath 3477 3454.5 moveto
  2.7301 +3487 3451 lineto
  2.7302 +3477 3447.5 lineto
  2.7303 +closepath stroke
  2.7304 +grestore
  2.7305 +% deliver_msgout_list_online->detect_online
  2.7306 +gsave
  2.7307 +1 setlinewidth
  2.7308 +solid
  2.7309 +0.000 0.000 0.000 edgecolor
  2.7310 +newpath 1303 2314 moveto
  2.7311 +1325 2314 1349 2313 1370 2313 curveto
  2.7312 +stroke
  2.7313 +0.000 0.000 0.000 edgecolor
  2.7314 +newpath 1370 2316.5 moveto
  2.7315 +1380 2313 lineto
  2.7316 +1370 2309.5 lineto
  2.7317 +closepath fill
  2.7318 +1 setlinewidth
  2.7319 +solid
  2.7320 +0.000 0.000 0.000 edgecolor
  2.7321 +newpath 1370 2316.5 moveto
  2.7322 +1380 2313 lineto
  2.7323 +1370 2309.5 lineto
  2.7324 +closepath stroke
  2.7325 +grestore
  2.7326 +% deliver_msgout_list_online->read_route_list
  2.7327 +gsave
  2.7328 +1 setlinewidth
  2.7329 +solid
  2.7330 +0.000 0.000 0.000 edgecolor
  2.7331 +newpath 1224 2299 moveto
  2.7332 +1248 2285 1282 2265 1306 2242 curveto
  2.7333 +1360 2191 1405 2118 1427 2079 curveto
  2.7334 +stroke
  2.7335 +0.000 0.000 0.000 edgecolor
  2.7336 +newpath 1430.2 2080.44 moveto
  2.7337 +1432 2070 lineto
  2.7338 +1424.08 2077.04 lineto
  2.7339 +closepath fill
  2.7340 +1 setlinewidth
  2.7341 +solid
  2.7342 +0.000 0.000 0.000 edgecolor
  2.7343 +newpath 1430.2 2080.44 moveto
  2.7344 +1432 2070 lineto
  2.7345 +1424.08 2077.04 lineto
  2.7346 +closepath stroke
  2.7347 +grestore
  2.7348 +% deliver_msgout_list_online->destroy_route_list
  2.7349 +gsave
  2.7350 +1 setlinewidth
  2.7351 +solid
  2.7352 +0.000 0.000 0.000 edgecolor
  2.7353 +newpath 1203 2334 moveto
  2.7354 +1245 2390 1373 2557 1422 2621 curveto
  2.7355 +stroke
  2.7356 +0.000 0.000 0.000 edgecolor
  2.7357 +newpath 1419.2 2623.1 moveto
  2.7358 +1428 2629 lineto
  2.7359 +1424.8 2618.9 lineto
  2.7360 +closepath fill
  2.7361 +1 setlinewidth
  2.7362 +solid
  2.7363 +0.000 0.000 0.000 edgecolor
  2.7364 +newpath 1419.2 2623.1 moveto
  2.7365 +1428 2629 lineto
  2.7366 +1424.8 2618.9 lineto
  2.7367 +closepath stroke
  2.7368 +grestore
  2.7369 +% deliver_msgout_list_online->deliver_route_msg_list
  2.7370 +gsave
  2.7371 +1 setlinewidth
  2.7372 +solid
  2.7373 +0.000 0.000 0.000 edgecolor
  2.7374 +newpath 1260 2330 moveto
  2.7375 +1293 2336 1331 2344 1364 2351 curveto
  2.7376 +stroke
  2.7377 +0.000 0.000 0.000 edgecolor
  2.7378 +newpath 1363.51 2354.47 moveto
  2.7379 +1374 2353 lineto
  2.7380 +1364.88 2347.61 lineto
  2.7381 +closepath fill
  2.7382 +1 setlinewidth
  2.7383 +solid
  2.7384 +0.000 0.000 0.000 edgecolor
  2.7385 +newpath 1363.51 2354.47 moveto
  2.7386 +1374 2353 lineto
  2.7387 +1364.88 2347.61 lineto
  2.7388 +closepath stroke
  2.7389 +grestore
  2.7390 +% clone_msg_out->copy_modify_address
  2.7391 +gsave
  2.7392 +1 setlinewidth
  2.7393 +solid
  2.7394 +0.000 0.000 0.000 edgecolor
  2.7395 +newpath 1773 2580 moveto
  2.7396 +1877 2586 2070 2592 2118 2547 curveto
  2.7397 +2177 2490 2094 2235 2154 2181 curveto
  2.7398 +2215 2126 2821 2133 2886 2181 curveto
  2.7399 +2929 2212 2886 2256 2922 2294 curveto
  2.7400 +2992 2364 3102 2394 3184 2407 curveto
  2.7401 +stroke
  2.7402 +0.000 0.000 0.000 edgecolor
  2.7403 +newpath 3183.7 2410.49 moveto
  2.7404 +3194 2408 lineto
  2.7405 +3184.4 2403.52 lineto
  2.7406 +closepath fill
  2.7407 +1 setlinewidth
  2.7408 +solid
  2.7409 +0.000 0.000 0.000 edgecolor
  2.7410 +newpath 3183.7 2410.49 moveto
  2.7411 +3194 2408 lineto
  2.7412 +3184.4 2403.52 lineto
  2.7413 +closepath stroke
  2.7414 +grestore
  2.7415 +% clone_msg_out->create_msg_out
  2.7416 +gsave
  2.7417 +1 setlinewidth
  2.7418 +solid
  2.7419 +0.000 0.000 0.000 edgecolor
  2.7420 +newpath 1724 2592 moveto
  2.7421 +1754 2620 1808 2678 1832 2741 curveto
  2.7422 +1868 2834 1798 3118 1868 3189 curveto
  2.7423 +1912 3233 2085 3230 2190 3224 curveto
  2.7424 +stroke
  2.7425 +0.000 0.000 0.000 edgecolor
  2.7426 +newpath 2190.4 3227.48 moveto
  2.7427 +2200 3223 lineto
  2.7428 +2189.7 3220.51 lineto
  2.7429 +closepath fill
  2.7430 +1 setlinewidth
  2.7431 +solid
  2.7432 +0.000 0.000 0.000 edgecolor
  2.7433 +newpath 2190.4 3227.48 moveto
  2.7434 +2200 3223 lineto
  2.7435 +2189.7 3220.51 lineto
  2.7436 +closepath stroke
  2.7437 +grestore
  2.7438 +% deliver_route_msg_list->msg_rcptlist_route
  2.7439 +gsave
  2.7440 +1 setlinewidth
  2.7441 +solid
  2.7442 +0.000 0.000 0.000 edgecolor
  2.7443 +newpath 1456 2384 moveto
  2.7444 +1478 2412 1526 2465 1578 2493 curveto
  2.7445 +1592 2500 1607 2505 1622 2509 curveto
  2.7446 +stroke
  2.7447 +0.000 0.000 0.000 edgecolor
  2.7448 +newpath 1621.51 2512.47 moveto
  2.7449 +1632 2511 lineto
  2.7450 +1622.88 2505.61 lineto
  2.7451 +closepath fill
  2.7452 +1 setlinewidth
  2.7453 +solid
  2.7454 +0.000 0.000 0.000 edgecolor
  2.7455 +newpath 1621.51 2512.47 moveto
  2.7456 +1632 2511 lineto
  2.7457 +1622.88 2505.61 lineto
  2.7458 +closepath stroke
  2.7459 +grestore
  2.7460 +% deliver_route_msg_list->route_is_allowed_mail_local
  2.7461 +gsave
  2.7462 +1 setlinewidth
  2.7463 +solid
  2.7464 +0.000 0.000 0.000 edgecolor
  2.7465 +newpath 1540 2363 moveto
  2.7466 +1552 2363 1564 2362 1576 2362 curveto
  2.7467 +stroke
  2.7468 +0.000 0.000 0.000 edgecolor
  2.7469 +newpath 1576 2365.5 moveto
  2.7470 +1586 2362 lineto
  2.7471 +1576 2358.5 lineto
  2.7472 +closepath fill
  2.7473 +1 setlinewidth
  2.7474 +solid
  2.7475 +0.000 0.000 0.000 edgecolor
  2.7476 +newpath 1576 2365.5 moveto
  2.7477 +1586 2362 lineto
  2.7478 +1576 2358.5 lineto
  2.7479 +closepath stroke
  2.7480 +grestore
  2.7481 +% deliver_route_msg_list->destroy_msg_out
  2.7482 +gsave
  2.7483 +1 setlinewidth
  2.7484 +solid
  2.7485 +0.000 0.000 0.000 edgecolor
  2.7486 +newpath 1498 2351 moveto
  2.7487 +1532 2342 1570 2332 1578 2331 curveto
  2.7488 +1689 2313 1819 2306 1904 2305 curveto
  2.7489 +stroke
  2.7490 +0.000 0.000 0.000 edgecolor
  2.7491 +newpath 1904 2308.5 moveto
  2.7492 +1914 2305 lineto
  2.7493 +1904 2301.5 lineto
  2.7494 +closepath fill
  2.7495 +1 setlinewidth
  2.7496 +solid
  2.7497 +0.000 0.000 0.000 edgecolor
  2.7498 +newpath 1904 2308.5 moveto
  2.7499 +1914 2305 lineto
  2.7500 +1904 2301.5 lineto
  2.7501 +closepath stroke
  2.7502 +grestore
  2.7503 +% deliver_route_msg_list->clone_msg_out
  2.7504 +gsave
  2.7505 +1 setlinewidth
  2.7506 +solid
  2.7507 +0.000 0.000 0.000 edgecolor
  2.7508 +newpath 1460 2384 moveto
  2.7509 +1482 2405 1517 2442 1542 2479 curveto
  2.7510 +1562 2507 1551 2526 1578 2547 curveto
  2.7511 +1592 2557 1609 2564 1626 2568 curveto
  2.7512 +stroke
  2.7513 +0.000 0.000 0.000 edgecolor
  2.7514 +newpath 1625.51 2571.47 moveto
  2.7515 +1636 2570 lineto
  2.7516 +1626.88 2564.61 lineto
  2.7517 +closepath fill
  2.7518 +1 setlinewidth
  2.7519 +solid
  2.7520 +0.000 0.000 0.000 edgecolor
  2.7521 +newpath 1625.51 2571.47 moveto
  2.7522 +1636 2570 lineto
  2.7523 +1626.88 2564.61 lineto
  2.7524 +closepath stroke
  2.7525 +grestore
  2.7526 +% deliver_route_msg_list->destroy_msg_out_list
  2.7527 +gsave
  2.7528 +1 setlinewidth
  2.7529 +solid
  2.7530 +0.000 0.000 0.000 edgecolor
  2.7531 +newpath 1511 2353 moveto
  2.7532 +1522 2349 1533 2345 1542 2339 curveto
  2.7533 +1563 2326 1558 2310 1578 2298 curveto
  2.7534 +1590 2290 1605 2284 1619 2280 curveto
  2.7535 +stroke
  2.7536 +0.000 0.000 0.000 edgecolor
  2.7537 +newpath 1620.43 2283.23 moveto
  2.7538 +1629 2277 lineto
  2.7539 +1618.42 2276.52 lineto
  2.7540 +closepath fill
  2.7541 +1 setlinewidth
  2.7542 +solid
  2.7543 +0.000 0.000 0.000 edgecolor
  2.7544 +newpath 1620.43 2283.23 moveto
  2.7545 +1629 2277 lineto
  2.7546 +1618.42 2276.52 lineto
  2.7547 +closepath stroke
  2.7548 +grestore
  2.7549 +% route_prepare_msgout
  2.7550 +gsave
  2.7551 +1 setlinewidth
  2.7552 +0.000 0.000 0.000 nodecolor
  2.7553 +2769 1986 98.87 18 ellipse_path stroke
  2.7554 +0.000 0.000 0.000 nodecolor
  2.7555 +grestore
  2.7556 +% deliver_route_msg_list->route_prepare_msgout
  2.7557 +gsave
  2.7558 +1 setlinewidth
  2.7559 +solid
  2.7560 +0.000 0.000 0.000 edgecolor
  2.7561 +newpath 1519 2355 moveto
  2.7562 +1528 2351 1536 2346 1542 2339 curveto
  2.7563 +1591 2288 1529 2235 1578 2185 curveto
  2.7564 +1728 2032 2395 1997 2660 1988 curveto
  2.7565 +stroke
  2.7566 +0.000 0.000 0.000 edgecolor
  2.7567 +newpath 2660 1991.5 moveto
  2.7568 +2670 1988 lineto
  2.7569 +2660 1984.5 lineto
  2.7570 +closepath fill
  2.7571 +1 setlinewidth
  2.7572 +solid
  2.7573 +0.000 0.000 0.000 edgecolor
  2.7574 +newpath 2660 1991.5 moveto
  2.7575 +2670 1988 lineto
  2.7576 +2660 1984.5 lineto
  2.7577 +closepath stroke
  2.7578 +grestore
  2.7579 +% deliver_route_msgout_list
  2.7580 +gsave
  2.7581 +1 setlinewidth
  2.7582 +0.000 0.000 0.000 nodecolor
  2.7583 +1705 2412 111.88 18 ellipse_path stroke
  2.7584 +0.000 0.000 0.000 nodecolor
  2.7585 +grestore
  2.7586 +% deliver_route_msg_list->deliver_route_msgout_list
  2.7587 +gsave
  2.7588 +1 setlinewidth
  2.7589 +solid
  2.7590 +0.000 0.000 0.000 edgecolor
  2.7591 +newpath 1514 2379 moveto
  2.7592 +1547 2384 1585 2391 1619 2397 curveto
  2.7593 +stroke
  2.7594 +0.000 0.000 0.000 edgecolor
  2.7595 +newpath 1618.51 2400.47 moveto
  2.7596 +1629 2399 lineto
  2.7597 +1619.88 2393.61 lineto
  2.7598 +closepath fill
  2.7599 +1 setlinewidth
  2.7600 +solid
  2.7601 +0.000 0.000 0.000 edgecolor
  2.7602 +newpath 1618.51 2400.47 moveto
  2.7603 +1629 2399 lineto
  2.7604 +1619.88 2393.61 lineto
  2.7605 +closepath stroke
  2.7606 +grestore
  2.7607 +% route_is_allowed_return_path
  2.7608 +gsave
  2.7609 +1 setlinewidth
  2.7610 +0.000 0.000 0.000 nodecolor
  2.7611 +1705 2466 127.16 18 ellipse_path stroke
  2.7612 +0.000 0.000 0.000 nodecolor
  2.7613 +grestore
  2.7614 +% deliver_route_msg_list->route_is_allowed_return_path
  2.7615 +gsave
  2.7616 +1 setlinewidth
  2.7617 +solid
  2.7618 +0.000 0.000 0.000 edgecolor
  2.7619 +newpath 1469 2383 moveto
  2.7620 +1496 2400 1538 2424 1578 2439 curveto
  2.7621 +1590 2443 1602 2446 1614 2449 curveto
  2.7622 +stroke
  2.7623 +0.000 0.000 0.000 edgecolor
  2.7624 +newpath 1613.42 2452.48 moveto
  2.7625 +1624 2452 lineto
  2.7626 +1615.43 2445.77 lineto
  2.7627 +closepath fill
  2.7628 +1 setlinewidth
  2.7629 +solid
  2.7630 +0.000 0.000 0.000 edgecolor
  2.7631 +newpath 1613.42 2452.48 moveto
  2.7632 +1624 2452 lineto
  2.7633 +1615.43 2445.77 lineto
  2.7634 +closepath stroke
  2.7635 +grestore
  2.7636 +% destroy_msg_out_list->destroy_msg_out
  2.7637 +gsave
  2.7638 +1 setlinewidth
  2.7639 +solid
  2.7640 +0.000 0.000 0.000 edgecolor
  2.7641 +newpath 1784 2276 moveto
  2.7642 +1825 2282 1874 2288 1914 2294 curveto
  2.7643 +stroke
  2.7644 +0.000 0.000 0.000 edgecolor
  2.7645 +newpath 1913.7 2297.49 moveto
  2.7646 +1924 2295 lineto
  2.7647 +1914.4 2290.52 lineto
  2.7648 +closepath fill
  2.7649 +1 setlinewidth
  2.7650 +solid
  2.7651 +0.000 0.000 0.000 edgecolor
  2.7652 +newpath 1913.7 2297.49 moveto
  2.7653 +1924 2295 lineto
  2.7654 +1914.4 2290.52 lineto
  2.7655 +closepath stroke
  2.7656 +grestore
  2.7657 +% deliver_local->msg_free_data
  2.7658 +gsave
  2.7659 +1 setlinewidth
  2.7660 +solid
  2.7661 +0.000 0.000 0.000 edgecolor
  2.7662 +newpath 2310 2677 moveto
  2.7663 +2340 2667 2383 2655 2422 2650 curveto
  2.7664 +2508 2638 2531 2641 2616 2650 curveto
  2.7665 +2624 2650 2881 2699 2886 2704 curveto
  2.7666 +2922 2734 2884 2775 2922 2802 curveto
  2.7667 +2967 2834 3120 2822 3212 2812 curveto
  2.7668 +stroke
  2.7669 +0.000 0.000 0.000 edgecolor
  2.7670 +newpath 3212.4 2815.48 moveto
  2.7671 +3222 2811 lineto
  2.7672 +3211.7 2808.51 lineto
  2.7673 +closepath fill
  2.7674 +1 setlinewidth
  2.7675 +solid
  2.7676 +0.000 0.000 0.000 edgecolor
  2.7677 +newpath 3212.4 2815.48 moveto
  2.7678 +3222 2811 lineto
  2.7679 +3211.7 2808.51 lineto
  2.7680 +closepath stroke
  2.7681 +grestore
  2.7682 +% deliver_local->deliver_finish
  2.7683 +gsave
  2.7684 +1 setlinewidth
  2.7685 +solid
  2.7686 +0.000 0.000 0.000 edgecolor
  2.7687 +newpath 2271 2673 moveto
  2.7688 +2274 2606 2294 2367 2422 2240 curveto
  2.7689 +2431 2231 2443 2225 2454 2220 curveto
  2.7690 +stroke
  2.7691 +0.000 0.000 0.000 edgecolor
  2.7692 +newpath 2455.43 2223.23 moveto
  2.7693 +2464 2217 lineto
  2.7694 +2453.42 2216.52 lineto
  2.7695 +closepath fill
  2.7696 +1 setlinewidth
  2.7697 +solid
  2.7698 +0.000 0.000 0.000 edgecolor
  2.7699 +newpath 2455.43 2223.23 moveto
  2.7700 +2464 2217 lineto
  2.7701 +2453.42 2216.52 lineto
  2.7702 +closepath stroke
  2.7703 +grestore
  2.7704 +% deliver_local->destroy_table
  2.7705 +gsave
  2.7706 +1 setlinewidth
  2.7707 +solid
  2.7708 +0.000 0.000 0.000 edgecolor
  2.7709 +newpath 2284 2709 moveto
  2.7710 +2310 2740 2362 2810 2386 2879 curveto
  2.7711 +2423 2978 2351 3036 2422 3115 curveto
  2.7712 +2477 3175 3029 3277 3219 3311 curveto
  2.7713 +stroke
  2.7714 +0.000 0.000 0.000 edgecolor
  2.7715 +newpath 3218.51 3314.47 moveto
  2.7716 +3229 3313 lineto
  2.7717 +3219.88 3307.61 lineto
  2.7718 +closepath fill
  2.7719 +1 setlinewidth
  2.7720 +solid
  2.7721 +0.000 0.000 0.000 edgecolor
  2.7722 +newpath 3218.51 3314.47 moveto
  2.7723 +3229 3313 lineto
  2.7724 +3219.88 3307.61 lineto
  2.7725 +closepath stroke
  2.7726 +grestore
  2.7727 +% deliver_local->addr_string
  2.7728 +gsave
  2.7729 +1 setlinewidth
  2.7730 +solid
  2.7731 +0.000 0.000 0.000 edgecolor
  2.7732 +newpath 2276 2673 moveto
  2.7733 +2296 2612 2362 2408 2386 2235 curveto
  2.7734 +2394 2183 2389 1338 2422 1299 curveto
  2.7735 +2480 1233 2554 1322 2616 1261 curveto
  2.7736 +2669 1210 2606 1156 2652 1099 curveto
  2.7737 +2673 1075 3100 897 3240 839 curveto
  2.7738 +stroke
  2.7739 +0.000 0.000 0.000 edgecolor
  2.7740 +newpath 3242.02 841.96 moveto
  2.7741 +3250 835 lineto
  2.7742 +3239.42 835.46 lineto
  2.7743 +closepath fill
  2.7744 +1 setlinewidth
  2.7745 +solid
  2.7746 +0.000 0.000 0.000 edgecolor
  2.7747 +newpath 3242.02 841.96 moveto
  2.7748 +3250 835 lineto
  2.7749 +3239.42 835.46 lineto
  2.7750 +closepath stroke
  2.7751 +grestore
  2.7752 +% deliver_local->spool_read_data
  2.7753 +gsave
  2.7754 +1 setlinewidth
  2.7755 +solid
  2.7756 +0.000 0.000 0.000 edgecolor
  2.7757 +newpath 2274 2673 moveto
  2.7758 +2291 2599 2356 2323 2422 2268 curveto
  2.7759 +2490 2211 2557 2299 2616 2235 curveto
  2.7760 +2675 2171 2594 1913 2652 1850 curveto
  2.7761 +2724 1771 2813 1883 2886 1807 curveto
  2.7762 +2963 1727 2844 1637 2922 1560 curveto
  2.7763 +2941 1541 3099 1525 3200 1518 curveto
  2.7764 +stroke
  2.7765 +0.000 0.000 0.000 edgecolor
  2.7766 +newpath 3200.4 1521.48 moveto
  2.7767 +3210 1517 lineto
  2.7768 +3199.7 1514.51 lineto
  2.7769 +closepath fill
  2.7770 +1 setlinewidth
  2.7771 +solid
  2.7772 +0.000 0.000 0.000 edgecolor
  2.7773 +newpath 3200.4 1521.48 moveto
  2.7774 +3210 1517 lineto
  2.7775 +3199.7 1514.51 lineto
  2.7776 +closepath stroke
  2.7777 +grestore
  2.7778 +% deliver_local->var_table_msg
  2.7779 +gsave
  2.7780 +1 setlinewidth
  2.7781 +solid
  2.7782 +0.000 0.000 0.000 edgecolor
  2.7783 +newpath 2326 2684 moveto
  2.7784 +2395 2677 2515 2669 2616 2683 curveto
  2.7785 +2633 2685 2636 2689 2652 2693 curveto
  2.7786 +2756 2716 2804 2670 2886 2737 curveto
  2.7787 +2919 2763 2889 2799 2922 2824 curveto
  2.7788 +3009 2887 3141 2881 3220 2870 curveto
  2.7789 +stroke
  2.7790 +0.000 0.000 0.000 edgecolor
  2.7791 +newpath 3220.88 2873.39 moveto
  2.7792 +3230 2868 lineto
  2.7793 +3219.51 2866.53 lineto
  2.7794 +closepath fill
  2.7795 +1 setlinewidth
  2.7796 +solid
  2.7797 +0.000 0.000 0.000 edgecolor
  2.7798 +newpath 3220.88 2873.39 moveto
  2.7799 +3230 2868 lineto
  2.7800 +3219.51 2866.53 lineto
  2.7801 +closepath stroke
  2.7802 +grestore
  2.7803 +% deliver_local->expand
  2.7804 +gsave
  2.7805 +1 setlinewidth
  2.7806 +solid
  2.7807 +0.000 0.000 0.000 edgecolor
  2.7808 +newpath 2284 2709 moveto
  2.7809 +2309 2741 2360 2811 2386 2879 curveto
  2.7810 +2417 2958 2361 3007 2422 3067 curveto
  2.7811 +2538 3180 3069 3187 3234 3185 curveto
  2.7812 +stroke
  2.7813 +0.000 0.000 0.000 edgecolor
  2.7814 +newpath 3234 3188.5 moveto
  2.7815 +3244 3185 lineto
  2.7816 +3234 3181.5 lineto
  2.7817 +closepath fill
  2.7818 +1 setlinewidth
  2.7819 +solid
  2.7820 +0.000 0.000 0.000 edgecolor
  2.7821 +newpath 3234 3188.5 moveto
  2.7822 +3244 3185 lineto
  2.7823 +3234 3181.5 lineto
  2.7824 +closepath stroke
  2.7825 +grestore
  2.7826 +% deliver_local->create_header
  2.7827 +gsave
  2.7828 +1 setlinewidth
  2.7829 +solid
  2.7830 +0.000 0.000 0.000 edgecolor
  2.7831 +newpath 2274 2673 moveto
  2.7832 +2289 2606 2345 2367 2422 2181 curveto
  2.7833 +2505 1981 2487 1891 2652 1753 curveto
  2.7834 +2736 1682 2816 1760 2886 1677 curveto
  2.7835 +2959 1590 2842 1504 2922 1425 curveto
  2.7836 +2942 1405 3111 1389 3211 1382 curveto
  2.7837 +stroke
  2.7838 +0.000 0.000 0.000 edgecolor
  2.7839 +newpath 3211.4 1385.48 moveto
  2.7840 +3221 1381 lineto
  2.7841 +3210.7 1378.51 lineto
  2.7842 +closepath fill
  2.7843 +1 setlinewidth
  2.7844 +solid
  2.7845 +0.000 0.000 0.000 edgecolor
  2.7846 +newpath 3211.4 1385.48 moveto
  2.7847 +3221 1381 lineto
  2.7848 +3210.7 1378.51 lineto
  2.7849 +closepath stroke
  2.7850 +grestore
  2.7851 +% deliver_local->destroy_header
  2.7852 +gsave
  2.7853 +1 setlinewidth
  2.7854 +solid
  2.7855 +0.000 0.000 0.000 edgecolor
  2.7856 +newpath 2275 2673 moveto
  2.7857 +2289 2621 2336 2470 2422 2378 curveto
  2.7858 +2490 2305 2558 2348 2616 2268 curveto
  2.7859 +2664 2202 2595 2145 2652 2089 curveto
  2.7860 +2728 2014 2811 2119 2886 2046 curveto
  2.7861 +2942 1991 2866 1927 2922 1875 curveto
  2.7862 +2942 1856 3106 1840 3206 1832 curveto
  2.7863 +stroke
  2.7864 +0.000 0.000 0.000 edgecolor
  2.7865 +newpath 3206.4 1835.48 moveto
  2.7866 +3216 1831 lineto
  2.7867 +3205.7 1828.51 lineto
  2.7868 +closepath fill
  2.7869 +1 setlinewidth
  2.7870 +solid
  2.7871 +0.000 0.000 0.000 edgecolor
  2.7872 +newpath 3206.4 1835.48 moveto
  2.7873 +3216 1831 lineto
  2.7874 +3205.7 1828.51 lineto
  2.7875 +closepath stroke
  2.7876 +grestore
  2.7877 +% deliver_local->pipe_out
  2.7878 +gsave
  2.7879 +1 setlinewidth
  2.7880 +solid
  2.7881 +0.000 0.000 0.000 edgecolor
  2.7882 +newpath 2312 2704 moveto
  2.7883 +2343 2713 2385 2726 2422 2737 curveto
  2.7884 +2438 2741 2455 2746 2471 2750 curveto
  2.7885 +stroke
  2.7886 +0.000 0.000 0.000 edgecolor
  2.7887 +newpath 2470.42 2753.48 moveto
  2.7888 +2481 2753 lineto
  2.7889 +2472.43 2746.77 lineto
  2.7890 +closepath fill
  2.7891 +1 setlinewidth
  2.7892 +solid
  2.7893 +0.000 0.000 0.000 edgecolor
  2.7894 +newpath 2470.42 2753.48 moveto
  2.7895 +2481 2753 lineto
  2.7896 +2472.43 2746.77 lineto
  2.7897 +closepath stroke
  2.7898 +grestore
  2.7899 +% deliver_local->addr_find_ancestor
  2.7900 +gsave
  2.7901 +1 setlinewidth
  2.7902 +solid
  2.7903 +0.000 0.000 0.000 edgecolor
  2.7904 +newpath 2289 2708 moveto
  2.7905 +2317 2732 2369 2772 2422 2791 curveto
  2.7906 +2504 2819 2603 2824 2675 2823 curveto
  2.7907 +stroke
  2.7908 +0.000 0.000 0.000 edgecolor
  2.7909 +newpath 2675 2826.5 moveto
  2.7910 +2685 2823 lineto
  2.7911 +2675 2819.5 lineto
  2.7912 +closepath fill
  2.7913 +1 setlinewidth
  2.7914 +solid
  2.7915 +0.000 0.000 0.000 edgecolor
  2.7916 +newpath 2675 2826.5 moveto
  2.7917 +2685 2823 lineto
  2.7918 +2675 2819.5 lineto
  2.7919 +closepath stroke
  2.7920 +grestore
  2.7921 +% deliver_local->delivery_failures
  2.7922 +gsave
  2.7923 +1 setlinewidth
  2.7924 +solid
  2.7925 +0.000 0.000 0.000 edgecolor
  2.7926 +newpath 2286 2709 moveto
  2.7927 +2312 2737 2366 2791 2422 2824 curveto
  2.7928 +2433 2830 2446 2835 2458 2840 curveto
  2.7929 +stroke
  2.7930 +0.000 0.000 0.000 edgecolor
  2.7931 +newpath 2457.42 2843.48 moveto
  2.7932 +2468 2843 lineto
  2.7933 +2459.43 2836.77 lineto
  2.7934 +closepath fill
  2.7935 +1 setlinewidth
  2.7936 +solid
  2.7937 +0.000 0.000 0.000 edgecolor
  2.7938 +newpath 2457.42 2843.48 moveto
  2.7939 +2468 2843 lineto
  2.7940 +2459.43 2836.77 lineto
  2.7941 +closepath stroke
  2.7942 +grestore
  2.7943 +% deliver_local->var_table_rcpt
  2.7944 +gsave
  2.7945 +1 setlinewidth
  2.7946 +solid
  2.7947 +0.000 0.000 0.000 edgecolor
  2.7948 +newpath 2281 2709 moveto
  2.7949 +2316 2765 2421 2935 2422 2937 curveto
  2.7950 +2444 2965 2473 2995 2494 3016 curveto
  2.7951 +stroke
  2.7952 +0.000 0.000 0.000 edgecolor
  2.7953 +newpath 2491.45 3018.4 moveto
  2.7954 +2501 3023 lineto
  2.7955 +2496.4 3013.45 lineto
  2.7956 +closepath fill
  2.7957 +1 setlinewidth
  2.7958 +solid
  2.7959 +0.000 0.000 0.000 edgecolor
  2.7960 +newpath 2491.45 3018.4 moveto
  2.7961 +2501 3023 lineto
  2.7962 +2496.4 3013.45 lineto
  2.7963 +closepath stroke
  2.7964 +grestore
  2.7965 +% deliver_local->append_file
  2.7966 +gsave
  2.7967 +1 setlinewidth
  2.7968 +solid
  2.7969 +0.000 0.000 0.000 edgecolor
  2.7970 +newpath 2329 2695 moveto
  2.7971 +2367 2698 2415 2702 2454 2705 curveto
  2.7972 +stroke
  2.7973 +0.000 0.000 0.000 edgecolor
  2.7974 +newpath 2453.7 2708.49 moveto
  2.7975 +2464 2706 lineto
  2.7976 +2454.4 2701.52 lineto
  2.7977 +closepath fill
  2.7978 +1 setlinewidth
  2.7979 +solid
  2.7980 +0.000 0.000 0.000 edgecolor
  2.7981 +newpath 2453.7 2708.49 moveto
  2.7982 +2464 2706 lineto
  2.7983 +2454.4 2701.52 lineto
  2.7984 +closepath stroke
  2.7985 +grestore
  2.7986 +% _g_list_strcasecmp
  2.7987 +gsave
  2.7988 +1 setlinewidth
  2.7989 +0.000 0.000 0.000 nodecolor
  2.7990 +2519 2910 86.86 18 ellipse_path stroke
  2.7991 +0.000 0.000 0.000 nodecolor
  2.7992 +grestore
  2.7993 +% deliver_local->_g_list_strcasecmp
  2.7994 +gsave
  2.7995 +1 setlinewidth
  2.7996 +dotted
  2.7997 +0.000 0.000 0.000 edgecolor
  2.7998 +newpath 2279 2709 moveto
  2.7999 +2300 2747 2352 2836 2422 2883 curveto
  2.8000 +2429 2887 2437 2891 2445 2894 curveto
  2.8001 +stroke
  2.8002 +0.000 0.000 0.000 edgecolor
  2.8003 +newpath 2444.42 2897.54 moveto
  2.8004 +2455 2898 lineto
  2.8005 +2447.02 2891.04 lineto
  2.8006 +closepath fill
  2.8007 +1 setlinewidth
  2.8008 +solid
  2.8009 +0.000 0.000 0.000 edgecolor
  2.8010 +newpath 2444.42 2897.54 moveto
  2.8011 +2455 2898 lineto
  2.8012 +2447.02 2891.04 lineto
  2.8013 +closepath stroke
  2.8014 +grestore
  2.8015 +% create_local_route->resolve_byname
  2.8016 +gsave
  2.8017 +1 setlinewidth
  2.8018 +dotted
  2.8019 +0.000 0.000 0.000 edgecolor
  2.8020 +newpath 1260 2173 moveto
  2.8021 +1277 2167 1294 2159 1306 2147 curveto
  2.8022 +1346 2106 1301 2063 1342 2025 curveto
  2.8023 +1463 1911 1540 1940 1705 1940 curveto
  2.8024 +1705 1940 1705 1940 2519 1940 curveto
  2.8025 +2683 1940 2726 1927 2886 1959 curveto
  2.8026 +3020 1985 3169 2047 3241 2080 curveto
  2.8027 +stroke
  2.8028 +0.000 0.000 0.000 edgecolor
  2.8029 +newpath 3239.44 2083.14 moveto
  2.8030 +3250 2084 lineto
  2.8031 +3242.28 2076.74 lineto
  2.8032 +closepath fill
  2.8033 +1 setlinewidth
  2.8034 +solid
  2.8035 +0.000 0.000 0.000 edgecolor
  2.8036 +newpath 3239.44 2083.14 moveto
  2.8037 +3250 2084 lineto
  2.8038 +3242.28 2076.74 lineto
  2.8039 +closepath stroke
  2.8040 +grestore
  2.8041 +% queue_list
  2.8042 +gsave
  2.8043 +1 setlinewidth
  2.8044 +0.000 0.000 0.000 nodecolor
  2.8045 +373 624 50.03 18 ellipse_path stroke
  2.8046 +0.000 0.000 0.000 nodecolor
  2.8047 +grestore
  2.8048 +% queue_list->read_queue
  2.8049 +gsave
  2.8050 +1 setlinewidth
  2.8051 +solid
  2.8052 +0.000 0.000 0.000 edgecolor
  2.8053 +newpath 421 628 moveto
  2.8054 +437 632 453 639 464 651 curveto
  2.8055 +524 718 482 762 500 849 curveto
  2.8056 +523 954 556 1077 570 1130 curveto
  2.8057 +stroke
  2.8058 +0.000 0.000 0.000 edgecolor
  2.8059 +newpath 566.77 1131.43 moveto
  2.8060 +573 1140 lineto
  2.8061 +573.48 1129.42 lineto
  2.8062 +closepath fill
  2.8063 +1 setlinewidth
  2.8064 +solid
  2.8065 +0.000 0.000 0.000 edgecolor
  2.8066 +newpath 566.77 1131.43 moveto
  2.8067 +573 1140 lineto
  2.8068 +573.48 1129.42 lineto
  2.8069 +closepath stroke
  2.8070 +grestore
  2.8071 +% queue_list->addr_string
  2.8072 +gsave
  2.8073 +1 setlinewidth
  2.8074 +solid
  2.8075 +0.000 0.000 0.000 edgecolor
  2.8076 +newpath 422 620 moveto
  2.8077 +603 603 1239 548 1442 548 curveto
  2.8078 +1442 548 1442 548 1705 548 curveto
  2.8079 +1785 548 3079 553 3140 604 curveto
  2.8080 +3198 653 3130 711 3176 769 curveto
  2.8081 +3190 786 3211 798 3231 806 curveto
  2.8082 +stroke
  2.8083 +0.000 0.000 0.000 edgecolor
  2.8084 +newpath 3229.44 809.14 moveto
  2.8085 +3240 810 lineto
  2.8086 +3232.28 802.74 lineto
  2.8087 +closepath fill
  2.8088 +1 setlinewidth
  2.8089 +solid
  2.8090 +0.000 0.000 0.000 edgecolor
  2.8091 +newpath 3229.44 809.14 moveto
  2.8092 +3240 810 lineto
  2.8093 +3232.28 802.74 lineto
  2.8094 +closepath stroke
  2.8095 +grestore
  2.8096 +% accept_connect
  2.8097 +gsave
  2.8098 +1 setlinewidth
  2.8099 +0.000 0.000 0.000 nodecolor
  2.8100 +373 770 72.96 18 ellipse_path stroke
  2.8101 +0.000 0.000 0.000 nodecolor
  2.8102 +grestore
  2.8103 +% accept_connect->sigchld_handler
  2.8104 +gsave
  2.8105 +1 setlinewidth
  2.8106 +dotted
  2.8107 +0.000 0.000 0.000 edgecolor
  2.8108 +newpath 441 763 moveto
  2.8109 +460 761 481 760 500 758 curveto
  2.8110 +stroke
  2.8111 +0.000 0.000 0.000 edgecolor
  2.8112 +newpath 500.4 761.48 moveto
  2.8113 +510 757 lineto
  2.8114 +499.7 754.51 lineto
  2.8115 +closepath fill
  2.8116 +1 setlinewidth
  2.8117 +solid
  2.8118 +0.000 0.000 0.000 edgecolor
  2.8119 +newpath 500.4 761.48 moveto
  2.8120 +510 757 lineto
  2.8121 +499.7 754.51 lineto
  2.8122 +closepath stroke
  2.8123 +grestore
  2.8124 +% accept_connect->smtp_in
  2.8125 +gsave
  2.8126 +1 setlinewidth
  2.8127 +solid
  2.8128 +0.000 0.000 0.000 edgecolor
  2.8129 +newpath 424 783 moveto
  2.8130 +458 791 500 802 532 810 curveto
  2.8131 +stroke
  2.8132 +0.000 0.000 0.000 edgecolor
  2.8133 +newpath 531.42 813.48 moveto
  2.8134 +542 813 lineto
  2.8135 +533.43 806.77 lineto
  2.8136 +closepath fill
  2.8137 +1 setlinewidth
  2.8138 +solid
  2.8139 +0.000 0.000 0.000 edgecolor
  2.8140 +newpath 531.42 813.48 moveto
  2.8141 +542 813 lineto
  2.8142 +533.43 806.77 lineto
  2.8143 +closepath stroke
  2.8144 +grestore
  2.8145 +% queue_delete
  2.8146 +gsave
  2.8147 +1 setlinewidth
  2.8148 +0.000 0.000 0.000 nodecolor
  2.8149 +961 952 61.84 18 ellipse_path stroke
  2.8150 +0.000 0.000 0.000 nodecolor
  2.8151 +grestore
  2.8152 +% queue_delete->spool_unlock
  2.8153 +gsave
  2.8154 +1 setlinewidth
  2.8155 +solid
  2.8156 +0.000 0.000 0.000 edgecolor
  2.8157 +newpath 1003 939 moveto
  2.8158 +1041 927 1097 909 1137 896 curveto
  2.8159 +stroke
  2.8160 +0.000 0.000 0.000 edgecolor
  2.8161 +newpath 1138.43 899.23 moveto
  2.8162 +1147 893 lineto
  2.8163 +1136.42 892.52 lineto
  2.8164 +closepath fill
  2.8165 +1 setlinewidth
  2.8166 +solid
  2.8167 +0.000 0.000 0.000 edgecolor
  2.8168 +newpath 1138.43 899.23 moveto
  2.8169 +1147 893 lineto
  2.8170 +1136.42 892.52 lineto
  2.8171 +closepath stroke
  2.8172 +grestore
  2.8173 +% queue_delete->spool_lock
  2.8174 +gsave
  2.8175 +1 setlinewidth
  2.8176 +solid
  2.8177 +0.000 0.000 0.000 edgecolor
  2.8178 +newpath 1023 952 moveto
  2.8179 +1055 952 1092 952 1124 952 curveto
  2.8180 +stroke
  2.8181 +0.000 0.000 0.000 edgecolor
  2.8182 +newpath 1124 955.5 moveto
  2.8183 +1134 952 lineto
  2.8184 +1124 948.5 lineto
  2.8185 +closepath fill
  2.8186 +1 setlinewidth
  2.8187 +solid
  2.8188 +0.000 0.000 0.000 edgecolor
  2.8189 +newpath 1124 955.5 moveto
  2.8190 +1134 952 lineto
  2.8191 +1124 948.5 lineto
  2.8192 +closepath stroke
  2.8193 +grestore
  2.8194 +% rewrite_headers
  2.8195 +gsave
  2.8196 +1 setlinewidth
  2.8197 +0.000 0.000 0.000 nodecolor
  2.8198 +3031 1734 71.77 18 ellipse_path stroke
  2.8199 +0.000 0.000 0.000 nodecolor
  2.8200 +grestore
  2.8201 +% rewrite_headers->create_header
  2.8202 +gsave
  2.8203 +1 setlinewidth
  2.8204 +solid
  2.8205 +0.000 0.000 0.000 edgecolor
  2.8206 +newpath 3039 1716 moveto
  2.8207 +3068 1647 3170 1409 3176 1404 curveto
  2.8208 +3186 1395 3199 1389 3212 1385 curveto
  2.8209 +stroke
  2.8210 +0.000 0.000 0.000 edgecolor
  2.8211 +newpath 3213.43 1388.23 moveto
  2.8212 +3222 1382 lineto
  2.8213 +3211.42 1381.52 lineto
  2.8214 +closepath fill
  2.8215 +1 setlinewidth
  2.8216 +solid
  2.8217 +0.000 0.000 0.000 edgecolor
  2.8218 +newpath 3213.43 1388.23 moveto
  2.8219 +3222 1382 lineto
  2.8220 +3211.42 1381.52 lineto
  2.8221 +closepath stroke
  2.8222 +grestore
  2.8223 +% rewrite_headers->map_address_header
  2.8224 +gsave
  2.8225 +1 setlinewidth
  2.8226 +solid
  2.8227 +0.000 0.000 0.000 edgecolor
  2.8228 +newpath 3087 1723 moveto
  2.8229 +3105 1718 3124 1711 3140 1702 curveto
  2.8230 +3159 1691 3157 1679 3176 1669 curveto
  2.8231 +3185 1665 3195 1661 3204 1657 curveto
  2.8232 +stroke
  2.8233 +0.000 0.000 0.000 edgecolor
  2.8234 +newpath 3205.43 1660.23 moveto
  2.8235 +3214 1654 lineto
  2.8236 +3203.42 1653.52 lineto
  2.8237 +closepath fill
  2.8238 +1 setlinewidth
  2.8239 +solid
  2.8240 +0.000 0.000 0.000 edgecolor
  2.8241 +newpath 3205.43 1660.23 moveto
  2.8242 +3214 1654 lineto
  2.8243 +3203.42 1653.52 lineto
  2.8244 +closepath stroke
  2.8245 +grestore
  2.8246 +% set_address_header_domain
  2.8247 +gsave
  2.8248 +1 setlinewidth
  2.8249 +0.000 0.000 0.000 nodecolor
  2.8250 +3805 1677 121.8 18 ellipse_path stroke
  2.8251 +0.000 0.000 0.000 nodecolor
  2.8252 +grestore
  2.8253 +% rewrite_headers->set_address_header_domain
  2.8254 +gsave
  2.8255 +1 setlinewidth
  2.8256 +solid
  2.8257 +0.000 0.000 0.000 edgecolor
  2.8258 +newpath 3104 1733 moveto
  2.8259 +3177 1732 3292 1730 3392 1723 curveto
  2.8260 +3499 1715 3620 1701 3704 1690 curveto
  2.8261 +stroke
  2.8262 +0.000 0.000 0.000 edgecolor
  2.8263 +newpath 3704.4 1693.48 moveto
  2.8264 +3714 1689 lineto
  2.8265 +3703.7 1686.51 lineto
  2.8266 +closepath fill
  2.8267 +1 setlinewidth
  2.8268 +solid
  2.8269 +0.000 0.000 0.000 edgecolor
  2.8270 +newpath 3704.4 1693.48 moveto
  2.8271 +3714 1689 lineto
  2.8272 +3703.7 1686.51 lineto
  2.8273 +closepath stroke
  2.8274 +grestore
  2.8275 +% copy_header
  2.8276 +gsave
  2.8277 +1 setlinewidth
  2.8278 +0.000 0.000 0.000 nodecolor
  2.8279 +3284 1696 61.84 18 ellipse_path stroke
  2.8280 +0.000 0.000 0.000 nodecolor
  2.8281 +grestore
  2.8282 +% rewrite_headers->copy_header
  2.8283 +gsave
  2.8284 +1 setlinewidth
  2.8285 +solid
  2.8286 +0.000 0.000 0.000 edgecolor
  2.8287 +newpath 3093 1725 moveto
  2.8288 +3131 1719 3179 1711 3218 1706 curveto
  2.8289 +stroke
  2.8290 +0.000 0.000 0.000 edgecolor
  2.8291 +newpath 3218.88 1709.39 moveto
  2.8292 +3228 1704 lineto
  2.8293 +3217.51 1702.53 lineto
  2.8294 +closepath fill
  2.8295 +1 setlinewidth
  2.8296 +solid
  2.8297 +0.000 0.000 0.000 edgecolor
  2.8298 +newpath 3218.88 1709.39 moveto
  2.8299 +3228 1704 lineto
  2.8300 +3217.51 1702.53 lineto
  2.8301 +closepath stroke
  2.8302 +grestore
  2.8303 +% set_address_header_domain->parse_address_rfc822
  2.8304 +gsave
  2.8305 +1 setlinewidth
  2.8306 +solid
  2.8307 +0.000 0.000 0.000 edgecolor
  2.8308 +newpath 3873 1662 moveto
  2.8309 +3909 1654 3953 1644 3989 1636 curveto
  2.8310 +stroke
  2.8311 +0.000 0.000 0.000 edgecolor
  2.8312 +newpath 3989.88 1639.39 moveto
  2.8313 +3999 1634 lineto
  2.8314 +3988.51 1632.53 lineto
  2.8315 +closepath fill
  2.8316 +1 setlinewidth
  2.8317 +solid
  2.8318 +0.000 0.000 0.000 edgecolor
  2.8319 +newpath 3989.88 1639.39 moveto
  2.8320 +3999 1634 lineto
  2.8321 +3988.51 1632.53 lineto
  2.8322 +closepath stroke
  2.8323 +grestore
  2.8324 +% listen_port
  2.8325 +gsave
  2.8326 +1 setlinewidth
  2.8327 +0.000 0.000 0.000 nodecolor
  2.8328 +170 770 52.12 18 ellipse_path stroke
  2.8329 +0.000 0.000 0.000 nodecolor
  2.8330 +grestore
  2.8331 +% listen_port->make_server_socket
  2.8332 +gsave
  2.8333 +1 setlinewidth
  2.8334 +solid
  2.8335 +0.000 0.000 0.000 edgecolor
  2.8336 +newpath 197 754 moveto
  2.8337 +219 742 252 723 282 710 curveto
  2.8338 +293 705 305 701 317 696 curveto
  2.8339 +stroke
  2.8340 +0.000 0.000 0.000 edgecolor
  2.8341 +newpath 317.62 699.48 moveto
  2.8342 +326 693 lineto
  2.8343 +315.41 692.84 lineto
  2.8344 +closepath fill
  2.8345 +1 setlinewidth
  2.8346 +solid
  2.8347 +0.000 0.000 0.000 edgecolor
  2.8348 +newpath 317.62 699.48 moveto
  2.8349 +326 693 lineto
  2.8350 +315.41 692.84 lineto
  2.8351 +closepath stroke
  2.8352 +grestore
  2.8353 +% listen_port->sighup_handler
  2.8354 +gsave
  2.8355 +1 setlinewidth
  2.8356 +dotted
  2.8357 +0.000 0.000 0.000 edgecolor
  2.8358 +newpath 212 781 moveto
  2.8359 +241 789 281 800 314 808 curveto
  2.8360 +stroke
  2.8361 +0.000 0.000 0.000 edgecolor
  2.8362 +newpath 313.42 811.48 moveto
  2.8363 +324 811 lineto
  2.8364 +315.43 804.77 lineto
  2.8365 +closepath fill
  2.8366 +1 setlinewidth
  2.8367 +solid
  2.8368 +0.000 0.000 0.000 edgecolor
  2.8369 +newpath 313.42 811.48 moveto
  2.8370 +324 811 lineto
  2.8371 +315.43 804.77 lineto
  2.8372 +closepath stroke
  2.8373 +grestore
  2.8374 +% listen_port->sigchld_handler
  2.8375 +gsave
  2.8376 +1 setlinewidth
  2.8377 +dotted
  2.8378 +0.000 0.000 0.000 edgecolor
  2.8379 +newpath 210 758 moveto
  2.8380 +231 753 258 746 282 743 curveto
  2.8381 +356 734 441 738 501 742 curveto
  2.8382 +stroke
  2.8383 +0.000 0.000 0.000 edgecolor
  2.8384 +newpath 500.7 745.49 moveto
  2.8385 +511 743 lineto
  2.8386 +501.4 738.52 lineto
  2.8387 +closepath fill
  2.8388 +1 setlinewidth
  2.8389 +solid
  2.8390 +0.000 0.000 0.000 edgecolor
  2.8391 +newpath 500.7 745.49 moveto
  2.8392 +511 743 lineto
  2.8393 +501.4 738.52 lineto
  2.8394 +closepath stroke
  2.8395 +grestore
  2.8396 +% listen_port->queue_run
  2.8397 +gsave
  2.8398 +1 setlinewidth
  2.8399 +solid
  2.8400 +0.000 0.000 0.000 edgecolor
  2.8401 +newpath 199 785 moveto
  2.8402 +214 795 233 808 246 825 curveto
  2.8403 +321 923 356 1069 368 1130 curveto
  2.8404 +stroke
  2.8405 +0.000 0.000 0.000 edgecolor
  2.8406 +newpath 364.61 1130.88 moveto
  2.8407 +370 1140 lineto
  2.8408 +371.47 1129.51 lineto
  2.8409 +closepath fill
  2.8410 +1 setlinewidth
  2.8411 +solid
  2.8412 +0.000 0.000 0.000 edgecolor
  2.8413 +newpath 364.61 1130.88 moveto
  2.8414 +370 1140 lineto
  2.8415 +371.47 1129.51 lineto
  2.8416 +closepath stroke
  2.8417 +grestore
  2.8418 +% listen_port->accept_connect
  2.8419 +gsave
  2.8420 +1 setlinewidth
  2.8421 +solid
  2.8422 +0.000 0.000 0.000 edgecolor
  2.8423 +newpath 222 770 moveto
  2.8424 +243 770 267 770 290 770 curveto
  2.8425 +stroke
  2.8426 +0.000 0.000 0.000 edgecolor
  2.8427 +newpath 290 773.5 moveto
  2.8428 +300 770 lineto
  2.8429 +290 766.5 lineto
  2.8430 +closepath fill
  2.8431 +1 setlinewidth
  2.8432 +solid
  2.8433 +0.000 0.000 0.000 edgecolor
  2.8434 +newpath 290 773.5 moveto
  2.8435 +300 770 lineto
  2.8436 +290 766.5 lineto
  2.8437 +closepath stroke
  2.8438 +grestore
  2.8439 +% route_prepare_msgout->copy_modify_address
  2.8440 +gsave
  2.8441 +1 setlinewidth
  2.8442 +solid
  2.8443 +0.000 0.000 0.000 edgecolor
  2.8444 +newpath 2798 2003 moveto
  2.8445 +2825 2021 2864 2052 2886 2089 curveto
  2.8446 +2924 2151 2877 2192 2922 2249 curveto
  2.8447 +2993 2336 3121 2380 3204 2401 curveto
  2.8448 +stroke
  2.8449 +0.000 0.000 0.000 edgecolor
  2.8450 +newpath 3203.51 2404.47 moveto
  2.8451 +3214 2403 lineto
  2.8452 +3204.88 2397.61 lineto
  2.8453 +closepath fill
  2.8454 +1 setlinewidth
  2.8455 +solid
  2.8456 +0.000 0.000 0.000 edgecolor
  2.8457 +newpath 3203.51 2404.47 moveto
  2.8458 +3214 2403 lineto
  2.8459 +3204.88 2397.61 lineto
  2.8460 +closepath stroke
  2.8461 +grestore
  2.8462 +% route_prepare_msgout->table_find_fnmatch
  2.8463 +gsave
  2.8464 +1 setlinewidth
  2.8465 +solid
  2.8466 +0.000 0.000 0.000 edgecolor
  2.8467 +newpath 2801 1969 moveto
  2.8468 +2827 1953 2863 1928 2886 1898 curveto
  2.8469 +2913 1862 2886 1829 2922 1804 curveto
  2.8470 +3005 1745 3301 1765 3450 1779 curveto
  2.8471 +stroke
  2.8472 +0.000 0.000 0.000 edgecolor
  2.8473 +newpath 3449.7 1782.49 moveto
  2.8474 +3460 1780 lineto
  2.8475 +3450.4 1775.52 lineto
  2.8476 +closepath fill
  2.8477 +1 setlinewidth
  2.8478 +solid
  2.8479 +0.000 0.000 0.000 edgecolor
  2.8480 +newpath 3449.7 1782.49 moveto
  2.8481 +3460 1780 lineto
  2.8482 +3450.4 1775.52 lineto
  2.8483 +closepath stroke
  2.8484 +grestore
  2.8485 +% route_prepare_msgout->rewrite_headers
  2.8486 +gsave
  2.8487 +1 setlinewidth
  2.8488 +solid
  2.8489 +0.000 0.000 0.000 edgecolor
  2.8490 +newpath 2813 1970 moveto
  2.8491 +2838 1958 2868 1941 2886 1916 curveto
  2.8492 +2927 1860 2875 1815 2922 1766 curveto
  2.8493 +2931 1756 2943 1749 2955 1744 curveto
  2.8494 +stroke
  2.8495 +0.000 0.000 0.000 edgecolor
  2.8496 +newpath 2956.43 1747.23 moveto
  2.8497 +2965 1741 lineto
  2.8498 +2954.42 1740.52 lineto
  2.8499 +closepath fill
  2.8500 +1 setlinewidth
  2.8501 +solid
  2.8502 +0.000 0.000 0.000 edgecolor
  2.8503 +newpath 2956.43 1747.23 moveto
  2.8504 +2965 1741 lineto
  2.8505 +2954.42 1740.52 lineto
  2.8506 +closepath stroke
  2.8507 +grestore
  2.8508 +% deliver_route_msgout_list->deliver_msglist_host
  2.8509 +gsave
  2.8510 +1 setlinewidth
  2.8511 +solid
  2.8512 +0.000 0.000 0.000 edgecolor
  2.8513 +newpath 1817 2412 moveto
  2.8514 +1841 2412 1868 2412 1892 2412 curveto
  2.8515 +stroke
  2.8516 +0.000 0.000 0.000 edgecolor
  2.8517 +newpath 1892 2415.5 moveto
  2.8518 +1902 2412 lineto
  2.8519 +1892 2408.5 lineto
  2.8520 +closepath fill
  2.8521 +1 setlinewidth
  2.8522 +solid
  2.8523 +0.000 0.000 0.000 edgecolor
  2.8524 +newpath 1892 2415.5 moveto
  2.8525 +1902 2412 lineto
  2.8526 +1892 2408.5 lineto
  2.8527 +closepath stroke
  2.8528 +grestore
  2.8529 +% destroy_msgout_perhost
  2.8530 +gsave
  2.8531 +1 setlinewidth
  2.8532 +0.000 0.000 0.000 nodecolor
  2.8533 +1993 2466 107.9 18 ellipse_path stroke
  2.8534 +0.000 0.000 0.000 nodecolor
  2.8535 +grestore
  2.8536 +% deliver_route_msgout_list->destroy_msgout_perhost
  2.8537 +gsave
  2.8538 +1 setlinewidth
  2.8539 +solid
  2.8540 +0.000 0.000 0.000 edgecolor
  2.8541 +newpath 1778 2426 moveto
  2.8542 +1818 2433 1869 2442 1910 2451 curveto
  2.8543 +stroke
  2.8544 +0.000 0.000 0.000 edgecolor
  2.8545 +newpath 1909.51 2454.47 moveto
  2.8546 +1920 2453 lineto
  2.8547 +1910.88 2447.61 lineto
  2.8548 +closepath fill
  2.8549 +1 setlinewidth
  2.8550 +solid
  2.8551 +0.000 0.000 0.000 edgecolor
  2.8552 +newpath 1909.51 2454.47 moveto
  2.8553 +1920 2453 lineto
  2.8554 +1910.88 2447.61 lineto
  2.8555 +closepath stroke
  2.8556 +grestore
  2.8557 +% route_msgout_list
  2.8558 +gsave
  2.8559 +1 setlinewidth
  2.8560 +0.000 0.000 0.000 nodecolor
  2.8561 +1993 3162 80.8 18 ellipse_path stroke
  2.8562 +0.000 0.000 0.000 nodecolor
  2.8563 +grestore
  2.8564 +% deliver_route_msgout_list->route_msgout_list
  2.8565 +gsave
  2.8566 +1 setlinewidth
  2.8567 +solid
  2.8568 +0.000 0.000 0.000 edgecolor
  2.8569 +newpath 1805 2420 moveto
  2.8570 +1815 2425 1825 2431 1832 2439 curveto
  2.8571 +1886 2498 1852 2717 1868 2795 curveto
  2.8572 +1896 2926 1956 3074 1981 3135 curveto
  2.8573 +stroke
  2.8574 +0.000 0.000 0.000 edgecolor
  2.8575 +newpath 1977.74 3136.28 moveto
  2.8576 +1985 3144 lineto
  2.8577 +1984.14 3133.44 lineto
  2.8578 +closepath fill
  2.8579 +1 setlinewidth
  2.8580 +solid
  2.8581 +0.000 0.000 0.000 edgecolor
  2.8582 +newpath 1977.74 3136.28 moveto
  2.8583 +1985 3144 lineto
  2.8584 +1984.14 3133.44 lineto
  2.8585 +closepath stroke
  2.8586 +grestore
  2.8587 +% route_is_allowed_return_path->_g_list_addrcmp
  2.8588 +gsave
  2.8589 +1 setlinewidth
  2.8590 +dotted
  2.8591 +0.000 0.000 0.000 edgecolor
  2.8592 +newpath 1782 2480 moveto
  2.8593 +1826 2488 1880 2498 1923 2507 curveto
  2.8594 +stroke
  2.8595 +0.000 0.000 0.000 edgecolor
  2.8596 +newpath 1922.51 2510.47 moveto
  2.8597 +1933 2509 lineto
  2.8598 +1923.88 2503.61 lineto
  2.8599 +closepath fill
  2.8600 +1 setlinewidth
  2.8601 +solid
  2.8602 +0.000 0.000 0.000 edgecolor
  2.8603 +newpath 1922.51 2510.47 moveto
  2.8604 +1933 2509 lineto
  2.8605 +1923.88 2503.61 lineto
  2.8606 +closepath stroke
  2.8607 +grestore
  2.8608 +% main
  2.8609 +gsave
  2.8610 +1 setlinewidth
  2.8611 +0.000 0.000 0.000 nodecolor
  2.8612 +29 770 29.19 18 ellipse_path stroke
  2.8613 +0.000 0.000 0.000 nodecolor
  2.8614 +grestore
  2.8615 +% main->msg_spool_read
  2.8616 +gsave
  2.8617 +1 setlinewidth
  2.8618 +solid
  2.8619 +0.000 0.000 0.000 edgecolor
  2.8620 +newpath 30 788 moveto
  2.8621 +33 849 48 1049 94 1088 curveto
  2.8622 +138 1125 512 1124 684 1122 curveto
  2.8623 +stroke
  2.8624 +0.000 0.000 0.000 edgecolor
  2.8625 +newpath 684 1125.5 moveto
  2.8626 +694 1122 lineto
  2.8627 +684 1118.5 lineto
  2.8628 +closepath fill
  2.8629 +1 setlinewidth
  2.8630 +solid
  2.8631 +0.000 0.000 0.000 edgecolor
  2.8632 +newpath 684 1125.5 moveto
  2.8633 +694 1122 lineto
  2.8634 +684 1118.5 lineto
  2.8635 +closepath stroke
  2.8636 +grestore
  2.8637 +% main->create_address_qualified
  2.8638 +gsave
  2.8639 +1 setlinewidth
  2.8640 +solid
  2.8641 +0.000 0.000 0.000 edgecolor
  2.8642 +newpath 30 788 moveto
  2.8643 +33 824 46 905 94 945 curveto
  2.8644 +207 1040 406 999 961 998 curveto
  2.8645 +961 998 961 998 1189 998 curveto
  2.8646 +1298 998 3062 905 3140 979 curveto
  2.8647 +3209 1045 3115 1331 3176 1404 curveto
  2.8648 +3180 1408 3184 1412 3189 1415 curveto
  2.8649 +stroke
  2.8650 +0.000 0.000 0.000 edgecolor
  2.8651 +newpath 3187.56 1418.2 moveto
  2.8652 +3198 1420 lineto
  2.8653 +3190.96 1412.08 lineto
  2.8654 +closepath fill
  2.8655 +1 setlinewidth
  2.8656 +solid
  2.8657 +0.000 0.000 0.000 edgecolor
  2.8658 +newpath 3187.56 1418.2 moveto
  2.8659 +3198 1420 lineto
  2.8660 +3190.96 1412.08 lineto
  2.8661 +closepath stroke
  2.8662 +grestore
  2.8663 +% main->addr_string
  2.8664 +gsave
  2.8665 +1 setlinewidth
  2.8666 +solid
  2.8667 +0.000 0.000 0.000 edgecolor
  2.8668 +newpath 31 752 moveto
  2.8669 +38 679 66 415 94 391 curveto
  2.8670 +142 351 594 390 656 391 curveto
  2.8671 +1180 407 1310 422 1832 459 curveto
  2.8672 +1869 462 3114 549 3140 573 curveto
  2.8673 +3206 633 3123 699 3176 769 curveto
  2.8674 +3190 787 3210 798 3230 806 curveto
  2.8675 +stroke
  2.8676 +0.000 0.000 0.000 edgecolor
  2.8677 +newpath 3228.44 809.14 moveto
  2.8678 +3239 810 lineto
  2.8679 +3231.28 802.74 lineto
  2.8680 +closepath fill
  2.8681 +1 setlinewidth
  2.8682 +solid
  2.8683 +0.000 0.000 0.000 edgecolor
  2.8684 +newpath 3228.44 809.14 moveto
  2.8685 +3239 810 lineto
  2.8686 +3231.28 802.74 lineto
  2.8687 +closepath stroke
  2.8688 +grestore
  2.8689 +% main->deliver
  2.8690 +gsave
  2.8691 +1 setlinewidth
  2.8692 +solid
  2.8693 +0.000 0.000 0.000 edgecolor
  2.8694 +newpath 30 788 moveto
  2.8695 +36 873 63 1229 94 1334 curveto
  2.8696 +210 1723 184 1897 500 2152 curveto
  2.8697 +565 2204 665 2217 724 2220 curveto
  2.8698 +stroke
  2.8699 +0.000 0.000 0.000 edgecolor
  2.8700 +newpath 724 2223.5 moveto
  2.8701 +734 2220 lineto
  2.8702 +724 2216.5 lineto
  2.8703 +closepath fill
  2.8704 +1 setlinewidth
  2.8705 +solid
  2.8706 +0.000 0.000 0.000 edgecolor
  2.8707 +newpath 724 2223.5 moveto
  2.8708 +734 2220 lineto
  2.8709 +724 2216.5 lineto
  2.8710 +closepath stroke
  2.8711 +grestore
  2.8712 +% main->set_euidgid
  2.8713 +gsave
  2.8714 +1 setlinewidth
  2.8715 +solid
  2.8716 +0.000 0.000 0.000 edgecolor
  2.8717 +newpath 36 752 moveto
  2.8718 +45 729 65 689 94 665 curveto
  2.8719 +163 610 195 613 282 597 curveto
  2.8720 +908 488 1070 738 1705 738 curveto
  2.8721 +1705 738 1705 738 2270 738 curveto
  2.8722 +2534 738 2846 788 2973 810 curveto
  2.8723 +stroke
  2.8724 +0.000 0.000 0.000 edgecolor
  2.8725 +newpath 2972.51 813.47 moveto
  2.8726 +2983 812 lineto
  2.8727 +2973.88 806.61 lineto
  2.8728 +closepath fill
  2.8729 +1 setlinewidth
  2.8730 +solid
  2.8731 +0.000 0.000 0.000 edgecolor
  2.8732 +newpath 2972.51 813.47 moveto
  2.8733 +2983 812 lineto
  2.8734 +2973.88 806.61 lineto
  2.8735 +closepath stroke
  2.8736 +grestore
  2.8737 +% main->get_from_name
  2.8738 +gsave
  2.8739 +1 setlinewidth
  2.8740 +solid
  2.8741 +0.000 0.000 0.000 edgecolor
  2.8742 +newpath 29 788 moveto
  2.8743 +30 967 36 2412 94 2594 curveto
  2.8744 +163 2806 150 3013 373 3013 curveto
  2.8745 +373 3013 373 3013 771 3013 curveto
  2.8746 +1027 3013 874 3341 1072 3502 curveto
  2.8747 +1087 3514 1105 3522 1123 3529 curveto
  2.8748 +stroke
  2.8749 +0.000 0.000 0.000 edgecolor
  2.8750 +newpath 1122.42 3532.48 moveto
  2.8751 +1133 3532 lineto
  2.8752 +1124.43 3525.77 lineto
  2.8753 +closepath fill
  2.8754 +1 setlinewidth
  2.8755 +solid
  2.8756 +0.000 0.000 0.000 edgecolor
  2.8757 +newpath 1122.42 3532.48 moveto
  2.8758 +1133 3532 lineto
  2.8759 +1124.43 3525.77 lineto
  2.8760 +closepath stroke
  2.8761 +grestore
  2.8762 +% main->get_daemon
  2.8763 +gsave
  2.8764 +1 setlinewidth
  2.8765 +solid
  2.8766 +0.000 0.000 0.000 edgecolor
  2.8767 +newpath 50 782 moveto
  2.8768 +72 795 108 815 134 831 curveto
  2.8769 +stroke
  2.8770 +0.000 0.000 0.000 edgecolor
  2.8771 +newpath 132.56 834.2 moveto
  2.8772 +143 836 lineto
  2.8773 +135.96 828.08 lineto
  2.8774 +closepath fill
  2.8775 +1 setlinewidth
  2.8776 +solid
  2.8777 +0.000 0.000 0.000 edgecolor
  2.8778 +newpath 132.56 834.2 moveto
  2.8779 +143 836 lineto
  2.8780 +135.96 828.08 lineto
  2.8781 +closepath stroke
  2.8782 +grestore
  2.8783 +% main->get_online
  2.8784 +gsave
  2.8785 +1 setlinewidth
  2.8786 +solid
  2.8787 +0.000 0.000 0.000 edgecolor
  2.8788 +newpath 30 788 moveto
  2.8789 +35 894 63 1433 94 1597 curveto
  2.8790 +174 2018 -55 2521 373 2521 curveto
  2.8791 +373 2521 373 2521 771 2521 curveto
  2.8792 +908 2521 966 2558 1036 2675 curveto
  2.8793 +1080 2745 1021 3354 1072 3419 curveto
  2.8794 +1086 3436 1108 3445 1129 3448 curveto
  2.8795 +stroke
  2.8796 +0.000 0.000 0.000 edgecolor
  2.8797 +newpath 1128.51 3451.47 moveto
  2.8798 +1139 3450 lineto
  2.8799 +1129.88 3444.61 lineto
  2.8800 +closepath fill
  2.8801 +1 setlinewidth
  2.8802 +solid
  2.8803 +0.000 0.000 0.000 edgecolor
  2.8804 +newpath 1128.51 3451.47 moveto
  2.8805 +1139 3450 lineto
  2.8806 +1129.88 3444.61 lineto
  2.8807 +closepath stroke
  2.8808 +grestore
  2.8809 +% main->spool_write
  2.8810 +gsave
  2.8811 +1 setlinewidth
  2.8812 +solid
  2.8813 +0.000 0.000 0.000 edgecolor
  2.8814 +newpath 32 752 moveto
  2.8815 +41 707 65 589 94 564 curveto
  2.8816 +162 507 798 464 886 458 curveto
  2.8817 +1434 422 1575 459 2118 534 curveto
  2.8818 +2339 565 2598 618 2712 642 curveto
  2.8819 +stroke
  2.8820 +0.000 0.000 0.000 edgecolor
  2.8821 +newpath 2711.51 645.47 moveto
  2.8822 +2722 644 lineto
  2.8823 +2712.88 638.61 lineto
  2.8824 +closepath fill
  2.8825 +1 setlinewidth
  2.8826 +solid
  2.8827 +0.000 0.000 0.000 edgecolor
  2.8828 +newpath 2711.51 645.47 moveto
  2.8829 +2722 644 lineto
  2.8830 +2712.88 638.61 lineto
  2.8831 +closepath stroke
  2.8832 +grestore
  2.8833 +% main->is_privileged_user
  2.8834 +gsave
  2.8835 +1 setlinewidth
  2.8836 +solid
  2.8837 +0.000 0.000 0.000 edgecolor
  2.8838 +newpath 30 752 moveto
  2.8839 +34 692 50 505 94 467 curveto
  2.8840 +155 417 251 426 313 440 curveto
  2.8841 +stroke
  2.8842 +0.000 0.000 0.000 edgecolor
  2.8843 +newpath 312.51 443.47 moveto
  2.8844 +323 442 lineto
  2.8845 +313.88 436.61 lineto
  2.8846 +closepath fill
  2.8847 +1 setlinewidth
  2.8848 +solid
  2.8849 +0.000 0.000 0.000 edgecolor
  2.8850 +newpath 312.51 443.47 moveto
  2.8851 +323 442 lineto
  2.8852 +313.88 436.61 lineto
  2.8853 +closepath stroke
  2.8854 +grestore
  2.8855 +% main->is_ingroup
  2.8856 +gsave
  2.8857 +1 setlinewidth
  2.8858 +solid
  2.8859 +0.000 0.000 0.000 edgecolor
  2.8860 +newpath 30 752 moveto
  2.8861 +32 687 44 469 94 426 curveto
  2.8862 +157 374 405 397 519 410 curveto
  2.8863 +stroke
  2.8864 +0.000 0.000 0.000 edgecolor
  2.8865 +newpath 518.7 413.49 moveto
  2.8866 +529 411 lineto
  2.8867 +519.4 406.52 lineto
  2.8868 +closepath fill
  2.8869 +1 setlinewidth
  2.8870 +solid
  2.8871 +0.000 0.000 0.000 edgecolor
  2.8872 +newpath 518.7 413.49 moveto
  2.8873 +529 411 lineto
  2.8874 +519.4 406.52 lineto
  2.8875 +closepath stroke
  2.8876 +grestore
  2.8877 +% main->read_conf
  2.8878 +gsave
  2.8879 +1 setlinewidth
  2.8880 +solid
  2.8881 +0.000 0.000 0.000 edgecolor
  2.8882 +newpath 29 788 moveto
  2.8883 +32 978 55 2588 94 2797 curveto
  2.8884 +163 3163 0 3589 373 3589 curveto
  2.8885 +373 3589 373 3589 1189 3589 curveto
  2.8886 +1604 3589 1740 3677 2118 3509 curveto
  2.8887 +2288 3433 2283 3345 2422 3224 curveto
  2.8888 +2506 3151 2556 3159 2616 3067 curveto
  2.8889 +2649 3016 2609 2978 2652 2937 curveto
  2.8890 +2667 2923 2688 2915 2708 2912 curveto
  2.8891 +stroke
  2.8892 +0.000 0.000 0.000 edgecolor
  2.8893 +newpath 2708.88 2915.39 moveto
  2.8894 +2718 2910 lineto
  2.8895 +2707.51 2908.53 lineto
  2.8896 +closepath fill
  2.8897 +1 setlinewidth
  2.8898 +solid
  2.8899 +0.000 0.000 0.000 edgecolor
  2.8900 +newpath 2708.88 2915.39 moveto
  2.8901 +2718 2910 lineto
  2.8902 +2707.51 2908.53 lineto
  2.8903 +closepath stroke
  2.8904 +grestore
  2.8905 +% main->time_interval
  2.8906 +gsave
  2.8907 +1 setlinewidth
  2.8908 +solid
  2.8909 +0.000 0.000 0.000 edgecolor
  2.8910 +newpath 29 788 moveto
  2.8911 +30 998 38 2934 94 3182 curveto
  2.8912 +148 3415 134 3642 373 3642 curveto
  2.8913 +373 3642 373 3642 1705 3642 curveto
  2.8914 +2283 3642 2874 3143 3004 3026 curveto
  2.8915 +stroke
  2.8916 +0.000 0.000 0.000 edgecolor
  2.8917 +newpath 3006.78 3028.22 moveto
  2.8918 +3012 3019 lineto
  2.8919 +3002.17 3022.95 lineto
  2.8920 +closepath fill
  2.8921 +1 setlinewidth
  2.8922 +solid
  2.8923 +0.000 0.000 0.000 edgecolor
  2.8924 +newpath 3006.78 3028.22 moveto
  2.8925 +3012 3019 lineto
  2.8926 +3002.17 3022.95 lineto
  2.8927 +closepath stroke
  2.8928 +grestore
  2.8929 +% main->get_all
  2.8930 +gsave
  2.8931 +1 setlinewidth
  2.8932 +solid
  2.8933 +0.000 0.000 0.000 edgecolor
  2.8934 +newpath 29 788 moveto
  2.8935 +30 970 40 2461 94 2535 curveto
  2.8936 +173 2639 243 2629 373 2629 curveto
  2.8937 +373 2629 373 2629 578 2629 curveto
  2.8938 +706 2629 853 2668 921 2689 curveto
  2.8939 +stroke
  2.8940 +0.000 0.000 0.000 edgecolor
  2.8941 +newpath 920.42 2692.48 moveto
  2.8942 +931 2692 lineto
  2.8943 +922.43 2685.77 lineto
  2.8944 +closepath fill
  2.8945 +1 setlinewidth
  2.8946 +solid
  2.8947 +0.000 0.000 0.000 edgecolor
  2.8948 +newpath 920.42 2692.48 moveto
  2.8949 +931 2692 lineto
  2.8950 +922.43 2685.77 lineto
  2.8951 +closepath stroke
  2.8952 +grestore
  2.8953 +% main->queue_run_online
  2.8954 +gsave
  2.8955 +1 setlinewidth
  2.8956 +solid
  2.8957 +0.000 0.000 0.000 edgecolor
  2.8958 +newpath 30 788 moveto
  2.8959 +33 845 47 1026 94 1165 curveto
  2.8960 +163 1364 304 1577 354 1650 curveto
  2.8961 +stroke
  2.8962 +0.000 0.000 0.000 edgecolor
  2.8963 +newpath 351.54 1652.62 moveto
  2.8964 +360 1659 lineto
  2.8965 +357.37 1648.74 lineto
  2.8966 +closepath fill
  2.8967 +1 setlinewidth
  2.8968 +solid
  2.8969 +0.000 0.000 0.000 edgecolor
  2.8970 +newpath 351.54 1652.62 moveto
  2.8971 +360 1659 lineto
  2.8972 +357.37 1648.74 lineto
  2.8973 +closepath stroke
  2.8974 +grestore
  2.8975 +% main->smtp_in
  2.8976 +gsave
  2.8977 +1 setlinewidth
  2.8978 +solid
  2.8979 +0.000 0.000 0.000 edgecolor
  2.8980 +newpath 34 788 moveto
  2.8981 +42 813 61 858 94 879 curveto
  2.8982 +165 925 199 894 282 898 curveto
  2.8983 +363 903 387 922 464 898 curveto
  2.8984 +499 888 532 864 553 846 curveto
  2.8985 +stroke
  2.8986 +0.000 0.000 0.000 edgecolor
  2.8987 +newpath 555.78 848.22 moveto
  2.8988 +561 839 lineto
  2.8989 +551.17 842.95 lineto
  2.8990 +closepath fill
  2.8991 +1 setlinewidth
  2.8992 +solid
  2.8993 +0.000 0.000 0.000 edgecolor
  2.8994 +newpath 555.78 848.22 moveto
  2.8995 +561 839 lineto
  2.8996 +551.17 842.95 lineto
  2.8997 +closepath stroke
  2.8998 +grestore
  2.8999 +% main->accept_message
  2.9000 +gsave
  2.9001 +1 setlinewidth
  2.9002 +solid
  2.9003 +0.000 0.000 0.000 edgecolor
  2.9004 +newpath 31 752 moveto
  2.9005 +37 676 64 385 94 358 curveto
  2.9006 +151 307 669 313 876 318 curveto
  2.9007 +stroke
  2.9008 +0.000 0.000 0.000 edgecolor
  2.9009 +newpath 876 321.5 moveto
  2.9010 +886 318 lineto
  2.9011 +876 314.5 lineto
  2.9012 +closepath fill
  2.9013 +1 setlinewidth
  2.9014 +solid
  2.9015 +0.000 0.000 0.000 edgecolor
  2.9016 +newpath 876 321.5 moveto
  2.9017 +886 318 lineto
  2.9018 +876 314.5 lineto
  2.9019 +closepath stroke
  2.9020 +grestore
  2.9021 +% main->create_message
  2.9022 +gsave
  2.9023 +1 setlinewidth
  2.9024 +solid
  2.9025 +0.000 0.000 0.000 edgecolor
  2.9026 +newpath 31 788 moveto
  2.9027 +38 839 60 985 94 1016 curveto
  2.9028 +186 1104 247 1074 373 1074 curveto
  2.9029 +373 1074 373 1074 578 1074 curveto
  2.9030 +685 1074 809 1062 886 1053 curveto
  2.9031 +stroke
  2.9032 +0.000 0.000 0.000 edgecolor
  2.9033 +newpath 886.4 1056.48 moveto
  2.9034 +896 1052 lineto
  2.9035 +885.7 1049.51 lineto
  2.9036 +closepath fill
  2.9037 +1 setlinewidth
  2.9038 +solid
  2.9039 +0.000 0.000 0.000 edgecolor
  2.9040 +newpath 886.4 1056.48 moveto
  2.9041 +896 1052 lineto
  2.9042 +885.7 1049.51 lineto
  2.9043 +closepath stroke
  2.9044 +grestore
  2.9045 +% main->queue_run
  2.9046 +gsave
  2.9047 +1 setlinewidth
  2.9048 +solid
  2.9049 +0.000 0.000 0.000 edgecolor
  2.9050 +newpath 30 788 moveto
  2.9051 +32 854 45 1080 94 1126 curveto
  2.9052 +155 1183 257 1179 319 1170 curveto
  2.9053 +stroke
  2.9054 +0.000 0.000 0.000 edgecolor
  2.9055 +newpath 319.88 1173.39 moveto
  2.9056 +329 1168 lineto
  2.9057 +318.51 1166.53 lineto
  2.9058 +closepath fill
  2.9059 +1 setlinewidth
  2.9060 +solid
  2.9061 +0.000 0.000 0.000 edgecolor
  2.9062 +newpath 319.88 1173.39 moveto
  2.9063 +329 1168 lineto
  2.9064 +318.51 1166.53 lineto
  2.9065 +closepath stroke
  2.9066 +grestore
  2.9067 +% main->set_identity
  2.9068 +gsave
  2.9069 +1 setlinewidth
  2.9070 +solid
  2.9071 +0.000 0.000 0.000 edgecolor
  2.9072 +newpath 32 752 moveto
  2.9073 +40 702 65 561 94 526 curveto
  2.9074 +101 519 109 514 117 510 curveto
  2.9075 +stroke
  2.9076 +0.000 0.000 0.000 edgecolor
  2.9077 +newpath 118.96 512.92 moveto
  2.9078 +126 505 lineto
  2.9079 +115.56 506.8 lineto
  2.9080 +closepath fill
  2.9081 +1 setlinewidth
  2.9082 +solid
  2.9083 +0.000 0.000 0.000 edgecolor
  2.9084 +newpath 118.96 512.92 moveto
  2.9085 +126 505 lineto
  2.9086 +115.56 506.8 lineto
  2.9087 +closepath stroke
  2.9088 +grestore
  2.9089 +% main->queue_list
  2.9090 +gsave
  2.9091 +1 setlinewidth
  2.9092 +solid
  2.9093 +0.000 0.000 0.000 edgecolor
  2.9094 +newpath 51 758 moveto
  2.9095 +95 736 194 685 282 651 curveto
  2.9096 +295 646 309 642 322 638 curveto
  2.9097 +stroke
  2.9098 +0.000 0.000 0.000 edgecolor
  2.9099 +newpath 323.43 641.23 moveto
  2.9100 +332 635 lineto
  2.9101 +321.42 634.52 lineto
  2.9102 +closepath fill
  2.9103 +1 setlinewidth
  2.9104 +solid
  2.9105 +0.000 0.000 0.000 edgecolor
  2.9106 +newpath 323.43 641.23 moveto
  2.9107 +332 635 lineto
  2.9108 +321.42 634.52 lineto
  2.9109 +closepath stroke
  2.9110 +grestore
  2.9111 +% main->queue_delete
  2.9112 +gsave
  2.9113 +1 setlinewidth
  2.9114 +solid
  2.9115 +0.000 0.000 0.000 edgecolor
  2.9116 +newpath 32 788 moveto
  2.9117 +37 819 54 880 94 907 curveto
  2.9118 +224 995 709 970 891 958 curveto
  2.9119 +stroke
  2.9120 +0.000 0.000 0.000 edgecolor
  2.9121 +newpath 891.4 961.48 moveto
  2.9122 +901 957 lineto
  2.9123 +890.7 954.51 lineto
  2.9124 +closepath fill
  2.9125 +1 setlinewidth
  2.9126 +solid
  2.9127 +0.000 0.000 0.000 edgecolor
  2.9128 +newpath 891.4 961.48 moveto
  2.9129 +901 957 lineto
  2.9130 +890.7 954.51 lineto
  2.9131 +closepath stroke
  2.9132 +grestore
  2.9133 +% main->listen_port
  2.9134 +gsave
  2.9135 +1 setlinewidth
  2.9136 +solid
  2.9137 +0.000 0.000 0.000 edgecolor
  2.9138 +newpath 58 770 moveto
  2.9139 +72 770 91 770 108 770 curveto
  2.9140 +stroke
  2.9141 +0.000 0.000 0.000 edgecolor
  2.9142 +newpath 108 773.5 moveto
  2.9143 +118 770 lineto
  2.9144 +108 766.5 lineto
  2.9145 +closepath fill
  2.9146 +1 setlinewidth
  2.9147 +solid
  2.9148 +0.000 0.000 0.000 edgecolor
  2.9149 +newpath 108 773.5 moveto
  2.9150 +118 770 lineto
  2.9151 +108 766.5 lineto
  2.9152 +closepath stroke
  2.9153 +grestore
  2.9154 +% set_online_name
  2.9155 +gsave
  2.9156 +1 setlinewidth
  2.9157 +0.000 0.000 0.000 nodecolor
  2.9158 +170 288 75.24 18 ellipse_path stroke
  2.9159 +0.000 0.000 0.000 nodecolor
  2.9160 +grestore
  2.9161 +% main->set_online_name
  2.9162 +gsave
  2.9163 +1 setlinewidth
  2.9164 +solid
  2.9165 +0.000 0.000 0.000 edgecolor
  2.9166 +newpath 29 752 moveto
  2.9167 +31 677 41 389 94 320 curveto
  2.9168 +98 315 103 310 109 306 curveto
  2.9169 +stroke
  2.9170 +0.000 0.000 0.000 edgecolor
  2.9171 +newpath 110.96 308.92 moveto
  2.9172 +118 301 lineto
  2.9173 +107.56 302.8 lineto
  2.9174 +closepath fill
  2.9175 +1 setlinewidth
  2.9176 +solid
  2.9177 +0.000 0.000 0.000 edgecolor
  2.9178 +newpath 110.96 308.92 moveto
  2.9179 +118 301 lineto
  2.9180 +107.56 302.8 lineto
  2.9181 +closepath stroke
  2.9182 +grestore
  2.9183 +% get_progname
  2.9184 +gsave
  2.9185 +1 setlinewidth
  2.9186 +0.000 0.000 0.000 nodecolor
  2.9187 +170 234 66.21 18 ellipse_path stroke
  2.9188 +0.000 0.000 0.000 nodecolor
  2.9189 +grestore
  2.9190 +% main->get_progname
  2.9191 +gsave
  2.9192 +1 setlinewidth
  2.9193 +solid
  2.9194 +0.000 0.000 0.000 edgecolor
  2.9195 +newpath 30 752 moveto
  2.9196 +36 665 63 301 94 261 curveto
  2.9197 +98 257 103 253 108 250 curveto
  2.9198 +stroke
  2.9199 +0.000 0.000 0.000 edgecolor
  2.9200 +newpath 109.96 252.92 moveto
  2.9201 +117 245 lineto
  2.9202 +106.56 246.8 lineto
  2.9203 +closepath fill
  2.9204 +1 setlinewidth
  2.9205 +solid
  2.9206 +0.000 0.000 0.000 edgecolor
  2.9207 +newpath 109.96 252.92 moveto
  2.9208 +117 245 lineto
  2.9209 +106.56 246.8 lineto
  2.9210 +closepath stroke
  2.9211 +grestore
  2.9212 +% init_conf
  2.9213 +gsave
  2.9214 +1 setlinewidth
  2.9215 +0.000 0.000 0.000 nodecolor
  2.9216 +170 180 45.86 18 ellipse_path stroke
  2.9217 +0.000 0.000 0.000 nodecolor
  2.9218 +grestore
  2.9219 +% main->init_conf
  2.9220 +gsave
  2.9221 +1 setlinewidth
  2.9222 +solid
  2.9223 +0.000 0.000 0.000 edgecolor
  2.9224 +newpath 30 752 moveto
  2.9225 +35 661 59 251 94 207 curveto
  2.9226 +100 200 108 194 117 190 curveto
  2.9227 +stroke
  2.9228 +0.000 0.000 0.000 edgecolor
  2.9229 +newpath 118.43 193.23 moveto
  2.9230 +127 187 lineto
  2.9231 +116.42 186.52 lineto
  2.9232 +closepath fill
  2.9233 +1 setlinewidth
  2.9234 +solid
  2.9235 +0.000 0.000 0.000 edgecolor
  2.9236 +newpath 118.43 193.23 moveto
  2.9237 +127 187 lineto
  2.9238 +116.42 186.52 lineto
  2.9239 +closepath stroke
  2.9240 +grestore
  2.9241 +% write_pidfile
  2.9242 +gsave
  2.9243 +1 setlinewidth
  2.9244 +0.000 0.000 0.000 nodecolor
  2.9245 +170 126 59.06 18 ellipse_path stroke
  2.9246 +0.000 0.000 0.000 nodecolor
  2.9247 +grestore
  2.9248 +% main->write_pidfile
  2.9249 +gsave
  2.9250 +1 setlinewidth
  2.9251 +solid
  2.9252 +0.000 0.000 0.000 edgecolor
  2.9253 +newpath 30 752 moveto
  2.9254 +34 655 57 202 94 153 curveto
  2.9255 +99 148 104 143 110 140 curveto
  2.9256 +stroke
  2.9257 +0.000 0.000 0.000 edgecolor
  2.9258 +newpath 111.96 142.92 moveto
  2.9259 +119 135 lineto
  2.9260 +108.56 136.8 lineto
  2.9261 +closepath fill
  2.9262 +1 setlinewidth
  2.9263 +solid
  2.9264 +0.000 0.000 0.000 edgecolor
  2.9265 +newpath 111.96 142.92 moveto
  2.9266 +119 135 lineto
  2.9267 +108.56 136.8 lineto
  2.9268 +closepath stroke
  2.9269 +grestore
  2.9270 +% sigterm_handler
  2.9271 +gsave
  2.9272 +1 setlinewidth
  2.9273 +0.000 0.000 0.000 nodecolor
  2.9274 +170 72 72.96 18 ellipse_path stroke
  2.9275 +0.000 0.000 0.000 nodecolor
  2.9276 +grestore
  2.9277 +% main->sigterm_handler
  2.9278 +gsave
  2.9279 +1 setlinewidth
  2.9280 +dotted
  2.9281 +0.000 0.000 0.000 edgecolor
  2.9282 +newpath 30 752 moveto
  2.9283 +33 650 53 153 94 99 curveto
  2.9284 +97 95 101 91 105 89 curveto
  2.9285 +stroke
  2.9286 +0.000 0.000 0.000 edgecolor
  2.9287 +newpath 106.96 91.92 moveto
  2.9288 +114 84 lineto
  2.9289 +103.56 85.8 lineto
  2.9290 +closepath fill
  2.9291 +1 setlinewidth
  2.9292 +solid
  2.9293 +0.000 0.000 0.000 edgecolor
  2.9294 +newpath 106.96 91.92 moveto
  2.9295 +114 84 lineto
  2.9296 +103.56 85.8 lineto
  2.9297 +closepath stroke
  2.9298 +grestore
  2.9299 +% get_optarg
  2.9300 +gsave
  2.9301 +1 setlinewidth
  2.9302 +0.000 0.000 0.000 nodecolor
  2.9303 +170 18 52.81 18 ellipse_path stroke
  2.9304 +0.000 0.000 0.000 nodecolor
  2.9305 +grestore
  2.9306 +% main->get_optarg
  2.9307 +gsave
  2.9308 +1 setlinewidth
  2.9309 +solid
  2.9310 +0.000 0.000 0.000 edgecolor
  2.9311 +newpath 29 752 moveto
  2.9312 +32 645 50 103 94 45 curveto
  2.9313 +99 39 105 34 113 30 curveto
  2.9314 +stroke
  2.9315 +0.000 0.000 0.000 edgecolor
  2.9316 +newpath 114.28 33.26 moveto
  2.9317 +122 26 lineto
  2.9318 +111.44 26.86 lineto
  2.9319 +closepath fill
  2.9320 +1 setlinewidth
  2.9321 +solid
  2.9322 +0.000 0.000 0.000 edgecolor
  2.9323 +newpath 114.28 33.26 moveto
  2.9324 +122 26 lineto
  2.9325 +111.44 26.86 lineto
  2.9326 +closepath stroke
  2.9327 +grestore
  2.9328 +% create_address_rfc821
  2.9329 +gsave
  2.9330 +1 setlinewidth
  2.9331 +0.000 0.000 0.000 nodecolor
  2.9332 +3537 1458 100.06 18 ellipse_path stroke
  2.9333 +0.000 0.000 0.000 nodecolor
  2.9334 +grestore
  2.9335 +% create_address_rfc821->_create_address
  2.9336 +gsave
  2.9337 +1 setlinewidth
  2.9338 +solid
  2.9339 +0.000 0.000 0.000 edgecolor
  2.9340 +newpath 3603 1471 moveto
  2.9341 +3618 1475 3633 1480 3646 1485 curveto
  2.9342 +3690 1500 3737 1526 3768 1544 curveto
  2.9343 +stroke
  2.9344 +0.000 0.000 0.000 edgecolor
  2.9345 +newpath 3766.56 1547.2 moveto
  2.9346 +3777 1549 lineto
  2.9347 +3769.96 1541.08 lineto
  2.9348 +closepath fill
  2.9349 +1 setlinewidth
  2.9350 +solid
  2.9351 +0.000 0.000 0.000 edgecolor
  2.9352 +newpath 3766.56 1547.2 moveto
  2.9353 +3777 1549 lineto
  2.9354 +3769.96 1541.08 lineto
  2.9355 +closepath stroke
  2.9356 +grestore
  2.9357 +% route_msgout_list->create_msg_out
  2.9358 +gsave
  2.9359 +1 setlinewidth
  2.9360 +solid
  2.9361 +0.000 0.000 0.000 edgecolor
  2.9362 +newpath 2053 3174 moveto
  2.9363 +2098 3183 2157 3195 2203 3205 curveto
  2.9364 +stroke
  2.9365 +0.000 0.000 0.000 edgecolor
  2.9366 +newpath 2202.51 3208.47 moveto
  2.9367 +2213 3207 lineto
  2.9368 +2203.88 3201.61 lineto
  2.9369 +closepath fill
  2.9370 +1 setlinewidth
  2.9371 +solid
  2.9372 +0.000 0.000 0.000 edgecolor
  2.9373 +newpath 2202.51 3208.47 moveto
  2.9374 +2213 3207 lineto
  2.9375 +2203.88 3201.61 lineto
  2.9376 +closepath stroke
  2.9377 +grestore
  2.9378 +% create_msgout_perhost
  2.9379 +gsave
  2.9380 +1 setlinewidth
  2.9381 +0.000 0.000 0.000 nodecolor
  2.9382 +2270 3164 102.15 18 ellipse_path stroke
  2.9383 +0.000 0.000 0.000 nodecolor
  2.9384 +grestore
  2.9385 +% route_msgout_list->create_msgout_perhost
  2.9386 +gsave
  2.9387 +1 setlinewidth
  2.9388 +solid
  2.9389 +0.000 0.000 0.000 edgecolor
  2.9390 +newpath 2075 3163 moveto
  2.9391 +2101 3163 2130 3163 2158 3163 curveto
  2.9392 +stroke
  2.9393 +0.000 0.000 0.000 edgecolor
  2.9394 +newpath 2158 3166.5 moveto
  2.9395 +2168 3163 lineto
  2.9396 +2158 3159.5 lineto
  2.9397 +closepath fill
  2.9398 +1 setlinewidth
  2.9399 +solid
  2.9400 +0.000 0.000 0.000 edgecolor
  2.9401 +newpath 2158 3166.5 moveto
  2.9402 +2168 3163 lineto
  2.9403 +2158 3159.5 lineto
  2.9404 +closepath stroke
  2.9405 +grestore
  2.9406 +endpage
  2.9407 +showpage
  2.9408 +grestore
  2.9409 +%%PageTrailer
  2.9410 +%%EndPage: 1
  2.9411 +%%Trailer
  2.9412 +%%Pages: 1
  2.9413 +%%BoundingBox: 36 36 540 458
  2.9414 +end
  2.9415 +restore
  2.9416 +%%EOF
     3.1 --- a/thesis/tex/4-MasqmailsFuture.tex	Sat Feb 07 22:43:07 2009 +0100
     3.2 +++ b/thesis/tex/4-MasqmailsFuture.tex	Sat Feb 07 22:51:17 2009 +0100
     3.3 @@ -323,8 +323,6 @@
     3.4  	\begin{center}
     3.5  		\vspace*{2ex}
     3.6  		\includegraphics[scale=0.75]{fig/callgraph.eps}
     3.7 -		%\includegraphics[scale=0.75]{fig/masqmail-3-omitlog5.eps}
     3.8 -		%\includegraphics[scale=0.75]{fig/bb.eps}
     3.9  	\end{center}
    3.10  	\caption{Internal structure of \masqmail, showed by a call graph. (Logging functions are ignored; test and \NAME{POP3} code is excluded.)}
    3.11  	\index{figure!Internal structure of \masqmail.}