-
Notifications
You must be signed in to change notification settings - Fork 0
/
badpoints.ps
3637 lines (3615 loc) · 80.8 KB
/
badpoints.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 3.0.0 (0)
%%Title: G
%%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 36 1704 2331
%%PageOrientation: Portrait
0 0 1 beginpage
gsave
36 36 1668 2295 boxprim clip newpath
1 1 set_scale 0 rotate 40 40 translate
% (0, 1)
gsave
1 setlinewidth
0 0 0 nodecolor
31.1972 2040.3474 31.3957 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
15.1972 2036.6474 moveto 32 (\(0, 1\)) alignedtext
grestore
% (1, 1)
gsave
1 setlinewidth
0 0 0 nodecolor
129.5917 293.3474 31.3957 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
113.5917 289.6474 moveto 32 (\(1, 1\)) alignedtext
grestore
% (0, 1)->(1, 1)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 33.1986 2022.1998 moveto
42.6055 1851.7134 115.3788 532.8098 127.0227 321.7836 curveto
stroke
0 0 0 edgecolor
newpath 130.5319 321.7108 moveto
127.5883 311.5332 lineto
123.5425 321.3251 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 130.5319 321.7108 moveto
127.5883 311.5332 lineto
123.5425 321.3251 lineto
closepath stroke
grestore
% (1, 2)
gsave
1 setlinewidth
0 0 0 nodecolor
227.9862 1152.3474 31.3957 18 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
211.9862 1148.6474 moveto 32 (\(1, 2\)) alignedtext
grestore
% (0, 1)->(1, 2)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 34.6607 2022.1276 moveto
42.4043 1965.7872 67.5794 1789.4999 98.3945 1645.3474 curveto
136.6386 1466.4417 197.0229 1254.8197 218.8089 1180.1245 curveto
stroke
0 0 0 edgecolor
newpath 222.2877 1180.6981 moveto
221.7359 1170.1176 lineto
215.5692 1178.7329 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 222.2877 1180.6981 moveto
221.7359 1170.1176 lineto
215.5692 1178.7329 lineto
closepath stroke
grestore
% (1, 3)
gsave
1 setlinewidth
0 0 0 nodecolor
329.1245 1562.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
313.1245 1566.1474 moveto 32 (\(1, 3\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
322.6245 1551.1474 moveto 13 (-4) alignedtext
grestore
% (0, 1)->(1, 3)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 33.3569 2022.3439 moveto
36.8952 1978.1769 50.4391 1862.1097 98.3945 1780.3474 curveto
148.8823 1694.2671 243.2558 1620.6663 293.9083 1585.1185 curveto
stroke
0 0 0 edgecolor
newpath 296.022 1587.912 moveto
302.2433 1579.3361 lineto
292.0319 1582.1605 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 296.022 1587.912 moveto
302.2433 1579.3361 lineto
292.0319 1582.1605 lineto
closepath stroke
grestore
% (1, 4)
gsave
1 setlinewidth
0 0 0 nodecolor
433.0068 1767.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
417.0068 1771.1474 moveto 32 (\(1, 4\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
429.0068 1756.1474 moveto 8 (9) alignedtext
grestore
% (0, 1)->(1, 4)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 35.278 2022.215 moveto
41.5562 1990.6891 58.7395 1925.5871 98.3945 1888.3474 curveto
181.6957 1810.1195 319.4147 1781.7304 388.9694 1772.0259 curveto
stroke
0 0 0 edgecolor
newpath 389.6745 1775.463 moveto
399.1257 1770.6748 lineto
388.7514 1768.5241 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 389.6745 1775.463 moveto
399.1257 1770.6748 lineto
388.7514 1768.5241 lineto
closepath stroke
grestore
% (1, 5)
gsave
1 setlinewidth
0 0 0 nodecolor
536.889 1891.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
520.889 1895.1474 moveto 32 (\(1, 5\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
526.889 1880.1474 moveto 20 (-25) alignedtext
grestore
% (0, 1)->(1, 5)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 42.8779 2023.6494 moveto
54.7096 2006.2292 75.2062 1979.0395 98.3945 1961.3474 curveto
148.3857 1923.2053 164.1058 1902.3474 226.9862 1902.3474 curveto
226.9862 1902.3474 226.9862 1902.3474 330.1245 1902.3474 curveto
386.5189 1902.3474 451.4835 1898.1763 493.0794 1894.9711 curveto
stroke
0 0 0 edgecolor
newpath 493.4371 1898.4538 moveto
503.1317 1894.1801 lineto
492.888 1891.4754 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 493.4371 1898.4538 moveto
503.1317 1894.1801 lineto
492.888 1891.4754 lineto
closepath stroke
grestore
% (1, 6)
gsave
1 setlinewidth
0 0 0 nodecolor
646.4281 1966.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
630.4281 1970.1474 moveto 32 (\(1, 6\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
638.4281 1955.1474 moveto 16 (64) alignedtext
grestore
% (0, 1)->(1, 6)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 53.9012 2027.9684 moveto
89.0685 2009.1092 161.2107 1975.3474 226.9862 1975.3474 curveto
226.9862 1975.3474 226.9862 1975.3474 434.0068 1975.3474 curveto
492.3834 1975.3474 559.7448 1971.88 602.4469 1969.2496 curveto
stroke
0 0 0 edgecolor
newpath 602.7271 1972.739 moveto
612.4878 1968.6184 lineto
602.2879 1965.7528 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 602.7271 1972.739 moveto
612.4878 1968.6184 lineto
602.2879 1965.7528 lineto
closepath stroke
grestore
% (1, 7)
gsave
1 setlinewidth
0 0 0 nodecolor
766.5738 2004.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
750.5738 2008.1474 moveto 32 (\(1, 7\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
752.5738 1993.1474 moveto 28 (-169) alignedtext
grestore
% (0, 1)->(1, 7)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 61.4806 2035.6994 moveto
99.5186 2030.0745 168.0343 2021.3474 226.9862 2021.3474 curveto
226.9862 2021.3474 226.9862 2021.3474 537.889 2021.3474 curveto
602.4276 2021.3474 676.9716 2014.4708 722.6879 2009.4648 curveto
stroke
0 0 0 edgecolor
newpath 723.2779 2012.9207 moveto
732.828 2008.3331 lineto
722.5015 2005.9639 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 723.2779 2012.9207 moveto
732.828 2008.3331 lineto
722.5015 2005.9639 lineto
closepath stroke
grestore
% (1, 8)
gsave
1 setlinewidth
0 0 0 nodecolor
891.6693 2042.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
875.6693 2046.1474 moveto 32 (\(1, 8\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
880.1693 2031.1474 moveto 23 (441) alignedtext
grestore
% (0, 1)->(1, 8)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 61.4806 2044.9953 moveto
99.5186 2050.6202 168.0343 2059.3474 226.9862 2059.3474 curveto
226.9862 2059.3474 226.9862 2059.3474 647.4281 2059.3474 curveto
717.6288 2059.3474 798.9491 2052.2138 847.5252 2047.1887 curveto
stroke
0 0 0 edgecolor
newpath 848.0934 2050.6483 moveto
857.6719 2046.1202 lineto
847.3603 2043.6868 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 848.0934 2050.6483 moveto
857.6719 2046.1202 lineto
847.3603 2043.6868 lineto
closepath stroke
grestore
% (1, 9)
gsave
1 setlinewidth
0 0 0 nodecolor
1008.2795 2080.3474 36.125 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
992.2795 2084.1474 moveto 32 (\(1, 9\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
990.7795 2069.1474 moveto 35 (-1156) alignedtext
grestore
% (0, 1)->(1, 9)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 55.5404 2051.8822 moveto
91.459 2068.5377 162.8572 2097.3474 226.9862 2097.3474 curveto
226.9862 2097.3474 226.9862 2097.3474 767.5738 2097.3474 curveto
835.5931 2097.3474 914.1978 2090.4522 962.3168 2085.4445 curveto
stroke
0 0 0 edgecolor
newpath 962.8248 2088.9104 moveto
972.4003 2084.3761 lineto
962.0872 2081.9493 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 962.8248 2088.9104 moveto
972.4003 2084.3761 lineto
962.0872 2081.9493 lineto
closepath stroke
grestore
% (1, 10)
gsave
1 setlinewidth
0 0 0 nodecolor
1119.9399 2118.3474 39.6962 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1099.9399 2122.1474 moveto 40 (\(1, 10\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
1104.4399 2107.1474 moveto 31 (3025) alignedtext
grestore
% (0, 1)->(1, 10)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 48.2194 2055.5282 moveto
60.9804 2066.9472 79.7399 2082.2945 98.3945 2092.3474 curveto
151.4442 2120.9357 166.7236 2135.3474 226.9862 2135.3474 curveto
226.9862 2135.3474 226.9862 2135.3474 892.6693 2135.3474 curveto
954.0682 2135.3474 1024.5761 2129.046 1070.3427 2124.1161 curveto
stroke
0 0 0 edgecolor
newpath 1071.0132 2127.5636 moveto
1080.5713 2122.9927 lineto
1070.2489 2120.6055 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1071.0132 2127.5636 moveto
1080.5713 2122.9927 lineto
1070.2489 2120.6055 lineto
closepath stroke
grestore
% (1, 11)
gsave
1 setlinewidth
0 0 0 nodecolor
1240.0856 2156.3474 39.6962 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1220.0856 2160.1474 moveto 40 (\(1, 11\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
1222.5856 2145.1474 moveto 35 (-7921) alignedtext
grestore
% (0, 1)->(1, 11)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 42.1285 2057.2807 moveto
53.6112 2075.5589 74.0834 2104.4499 98.3945 2122.3474 curveto
147.9069 2158.7978 165.5035 2173.3474 226.9862 2173.3474 curveto
226.9862 2173.3474 226.9862 2173.3474 1009.2795 2173.3474 curveto
1072.1356 2173.3474 1144.3996 2166.9439 1190.8471 2161.997 curveto
stroke
0 0 0 edgecolor
newpath 1191.3634 2165.4616 moveto
1200.9274 2160.903 lineto
1190.6081 2158.5025 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1191.3634 2165.4616 moveto
1200.9274 2160.903 lineto
1190.6081 2158.5025 lineto
closepath stroke
grestore
% (1, 12)
gsave
1 setlinewidth
0 0 0 nodecolor
1365.181 2194.3474 39.6962 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1345.181 2198.1474 moveto 40 (\(1, 12\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
1346.181 2183.1474 moveto 38 (20736) alignedtext
grestore
% (0, 1)->(1, 12)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 38.1532 2058.0206 moveto
47.3946 2083.0173 67.4158 2128.7245 98.3945 2156.3474 curveto
144.7893 2197.7163 164.8262 2211.3474 226.9862 2211.3474 curveto
226.9862 2211.3474 226.9862 2211.3474 1120.9399 2211.3474 curveto
1188.7188 2211.3474 1266.8635 2204.6975 1315.8947 2199.7159 curveto
stroke
0 0 0 edgecolor
newpath 1316.3144 2203.1912 moveto
1325.9013 2198.6812 lineto
1315.5943 2196.2284 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1316.3144 2203.1912 moveto
1325.9013 2198.6812 lineto
1315.5943 2196.2284 lineto
closepath stroke
grestore
% (1, 13)
gsave
1 setlinewidth
0 0 0 nodecolor
1490.2765 2232.3474 41.9398 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1470.2765 2236.1474 moveto 40 (\(1, 13\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
1468.7765 2221.1474 moveto 43 (-54289) alignedtext
grestore
% (0, 1)->(1, 13)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 35.548 2058.202 moveto
42.2439 2089.2983 60.0534 2153.7562 98.3945 2192.3474 curveto
142.4553 2236.6955 164.4713 2249.3474 226.9862 2249.3474 curveto
226.9862 2249.3474 226.9862 2249.3474 1241.0856 2249.3474 curveto
1309.6323 2249.3474 1388.5796 2242.8133 1438.6852 2237.847 curveto
stroke
0 0 0 edgecolor
newpath 1439.3271 2241.3001 moveto
1448.9253 2236.8139 lineto
1438.6245 2234.3354 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1439.3271 2241.3001 moveto
1448.9253 2236.8139 lineto
1438.6245 2234.3354 lineto
closepath stroke
grestore
% (1, 14)
gsave
1 setlinewidth
0 0 0 nodecolor
1615.372 2259.3474 43.6818 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1595.372 2263.1474 moveto 40 (\(1, 14\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
1592.372 2248.1474 moveto 46 (142129) alignedtext
grestore
% (0, 1)->(1, 14)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 33.8132 2058.3493 moveto
38.0058 2095.0136 52.3464 2179.1172 98.3945 2229.3474 curveto
140.7618 2275.5625 164.2898 2287.3474 226.9862 2287.3474 curveto
226.9862 2287.3474 226.9862 2287.3474 1366.181 2287.3474 curveto
1434.7396 2287.3474 1513.2833 2276.6671 1563.3274 2268.499 curveto
stroke
0 0 0 edgecolor
newpath 1563.9606 2271.9418 moveto
1573.2521 2266.8508 lineto
1562.8138 2265.0364 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1563.9606 2271.9418 moveto
1573.2521 2266.8508 lineto
1562.8138 2265.0364 lineto
closepath stroke
grestore
% (1, 1)->(1, 2)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 132.605 311.2888 moveto
144.7937 419.9055 208.6928 989.3294 223.7881 1123.8485 curveto
stroke
0 0 0 edgecolor
newpath 220.3498 1124.5952 moveto
224.9433 1134.1425 lineto
227.3062 1123.8145 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 220.3498 1124.5952 moveto
224.9433 1134.1425 lineto
227.3062 1123.8145 lineto
closepath stroke
grestore
% (2, 3)
gsave
0 1 1 nodecolor
329.1245 742.3474 33.8824 26.7407 ellipse_path fill
1 setlinewidth
filled
0 1 1 nodecolor
329.1245 742.3474 33.8824 26.7407 ellipse_path stroke
0 0 1 nodecolor
14 /Times-Roman set_font
313.1245 746.1474 moveto 32 (\(2, 3\)) alignedtext
0 0 1 nodecolor
14 /Times-Roman set_font
325.1245 731.1474 moveto 8 (0) alignedtext
grestore
% (1, 1)->(2, 3)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 131.5937 311.3647 moveto
134.8714 359.1568 148.0583 492.1384 196.7889 589.3474 curveto
222.0628 639.7641 267.5395 687.3182 297.7821 715.6459 curveto
stroke
0 0 0 edgecolor
newpath 295.7769 718.558 moveto
305.4994 722.7679 lineto
300.5242 713.4138 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 295.7769 718.558 moveto
305.4994 722.7679 lineto
300.5242 713.4138 lineto
closepath stroke
grestore
% (3, 4)
gsave
1 setlinewidth
0 0 0 nodecolor
433.0068 499.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
417.0068 503.1474 moveto 32 (\(3, 4\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
429.0068 488.1474 moveto 8 (1) alignedtext
grestore
% (1, 1)->(3, 4)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 141.6698 310.3053 moveto
153.6802 327.7316 174.1848 354.8559 196.7889 373.3474 curveto
258.6419 423.9466 343.9377 463.565 392.9994 484.0267 curveto
stroke
0 0 0 edgecolor
newpath 391.7315 487.2897 moveto
402.3109 487.8612 lineto
394.397 480.817 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 391.7315 487.2897 moveto
402.3109 487.8612 lineto
394.397 480.817 lineto
closepath stroke
grestore
% (4, 5)
gsave
1 setlinewidth
0 0 0 nodecolor
536.889 378.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
520.889 382.1474 moveto 32 (\(4, 5\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
532.889 367.1474 moveto 8 (1) alignedtext
grestore
% (1, 1)->(4, 5)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 151.5907 306.3722 moveto
164.2414 313.6399 180.9264 322.2332 196.7889 327.3474 curveto
299.5739 360.4854 426.9587 372.268 492.4708 376.3211 curveto
stroke
0 0 0 edgecolor
newpath 492.6339 379.8366 moveto
502.8218 376.9284 lineto
493.044 372.8486 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 492.6339 379.8366 moveto
502.8218 376.9284 lineto
493.044 372.8486 lineto
closepath stroke
grestore
% (5, 6)
gsave
0 1 1 nodecolor
646.4281 258.3474 33.8824 26.7407 ellipse_path fill
1 setlinewidth
filled
0 1 1 nodecolor
646.4281 258.3474 33.8824 26.7407 ellipse_path stroke
0 0 1 nodecolor
14 /Times-Roman set_font
630.4281 262.1474 moveto 32 (\(5, 6\)) alignedtext
0 0 1 nodecolor
14 /Times-Roman set_font
642.4281 247.1474 moveto 8 (0) alignedtext
grestore
% (1, 1)->(5, 6)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 158.8847 287.0171 moveto
197.086 279.0367 267.3791 266.3474 328.1245 266.3474 curveto
328.1245 266.3474 328.1245 266.3474 434.0068 266.3474 curveto
492.3723 266.3474 559.7364 263.2652 602.4422 260.9271 curveto
stroke
0 0 0 edgecolor
newpath 602.6948 264.4186 moveto
612.4839 260.3661 lineto
602.3042 257.4295 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 602.6948 264.4186 moveto
612.4839 260.3661 lineto
602.3042 257.4295 lineto
closepath stroke
grestore
% (6, 7)
gsave
1 setlinewidth
0 0 0 nodecolor
766.5738 207.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
750.5738 211.1474 moveto 32 (\(6, 7\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
762.5738 196.1474 moveto 8 (1) alignedtext
grestore
% (1, 1)->(6, 7)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 148.4075 278.8873 moveto
181.6145 253.4464 256.1448 203.3474 328.1245 203.3474 curveto
328.1245 203.3474 328.1245 203.3474 537.889 203.3474 curveto
602.075 203.3474 676.4235 204.9562 722.2288 206.1332 curveto
stroke
0 0 0 edgecolor
newpath 722.3066 209.6363 moveto
732.3949 206.3994 lineto
722.49 202.6387 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 722.3066 209.6363 moveto
732.3949 206.3994 lineto
722.49 202.6387 lineto
closepath stroke
grestore
% (7, 8)
gsave
1 setlinewidth
0 0 0 nodecolor
891.6693 279.3474 33.8824 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
875.6693 283.1474 moveto 32 (\(7, 8\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
887.6693 268.1474 moveto 8 (1) alignedtext
grestore
% (1, 1)->(7, 8)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 159.9481 298.1888 moveto
198.4469 304.1079 268.1481 313.3474 328.1245 313.3474 curveto
328.1245 313.3474 328.1245 313.3474 537.889 313.3474 curveto
660.6201 313.3474 696.9033 398.2595 811.1216 353.3474 curveto
833.2969 344.6277 852.9574 326.494 867.185 310.3606 curveto
stroke
0 0 0 edgecolor
newpath 869.9237 312.5425 moveto
873.7203 302.6512 lineto
864.5841 308.016 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 869.9237 312.5425 moveto
873.7203 302.6512 lineto
864.5841 308.016 lineto
closepath stroke
grestore
% (8, 9)
gsave
0 1 1 nodecolor
1008.2795 169.3474 33.8824 26.7407 ellipse_path fill
1 setlinewidth
filled
0 1 1 nodecolor
1008.2795 169.3474 33.8824 26.7407 ellipse_path stroke
0 0 1 nodecolor
14 /Times-Roman set_font
992.2795 173.1474 moveto 32 (\(8, 9\)) alignedtext
0 0 1 nodecolor
14 /Times-Roman set_font
1004.2795 158.1474 moveto 8 (0) alignedtext
grestore
% (1, 1)->(8, 9)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 142.2997 276.6191 moveto
169.9612 239.2697 243.4345 152.3474 328.1245 152.3474 curveto
328.1245 152.3474 328.1245 152.3474 767.5738 152.3474 curveto
836.5648 152.3474 916.4458 159.4409 964.3602 164.4637 curveto
stroke
0 0 0 edgecolor
newpath 964.0592 167.9513 moveto
974.3742 165.5322 lineto
964.802 160.9908 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 964.0592 167.9513 moveto
974.3742 165.5322 lineto
964.802 160.9908 lineto
closepath stroke
grestore
% (9, 10)
gsave
1 setlinewidth
0 0 0 nodecolor
1119.9399 131.3474 39.6962 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1099.9399 135.1474 moveto 40 (\(9, 10\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
1115.9399 120.1474 moveto 8 (1) alignedtext
grestore
% (1, 1)->(9, 10)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 135.8975 275.3109 moveto
144.5592 248.7568 164.1264 199.0821 196.7889 169.3474 curveto
243.5849 126.7459 264.8414 114.3474 328.1245 114.3474 curveto
328.1245 114.3474 328.1245 114.3474 892.6693 114.3474 curveto
954.0682 114.3474 1024.5761 120.6487 1070.3427 125.5786 curveto
stroke
0 0 0 edgecolor
newpath 1070.2489 129.0893 moveto
1080.5713 126.702 lineto
1071.0132 122.1311 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1070.2489 129.0893 moveto
1080.5713 126.702 lineto
1071.0132 122.1311 lineto
closepath stroke
grestore
% (10, 11)
gsave
1 setlinewidth
0 0 0 nodecolor
1240.0856 93.3474 44.5955 26.7407 ellipse_path stroke
0 0 0 nodecolor
14 /Times-Roman set_font
1216.5856 97.1474 moveto 47 (\(10, 11\)) alignedtext
0 0 0 nodecolor
14 /Times-Roman set_font
1236.0856 82.1474 moveto 8 (1) alignedtext
grestore
% (1, 1)->(10, 11)
gsave
1 setlinewidth
0 0 0 edgecolor
newpath 132.5292 275.2782 moveto
137.1975 240.5891 152.2012 164.3024 196.7889 121.3474 curveto
241.2253 78.5382 266.4219 76.3474 328.1245 76.3474 curveto
328.1245 76.3474 328.1245 76.3474 1009.2795 76.3474 curveto
1069.904 76.3474 1139.2803 82.3042 1185.804 87.1656 curveto
stroke
0 0 0 edgecolor
newpath 1185.6395 90.6678 moveto
1195.954 88.2468 lineto
1186.381 83.7072 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 1185.6395 90.6678 moveto
1195.954 88.2468 lineto
1186.381 83.7072 lineto
closepath stroke