-
Notifications
You must be signed in to change notification settings - Fork 0
/
b01.blif.ps
2708 lines (2686 loc) · 55 KB
/
b01.blif.ps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-3.0
%%Creator: graphviz version 2.43.0 (0)
%%Title: network
%%Pages: (atend)
%%BoundingBox: (atend)
%%EndComments
save
%%BeginProlog
/DotDict 200 dict def
DotDict begin
/setupLatin1 {
mark
/EncodingVector 256 array def
EncodingVector 0
ISOLatin1Encoding 0 255 getinterval putinterval
EncodingVector 45 /hyphen put
% Set up ISO Latin 1 character encoding
/starnetISO {
dup dup findfont dup length dict begin
{ 1 index /FID ne { def }{ pop pop } ifelse
} forall
/Encoding EncodingVector def
currentdict end definefont
} def
/Times-Roman starnetISO def
/Times-Italic starnetISO def
/Times-Bold starnetISO def
/Times-BoldItalic starnetISO def
/Helvetica starnetISO def
/Helvetica-Oblique starnetISO def
/Helvetica-Bold starnetISO def
/Helvetica-BoldOblique starnetISO def
/Courier starnetISO def
/Courier-Oblique starnetISO def
/Courier-Bold starnetISO def
/Courier-BoldOblique starnetISO def
cleartomark
} bind def
%%BeginResource: procset graphviz 0 0
/coord-font-family /Times-Roman def
/default-font-family /Times-Roman def
/coordfont coord-font-family findfont 8 scalefont def
/InvScaleFactor 1.0 def
/set_scale {
dup 1 exch div /InvScaleFactor exch def
scale
} bind def
% styles
/solid { [] 0 setdash } bind def
/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
/bold { 2 setlinewidth } bind def
/filled { } bind def
/unfilled { } bind def
/rounded { } bind def
/diagonals { } bind def
/tapered { } bind def
% hooks for setting color
/nodecolor { sethsbcolor } bind def
/edgecolor { sethsbcolor } bind def
/graphcolor { sethsbcolor } bind def
/nopcolor {pop pop pop} bind def
/beginpage { % i j npages
/npages exch def
/j exch def
/i exch def
/str 10 string def
npages 1 gt {
gsave
coordfont setfont
0 0 moveto
(\() show i str cvs show (,) show j str cvs show (\)) show
grestore
} if
} bind def
/set_font {
findfont exch
scalefont setfont
} def
% draw text fitted to its expected width
/alignedtext { % width text
/text exch def
/width exch def
gsave
width 0 gt {
[] 0 setdash
text stringwidth pop width exch sub text length div 0 text ashow
} if
grestore
} def
/boxprim { % xcorner ycorner xsize ysize
4 2 roll
moveto
2 copy
exch 0 rlineto
0 exch rlineto
pop neg 0 rlineto
closepath
} bind def
/ellipse_path {
/ry exch def
/rx exch def
/y exch def
/x exch def
matrix currentmatrix
newpath
x y translate
rx ry scale
0 0 1 0 360 arc
setmatrix
} bind def
/endpage { showpage } bind def
/showpage { } def
/layercolorseq
[ % layer color sequence - darkest to lightest
[0 0 0]
[.2 .8 .8]
[.4 .8 .8]
[.6 .8 .8]
[.8 .8 .8]
]
def
/layerlen layercolorseq length def
/setlayer {/maxlayer exch def /curlayer exch def
layercolorseq curlayer 1 sub layerlen mod get
aload pop sethsbcolor
/nodecolor {nopcolor} def
/edgecolor {nopcolor} def
/graphcolor {nopcolor} def
} bind def
/onlayer { curlayer ne {invis} if } def
/onlayers {
/myupper exch def
/mylower exch def
curlayer mylower lt
curlayer myupper gt
or
{invis} if
} def
/curlayer 0 def
%%EndResource
%%EndProlog
%%BeginSetup
14 default-font-family set_font
% /arrowlength 10 def
% /arrowwidth 5 def
% make sure pdfmark is harmless for PS-interpreters other than Distiller
/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
% make '<<' and '>>' safe on PS Level 1 devices
/languagelevel where {pop languagelevel}{1} ifelse
2 lt {
userdict (<<) cvn ([) cvn load put
userdict (>>) cvn ([) cvn load put
} if
%%EndSetup
setupLatin1
%%Page: 1 1
%%PageBoundingBox: 36 277 576 515
%%PageOrientation: Portrait
0 0 1 beginpage
gsave
36 277 540 238 boxprim clip newpath
0.327968 0.327968 set_scale 0 rotate 113.767 847.433 translate
% LevelTitle1
gsave
grestore
% LevelTitle2
gsave
grestore
% LevelTitle1->LevelTitle2
% Level7
gsave
grestore
% LevelTitle2->Level7
% Level6
gsave
grestore
% Level7->Level6
% Level5
gsave
grestore
% Level6->Level5
% Level4
gsave
grestore
% Level5->Level4
% Level3
gsave
grestore
% Level4->Level3
% Level2
gsave
grestore
% Level3->Level2
% Level1
gsave
grestore
% Level2->Level1
% Level0
gsave
grestore
% Level1->Level0
% title1
gsave
0 0 0 nodecolor
20 /Times-Roman set_font
845.5 700 moveto 379 (Network structure visualized by ABC) alignedtext
0 0 0 nodecolor
20 /Times-Roman set_font
728 678 moveto 614 (Benchmark "b01.blif". Time was Tue Aug 30 09:44:03 2022. ) alignedtext
grestore
% title2
gsave
0 0 0 nodecolor
18 /Times-Roman set_font
802 609.6 moveto 466 (The network contains 40 logic nodes and 5 latches.) alignedtext
grestore
% title1->title2
% Node3
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 317 514 moveto
393.8869 548.5 lineto
240.1131 548.5 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
295.5 533.3 moveto 43 (OUTP) alignedtext
grestore
% title2->Node3
% Node4
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 530 514 moveto
648.0794 548.5 lineto
411.9206 548.5 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
492.5 533.3 moveto 75 (OVERFLW) alignedtext
grestore
% title2->Node4
% Node6
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 1638.5 555 moveto
1479.5 555 lineto
1479.5 519 lineto
1638.5 519 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1487.5 533.3 moveto 143 (OVERFLW_REGL_in) alignedtext
grestore
% title2->Node6
% Node9
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 1460.5 555 moveto
1305.5 555 lineto
1305.5 519 lineto
1460.5 519 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1313.5 533.3 moveto 139 (STATO_REG_2_L_in) alignedtext
grestore
% title2->Node9
% Node12
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 1285.5 555 moveto
1130.5 555 lineto
1130.5 519 lineto
1285.5 519 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1138.5 533.3 moveto 139 (STATO_REG_1_L_in) alignedtext
grestore
% title2->Node12
% Node15
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 1112.5 555 moveto
957.5 555 lineto
957.5 519 lineto
1112.5 519 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
965.5 533.3 moveto 139 (STATO_REG_0_L_in) alignedtext
grestore
% title2->Node15
% Node18
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 939.5 555 moveto
812.5 555 lineto
812.5 519 lineto
939.5 519 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
820.5 533.3 moveto 111 (OUTP_REGL_in) alignedtext
grestore
% title2->Node18
% Node3->Node4
% Node19
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 179.5 41 moveto
72.5 41 lineto
72.5 5 lineto
179.5 5 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
80.5 19.3 moveto 91 (OUTP_REGL) alignedtext
grestore
% Node3->Node19
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 276.2225 524.6507 moveto
220.1234 506.2591 126 464.197 126 389 curveto
126 389 126 389 126 171 curveto
126 124.0417 126 68.6455 126 41.1996 curveto
stroke
0 0 0 edgecolor
newpath 275.2974 528.029 moveto
285.8875 527.7095 lineto
277.4096 521.3552 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 275.2974 528.029 moveto
285.8875 527.7095 lineto
277.4096 521.3552 lineto
closepath stroke
grestore
% Node7
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 336.5 41 moveto
197.5 41 lineto
197.5 5 lineto
336.5 5 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
205.5 19.3 moveto 123 (OVERFLW_REGL) alignedtext
grestore
% Node4->Node7
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 484.5442 520.9267 moveto
409.2845 494.5764 267 438.2469 267 389 curveto
267 389 267 389 267 171 curveto
267 124.0417 267 68.6455 267 41.1996 curveto
stroke
0 0 0 edgecolor
newpath 483.6622 524.3252 moveto
494.2569 524.2913 lineto
485.9535 517.7108 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 483.6622 524.3252 moveto
494.2569 524.2913 lineto
485.9535 517.7108 lineto
closepath stroke
grestore
% Node21
gsave
1 setlinewidth
0 0 0 nodecolor
1311 244 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1301.5 240.3 moveto 19 (21) alignedtext
grestore
% Node6->Node21
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1566.3343 509.1429 moveto
1577.8663 460.3811 1593.8586 356.899 1541 298 curveto
1482.4279 232.7346 1430.4516 288.9464 1347 262 curveto
1341.8696 260.3434 1336.5235 258.1181 1331.5694 255.8245 curveto
stroke
0 0 0 edgecolor
newpath 1562.9114 508.4047 moveto
1563.8968 518.9536 lineto
1569.7049 510.0926 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1562.9114 508.4047 moveto
1563.8968 518.9536 lineto
1569.7049 510.0926 lineto
closepath stroke
grestore
% Node30
gsave
1 setlinewidth
0 0 0 nodecolor
1403 460 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1393.5 456.3 moveto 19 (30) alignedtext
grestore
% Node9->Node30
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 1390.169 509.1161 moveto
1392.9404 498.7235 1396.0279 487.1454 1398.4797 477.9513 curveto
stroke
0 0 0 edgecolor
newpath 1386.7332 508.4171 moveto
1387.5383 518.9813 lineto
1393.4968 510.2208 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1386.7332 508.4171 moveto
1387.5383 518.9813 lineto
1393.4968 510.2208 lineto
closepath stroke
grestore
% Node40
gsave
1 setlinewidth
0 0 0 nodecolor
1208 460 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1198.5 456.3 moveto 19 (40) alignedtext
grestore
% Node12->Node40
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 1208 508.8666 moveto
1208 498.6362 1208 487.2888 1208 478.2109 curveto
stroke
0 0 0 edgecolor
newpath 1204.5001 508.9813 moveto
1208 518.9813 lineto
1211.5001 508.9814 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1204.5001 508.9813 moveto
1208 518.9813 lineto
1211.5001 508.9814 lineto
closepath stroke
grestore
% Node52
gsave
1 setlinewidth
0 0 0 nodecolor
1035 460 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1025.5 456.3 moveto 19 (52) alignedtext
grestore
% Node15->Node52
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 1035 508.8666 moveto
1035 498.6362 1035 487.2888 1035 478.2109 curveto
stroke
0 0 0 edgecolor
newpath 1031.5001 508.9813 moveto
1035 518.9813 lineto
1038.5001 508.9814 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1031.5001 508.9813 moveto
1035 518.9813 lineto
1038.5001 508.9814 lineto
closepath stroke
grestore
% Node59
gsave
1 setlinewidth
0 0 0 nodecolor
876 460 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
866.5 456.3 moveto 19 (59) alignedtext
grestore
% Node18->Node59
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 876 508.8666 moveto
876 498.6362 876 487.2888 876 478.2109 curveto
stroke
0 0 0 edgecolor
newpath 872.5001 508.9813 moveto
876 518.9813 lineto
879.5001 508.9814 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 872.5001 508.9813 moveto
876 518.9813 lineto
879.5001 508.9814 lineto
closepath stroke
grestore
% Node25
gsave
1 setlinewidth
0 0 0 nodecolor
1475 388 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1465.5 384.3 moveto 19 (25) alignedtext
grestore
% Node30->Node25
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 1425.044 437.5684 moveto
1436.4508 426.4784 1450.0694 413.238 1460.2043 403.3847 curveto
stroke
0 0 0 edgecolor
newpath 1422.3005 435.3542 moveto
1417.5703 444.8345 lineto
1427.18 440.3731 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1422.3005 435.3542 moveto
1417.5703 444.8345 lineto
1427.18 440.3731 lineto
closepath stroke
grestore
% Node29
gsave
1 setlinewidth
0 0 0 nodecolor
1403 388 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1393.5 384.3 moveto 19 (29) alignedtext
grestore
% Node30->Node29
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 1403 431.6651 moveto
1403 423.0537 1403 413.7913 1403 406.1043 curveto
stroke
0 0 0 edgecolor
newpath 1399.5001 431.6966 moveto
1403 441.6966 lineto
1406.5001 431.6967 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1399.5001 431.6966 moveto
1403 441.6966 lineto
1406.5001 431.6967 lineto
closepath stroke
grestore
% Node38
gsave
1 setlinewidth
0 0 0 nodecolor
1187 388 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1177.5 384.3 moveto 19 (38) alignedtext
grestore
% Node40->Node38
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 1200.0278 432.4259 moveto
1197.3453 423.4843 1194.4288 413.7627 1192.0367 405.789 curveto
stroke
0 0 0 edgecolor
newpath 1196.6905 433.4824 moveto
1202.9165 442.055 lineto
1203.3953 431.4709 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1196.6905 433.4824 moveto
1202.9165 442.055 lineto
1203.3953 431.4709 lineto
closepath stroke
grestore
% Node39
gsave
1 setlinewidth
0 0 0 nodecolor
1331 388 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1321.5 384.3 moveto 19 (39) alignedtext
grestore
% Node40->Node39
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1236.9242 442.5391 moveto
1259.7066 429.5735 1290.873 411.8365 1310.9727 400.3976 curveto
stroke
0 0 0 edgecolor
newpath 1234.9958 439.6094 moveto
1228.0358 447.5975 lineto
1238.4581 445.6932 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1234.9958 439.6094 moveto
1228.0358 447.5975 lineto
1238.4581 445.6932 lineto
closepath stroke
grestore
% Node50
gsave
1 setlinewidth
0 0 0 nodecolor
1035 388 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1025.5 384.3 moveto 19 (50) alignedtext
grestore
% Node52->Node50
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1035 431.6651 moveto
1035 423.0537 1035 413.7913 1035 406.1043 curveto
stroke
0 0 0 edgecolor
newpath 1031.5001 431.6966 moveto
1035 441.6966 lineto
1038.5001 431.6967 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1031.5001 431.6966 moveto
1035 441.6966 lineto
1038.5001 431.6967 lineto
closepath stroke
grestore
% Node51
gsave
1 setlinewidth
0 0 0 nodecolor
1259 388 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1249.5 384.3 moveto 19 (51) alignedtext
grestore
% Node52->Node51
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1070.4755 450.8705 moveto
1108.6978 441.6811 1171.033 425.4409 1223 406 curveto
1227.92 404.1594 1233.0916 401.9134 1237.9318 399.6649 curveto
stroke
0 0 0 edgecolor
newpath 1069.2835 447.5562 moveto
1060.3629 453.2723 lineto
1070.901 454.3668 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1069.2835 447.5562 moveto
1060.3629 453.2723 lineto
1070.901 454.3668 lineto
closepath stroke
grestore
% Node57
gsave
1 setlinewidth
0 0 0 nodecolor
912 388 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
902.5 384.3 moveto 19 (57) alignedtext
grestore
% Node59->Node57
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 889.0095 433.7037 moveto
893.9077 424.1794 899.3412 413.6143 903.6957 405.1473 curveto
stroke
0 0 0 edgecolor
newpath 885.8106 432.271 moveto
884.3496 442.7646 lineto
892.0357 435.4725 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 885.8106 432.271 moveto
884.3496 442.7646 lineto
892.0357 435.4725 lineto
closepath stroke
grestore
% Node58
gsave
1 setlinewidth
0 0 0 nodecolor
840 388 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
830.5 384.3 moveto 19 (58) alignedtext
grestore
% Node59->Node58
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 862.9905 433.7037 moveto
858.0923 424.1794 852.6588 413.6143 848.3043 405.1473 curveto
stroke
0 0 0 edgecolor
newpath 859.9643 435.4725 moveto
867.6504 442.7646 lineto
866.1894 432.271 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 859.9643 435.4725 moveto
867.6504 442.7646 lineto
866.1894 432.271 lineto
closepath stroke
grestore
% Node24
gsave
1 setlinewidth
0 0 0 nodecolor
1433 316 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1423.5 312.3 moveto 19 (24) alignedtext
grestore
% Node25->Node24
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1460.2058 362.3431 moveto
1454.4284 352.714 1447.9625 341.9375 1442.7842 333.307 curveto
stroke
0 0 0 edgecolor
newpath 1457.3233 364.3417 moveto
1465.4695 371.1159 lineto
1463.3258 360.7402 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1457.3233 364.3417 moveto
1465.4695 371.1159 lineto
1463.3258 360.7402 lineto
closepath stroke
grestore
% Node10
gsave
1 setlinewidth
0.043137 0.68627 1 nodecolor
newpath 1570 41 moveto
1436 41 lineto
1436 5 lineto
1570 5 lineto
closepath stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1444 19.3 moveto 118 (STATO_REG_2_L) alignedtext
grestore
% Node25->Node10
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1511.4506 382.1691 moveto
1542.4763 376.1508 1586.0279 362.8743 1612 334 curveto
1639.3979 303.5406 1636 285.9685 1636 245 curveto
1636 245 1636 245 1636 171 curveto
1636 130.0315 1637.5241 114.0459 1612 82 curveto
1597.3096 63.556 1575.1189 50.2537 1554.5859 41.0797 curveto
stroke
0 0 0 edgecolor
newpath 1510.6868 378.7498 moveto
1501.4525 383.9438 lineto
1511.9103 385.6421 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1510.6868 378.7498 moveto
1501.4525 383.9438 lineto
1511.9103 385.6421 lineto
closepath stroke
grestore
% Node28
gsave
1 setlinewidth
0 0 0 nodecolor
891 316 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
881.5 312.3 moveto 19 (28) alignedtext
grestore
% Node29->Node28
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 1372.8992 371.8448 moveto
1370.9297 371.1475 1368.953 370.5225 1367 370 curveto
1177.4568 319.2916 1116.5432 384.7084 927 334 curveto
921.7919 332.6067 916.4155 330.4842 911.4568 328.2063 curveto
stroke
0 0 0 edgecolor
newpath 1371.9627 375.2434 moveto
1382.5432 375.7937 lineto
1374.6152 368.7654 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1371.9627 375.2434 moveto
1382.5432 375.7937 lineto
1374.6152 368.7654 lineto
closepath stroke
grestore
% Node29->Node10
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 1433.4446 372.3606 moveto
1435.3159 371.5426 1437.1782 370.7494 1439 370 curveto
1483.4598 351.7123 1503.3254 363.8619 1541 334 curveto
1577.8114 304.8223 1598 291.9725 1598 245 curveto
1598 245 1598 245 1598 171 curveto
1598 116.6083 1551.5538 66.4107 1523.6136 41.1345 curveto
stroke
0 0 0 edgecolor
newpath 1431.8231 369.2527 moveto
1424.1601 376.569 lineto
1434.7131 375.6283 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1431.8231 369.2527 moveto
1424.1601 376.569 lineto
1434.7131 375.6283 lineto
closepath stroke
grestore
% Node37
gsave
1 setlinewidth
0 0 0 nodecolor
1217 316 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1207.5 312.3 moveto 19 (37) alignedtext
grestore
% Node38->Node37
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 1198.0552 361.2046 moveto
1202.0288 351.9327 1206.4001 341.7332 1209.9415 333.4699 curveto
stroke
0 0 0 edgecolor
newpath 1194.8318 359.8408 moveto
1194.1096 370.411 lineto
1201.2658 362.5983 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1194.8318 359.8408 moveto
1194.1096 370.411 lineto
1201.2658 362.5983 lineto
closepath stroke
grestore
% Node27
gsave
1 setlinewidth
0 0 0 nodecolor
1087 172 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1077.5 168.3 moveto 19 (27) alignedtext
grestore
% Node38->Node27
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1154.923 373.1389 moveto
1138.4971 364.3453 1119.7435 351.3325 1109 334 curveto
1080.6117 288.2014 1082.3376 221.1213 1085.0442 190.0097 curveto
stroke
0 0 0 edgecolor
newpath 1153.741 376.4621 moveto
1164.2472 377.8296 lineto
1156.8869 370.2088 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1153.741 376.4621 moveto
1164.2472 377.8296 lineto
1156.8869 370.2088 lineto
closepath stroke
grestore
% Node34
gsave
1 setlinewidth
0 0 0 nodecolor
1505 316 27 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1495.5 312.3 moveto 19 (34) alignedtext
grestore
% Node39->Node34
gsave