www.pudn.com > geosteiner-3.1.zip > fst50.ps


%!PS-Adobe-3.0
%%Creator: Steiner Tree Version 3.1
%%Copyright: Copyright (c) 1998, 2001 by David M. Warme
%%LanguageLevel: 1
%%DocumentNeededResources: font Times-Roman
%%DocumentSuppliedResources: procset SteinerTreeProcs 2.0 0
%%EndComments
%%BeginProlog
%%BeginProcSet: SteinerTreeProcs 2.0 0
/LabelTerminals	0		def	% set non-zero to label terminals
/inch { 72 mul } def
/PaperWidth	8.5 inch	def
/PaperHeight	11 inch		def
/BigBoxSize	7 inch		def
/SmallBoxSize	2 inch		def
/SmallBoxHeight	SmallBoxSize	def
/SmallBoxWidth	SmallBoxSize	def
/BoxHeight	BigBoxSize	def
/BoxWidth	BigBoxSize	def
/MinX		0		def
/MaxX		1		def
/MinY		0		def
/MaxY		1		def
/BoxMode	0		def	% (0 ==> big plot, 1 ==> small plots)
/SmallBoxCount	0		def
/TermRadius	1 32 div inch	def
/LineWidth	currentlinewidth	def

% Define the clipping region to be the inside edge of the box.

/ClipHeight	BigBoxSize LineWidth sub def
/ClipWidth	ClipHeight def

% Define the plotting region so that points plotted at the extremes will
% exactly meet the edge of the clipping region.  (Reduce by the terminal
% radius on each side.)

/PlotHeight	ClipHeight TermRadius 2 mul sub def
/PlotWidth	ClipWidth  TermRadius 2 mul sub	def
/XlateX { MinX sub MaxX MinX sub div PlotWidth mul } def
/XlateY { MinY sub MaxY MinY sub div PlotHeight mul } def
/XlateXY { exch XlateX exch XlateY } def
/Dup2 { dup 3 -1 roll dup 4 1 roll exch } def
/Swap2 { 4 2 roll } def
% define the two fonts we will use:
%	- one for numbering the terminals
%	- one for printing the plot's title
/TermNumPointsize	8	def
/TitlePointsize		15	def
/TermNumFont
	/Times-Roman findfont TermNumPointsize scalefont
def
/UseTermNumFont { TermNumFont setfont } def
/TitleFont
	/Times-Roman findfont TitlePointsize scalefont
def
/UseTitleFont { TitleFont setfont } def
/DefineTerminals {
	/NumTerms exch def
	/TermX NumTerms array def
	/TermY NumTerms array def
	/TermIndex 0 def
} def
/DT {
	TermY TermIndex 3 -1 roll put
	TermX TermIndex 3 -1 roll put
	/TermIndex TermIndex 1 add def
} def
/SetAxes {	% minx maxx miny maxy
	/MaxY exch def
	/MinY exch def
	/MaxX exch def
	/MinX exch def
} def
/PTString	12 string	def
/Plot_Terminals {
	LabelTerminals 0 eq {
		% Display terminals, no labels
		0 1 NumTerms 1 sub {			% i
			dup				% i i
			TermX exch get exch		% x i
			TermY exch get
			newpath
			XlateXY
			TermRadius 0 360 arc fill
		} for
	}
	{	% Display terminals, with labels
		0 1 NumTerms 1 sub {			% i
			dup				% i i
			PTString cvs exch dup		% str i i
			TermX exch get exch		% str x i
			TermY exch get			% str x y
			newpath
			XlateXY
			Dup2
			TermRadius 0 360 arc fill
			moveto TermRadius 3 mul dup neg rmoveto
			UseTermNumFont
			show
		} for
	} ifelse
} def
% n T ==> Xn Yn, get coordinates of terminal n.
/T {
	dup
	TermX exch get exch
	TermY exch get
} def
% Draw a line segment.
/S {
	newpath
	XlateXY
	moveto
	XlateXY
	lineto
	stroke
} def
% Draw a corner.  First point is incident to vertical segment.
% Second point is incident to horizontal segment.
/C {	% x1 y1 x2 y2
	newpath
	% x1 y1 x2 y2 -> x1 y1 x1 y2 x2 y2
	4 -1 roll dup 5 1 roll exch dup 4 -1 roll exch
	XlateXY
	moveto
	XlateXY
	lineto
	XlateXY
	lineto
	stroke
} def
/BeginPlot {
	FlushSmallPlot
	gsave
	PaperWidth BoxWidth sub 2 div
	 PaperHeight BoxHeight sub 2 div
	  translate
	newpath
	0 0 moveto
	BoxWidth 0 lineto
	BoxWidth BoxHeight lineto
	0 BoxHeight lineto
	closepath
	stroke
	gsave
	% establish a clipping region at the inside edge of the box
	LineWidth 2 div dup moveto
	ClipWidth 0 rlineto
	0 ClipHeight rlineto
	ClipWidth neg 0 rlineto
	closepath
	clip
	% establish the origin for the plotting region
	LineWidth 2 div TermRadius add
	 dup
	  translate
} def
/EndPlot {
	grestore
	newpath
	UseTitleFont
	0 0 moveto
		dup stringwidth pop BigBoxSize exch sub 2 div
		TitlePointsize -2 mul
	rmoveto
	show
	grestore
	showpage
} def
/BeginSmallPlot {
	gsave
	.75 inch SmallBoxCount 3 mod SmallBoxWidth .5 inch add mul add
	  .75 inch 3 SmallBoxCount 3 idiv sub SmallBoxHeight .5 inch add mul add
	    translate
	SmallBoxWidth BoxWidth div
	 SmallBoxHeight BoxHeight div
	  scale
	newpath
	0 0 moveto
	BoxWidth 0 lineto
	BoxWidth BoxHeight lineto
	0 BoxHeight lineto
	closepath
	stroke
	gsave
	% establish a clipping region at the inside edge of the box
	LineWidth 2 div dup moveto
	ClipWidth 0 rlineto
	0 ClipHeight rlineto
	ClipWidth neg 0 rlineto
	closepath
	clip
	% establish the origin for the plotting region
	LineWidth 2 div TermRadius add
	 dup
	  translate
} def
/EndSmallPlot2 {
	grestore
	newpath
	UseTitleFont
	0 0 moveto
		dup stringwidth pop BigBoxSize exch sub 2 div
		TitlePointsize -2 mul
	rmoveto
	show
	grestore
	/SmallBoxCount SmallBoxCount 1 add def
	SmallBoxCount 12 ge {
		FlushSmallPlot
	} if
} def
/FlushSmallPlot {
	SmallBoxCount 0 gt {
		showpage
		/SmallBoxCount	0 def
	} if
} def
/PT {
	dup				% i i
	TermX exch get exch		% x i
	TermY exch get
	newpath
	XlateXY
	TermRadius 0 360 arc fill
} def
%%EndProcSet
%%EndProlog

 % Phase 1: 0.01 seconds

%%BeginSetup

0 10000 0 10000 SetAxes

50 DefineTerminals
	3380	7530	DT
	2740	8870	DT
	6290	7300	DT
	540	4040	DT
	7700	780	DT
	1780	380	DT
	40	8960	DT
	7800	9720	DT
	1260	60	DT
	700	3250	DT
	7490	6230	DT
	380	7120	DT
	710	5630	DT
	6790	2490	DT
	1310	6820	DT
	5030	7330	DT
	9440	3730	DT
	6190	9990	DT
	1030	6560	DT
	2260	5640	DT
	1940	8650	DT
	1180	540	DT
	8450	6090	DT
	1090	6850	DT
	7150	7100	DT
	780	1970	DT
	2550	1830	DT
	3690	7850	DT
	8500	8440	DT
	5400	250	DT
	290	9440	DT
	5000	9680	DT
	7460	8170	DT
	340	8100	DT
	230	1480	DT
	9180	3830	DT
	410	1680	DT
	570	5980	DT
	4330	7720	DT
	8100	730	DT
	7350	1590	DT
	9210	5680	DT
	8700	5280	DT
	9380	4570	DT
	1680	330	DT
	5930	7480	DT
	440	680	DT
	210	9890	DT
	9850	6170	DT
	2290	1880	DT

%%EndSetup

%%Page: 1 1
BeginSmallPlot
	Plot_Terminals
 % fs0: 0 27 38
	0 T	3690	7720	C
	3690	7720	27 T	S
	3690	7720	38 T	S
  (FST 0,  Length = 1270)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs1: 1 0 27
	1 T	3380	7850	C
	3380	7850	0 T	S
	3380	7850	27 T	S
  (FST 1,  Length = 2290)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs2: 2 24 32
	2 T	7150	7300	S
	7150	7300	24 T	S
	7150	7300	32 T	C
  (FST 2,  Length = 2240)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs3: 3 37 12
	3 T	570	5630	C
	570	5630	37 T	S
	570	5630	12 T	S
  (FST 3,  Length = 2110)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs4: 3 9 12
	3 T	700	4040	S
	700	4040	9 T	S
	700	4040	12 T	C
  (FST 4,  Length = 2550)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs5: 5 26 29
	5 T	2550	380	S
	2550	380	26 T	S
	2550	380	29 T	C
  (FST 5,  Length = 5200)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs6: 5 26 29 13 40
	5 T	2550	1590	C
	2550	1590	26 T	S
	2550	1590	5400	1590	S
	5400	1590	29 T	S
	5400	1590	6790	1590	S
	6790	1590	13 T	S
	6790	1590	40 T	S
  (FST 6,  Length = 9260)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs7: 5 26 29 40 4
	5 T	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	7350	780	S
	7350	780	40 T	S
	7350	780	4 T	S
  (FST 7,  Length = 8710)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs8: 5 26 29 4 39
	5 T	2550	730	C
	2550	730	26 T	S
	2550	730	5400	730	S
	5400	730	29 T	S
	5400	730	7700	730	S
	7700	730	4 T	S
	7700	730	39 T	S
  (FST 8,  Length = 8300)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs9: 5 26 29 4
	5 T	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	4 T	S
  (FST 9,  Length = 7900)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs10: 5 29 13 40
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	6790	1590	C
	6790	1590	13 T	S
	6790	1590	40 T	S
  (FST 10,  Length = 7810)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs11: 5 29 40 4
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	7350	780	C
	7350	780	40 T	S
	7350	780	4 T	S
  (FST 11,  Length = 7260)
EndSmallPlot2

%%Page: 2 2
BeginSmallPlot
	Plot_Terminals
 % fs12: 5 29 4 39
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	7700	730	C
	7700	730	4 T	S
	7700	730	39 T	S
  (FST 12,  Length = 6850)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs13: 5 29 4
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	4 T	C
  (FST 13,  Length = 6450)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs14: 6 47 30
	6 T	210	9440	C
	210	9440	47 T	S
	210	9440	30 T	S
  (FST 14,  Length = 1180)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs15: 6 30 33 20
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	340	8650	C
	340	8650	33 T	S
	340	8650	20 T	S
  (FST 15,  Length = 3240)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs16: 6 30 33
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	33 T	C
  (FST 16,  Length = 1640)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs17: 6 30 20 1
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	1940	8870	C
	1940	8870	20 T	S
	1940	8870	1 T	S
  (FST 17,  Length = 3490)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs18: 6 30 20
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	20 T	C
  (FST 18,  Length = 2690)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs19: 6 33 20
	6 T	340	8650	C
	340	8650	33 T	S
	340	8650	20 T	S
  (FST 19,  Length = 2760)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs20: 6 20 1
	6 T	1940	8870	C
	1940	8870	20 T	S
	1940	8870	1 T	S
  (FST 20,  Length = 3010)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs21: 8 44 29
	8 T	1680	250	C
	1680	250	44 T	S
	1680	250	29 T	S
  (FST 21,  Length = 4410)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs22: 11 37 18
	11 T	570	6560	C
	570	6560	37 T	S
	570	6560	18 T	S
  (FST 22,  Length = 1790)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs23: 11 18 23
	11 T	1030	6850	C
	1030	6850	18 T	S
	1030	6850	23 T	S
  (FST 23,  Length = 1270)
EndSmallPlot2

%%Page: 3 3
BeginSmallPlot
	Plot_Terminals
 % fs24: 11 23 20 0
	11 T	1090	7120	S
	1090	7120	23 T	S
	1090	7120	1940	7530	C
	1940	7530	20 T	S
	1940	7530	0 T	S
  (FST 24,  Length = 4800)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs25: 12 18 19
	12 T	1030	5640	C
	1030	5640	18 T	S
	1030	5640	19 T	S
  (FST 25,  Length = 2480)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs26: 13 40 35 16
	13 T	7350	2490	S
	7350	2490	40 T	S
	7350	2490	9180	3730	C
	9180	3730	35 T	S
	9180	3730	16 T	S
  (FST 26,  Length = 4890)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs27: 13 40 35
	13 T	7350	2490	S
	7350	2490	40 T	S
	7350	2490	35 T	C
  (FST 27,  Length = 4630)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs28: 13 35 16
	13 T	9180	3730	C
	9180	3730	35 T	S
	9180	3730	16 T	S
  (FST 28,  Length = 3990)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs29: 14 20 0
	14 T	1940	7530	C
	1940	7530	20 T	S
	1940	7530	0 T	S
  (FST 29,  Length = 3900)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs30: 14 19 1 0
	14 T	2260	6820	S
	2260	6820	19 T	S
	2260	6820	2740	7530	C
	2740	7530	1 T	S
	2740	7530	0 T	S
  (FST 30,  Length = 5300)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs31: 15 45 2
	15 T	5930	7330	S
	5930	7330	45 T	S
	5930	7330	2 T	C
  (FST 31,  Length = 1440)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs32: 17 32 7
	17 T	7460	9720	C
	7460	9720	32 T	S
	7460	9720	7 T	S
  (FST 32,  Length = 3430)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs33: 18 23 14
	18 T	1090	6820	C
	1090	6820	23 T	S
	1090	6820	14 T	S
  (FST 33,  Length = 570)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs34: 20 1 0 27
	20 T	2740	8650	S
	2740	8650	1 T	S
	2740	8650	3380	7850	C
	3380	7850	0 T	S
	3380	7850	27 T	S
  (FST 34,  Length = 3090)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs35: 20 1 27
	20 T	2740	8650	S
	2740	8650	1 T	S
	2740	8650	27 T	C
  (FST 35,  Length = 2770)
EndSmallPlot2

%%Page: 4 4
BeginSmallPlot
	Plot_Terminals
 % fs36: 21 8 44
	21 T	1260	330	C
	1260	330	8 T	S
	1260	330	44 T	S
  (FST 36,  Length = 980)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs37: 21 44 5
	21 T	1680	380	C
	1680	380	44 T	S
	1680	380	5 T	S
  (FST 37,  Length = 810)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs38: 21 5 26 29 13 40
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	1590	C
	2550	1590	26 T	S
	2550	1590	5400	1590	S
	5400	1590	29 T	S
	5400	1590	6790	1590	S
	6790	1590	13 T	S
	6790	1590	40 T	S
  (FST 38,  Length = 9860)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs39: 21 5 26 29 40 4
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	7350	780	S
	7350	780	40 T	S
	7350	780	4 T	S
  (FST 39,  Length = 9310)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs40: 21 5 26 29 4 39
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	730	C
	2550	730	26 T	S
	2550	730	5400	730	S
	5400	730	29 T	S
	5400	730	7700	730	S
	7700	730	4 T	S
	7700	730	39 T	S
  (FST 40,  Length = 8900)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs41: 21 5 26 29 4
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	4 T	S
  (FST 41,  Length = 8500)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs42: 22 42 41
	22 T	8700	5680	C
	8700	5680	42 T	S
	8700	5680	41 T	S
  (FST 42,  Length = 1570)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs43: 22 41 48
	22 T	9210	6090	S
	9210	6090	41 T	S
	9210	6090	48 T	C
  (FST 43,  Length = 1890)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs44: 23 14 20 0
	23 T	1310	6850	S
	1310	6850	14 T	S
	1310	6850	1940	7530	C
	1940	7530	20 T	S
	1940	7530	0 T	S
  (FST 44,  Length = 4120)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs45: 24 32 10
	24 T	7460	7100	S
	7460	7100	32 T	S
	7460	7100	10 T	C
  (FST 45,  Length = 2280)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs46: 26 29 40
	26 T	5400	1590	C
	5400	1590	29 T	S
	5400	1590	40 T	S
  (FST 46,  Length = 6380)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs47: 26 29 13
	26 T	5400	1830	S
	5400	1830	29 T	S
	5400	1830	13 T	C
  (FST 47,  Length = 6480)
EndSmallPlot2

%%Page: 5 5
BeginSmallPlot
	Plot_Terminals
 % fs48: 26 29 13 40
	26 T	5400	1590	C
	5400	1590	29 T	S
	5400	1590	6790	1590	S
	6790	1590	13 T	S
	6790	1590	40 T	S
  (FST 48,  Length = 7280)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs49: 29 13 40
	29 T	6790	1590	C
	6790	1590	13 T	S
	6790	1590	40 T	S
  (FST 49,  Length = 4190)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs50: 29 40 4
	29 T	7350	780	C
	7350	780	40 T	S
	7350	780	4 T	S
  (FST 50,  Length = 3640)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs51: 29 4 39
	29 T	7700	730	C
	7700	730	4 T	S
	7700	730	39 T	S
  (FST 51,  Length = 3230)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs52: 31 17 7
	31 T	6190	9720	C
	6190	9720	17 T	S
	6190	9720	7 T	S
  (FST 52,  Length = 3110)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs53: 31 17 32 7
	31 T	6190	9720	C
	6190	9720	17 T	S
	6190	9720	7460	9720	S
	7460	9720	32 T	S
	7460	9720	7 T	S
  (FST 53,  Length = 4660)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs54: 32 7 28
	32 T	7800	8440	C
	7800	8440	7 T	S
	7800	8440	28 T	S
  (FST 54,  Length = 2590)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs55: 33 11 20
	33 T	380	8100	S
	380	8100	11 T	S
	380	8100	20 T	C
  (FST 55,  Length = 3130)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs56: 34 36 46
	34 T	410	1480	S
	410	1480	36 T	S
	410	1480	46 T	C
  (FST 56,  Length = 1210)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs57: 35 41 43
	35 T	9210	4570	C
	9210	4570	41 T	S
	9210	4570	43 T	S
  (FST 57,  Length = 2050)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs58: 35 43 16
	35 T	9380	3830	S
	9380	3830	43 T	S
	9380	3830	16 T	C
  (FST 58,  Length = 1100)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs59: 36 46 9 25
	36 T	440	1680	S
	440	1680	46 T	S
	440	1680	700	1970	C
	700	1970	9 T	S
	700	1970	25 T	S
  (FST 59,  Length = 2940)
EndSmallPlot2

%%Page: 6 6
BeginSmallPlot
	Plot_Terminals
 % fs60: 36 46 25 49
	36 T	440	1680	S
	440	1680	46 T	S
	440	1680	780	1880	C
	780	1880	25 T	S
	780	1880	49 T	S
  (FST 60,  Length = 3170)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs61: 36 46 25
	36 T	440	1680	S
	440	1680	46 T	S
	440	1680	25 T	C
  (FST 61,  Length = 1660)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs62: 36 9 25
	36 T	700	1970	C
	700	1970	9 T	S
	700	1970	25 T	S
  (FST 62,  Length = 1940)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs63: 36 25 49
	36 T	780	1880	C
	780	1880	25 T	S
	780	1880	49 T	S
  (FST 63,  Length = 2170)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs64: 37 12 19
	37 T	710	5640	C
	710	5640	12 T	S
	710	5640	19 T	S
  (FST 64,  Length = 2040)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs65: 37 12 18
	37 T	710	5980	S
	710	5980	12 T	S
	710	5980	18 T	C
  (FST 65,  Length = 1390)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs66: 38 15 45
	38 T	5030	7480	C
	5030	7480	15 T	S
	5030	7480	45 T	S
  (FST 66,  Length = 1990)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs67: 40 4 35 16
	40 T	7700	1590	S
	7700	1590	4 T	S
	7700	1590	9180	3730	C
	9180	3730	35 T	S
	9180	3730	16 T	S
  (FST 67,  Length = 5140)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs68: 40 4 35
	40 T	7700	1590	S
	7700	1590	4 T	S
	7700	1590	35 T	C
  (FST 68,  Length = 4880)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs69: 41 43 48
	41 T	9380	5680	S
	9380	5680	43 T	S
	9380	5680	48 T	C
  (FST 69,  Length = 2240)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs70: 42 41 43
	42 T	9210	5280	S
	9210	5280	41 T	S
	9210	5280	43 T	C
  (FST 70,  Length = 1790)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs71: 44 5 29
	44 T	1780	330	S
	1780	330	5 T	S
	1780	330	29 T	C
  (FST 71,  Length = 3850)
EndSmallPlot2

%%Page: 7 7
BeginSmallPlot
	Plot_Terminals
 % fs72: 9 3 12 37
	570	4040	9 T	C
	570	4040	3 T	S
	570	4040	570	5630	S
	570	5630	12 T	S
	570	5630	37 T	S
  (FST 72,  Length = 3030)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs73: 12 19 37 18
	12 T	710	5640	S
	710	5640	19 T	S
	710	5640	710	5980	S
	710	5980	37 T	S
	710	5980	18 T	C
  (FST 73,  Length = 2940)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs74: 19 14 0 20
	1940	6820	19 T	C
	1940	6820	14 T	S
	1940	6820	1940	7530	S
	1940	7530	0 T	S
	1940	7530	20 T	S
  (FST 74,  Length = 5400)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs75: 19 14 0 20 1
	19 T	2260	6820	S
	2260	6820	14 T	S
	2260	6820	2260	7530	S
	2260	7530	0 T	S
	2260	7530	2260	8650	S
	2260	8650	20 T	S
	2260	8650	1 T	C
  (FST 75,  Length = 6100)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs76: 35 43 42 41
	35 T	9180	4570	S
	9180	4570	43 T	S
	9180	4570	9180	5280	S
	9180	5280	42 T	S
	9180	5280	41 T	C
  (FST 76,  Length = 2560)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs77: 5 44
	44 T	5 T	C
  (FST 77,  Length = 150)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs78: 14 23
	23 T	14 T	C
  (FST 78,  Length = 250)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs79: 26 49
	49 T	26 T	C
  (FST 79,  Length = 310)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs80: 18 23
	18 T	23 T	C
  (FST 80,  Length = 350)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs81: 16 35
	35 T	16 T	C
  (FST 81,  Length = 360)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs82: 34 36
	34 T	36 T	C
  (FST 82,  Length = 380)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs83: 4 39
	4 T	39 T	C
  (FST 83,  Length = 450)
EndSmallPlot2

%%Page: 8 8
BeginSmallPlot
	Plot_Terminals
 % fs84: 12 37
	37 T	12 T	C
  (FST 84,  Length = 490)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs85: 30 47
	47 T	30 T	C
  (FST 85,  Length = 530)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs86: 2 45
	45 T	2 T	C
  (FST 86,  Length = 540)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs87: 8 21
	21 T	8 T	C
  (FST 87,  Length = 560)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs88: 0 27
	0 T	27 T	C
  (FST 88,  Length = 630)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs89: 25 36
	36 T	25 T	C
  (FST 89,  Length = 660)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs90: 8 44
	8 T	44 T	C
  (FST 90,  Length = 690)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs91: 6 30
	6 T	30 T	C
  (FST 91,  Length = 730)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs92: 27 38
	27 T	38 T	C
  (FST 92,  Length = 770)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs93: 21 46
	46 T	21 T	C
  (FST 93,  Length = 880)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs94: 16 43
	43 T	16 T	C
  (FST 94,  Length = 900)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs95: 41 42
	42 T	41 T	C
  (FST 95,  Length = 910)
EndSmallPlot2

%%Page: 9 9
BeginSmallPlot
	Plot_Terminals
 % fs96: 3 9
	3 T	9 T	C
  (FST 96,  Length = 950)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs97: 11 23
	11 T	23 T	C
  (FST 97,  Length = 980)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs98: 34 46
	34 T	46 T	C
  (FST 98,  Length = 1010)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs99: 11 33
	33 T	11 T	C
  (FST 99,  Length = 1020)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs100: 1 20
	20 T	1 T	C
  (FST 100,  Length = 1020)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs101: 18 37
	37 T	18 T	C
  (FST 101,  Length = 1040)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs102: 15 45
	15 T	45 T	C
  (FST 102,  Length = 1050)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs103: 2 24
	2 T	24 T	C
  (FST 103,  Length = 1060)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs104: 22 42
	22 T	42 T	C
  (FST 104,  Length = 1060)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs105: 15 38
	38 T	15 T	C
  (FST 105,  Length = 1090)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs106: 10 22
	10 T	22 T	C
  (FST 106,  Length = 1100)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs107: 41 48
	41 T	48 T	C
  (FST 107,  Length = 1130)
EndSmallPlot2

%%Page: 10 10
BeginSmallPlot
	Plot_Terminals
 % fs108: 4 40
	40 T	4 T	C
  (FST 108,  Length = 1160)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs109: 6 33
	6 T	33 T	C
  (FST 109,  Length = 1160)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs110: 10 24
	24 T	10 T	C
  (FST 110,  Length = 1210)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs111: 41 43
	41 T	43 T	C
  (FST 111,  Length = 1280)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs112: 28 32
	32 T	28 T	C
  (FST 112,  Length = 1310)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs113: 9 25
	9 T	25 T	C
  (FST 113,  Length = 1360)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs114: 24 32
	24 T	32 T	C
  (FST 114,  Length = 1380)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs115: 13 40
	13 T	40 T	C
  (FST 115,  Length = 1460)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs116: 17 31
	31 T	17 T	C
  (FST 116,  Length = 1500)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs117: 12 19
	12 T	19 T	C
  (FST 117,  Length = 1560)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs118: 25 49
	25 T	49 T	C
  (FST 118,  Length = 1600)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs119: 3 12
	3 T	12 T	C
  (FST 119,  Length = 1760)
EndSmallPlot2

%%Page: 11 11
BeginSmallPlot
	Plot_Terminals
 % fs120: 7 17
	17 T	7 T	C
  (FST 120,  Length = 1880)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs121: 7 32
	32 T	7 T	C
  (FST 121,  Length = 1890)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs122: 1 27
	1 T	27 T	C
  (FST 122,  Length = 1970)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs123: 20 33
	33 T	20 T	C
  (FST 123,  Length = 2150)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs124: 4 29
	29 T	4 T	C
  (FST 124,  Length = 2830)
EndSmallPlot2

BeginSmallPlot
	Plot_Terminals
 % fs125: 13 35
	13 T	35 T	C
  (FST 125,  Length = 3730)
EndSmallPlot2

FlushSmallPlot
%%Page: 12 12
BeginSmallPlot
 % fs125: 13 35
	13 T	35 T	C
 % fs124: 4 29
	29 T	4 T	C
 % fs123: 20 33
	33 T	20 T	C
 % fs122: 1 27
	1 T	27 T	C
 % fs121: 7 32
	32 T	7 T	C
 % fs119: 3 12
	3 T	12 T	C
 % fs118: 25 49
	25 T	49 T	C
 % fs116: 17 31
	31 T	17 T	C
 % fs111: 41 43
	41 T	43 T	C
 % fs110: 10 24
	24 T	10 T	C
 % fs105: 15 38
	38 T	15 T	C
 % fs104: 22 42
	22 T	42 T	C
 % fs101: 18 37
	37 T	18 T	C
 % fs98: 34 46
	34 T	46 T	C
 % fs97: 11 23
	11 T	23 T	C
 % fs91: 6 30
	6 T	30 T	C
 % fs90: 8 44
	8 T	44 T	C
 % fs86: 2 45
	45 T	2 T	C
	Plot_Terminals
  (FSTs 86, 90, 91, 97, 98, 101, 104, 105, 110, 111, 116, 118, 119, 121, 122, 123, 124, 125.)
EndSmallPlot2

BeginSmallPlot
 % fs120: 7 17
	17 T	7 T	C
 % fs117: 12 19
	12 T	19 T	C
 % fs115: 13 40
	13 T	40 T	C
 % fs114: 24 32
	24 T	32 T	C
 % fs113: 9 25
	9 T	25 T	C
 % fs109: 6 33
	6 T	33 T	C
 % fs107: 41 48
	41 T	48 T	C
 % fs106: 10 22
	10 T	22 T	C
 % fs102: 15 45
	15 T	45 T	C
 % fs100: 1 20
	20 T	1 T	C
 % fs94: 16 43
	43 T	16 T	C
 % fs93: 21 46
	46 T	21 T	C
 % fs92: 27 38
	27 T	38 T	C
 % fs85: 30 47
	47 T	30 T	C
 % fs83: 4 39
	4 T	39 T	C
 % fs82: 34 36
	34 T	36 T	C
 % fs80: 18 23
	18 T	23 T	C
 % fs79: 26 49
	49 T	26 T	C
 % fs77: 5 44
	44 T	5 T	C
	Plot_Terminals
  (FSTs 77, 79, 80, 82, 83, 85, 92, 93, 94, 100, 102, 106, 107, 109, 113, 114, 115, 117, 120.)
EndSmallPlot2

BeginSmallPlot
 % fs112: 28 32
	32 T	28 T	C
 % fs108: 4 40
	40 T	4 T	C
 % fs103: 2 24
	2 T	24 T	C
 % fs99: 11 33
	33 T	11 T	C
 % fs96: 3 9
	3 T	9 T	C
 % fs95: 41 42
	42 T	41 T	C
 % fs89: 25 36
	36 T	25 T	C
 % fs88: 0 27
	0 T	27 T	C
 % fs87: 8 21
	21 T	8 T	C
 % fs84: 12 37
	37 T	12 T	C
 % fs81: 16 35
	35 T	16 T	C
 % fs78: 14 23
	23 T	14 T	C
 % fs71: 44 5 29
	44 T	1780	330	S
	1780	330	5 T	S
	1780	330	29 T	C
 % fs66: 38 15 45
	38 T	5030	7480	C
	5030	7480	15 T	S
	5030	7480	45 T	S
 % fs52: 31 17 7
	31 T	6190	9720	C
	6190	9720	17 T	S
	6190	9720	7 T	S
 % fs20: 6 20 1
	6 T	1940	8870	C
	1940	8870	20 T	S
	1940	8870	1 T	S
	Plot_Terminals
  (FSTs 20, 52, 66, 71, 78, 81, 84, 87, 88, 89, 95, 96, 99, 103, 108, 112.)
EndSmallPlot2

BeginSmallPlot
 % fs76: 35 43 42 41
	35 T	9180	4570	S
	9180	4570	43 T	S
	9180	4570	9180	5280	S
	9180	5280	42 T	S
	9180	5280	41 T	C
 % fs75: 19 14 0 20 1
	19 T	2260	6820	S
	2260	6820	14 T	S
	2260	6820	2260	7530	S
	2260	7530	0 T	S
	2260	7530	2260	8650	S
	2260	8650	20 T	S
	2260	8650	1 T	C
 % fs72: 9 3 12 37
	570	4040	9 T	C
	570	4040	3 T	S
	570	4040	570	5630	S
	570	5630	12 T	S
	570	5630	37 T	S
 % fs63: 36 25 49
	36 T	780	1880	C
	780	1880	25 T	S
	780	1880	49 T	S
 % fs54: 32 7 28
	32 T	7800	8440	C
	7800	8440	7 T	S
	7800	8440	28 T	S
 % fs51: 29 4 39
	29 T	7700	730	C
	7700	730	4 T	S
	7700	730	39 T	S
 % fs37: 21 44 5
	21 T	1680	380	C
	1680	380	44 T	S
	1680	380	5 T	S
 % fs31: 15 45 2
	15 T	5930	7330	S
	5930	7330	45 T	S
	5930	7330	2 T	C
 % fs23: 11 18 23
	11 T	1030	6850	C
	1030	6850	18 T	S
	1030	6850	23 T	S
 % fs16: 6 30 33
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	33 T	C
	Plot_Terminals
  (FSTs 16, 23, 31, 37, 51, 54, 63, 72, 75, 76.)
EndSmallPlot2

BeginSmallPlot
 % fs74: 19 14 0 20
	1940	6820	19 T	C
	1940	6820	14 T	S
	1940	6820	1940	7530	S
	1940	7530	0 T	S
	1940	7530	20 T	S
 % fs70: 42 41 43
	42 T	9210	5280	S
	9210	5280	41 T	S
	9210	5280	43 T	C
 % fs68: 40 4 35
	40 T	7700	1590	S
	7700	1590	4 T	S
	7700	1590	35 T	C
 % fs65: 37 12 18
	37 T	710	5980	S
	710	5980	12 T	S
	710	5980	18 T	C
 % fs62: 36 9 25
	36 T	700	1970	C
	700	1970	9 T	S
	700	1970	25 T	S
 % fs53: 31 17 32 7
	31 T	6190	9720	C
	6190	9720	17 T	S
	6190	9720	7460	9720	S
	7460	9720	32 T	S
	7460	9720	7 T	S
 % fs47: 26 29 13
	26 T	5400	1830	S
	5400	1830	29 T	S
	5400	1830	13 T	C
 % fs36: 21 8 44
	21 T	1260	330	C
	1260	330	8 T	S
	1260	330	44 T	S
 % fs14: 6 47 30
	6 T	210	9440	C
	210	9440	47 T	S
	210	9440	30 T	S
	Plot_Terminals
  (FSTs 14, 36, 47, 53, 62, 65, 68, 70, 74.)
EndSmallPlot2

BeginSmallPlot
 % fs73: 12 19 37 18
	12 T	710	5640	S
	710	5640	19 T	S
	710	5640	710	5980	S
	710	5980	37 T	S
	710	5980	18 T	C
 % fs69: 41 43 48
	41 T	9380	5680	S
	9380	5680	43 T	S
	9380	5680	48 T	C
 % fs67: 40 4 35 16
	40 T	7700	1590	S
	7700	1590	4 T	S
	7700	1590	9180	3730	C
	9180	3730	35 T	S
	9180	3730	16 T	S
 % fs61: 36 46 25
	36 T	440	1680	S
	440	1680	46 T	S
	440	1680	25 T	C
 % fs55: 33 11 20
	33 T	380	8100	S
	380	8100	11 T	S
	380	8100	20 T	C
 % fs45: 24 32 10
	24 T	7460	7100	S
	7460	7100	32 T	S
	7460	7100	10 T	C
 % fs21: 8 44 29
	8 T	1680	250	C
	1680	250	44 T	S
	1680	250	29 T	S
 % fs1: 1 0 27
	1 T	3380	7850	C
	3380	7850	0 T	S
	3380	7850	27 T	S
	Plot_Terminals
  (FSTs 1, 21, 45, 55, 61, 67, 69, 73.)
EndSmallPlot2

BeginSmallPlot
 % fs64: 37 12 19
	37 T	710	5640	C
	710	5640	12 T	S
	710	5640	19 T	S
 % fs60: 36 46 25 49
	36 T	440	1680	S
	440	1680	46 T	S
	440	1680	780	1880	C
	780	1880	25 T	S
	780	1880	49 T	S
 % fs58: 35 43 16
	35 T	9380	3830	S
	9380	3830	43 T	S
	9380	3830	16 T	C
 % fs50: 29 40 4
	29 T	7350	780	C
	7350	780	40 T	S
	7350	780	4 T	S
 % fs44: 23 14 20 0
	23 T	1310	6850	S
	1310	6850	14 T	S
	1310	6850	1940	7530	C
	1940	7530	20 T	S
	1940	7530	0 T	S
 % fs43: 22 41 48
	22 T	9210	6090	S
	9210	6090	41 T	S
	9210	6090	48 T	C
 % fs32: 17 32 7
	17 T	7460	9720	C
	7460	9720	32 T	S
	7460	9720	7 T	S
	Plot_Terminals
  (FSTs 32, 43, 44, 50, 58, 60, 64.)
EndSmallPlot2

BeginSmallPlot
 % fs59: 36 46 9 25
	36 T	440	1680	S
	440	1680	46 T	S
	440	1680	700	1970	C
	700	1970	9 T	S
	700	1970	25 T	S
 % fs57: 35 41 43
	35 T	9210	4570	C
	9210	4570	41 T	S
	9210	4570	43 T	S
 % fs49: 29 13 40
	29 T	6790	1590	C
	6790	1590	13 T	S
	6790	1590	40 T	S
 % fs35: 20 1 27
	20 T	2740	8650	S
	2740	8650	1 T	S
	2740	8650	27 T	C
 % fs33: 18 23 14
	18 T	1090	6820	C
	1090	6820	23 T	S
	1090	6820	14 T	S
 % fs3: 3 37 12
	3 T	570	5630	C
	570	5630	37 T	S
	570	5630	12 T	S
 % fs2: 2 24 32
	2 T	7150	7300	S
	7150	7300	24 T	S
	7150	7300	32 T	C
	Plot_Terminals
  (FSTs 2, 3, 33, 35, 49, 57, 59.)
EndSmallPlot2

BeginSmallPlot
 % fs56: 34 36 46
	34 T	410	1480	S
	410	1480	36 T	S
	410	1480	46 T	C
 % fs48: 26 29 13 40
	26 T	5400	1590	C
	5400	1590	29 T	S
	5400	1590	6790	1590	S
	6790	1590	13 T	S
	6790	1590	40 T	S
 % fs42: 22 42 41
	22 T	8700	5680	C
	8700	5680	42 T	S
	8700	5680	41 T	S
 % fs34: 20 1 0 27
	20 T	2740	8650	S
	2740	8650	1 T	S
	2740	8650	3380	7850	C
	3380	7850	0 T	S
	3380	7850	27 T	S
 % fs25: 12 18 19
	12 T	1030	5640	C
	1030	5640	18 T	S
	1030	5640	19 T	S
	Plot_Terminals
  (FSTs 25, 34, 42, 48, 56.)
EndSmallPlot2

BeginSmallPlot
 % fs46: 26 29 40
	26 T	5400	1590	C
	5400	1590	29 T	S
	5400	1590	40 T	S
 % fs30: 14 19 1 0
	14 T	2260	6820	S
	2260	6820	19 T	S
	2260	6820	2740	7530	C
	2740	7530	1 T	S
	2740	7530	0 T	S
 % fs28: 13 35 16
	13 T	9180	3730	C
	9180	3730	35 T	S
	9180	3730	16 T	S
 % fs22: 11 37 18
	11 T	570	6560	C
	570	6560	37 T	S
	570	6560	18 T	S
 % fs19: 6 33 20
	6 T	340	8650	C
	340	8650	33 T	S
	340	8650	20 T	S
 % fs4: 3 9 12
	3 T	700	4040	S
	700	4040	9 T	S
	700	4040	12 T	C
	Plot_Terminals
  (FSTs 4, 19, 22, 28, 30, 46.)
EndSmallPlot2

BeginSmallPlot
 % fs41: 21 5 26 29 4
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	4 T	S
 % fs29: 14 20 0
	14 T	1940	7530	C
	1940	7530	20 T	S
	1940	7530	0 T	S
 % fs27: 13 40 35
	13 T	7350	2490	S
	7350	2490	40 T	S
	7350	2490	35 T	C
	Plot_Terminals
  (FSTs 27, 29, 41.)
EndSmallPlot2

BeginSmallPlot
 % fs40: 21 5 26 29 4 39
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	730	C
	2550	730	26 T	S
	2550	730	5400	730	S
	5400	730	29 T	S
	5400	730	7700	730	S
	7700	730	4 T	S
	7700	730	39 T	S
 % fs26: 13 40 35 16
	13 T	7350	2490	S
	7350	2490	40 T	S
	7350	2490	9180	3730	C
	9180	3730	35 T	S
	9180	3730	16 T	S
 % fs24: 11 23 20 0
	11 T	1090	7120	S
	1090	7120	23 T	S
	1090	7120	1940	7530	C
	1940	7530	20 T	S
	1940	7530	0 T	S
	Plot_Terminals
  (FSTs 24, 26, 40.)
EndSmallPlot2

%%Page: 13 13
BeginSmallPlot
 % fs39: 21 5 26 29 40 4
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	7350	780	S
	7350	780	40 T	S
	7350	780	4 T	S
 % fs18: 6 30 20
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	20 T	C
 % fs0: 0 27 38
	0 T	3690	7720	C
	3690	7720	27 T	S
	3690	7720	38 T	S
	Plot_Terminals
  (FSTs 0, 18, 39.)
EndSmallPlot2

BeginSmallPlot
 % fs38: 21 5 26 29 13 40
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	1590	C
	2550	1590	26 T	S
	2550	1590	5400	1590	S
	5400	1590	29 T	S
	5400	1590	6790	1590	S
	6790	1590	13 T	S
	6790	1590	40 T	S
 % fs17: 6 30 20 1
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	1940	8870	C
	1940	8870	20 T	S
	1940	8870	1 T	S
	Plot_Terminals
  (FSTs 17, 38.)
EndSmallPlot2

BeginSmallPlot
 % fs15: 6 30 33 20
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	340	8650	C
	340	8650	33 T	S
	340	8650	20 T	S
 % fs13: 5 29 4
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	4 T	C
	Plot_Terminals
  (FSTs 13, 15.)
EndSmallPlot2

BeginSmallPlot
 % fs12: 5 29 4 39
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	7700	730	C
	7700	730	4 T	S
	7700	730	39 T	S
	Plot_Terminals
  (FST 12.)
EndSmallPlot2

BeginSmallPlot
 % fs11: 5 29 40 4
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	7350	780	C
	7350	780	40 T	S
	7350	780	4 T	S
	Plot_Terminals
  (FST 11.)
EndSmallPlot2

BeginSmallPlot
 % fs10: 5 29 13 40
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	6790	1590	C
	6790	1590	13 T	S
	6790	1590	40 T	S
	Plot_Terminals
  (FST 10.)
EndSmallPlot2

BeginSmallPlot
 % fs9: 5 26 29 4
	5 T	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	4 T	S
	Plot_Terminals
  (FST 9.)
EndSmallPlot2

BeginSmallPlot
 % fs8: 5 26 29 4 39
	5 T	2550	730	C
	2550	730	26 T	S
	2550	730	5400	730	S
	5400	730	29 T	S
	5400	730	7700	730	S
	7700	730	4 T	S
	7700	730	39 T	S
	Plot_Terminals
  (FST 8.)
EndSmallPlot2

BeginSmallPlot
 % fs7: 5 26 29 40 4
	5 T	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	7350	780	S
	7350	780	40 T	S
	7350	780	4 T	S
	Plot_Terminals
  (FST 7.)
EndSmallPlot2

BeginSmallPlot
 % fs6: 5 26 29 13 40
	5 T	2550	1590	C
	2550	1590	26 T	S
	2550	1590	5400	1590	S
	5400	1590	29 T	S
	5400	1590	6790	1590	S
	6790	1590	13 T	S
	6790	1590	40 T	S
	Plot_Terminals
  (FST 6.)
EndSmallPlot2

BeginSmallPlot
 % fs5: 5 26 29
	5 T	2550	380	S
	2550	380	26 T	S
	2550	380	29 T	C
	Plot_Terminals
  (FST 5.)
EndSmallPlot2

FlushSmallPlot
%%Page: 14 14
BeginPlot
	Plot_Terminals
 % fs0: 0 27 38
	0 T	3690	7720	C
	3690	7720	27 T	S
	3690	7720	38 T	S
 % fs1: 1 0 27
	1 T	3380	7850	C
	3380	7850	0 T	S
	3380	7850	27 T	S
 % fs2: 2 24 32
	2 T	7150	7300	S
	7150	7300	24 T	S
	7150	7300	32 T	C
 % fs3: 3 37 12
	3 T	570	5630	C
	570	5630	37 T	S
	570	5630	12 T	S
 % fs4: 3 9 12
	3 T	700	4040	S
	700	4040	9 T	S
	700	4040	12 T	C
 % fs5: 5 26 29
	5 T	2550	380	S
	2550	380	26 T	S
	2550	380	29 T	C
 % fs6: 5 26 29 13 40
	5 T	2550	1590	C
	2550	1590	26 T	S
	2550	1590	5400	1590	S
	5400	1590	29 T	S
	5400	1590	6790	1590	S
	6790	1590	13 T	S
	6790	1590	40 T	S
 % fs7: 5 26 29 40 4
	5 T	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	7350	780	S
	7350	780	40 T	S
	7350	780	4 T	S
 % fs8: 5 26 29 4 39
	5 T	2550	730	C
	2550	730	26 T	S
	2550	730	5400	730	S
	5400	730	29 T	S
	5400	730	7700	730	S
	7700	730	4 T	S
	7700	730	39 T	S
 % fs9: 5 26 29 4
	5 T	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	4 T	S
 % fs10: 5 29 13 40
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	6790	1590	C
	6790	1590	13 T	S
	6790	1590	40 T	S
 % fs11: 5 29 40 4
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	7350	780	C
	7350	780	40 T	S
	7350	780	4 T	S
 % fs12: 5 29 4 39
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	7700	730	C
	7700	730	4 T	S
	7700	730	39 T	S
 % fs13: 5 29 4
	5 T	5400	380	S
	5400	380	29 T	S
	5400	380	4 T	C
 % fs14: 6 47 30
	6 T	210	9440	C
	210	9440	47 T	S
	210	9440	30 T	S
 % fs15: 6 30 33 20
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	340	8650	C
	340	8650	33 T	S
	340	8650	20 T	S
 % fs16: 6 30 33
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	33 T	C
 % fs17: 6 30 20 1
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	1940	8870	C
	1940	8870	20 T	S
	1940	8870	1 T	S
 % fs18: 6 30 20
	6 T	290	8960	S
	290	8960	30 T	S
	290	8960	20 T	C
 % fs19: 6 33 20
	6 T	340	8650	C
	340	8650	33 T	S
	340	8650	20 T	S
 % fs20: 6 20 1
	6 T	1940	8870	C
	1940	8870	20 T	S
	1940	8870	1 T	S
 % fs21: 8 44 29
	8 T	1680	250	C
	1680	250	44 T	S
	1680	250	29 T	S
 % fs22: 11 37 18
	11 T	570	6560	C
	570	6560	37 T	S
	570	6560	18 T	S
 % fs23: 11 18 23
	11 T	1030	6850	C
	1030	6850	18 T	S
	1030	6850	23 T	S
 % fs24: 11 23 20 0
	11 T	1090	7120	S
	1090	7120	23 T	S
	1090	7120	1940	7530	C
	1940	7530	20 T	S
	1940	7530	0 T	S
 % fs25: 12 18 19
	12 T	1030	5640	C
	1030	5640	18 T	S
	1030	5640	19 T	S
 % fs26: 13 40 35 16
	13 T	7350	2490	S
	7350	2490	40 T	S
	7350	2490	9180	3730	C
	9180	3730	35 T	S
	9180	3730	16 T	S
 % fs27: 13 40 35
	13 T	7350	2490	S
	7350	2490	40 T	S
	7350	2490	35 T	C
 % fs28: 13 35 16
	13 T	9180	3730	C
	9180	3730	35 T	S
	9180	3730	16 T	S
 % fs29: 14 20 0
	14 T	1940	7530	C
	1940	7530	20 T	S
	1940	7530	0 T	S
 % fs30: 14 19 1 0
	14 T	2260	6820	S
	2260	6820	19 T	S
	2260	6820	2740	7530	C
	2740	7530	1 T	S
	2740	7530	0 T	S
 % fs31: 15 45 2
	15 T	5930	7330	S
	5930	7330	45 T	S
	5930	7330	2 T	C
 % fs32: 17 32 7
	17 T	7460	9720	C
	7460	9720	32 T	S
	7460	9720	7 T	S
 % fs33: 18 23 14
	18 T	1090	6820	C
	1090	6820	23 T	S
	1090	6820	14 T	S
 % fs34: 20 1 0 27
	20 T	2740	8650	S
	2740	8650	1 T	S
	2740	8650	3380	7850	C
	3380	7850	0 T	S
	3380	7850	27 T	S
 % fs35: 20 1 27
	20 T	2740	8650	S
	2740	8650	1 T	S
	2740	8650	27 T	C
 % fs36: 21 8 44
	21 T	1260	330	C
	1260	330	8 T	S
	1260	330	44 T	S
 % fs37: 21 44 5
	21 T	1680	380	C
	1680	380	44 T	S
	1680	380	5 T	S
 % fs38: 21 5 26 29 13 40
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	1590	C
	2550	1590	26 T	S
	2550	1590	5400	1590	S
	5400	1590	29 T	S
	5400	1590	6790	1590	S
	6790	1590	13 T	S
	6790	1590	40 T	S
 % fs39: 21 5 26 29 40 4
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	7350	780	S
	7350	780	40 T	S
	7350	780	4 T	S
 % fs40: 21 5 26 29 4 39
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	730	C
	2550	730	26 T	S
	2550	730	5400	730	S
	5400	730	29 T	S
	5400	730	7700	730	S
	7700	730	4 T	S
	7700	730	39 T	S
 % fs41: 21 5 26 29 4
	21 T	1780	540	S
	1780	540	5 T	S
	1780	540	2550	780	C
	2550	780	26 T	S
	2550	780	5400	780	S
	5400	780	29 T	S
	5400	780	4 T	S
 % fs42: 22 42 41
	22 T	8700	5680	C
	8700	5680	42 T	S
	8700	5680	41 T	S
 % fs43: 22 41 48
	22 T	9210	6090	S
	9210	6090	41 T	S
	9210	6090	48 T	C
 % fs44: 23 14 20 0
	23 T	1310	6850	S
	1310	6850	14 T	S
	1310	6850	1940	7530	C
	1940	7530	20 T	S
	1940	7530	0 T	S
 % fs45: 24 32 10
	24 T	7460	7100	S
	7460	7100	32 T	S
	7460	7100	10 T	C
 % fs46: 26 29 40
	26 T	5400	1590	C
	5400	1590	29 T	S
	5400	1590	40 T	S
 % fs47: 26 29 13
	26 T	5400	1830	S
	5400	1830	29 T	S
	5400	1830	13 T	C
 % fs48: 26 29 13 40
	26 T	5400	1590	C
	5400	1590	29 T	S
	5400	1590	6790	1590	S
	6790	1590	13 T	S
	6790	1590	40 T	S
 % fs49: 29 13 40
	29 T	6790	1590	C
	6790	1590	13 T	S
	6790	1590	40 T	S
 % fs50: 29 40 4
	29 T	7350	780	C
	7350	780	40 T	S
	7350	780	4 T	S
 % fs51: 29 4 39
	29 T	7700	730	C
	7700	730	4 T	S
	7700	730	39 T	S
 % fs52: 31 17 7
	31 T	6190	9720	C
	6190	9720	17 T	S
	6190	9720	7 T	S
 % fs53: 31 17 32 7
	31 T	6190	9720	C
	6190	9720	17 T	S
	6190	9720	7460	9720	S
	7460	9720	32 T	S
	7460	9720	7 T	S
 % fs54: 32 7 28
	32 T	7800	8440	C
	7800	8440	7 T	S
	7800	8440	28 T	S
 % fs55: 33 11 20
	33 T	380	8100	S
	380	8100	11 T	S
	380	8100	20 T	C
 % fs56: 34 36 46
	34 T	410	1480	S
	410	1480	36 T	S
	410	1480	46 T	C
 % fs57: 35 41 43
	35 T	9210	4570	C
	9210	4570	41 T	S
	9210	4570	43 T	S
 % fs58: 35 43 16
	35 T	9380	3830	S
	9380	3830	43 T	S
	9380	3830	16 T	C
 % fs59: 36 46 9 25
	36 T	440	1680	S
	440	1680	46 T	S
	440	1680	700	1970	C
	700	1970	9 T	S
	700	1970	25 T	S
 % fs60: 36 46 25 49
	36 T	440	1680	S
	440	1680	46 T	S
	440	1680	780	1880	C
	780	1880	25 T	S
	780	1880	49 T	S
 % fs61: 36 46 25
	36 T	440	1680	S
	440	1680	46 T	S
	440	1680	25 T	C
 % fs62: 36 9 25
	36 T	700	1970	C
	700	1970	9 T	S
	700	1970	25 T	S
 % fs63: 36 25 49
	36 T	780	1880	C
	780	1880	25 T	S
	780	1880	49 T	S
 % fs64: 37 12 19
	37 T	710	5640	C
	710	5640	12 T	S
	710	5640	19 T	S
 % fs65: 37 12 18
	37 T	710	5980	S
	710	5980	12 T	S
	710	5980	18 T	C
 % fs66: 38 15 45
	38 T	5030	7480	C
	5030	7480	15 T	S
	5030	7480	45 T	S
 % fs67: 40 4 35 16
	40 T	7700	1590	S
	7700	1590	4 T	S
	7700	1590	9180	3730	C
	9180	3730	35 T	S
	9180	3730	16 T	S
 % fs68: 40 4 35
	40 T	7700	1590	S
	7700	1590	4 T	S
	7700	1590	35 T	C
 % fs69: 41 43 48
	41 T	9380	5680	S
	9380	5680	43 T	S
	9380	5680	48 T	C
 % fs70: 42 41 43
	42 T	9210	5280	S
	9210	5280	41 T	S
	9210	5280	43 T	C
 % fs71: 44 5 29
	44 T	1780	330	S
	1780	330	5 T	S
	1780	330	29 T	C
 % fs72: 9 3 12 37
	570	4040	9 T	C
	570	4040	3 T	S
	570	4040	570	5630	S
	570	5630	12 T	S
	570	5630	37 T	S
 % fs73: 12 19 37 18
	12 T	710	5640	S
	710	5640	19 T	S
	710	5640	710	5980	S
	710	5980	37 T	S
	710	5980	18 T	C
 % fs74: 19 14 0 20
	1940	6820	19 T	C
	1940	6820	14 T	S
	1940	6820	1940	7530	S
	1940	7530	0 T	S
	1940	7530	20 T	S
 % fs75: 19 14 0 20 1
	19 T	2260	6820	S
	2260	6820	14 T	S
	2260	6820	2260	7530	S
	2260	7530	0 T	S
	2260	7530	2260	8650	S
	2260	8650	20 T	S
	2260	8650	1 T	C
 % fs76: 35 43 42 41
	35 T	9180	4570	S
	9180	4570	43 T	S
	9180	4570	9180	5280	S
	9180	5280	42 T	S
	9180	5280	41 T	C
 % fs77: 5 44
	44 T	5 T	C
 % fs78: 14 23
	23 T	14 T	C
 % fs79: 26 49
	49 T	26 T	C
 % fs80: 18 23
	18 T	23 T	C
 % fs81: 16 35
	35 T	16 T	C
 % fs82: 34 36
	34 T	36 T	C
 % fs83: 4 39
	4 T	39 T	C
 % fs84: 12 37
	37 T	12 T	C
 % fs85: 30 47
	47 T	30 T	C
 % fs86: 2 45
	45 T	2 T	C
 % fs87: 8 21
	21 T	8 T	C
 % fs88: 0 27
	0 T	27 T	C
 % fs89: 25 36
	36 T	25 T	C
 % fs90: 8 44
	8 T	44 T	C
 % fs91: 6 30
	6 T	30 T	C
 % fs92: 27 38
	27 T	38 T	C
 % fs93: 21 46
	46 T	21 T	C
 % fs94: 16 43
	43 T	16 T	C
 % fs95: 41 42
	42 T	41 T	C
 % fs96: 3 9
	3 T	9 T	C
 % fs97: 11 23
	11 T	23 T	C
 % fs98: 34 46
	34 T	46 T	C
 % fs99: 11 33
	33 T	11 T	C
 % fs100: 1 20
	20 T	1 T	C
 % fs101: 18 37
	37 T	18 T	C
 % fs102: 15 45
	15 T	45 T	C
 % fs103: 2 24
	2 T	24 T	C
 % fs104: 22 42
	22 T	42 T	C
 % fs105: 15 38
	38 T	15 T	C
 % fs106: 10 22
	10 T	22 T	C
 % fs107: 41 48
	41 T	48 T	C
 % fs108: 4 40
	40 T	4 T	C
 % fs109: 6 33
	6 T	33 T	C
 % fs110: 10 24
	24 T	10 T	C
 % fs111: 41 43
	41 T	43 T	C
 % fs112: 28 32
	32 T	28 T	C
 % fs113: 9 25
	9 T	25 T	C
 % fs114: 24 32
	24 T	32 T	C
 % fs115: 13 40
	13 T	40 T	C
 % fs116: 17 31
	31 T	17 T	C
 % fs117: 12 19
	12 T	19 T	C
 % fs118: 25 49
	25 T	49 T	C
 % fs119: 3 12
	3 T	12 T	C
 % fs120: 7 17
	17 T	7 T	C
 % fs121: 7 32
	32 T	7 T	C
 % fs122: 1 27
	1 T	27 T	C
 % fs123: 20 33
	33 T	20 T	C
 % fs124: 4 29
	29 T	4 T	C
 % fs125: 13 35
	13 T	35 T	C
  (All FSTs:  50 points,  0.01 seconds)
EndPlot