mem.pic 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337
  1. .PS
  2. .ps 8
  3. .vs 11
  4. .ft CB
  5. [
  6. # Variables, tweak these.
  7. xtick = 2.000000 # width of an X tick
  8. xlower = 8.000000 # where the xtick start
  9. xupper = 24.000000 # upper range of graph
  10. xn = 8 # number of ticks to do
  11. ytick = 50.000000 # width of an Y tick
  12. ylower = 0.000000 # where the ytick start
  13. yupper = 500.000000 # upper range of graph
  14. yn = 10 # number of ticks to do
  15. xsize = 1.75 # width of the graph
  16. ysize = 1.75 # height of the graph
  17. yscale = ysize / (yupper - ylower) # scale data to paper
  18. xscale = xsize / (xupper - xlower) # scale data to paper
  19. tick = 0.10000000000000000555 # distance towards numbers
  20. gthk = .1 # thickness of grid lines
  21. thk = .75 # thickness of data lines
  22. qthk = 2.0 # thickness of quartile lines
  23. vs = .15 # works for 10 point fonts
  24. # Draw the graph borders and tick marks
  25. O: box thick 1.5 ht ysize wid xsize
  26. j = ylower
  27. t = tick * .5
  28. for i = 0 to yn by 1 do {
  29. ys = j - ylower
  30. g = ys * yscale
  31. line thick 1.5 from O.sw + (-tick, g) to O.sw + (0, g)
  32. if (i < yn) then {
  33. y2 = (ys + (ytick / 2)) * yscale
  34. line thick .5 from O.sw + (-t, y2) to O.sw + (0, y2)
  35. }
  36. if (yupper - ylower > 999) then {
  37. sprintf("%.0f", j) rjust at O.sw + (-.2, g - .02)
  38. } else { if (yupper - ylower > 10) then {
  39. sprintf("%.0f", j) rjust at O.sw + (-.2, g - .02)
  40. } else { if (yupper - ylower > 1) then {
  41. sprintf("%.1f", j) rjust at O.sw + (-.2, g - .02)
  42. } else {
  43. sprintf("%.2f", j) rjust at O.sw + (-.2, g - .02)
  44. }}}
  45. j = j + ytick
  46. }
  47. j = xlower
  48. for i = 0 to xn by 1 do {
  49. xs = j - xlower
  50. g = xs * xscale
  51. line thick 1.5 from O.sw + (g, -tick) to O.sw + (g, 0)
  52. if (i < xn) then {
  53. x2 = (xs + (xtick / 2)) * xscale
  54. line thick .5 from O.sw + (x2, 0) to O.sw + (x2, -t)
  55. }
  56. if (xupper - xlower > 999) then {
  57. sprintf("%.0f", j) at O.sw + (g, -.25)
  58. } else { if (xupper - xlower > 10) then {
  59. sprintf("%.0f", j) at O.sw + (g, -.25)
  60. } else { if (xupper - xlower > 1) then {
  61. sprintf("%.1f", j) at O.sw + (g, -.25)
  62. } else {
  63. sprintf("%.2f", j) at O.sw + (g, -.25)
  64. }}}
  65. j = j + xtick
  66. }
  67. # DATASET: stride=8, MARK 0
  68. [ "\(ci" ] at O.sw + \
  69. (xscale * (9.0050693696783969955 - xlower), yscale * (11 - ylower))
  70. [ box invis ht .05 wid .05 ] at O.sw + \
  71. (xscale * (10.005069369678396995 - xlower), yscale * (10 - ylower))
  72. line thick thk from 2nd last [].c to last [].c
  73. [ box invis ht .05 wid .05 ] at O.sw + \
  74. (xscale * (10.997689839312798199 - xlower), yscale * (10 - ylower))
  75. line thick thk from 2nd last [].c to last [].c
  76. [ box invis ht .05 wid .05 ] at O.sw + \
  77. (xscale * (11.585116379985436197 - xlower), yscale * (10 - ylower))
  78. line thick thk from 2nd last [].c to last [].c
  79. [ box invis ht .05 wid .05 ] at O.sw + \
  80. (xscale * (12.001384322870542576 - xlower), yscale * (11 - ylower))
  81. line thick thk from 2nd last [].c to last [].c
  82. [ box invis ht .05 wid .05 ] at O.sw + \
  83. (xscale * (12.585116379985436197 - xlower), yscale * (11 - ylower))
  84. line thick thk from 2nd last [].c to last [].c
  85. [ box invis ht .05 wid .05 ] at O.sw + \
  86. (xscale * (12.999538263705169072 - xlower), yscale * (11 - ylower))
  87. line thick thk from 2nd last [].c to last [].c
  88. [ box invis ht .05 wid .05 ] at O.sw + \
  89. (xscale * (13.322574277531574083 - xlower), yscale * (18 - ylower))
  90. line thick thk from 2nd last [].c to last [].c
  91. [ box invis ht .05 wid .05 ] at O.sw + \
  92. (xscale * (13.585116379985436197 - xlower), yscale * (23 - ylower))
  93. line thick thk from 2nd last [].c to last [].c
  94. [ box invis ht .05 wid .05 ] at O.sw + \
  95. (xscale * (13.807157053169248684 - xlower), yscale * (27 - ylower))
  96. line thick thk from 2nd last [].c to last [].c
  97. [ box invis ht .05 wid .05 ] at O.sw + \
  98. (xscale * (14.000461588562853166 - xlower), yscale * (29 - ylower))
  99. line thick thk from 2nd last [].c to last [].c
  100. [ box invis ht .05 wid .05 ] at O.sw + \
  101. (xscale * (14.170078880706594049 - xlower), yscale * (29 - ylower))
  102. line thick thk from 2nd last [].c to last [].c
  103. [ box invis ht .05 wid .05 ] at O.sw + \
  104. (xscale * (14.32183575944998033 - xlower), yscale * (29 - ylower))
  105. line thick thk from 2nd last [].c to last [].c
  106. [ box invis ht .05 wid .05 ] at O.sw + \
  107. (xscale * (14.459137803548600232 - xlower), yscale * (29 - ylower))
  108. line thick thk from 2nd last [].c to last [].c
  109. [ box invis ht .05 wid .05 ] at O.sw + \
  110. (xscale * (14.585116379985436197 - xlower), yscale * (30 - ylower))
  111. line thick thk from 2nd last [].c to last [].c
  112. [ box invis ht .05 wid .05 ] at O.sw + \
  113. (xscale * (14.700404205210695352 - xlower), yscale * (29 - ylower))
  114. line thick thk from 2nd last [].c to last [].c
  115. [ box invis ht .05 wid .05 ] at O.sw + \
  116. (xscale * (14.807157053169248684 - xlower), yscale * (30 - ylower))
  117. line thick thk from 2nd last [].c to last [].c
  118. [ box invis ht .05 wid .05 ] at O.sw + \
  119. (xscale * (14.907044474872799711 - xlower), yscale * (30 - ylower))
  120. line thick thk from 2nd last [].c to last [].c
  121. [ box invis ht .05 wid .05 ] at O.sw + \
  122. (xscale * (15 - xlower), yscale * (30 - ylower))
  123. line thick thk from 2nd last [].c to last [].c
  124. [ box invis ht .05 wid .05 ] at O.sw + \
  125. (xscale * (15.170078880706594049 - xlower), yscale * (30 - ylower))
  126. line thick thk from 2nd last [].c to last [].c
  127. [ box invis ht .05 wid .05 ] at O.sw + \
  128. (xscale * (15.32183575944998033 - xlower), yscale * (30 - ylower))
  129. line thick thk from 2nd last [].c to last [].c
  130. [ box invis ht .05 wid .05 ] at O.sw + \
  131. (xscale * (15.459473587337127398 - xlower), yscale * (30 - ylower))
  132. line thick thk from 2nd last [].c to last [].c
  133. [ box invis ht .05 wid .05 ] at O.sw + \
  134. (xscale * (15.585116379985436197 - xlower), yscale * (30 - ylower))
  135. line thick thk from 2nd last [].c to last [].c
  136. [ box invis ht .05 wid .05 ] at O.sw + \
  137. (xscale * (15.700404205210695352 - xlower), yscale * (30 - ylower))
  138. line thick thk from 2nd last [].c to last [].c
  139. [ box invis ht .05 wid .05 ] at O.sw + \
  140. (xscale * (15.807420872323479699 - xlower), yscale * (30 - ylower))
  141. line thick thk from 2nd last [].c to last [].c
  142. [ box invis ht .05 wid .05 ] at O.sw + \
  143. (xscale * (15.906798260171138182 - xlower), yscale * (30 - ylower))
  144. line thick thk from 2nd last [].c to last [].c
  145. [ box invis ht .05 wid .05 ] at O.sw + \
  146. (xscale * (16 - xlower), yscale * (30 - ylower))
  147. line thick thk from 2nd last [].c to last [].c
  148. [ box invis ht .05 wid .05 ] at O.sw + \
  149. (xscale * (16.1698737047066885 - xlower), yscale * (30 - ylower))
  150. line thick thk from 2nd last [].c to last [].c
  151. [ box invis ht .05 wid .05 ] at O.sw + \
  152. (xscale * (16.322020424415466522 - xlower), yscale * (31 - ylower))
  153. line thick thk from 2nd last [].c to last [].c
  154. [ box invis ht .05 wid .05 ] at O.sw + \
  155. (xscale * (16.459473587337129175 - xlower), yscale * (30 - ylower))
  156. line thick thk from 2nd last [].c to last [].c
  157. [ box invis ht .05 wid .05 ] at O.sw + \
  158. (xscale * (16.584962500721157852 - xlower), yscale * (31 - ylower))
  159. line thick thk from 2nd last [].c to last [].c
  160. [ box invis ht .05 wid .05 ] at O.sw + \
  161. (xscale * (16.700404205210695352 - xlower), yscale * (31 - ylower))
  162. line thick thk from 2nd last [].c to last [].c
  163. [ box invis ht .05 wid .05 ] at O.sw + \
  164. (xscale * (16.807420872323479699 - xlower), yscale * (31 - ylower))
  165. line thick thk from 2nd last [].c to last [].c
  166. [ box invis ht .05 wid .05 ] at O.sw + \
  167. (xscale * (16.906921372774437629 - xlower), yscale * (31 - ylower))
  168. line thick thk from 2nd last [].c to last [].c
  169. [ box invis ht .05 wid .05 ] at O.sw + \
  170. (xscale * (17 - xlower), yscale * (31 - ylower))
  171. line thick thk from 2nd last [].c to last [].c
  172. [ box invis ht .05 wid .05 ] at O.sw + \
  173. (xscale * (17.169976296354082734 - xlower), yscale * (32 - ylower))
  174. line thick thk from 2nd last [].c to last [].c
  175. [ box invis ht .05 wid .05 ] at O.sw + \
  176. (xscale * (17.32192809488736529 - xlower), yscale * (32 - ylower))
  177. line thick thk from 2nd last [].c to last [].c
  178. [ box invis ht .05 wid .05 ] at O.sw + \
  179. (xscale * (17.459473587337129175 - xlower), yscale * (33 - ylower))
  180. line thick thk from 2nd last [].c to last [].c
  181. [ box invis ht .05 wid .05 ] at O.sw + \
  182. (xscale * (17.584962500721157852 - xlower), yscale * (32 - ylower))
  183. line thick thk from 2nd last [].c to last [].c
  184. [ box invis ht .05 wid .05 ] at O.sw + \
  185. (xscale * (17.700475230197337595 - xlower), yscale * (33 - ylower))
  186. line thick thk from 2nd last [].c to last [].c
  187. [ box invis ht .05 wid .05 ] at O.sw + \
  188. (xscale * (17.807354922057605506 - xlower), yscale * (34 - ylower))
  189. line thick thk from 2nd last [].c to last [].c
  190. [ box invis ht .05 wid .05 ] at O.sw + \
  191. (xscale * (17.906921372774437629 - xlower), yscale * (34 - ylower))
  192. line thick thk from 2nd last [].c to last [].c
  193. [ box invis ht .05 wid .05 ] at O.sw + \
  194. (xscale * (18 - xlower), yscale * (34 - ylower))
  195. line thick thk from 2nd last [].c to last [].c
  196. [ box invis ht .05 wid .05 ] at O.sw + \
  197. (xscale * (18.169925001442312151 - xlower), yscale * (35 - ylower))
  198. line thick thk from 2nd last [].c to last [].c
  199. [ box invis ht .05 wid .05 ] at O.sw + \
  200. (xscale * (18.32192809488736529 - xlower), yscale * (35 - ylower))
  201. line thick thk from 2nd last [].c to last [].c
  202. [ box invis ht .05 wid .05 ] at O.sw + \
  203. (xscale * (18.459431618637296424 - xlower), yscale * (36 - ylower))
  204. line thick thk from 2nd last [].c to last [].c
  205. [ box invis ht .05 wid .05 ] at O.sw + \
  206. (xscale * (18.584962500721157852 - xlower), yscale * (36 - ylower))
  207. line thick thk from 2nd last [].c to last [].c
  208. [ box invis ht .05 wid .05 ] at O.sw + \
  209. (xscale * (18.70043971814109085 - xlower), yscale * (37 - ylower))
  210. line thick thk from 2nd last [].c to last [].c
  211. [ box invis ht .05 wid .05 ] at O.sw + \
  212. (xscale * (18.807354922057605506 - xlower), yscale * (46 - ylower))
  213. line thick thk from 2nd last [].c to last [].c
  214. [ box invis ht .05 wid .05 ] at O.sw + \
  215. (xscale * (18.90689059560851959 - xlower), yscale * (40 - ylower))
  216. line thick thk from 2nd last [].c to last [].c
  217. [ box invis ht .05 wid .05 ] at O.sw + \
  218. (xscale * (19 - xlower), yscale * (39 - ylower))
  219. line thick thk from 2nd last [].c to last [].c
  220. [ box invis ht .05 wid .05 ] at O.sw + \
  221. (xscale * (20 - xlower), yscale * (89 - ylower))
  222. line thick thk from 2nd last [].c to last [].c
  223. [ box invis ht .05 wid .05 ] at O.sw + \
  224. (xscale * (20.584962500721154299 - xlower), yscale * (91 - ylower))
  225. line thick thk from 2nd last [].c to last [].c
  226. [ box invis ht .05 wid .05 ] at O.sw + \
  227. (xscale * (21 - xlower), yscale * (92 - ylower))
  228. line thick thk from 2nd last [].c to last [].c
  229. [ box invis ht .05 wid .05 ] at O.sw + \
  230. (xscale * (21.321928094887361738 - xlower), yscale * (91 - ylower))
  231. line thick thk from 2nd last [].c to last [].c
  232. [ box invis ht .05 wid .05 ] at O.sw + \
  233. (xscale * (21.584962500721154299 - xlower), yscale * (92 - ylower))
  234. line thick thk from 2nd last [].c to last [].c
  235. [ box invis ht .05 wid .05 ] at O.sw + \
  236. (xscale * (21.807354922057605506 - xlower), yscale * (89 - ylower))
  237. line thick thk from 2nd last [].c to last [].c
  238. [ box invis ht .05 wid .05 ] at O.sw + \
  239. (xscale * (22 - xlower), yscale * (92 - ylower))
  240. line thick thk from 2nd last [].c to last [].c
  241. [ box invis ht .05 wid .05 ] at O.sw + \
  242. (xscale * (22.169925001442312151 - xlower), yscale * (92 - ylower))
  243. line thick thk from 2nd last [].c to last [].c
  244. [ box invis ht .05 wid .05 ] at O.sw + \
  245. (xscale * (22.321928094887361738 - xlower), yscale * (91 - ylower))
  246. line thick thk from 2nd last [].c to last [].c
  247. [ box invis ht .05 wid .05 ] at O.sw + \
  248. (xscale * (22.459431618637296424 - xlower), yscale * (92 - ylower))
  249. line thick thk from 2nd last [].c to last [].c
  250. [ box invis ht .05 wid .05 ] at O.sw + \
  251. (xscale * (22.584962500721157852 - xlower), yscale * (92 - ylower))
  252. line thick thk from 2nd last [].c to last [].c
  253. [ box invis ht .05 wid .05 ] at O.sw + \
  254. (xscale * (22.70043971814109085 - xlower), yscale * (92 - ylower))
  255. line thick thk from 2nd last [].c to last [].c
  256. [ box invis ht .05 wid .05 ] at O.sw + \
  257. (xscale * (22.807354922057605506 - xlower), yscale * (90 - ylower))
  258. line thick thk from 2nd last [].c to last [].c
  259. [ box invis ht .05 wid .05 ] at O.sw + \
  260. (xscale * (22.90689059560851959 - xlower), yscale * (92 - ylower))
  261. line thick thk from 2nd last [].c to last [].c
  262. [ box invis ht .05 wid .05 ] at O.sw + \
  263. (xscale * (23 - xlower), yscale * (92 - ylower))
  264. line thick thk from 2nd last [].c to last [].c
  265. [ "\(ci" ] at O.sw + \
  266. (xscale * (23 - xlower), yscale * (92 - ylower))
  267. # DATASET: stride=16, MARK 1
  268. [ "\(sq" ] at O.sw + \
  269. (xscale * (9.0050693696783969955 - xlower), yscale * (10 - ylower))
  270. [ box invis ht .05 wid .05 ] at O.sw + \
  271. (xscale * (10.005069369678396995 - xlower), yscale * (11 - ylower))
  272. line thick thk from 2nd last [].c to last [].c
  273. [ box invis ht .05 wid .05 ] at O.sw + \
  274. (xscale * (10.997689839312798199 - xlower), yscale * (11 - ylower))
  275. line thick thk from 2nd last [].c to last [].c
  276. [ box invis ht .05 wid .05 ] at O.sw + \
  277. (xscale * (11.585116379985436197 - xlower), yscale * (10 - ylower))
  278. line thick thk from 2nd last [].c to last [].c
  279. [ box invis ht .05 wid .05 ] at O.sw + \
  280. (xscale * (12.001384322870542576 - xlower), yscale * (11 - ylower))
  281. line thick thk from 2nd last [].c to last [].c
  282. [ box invis ht .05 wid .05 ] at O.sw + \
  283. (xscale * (12.585116379985436197 - xlower), yscale * (10 - ylower))
  284. line thick thk from 2nd last [].c to last [].c
  285. [ box invis ht .05 wid .05 ] at O.sw + \
  286. (xscale * (12.999538263705169072 - xlower), yscale * (11 - ylower))
  287. line thick thk from 2nd last [].c to last [].c
  288. [ box invis ht .05 wid .05 ] at O.sw + \
  289. (xscale * (13.322574277531574083 - xlower), yscale * (26 - ylower))
  290. line thick thk from 2nd last [].c to last [].c
  291. [ box invis ht .05 wid .05 ] at O.sw + \
  292. (xscale * (13.585116379985436197 - xlower), yscale * (36 - ylower))
  293. line thick thk from 2nd last [].c to last [].c
  294. [ box invis ht .05 wid .05 ] at O.sw + \
  295. (xscale * (13.807157053169248684 - xlower), yscale * (44 - ylower))
  296. line thick thk from 2nd last [].c to last [].c
  297. [ box invis ht .05 wid .05 ] at O.sw + \
  298. (xscale * (14.000461588562853166 - xlower), yscale * (49 - ylower))
  299. line thick thk from 2nd last [].c to last [].c
  300. [ box invis ht .05 wid .05 ] at O.sw + \
  301. (xscale * (14.170078880706594049 - xlower), yscale * (50 - ylower))
  302. line thick thk from 2nd last [].c to last [].c
  303. [ box invis ht .05 wid .05 ] at O.sw + \
  304. (xscale * (14.32183575944998033 - xlower), yscale * (49 - ylower))
  305. line thick thk from 2nd last [].c to last [].c
  306. [ box invis ht .05 wid .05 ] at O.sw + \
  307. (xscale * (14.459137803548600232 - xlower), yscale * (48 - ylower))
  308. line thick thk from 2nd last [].c to last [].c
  309. [ box invis ht .05 wid .05 ] at O.sw + \
  310. (xscale * (14.585116379985436197 - xlower), yscale * (50 - ylower))
  311. line thick thk from 2nd last [].c to last [].c
  312. [ box invis ht .05 wid .05 ] at O.sw + \
  313. (xscale * (14.700404205210695352 - xlower), yscale * (49 - ylower))
  314. line thick thk from 2nd last [].c to last [].c
  315. [ box invis ht .05 wid .05 ] at O.sw + \
  316. (xscale * (14.807157053169248684 - xlower), yscale * (49 - ylower))
  317. line thick thk from 2nd last [].c to last [].c
  318. [ box invis ht .05 wid .05 ] at O.sw + \
  319. (xscale * (14.907044474872799711 - xlower), yscale * (49 - ylower))
  320. line thick thk from 2nd last [].c to last [].c
  321. [ box invis ht .05 wid .05 ] at O.sw + \
  322. (xscale * (15 - xlower), yscale * (49 - ylower))
  323. line thick thk from 2nd last [].c to last [].c
  324. [ box invis ht .05 wid .05 ] at O.sw + \
  325. (xscale * (15.170078880706594049 - xlower), yscale * (50 - ylower))
  326. line thick thk from 2nd last [].c to last [].c
  327. [ box invis ht .05 wid .05 ] at O.sw + \
  328. (xscale * (15.32183575944998033 - xlower), yscale * (50 - ylower))
  329. line thick thk from 2nd last [].c to last [].c
  330. [ box invis ht .05 wid .05 ] at O.sw + \
  331. (xscale * (15.459473587337127398 - xlower), yscale * (50 - ylower))
  332. line thick thk from 2nd last [].c to last [].c
  333. [ box invis ht .05 wid .05 ] at O.sw + \
  334. (xscale * (15.585116379985436197 - xlower), yscale * (50 - ylower))
  335. line thick thk from 2nd last [].c to last [].c
  336. [ box invis ht .05 wid .05 ] at O.sw + \
  337. (xscale * (15.700404205210695352 - xlower), yscale * (51 - ylower))
  338. line thick thk from 2nd last [].c to last [].c
  339. [ box invis ht .05 wid .05 ] at O.sw + \
  340. (xscale * (15.807420872323479699 - xlower), yscale * (49 - ylower))
  341. line thick thk from 2nd last [].c to last [].c
  342. [ box invis ht .05 wid .05 ] at O.sw + \
  343. (xscale * (15.906798260171138182 - xlower), yscale * (51 - ylower))
  344. line thick thk from 2nd last [].c to last [].c
  345. [ box invis ht .05 wid .05 ] at O.sw + \
  346. (xscale * (16 - xlower), yscale * (51 - ylower))
  347. line thick thk from 2nd last [].c to last [].c
  348. [ box invis ht .05 wid .05 ] at O.sw + \
  349. (xscale * (16.1698737047066885 - xlower), yscale * (52 - ylower))
  350. line thick thk from 2nd last [].c to last [].c
  351. [ box invis ht .05 wid .05 ] at O.sw + \
  352. (xscale * (16.322020424415466522 - xlower), yscale * (51 - ylower))
  353. line thick thk from 2nd last [].c to last [].c
  354. [ box invis ht .05 wid .05 ] at O.sw + \
  355. (xscale * (16.459473587337129175 - xlower), yscale * (52 - ylower))
  356. line thick thk from 2nd last [].c to last [].c
  357. [ box invis ht .05 wid .05 ] at O.sw + \
  358. (xscale * (16.584962500721157852 - xlower), yscale * (51 - ylower))
  359. line thick thk from 2nd last [].c to last [].c
  360. [ box invis ht .05 wid .05 ] at O.sw + \
  361. (xscale * (16.700404205210695352 - xlower), yscale * (52 - ylower))
  362. line thick thk from 2nd last [].c to last [].c
  363. [ box invis ht .05 wid .05 ] at O.sw + \
  364. (xscale * (16.807420872323479699 - xlower), yscale * (52 - ylower))
  365. line thick thk from 2nd last [].c to last [].c
  366. [ box invis ht .05 wid .05 ] at O.sw + \
  367. (xscale * (16.906921372774437629 - xlower), yscale * (52 - ylower))
  368. line thick thk from 2nd last [].c to last [].c
  369. [ box invis ht .05 wid .05 ] at O.sw + \
  370. (xscale * (17 - xlower), yscale * (52 - ylower))
  371. line thick thk from 2nd last [].c to last [].c
  372. [ box invis ht .05 wid .05 ] at O.sw + \
  373. (xscale * (17.169976296354082734 - xlower), yscale * (53 - ylower))
  374. line thick thk from 2nd last [].c to last [].c
  375. [ box invis ht .05 wid .05 ] at O.sw + \
  376. (xscale * (17.32192809488736529 - xlower), yscale * (53 - ylower))
  377. line thick thk from 2nd last [].c to last [].c
  378. [ box invis ht .05 wid .05 ] at O.sw + \
  379. (xscale * (17.459473587337129175 - xlower), yscale * (55 - ylower))
  380. line thick thk from 2nd last [].c to last [].c
  381. [ box invis ht .05 wid .05 ] at O.sw + \
  382. (xscale * (17.584962500721157852 - xlower), yscale * (54 - ylower))
  383. line thick thk from 2nd last [].c to last [].c
  384. [ box invis ht .05 wid .05 ] at O.sw + \
  385. (xscale * (17.700475230197337595 - xlower), yscale * (55 - ylower))
  386. line thick thk from 2nd last [].c to last [].c
  387. [ box invis ht .05 wid .05 ] at O.sw + \
  388. (xscale * (17.807354922057605506 - xlower), yscale * (55 - ylower))
  389. line thick thk from 2nd last [].c to last [].c
  390. [ box invis ht .05 wid .05 ] at O.sw + \
  391. (xscale * (17.906921372774437629 - xlower), yscale * (56 - ylower))
  392. line thick thk from 2nd last [].c to last [].c
  393. [ box invis ht .05 wid .05 ] at O.sw + \
  394. (xscale * (18 - xlower), yscale * (56 - ylower))
  395. line thick thk from 2nd last [].c to last [].c
  396. [ box invis ht .05 wid .05 ] at O.sw + \
  397. (xscale * (18.169925001442312151 - xlower), yscale * (57 - ylower))
  398. line thick thk from 2nd last [].c to last [].c
  399. [ box invis ht .05 wid .05 ] at O.sw + \
  400. (xscale * (18.32192809488736529 - xlower), yscale * (57 - ylower))
  401. line thick thk from 2nd last [].c to last [].c
  402. [ box invis ht .05 wid .05 ] at O.sw + \
  403. (xscale * (18.459431618637296424 - xlower), yscale * (58 - ylower))
  404. line thick thk from 2nd last [].c to last [].c
  405. [ box invis ht .05 wid .05 ] at O.sw + \
  406. (xscale * (18.584962500721157852 - xlower), yscale * (59 - ylower))
  407. line thick thk from 2nd last [].c to last [].c
  408. [ box invis ht .05 wid .05 ] at O.sw + \
  409. (xscale * (18.70043971814109085 - xlower), yscale * (60 - ylower))
  410. line thick thk from 2nd last [].c to last [].c
  411. [ box invis ht .05 wid .05 ] at O.sw + \
  412. (xscale * (18.807354922057605506 - xlower), yscale * (65 - ylower))
  413. line thick thk from 2nd last [].c to last [].c
  414. [ box invis ht .05 wid .05 ] at O.sw + \
  415. (xscale * (18.90689059560851959 - xlower), yscale * (67 - ylower))
  416. line thick thk from 2nd last [].c to last [].c
  417. [ box invis ht .05 wid .05 ] at O.sw + \
  418. (xscale * (19 - xlower), yscale * (67 - ylower))
  419. line thick thk from 2nd last [].c to last [].c
  420. [ box invis ht .05 wid .05 ] at O.sw + \
  421. (xscale * (20 - xlower), yscale * (164 - ylower))
  422. line thick thk from 2nd last [].c to last [].c
  423. [ box invis ht .05 wid .05 ] at O.sw + \
  424. (xscale * (20.584962500721154299 - xlower), yscale * (165 - ylower))
  425. line thick thk from 2nd last [].c to last [].c
  426. [ box invis ht .05 wid .05 ] at O.sw + \
  427. (xscale * (21 - xlower), yscale * (167 - ylower))
  428. line thick thk from 2nd last [].c to last [].c
  429. [ box invis ht .05 wid .05 ] at O.sw + \
  430. (xscale * (21.321928094887361738 - xlower), yscale * (165 - ylower))
  431. line thick thk from 2nd last [].c to last [].c
  432. [ box invis ht .05 wid .05 ] at O.sw + \
  433. (xscale * (21.584962500721154299 - xlower), yscale * (165 - ylower))
  434. line thick thk from 2nd last [].c to last [].c
  435. [ box invis ht .05 wid .05 ] at O.sw + \
  436. (xscale * (21.807354922057605506 - xlower), yscale * (168 - ylower))
  437. line thick thk from 2nd last [].c to last [].c
  438. [ box invis ht .05 wid .05 ] at O.sw + \
  439. (xscale * (22 - xlower), yscale * (167 - ylower))
  440. line thick thk from 2nd last [].c to last [].c
  441. [ box invis ht .05 wid .05 ] at O.sw + \
  442. (xscale * (22.169925001442312151 - xlower), yscale * (166 - ylower))
  443. line thick thk from 2nd last [].c to last [].c
  444. [ box invis ht .05 wid .05 ] at O.sw + \
  445. (xscale * (22.321928094887361738 - xlower), yscale * (165 - ylower))
  446. line thick thk from 2nd last [].c to last [].c
  447. [ box invis ht .05 wid .05 ] at O.sw + \
  448. (xscale * (22.459431618637296424 - xlower), yscale * (168 - ylower))
  449. line thick thk from 2nd last [].c to last [].c
  450. [ box invis ht .05 wid .05 ] at O.sw + \
  451. (xscale * (22.584962500721157852 - xlower), yscale * (168 - ylower))
  452. line thick thk from 2nd last [].c to last [].c
  453. [ box invis ht .05 wid .05 ] at O.sw + \
  454. (xscale * (22.70043971814109085 - xlower), yscale * (167 - ylower))
  455. line thick thk from 2nd last [].c to last [].c
  456. [ box invis ht .05 wid .05 ] at O.sw + \
  457. (xscale * (22.807354922057605506 - xlower), yscale * (167 - ylower))
  458. line thick thk from 2nd last [].c to last [].c
  459. [ box invis ht .05 wid .05 ] at O.sw + \
  460. (xscale * (22.90689059560851959 - xlower), yscale * (166 - ylower))
  461. line thick thk from 2nd last [].c to last [].c
  462. [ box invis ht .05 wid .05 ] at O.sw + \
  463. (xscale * (23 - xlower), yscale * (167 - ylower))
  464. line thick thk from 2nd last [].c to last [].c
  465. [ "\(sq" ] at O.sw + \
  466. (xscale * (23 - xlower), yscale * (167 - ylower))
  467. # DATASET: stride=32, MARK 2
  468. [ "\(*D" ] at O.sw + \
  469. (xscale * (9.0050693696783969955 - xlower), yscale * (10 - ylower))
  470. [ box invis ht .05 wid .05 ] at O.sw + \
  471. (xscale * (10.005069369678396995 - xlower), yscale * (11 - ylower))
  472. line thick thk from 2nd last [].c to last [].c
  473. [ box invis ht .05 wid .05 ] at O.sw + \
  474. (xscale * (10.997689839312798199 - xlower), yscale * (11 - ylower))
  475. line thick thk from 2nd last [].c to last [].c
  476. [ box invis ht .05 wid .05 ] at O.sw + \
  477. (xscale * (11.585116379985436197 - xlower), yscale * (11 - ylower))
  478. line thick thk from 2nd last [].c to last [].c
  479. [ box invis ht .05 wid .05 ] at O.sw + \
  480. (xscale * (12.001384322870542576 - xlower), yscale * (11 - ylower))
  481. line thick thk from 2nd last [].c to last [].c
  482. [ box invis ht .05 wid .05 ] at O.sw + \
  483. (xscale * (12.585116379985436197 - xlower), yscale * (11 - ylower))
  484. line thick thk from 2nd last [].c to last [].c
  485. [ box invis ht .05 wid .05 ] at O.sw + \
  486. (xscale * (12.999538263705169072 - xlower), yscale * (10 - ylower))
  487. line thick thk from 2nd last [].c to last [].c
  488. [ box invis ht .05 wid .05 ] at O.sw + \
  489. (xscale * (13.322574277531574083 - xlower), yscale * (28 - ylower))
  490. line thick thk from 2nd last [].c to last [].c
  491. [ box invis ht .05 wid .05 ] at O.sw + \
  492. (xscale * (13.585116379985436197 - xlower), yscale * (40 - ylower))
  493. line thick thk from 2nd last [].c to last [].c
  494. [ box invis ht .05 wid .05 ] at O.sw + \
  495. (xscale * (13.807157053169248684 - xlower), yscale * (48 - ylower))
  496. line thick thk from 2nd last [].c to last [].c
  497. [ box invis ht .05 wid .05 ] at O.sw + \
  498. (xscale * (14.000461588562853166 - xlower), yscale * (55 - ylower))
  499. line thick thk from 2nd last [].c to last [].c
  500. [ box invis ht .05 wid .05 ] at O.sw + \
  501. (xscale * (14.170078880706594049 - xlower), yscale * (55 - ylower))
  502. line thick thk from 2nd last [].c to last [].c
  503. [ box invis ht .05 wid .05 ] at O.sw + \
  504. (xscale * (14.32183575944998033 - xlower), yscale * (55 - ylower))
  505. line thick thk from 2nd last [].c to last [].c
  506. [ box invis ht .05 wid .05 ] at O.sw + \
  507. (xscale * (14.459137803548600232 - xlower), yscale * (55 - ylower))
  508. line thick thk from 2nd last [].c to last [].c
  509. [ box invis ht .05 wid .05 ] at O.sw + \
  510. (xscale * (14.585116379985436197 - xlower), yscale * (55 - ylower))
  511. line thick thk from 2nd last [].c to last [].c
  512. [ box invis ht .05 wid .05 ] at O.sw + \
  513. (xscale * (14.700404205210695352 - xlower), yscale * (55 - ylower))
  514. line thick thk from 2nd last [].c to last [].c
  515. [ box invis ht .05 wid .05 ] at O.sw + \
  516. (xscale * (14.807157053169248684 - xlower), yscale * (55 - ylower))
  517. line thick thk from 2nd last [].c to last [].c
  518. [ box invis ht .05 wid .05 ] at O.sw + \
  519. (xscale * (14.907044474872799711 - xlower), yscale * (55 - ylower))
  520. line thick thk from 2nd last [].c to last [].c
  521. [ box invis ht .05 wid .05 ] at O.sw + \
  522. (xscale * (15 - xlower), yscale * (55 - ylower))
  523. line thick thk from 2nd last [].c to last [].c
  524. [ box invis ht .05 wid .05 ] at O.sw + \
  525. (xscale * (15.170078880706594049 - xlower), yscale * (56 - ylower))
  526. line thick thk from 2nd last [].c to last [].c
  527. [ box invis ht .05 wid .05 ] at O.sw + \
  528. (xscale * (15.32183575944998033 - xlower), yscale * (56 - ylower))
  529. line thick thk from 2nd last [].c to last [].c
  530. [ box invis ht .05 wid .05 ] at O.sw + \
  531. (xscale * (15.459473587337127398 - xlower), yscale * (56 - ylower))
  532. line thick thk from 2nd last [].c to last [].c
  533. [ box invis ht .05 wid .05 ] at O.sw + \
  534. (xscale * (15.585116379985436197 - xlower), yscale * (56 - ylower))
  535. line thick thk from 2nd last [].c to last [].c
  536. [ box invis ht .05 wid .05 ] at O.sw + \
  537. (xscale * (15.700404205210695352 - xlower), yscale * (56 - ylower))
  538. line thick thk from 2nd last [].c to last [].c
  539. [ box invis ht .05 wid .05 ] at O.sw + \
  540. (xscale * (15.807420872323479699 - xlower), yscale * (56 - ylower))
  541. line thick thk from 2nd last [].c to last [].c
  542. [ box invis ht .05 wid .05 ] at O.sw + \
  543. (xscale * (15.906798260171138182 - xlower), yscale * (56 - ylower))
  544. line thick thk from 2nd last [].c to last [].c
  545. [ box invis ht .05 wid .05 ] at O.sw + \
  546. (xscale * (16 - xlower), yscale * (56 - ylower))
  547. line thick thk from 2nd last [].c to last [].c
  548. [ box invis ht .05 wid .05 ] at O.sw + \
  549. (xscale * (16.1698737047066885 - xlower), yscale * (56 - ylower))
  550. line thick thk from 2nd last [].c to last [].c
  551. [ box invis ht .05 wid .05 ] at O.sw + \
  552. (xscale * (16.322020424415466522 - xlower), yscale * (56 - ylower))
  553. line thick thk from 2nd last [].c to last [].c
  554. [ box invis ht .05 wid .05 ] at O.sw + \
  555. (xscale * (16.459473587337129175 - xlower), yscale * (57 - ylower))
  556. line thick thk from 2nd last [].c to last [].c
  557. [ box invis ht .05 wid .05 ] at O.sw + \
  558. (xscale * (16.584962500721157852 - xlower), yscale * (57 - ylower))
  559. line thick thk from 2nd last [].c to last [].c
  560. [ box invis ht .05 wid .05 ] at O.sw + \
  561. (xscale * (16.700404205210695352 - xlower), yscale * (56 - ylower))
  562. line thick thk from 2nd last [].c to last [].c
  563. [ box invis ht .05 wid .05 ] at O.sw + \
  564. (xscale * (16.807420872323479699 - xlower), yscale * (58 - ylower))
  565. line thick thk from 2nd last [].c to last [].c
  566. [ box invis ht .05 wid .05 ] at O.sw + \
  567. (xscale * (16.906921372774437629 - xlower), yscale * (57 - ylower))
  568. line thick thk from 2nd last [].c to last [].c
  569. [ box invis ht .05 wid .05 ] at O.sw + \
  570. (xscale * (17 - xlower), yscale * (57 - ylower))
  571. line thick thk from 2nd last [].c to last [].c
  572. [ box invis ht .05 wid .05 ] at O.sw + \
  573. (xscale * (17.169976296354082734 - xlower), yscale * (57 - ylower))
  574. line thick thk from 2nd last [].c to last [].c
  575. [ box invis ht .05 wid .05 ] at O.sw + \
  576. (xscale * (17.32192809488736529 - xlower), yscale * (60 - ylower))
  577. line thick thk from 2nd last [].c to last [].c
  578. [ box invis ht .05 wid .05 ] at O.sw + \
  579. (xscale * (17.459473587337129175 - xlower), yscale * (61 - ylower))
  580. line thick thk from 2nd last [].c to last [].c
  581. [ box invis ht .05 wid .05 ] at O.sw + \
  582. (xscale * (17.584962500721157852 - xlower), yscale * (61 - ylower))
  583. line thick thk from 2nd last [].c to last [].c
  584. [ box invis ht .05 wid .05 ] at O.sw + \
  585. (xscale * (17.700475230197337595 - xlower), yscale * (62 - ylower))
  586. line thick thk from 2nd last [].c to last [].c
  587. [ box invis ht .05 wid .05 ] at O.sw + \
  588. (xscale * (17.807354922057605506 - xlower), yscale * (61 - ylower))
  589. line thick thk from 2nd last [].c to last [].c
  590. [ box invis ht .05 wid .05 ] at O.sw + \
  591. (xscale * (17.906921372774437629 - xlower), yscale * (62 - ylower))
  592. line thick thk from 2nd last [].c to last [].c
  593. [ box invis ht .05 wid .05 ] at O.sw + \
  594. (xscale * (18 - xlower), yscale * (63 - ylower))
  595. line thick thk from 2nd last [].c to last [].c
  596. [ box invis ht .05 wid .05 ] at O.sw + \
  597. (xscale * (18.169925001442312151 - xlower), yscale * (65 - ylower))
  598. line thick thk from 2nd last [].c to last [].c
  599. [ box invis ht .05 wid .05 ] at O.sw + \
  600. (xscale * (18.32192809488736529 - xlower), yscale * (64 - ylower))
  601. line thick thk from 2nd last [].c to last [].c
  602. [ box invis ht .05 wid .05 ] at O.sw + \
  603. (xscale * (18.459431618637296424 - xlower), yscale * (67 - ylower))
  604. line thick thk from 2nd last [].c to last [].c
  605. [ box invis ht .05 wid .05 ] at O.sw + \
  606. (xscale * (18.584962500721157852 - xlower), yscale * (68 - ylower))
  607. line thick thk from 2nd last [].c to last [].c
  608. [ box invis ht .05 wid .05 ] at O.sw + \
  609. (xscale * (18.70043971814109085 - xlower), yscale * (70 - ylower))
  610. line thick thk from 2nd last [].c to last [].c
  611. [ box invis ht .05 wid .05 ] at O.sw + \
  612. (xscale * (18.807354922057605506 - xlower), yscale * (83 - ylower))
  613. line thick thk from 2nd last [].c to last [].c
  614. [ box invis ht .05 wid .05 ] at O.sw + \
  615. (xscale * (18.90689059560851959 - xlower), yscale * (85 - ylower))
  616. line thick thk from 2nd last [].c to last [].c
  617. [ box invis ht .05 wid .05 ] at O.sw + \
  618. (xscale * (19 - xlower), yscale * (87 - ylower))
  619. line thick thk from 2nd last [].c to last [].c
  620. [ box invis ht .05 wid .05 ] at O.sw + \
  621. (xscale * (20 - xlower), yscale * (327 - ylower))
  622. line thick thk from 2nd last [].c to last [].c
  623. [ box invis ht .05 wid .05 ] at O.sw + \
  624. (xscale * (20.584962500721154299 - xlower), yscale * (335 - ylower))
  625. line thick thk from 2nd last [].c to last [].c
  626. [ box invis ht .05 wid .05 ] at O.sw + \
  627. (xscale * (21 - xlower), yscale * (335 - ylower))
  628. line thick thk from 2nd last [].c to last [].c
  629. [ box invis ht .05 wid .05 ] at O.sw + \
  630. (xscale * (21.321928094887361738 - xlower), yscale * (336 - ylower))
  631. line thick thk from 2nd last [].c to last [].c
  632. [ box invis ht .05 wid .05 ] at O.sw + \
  633. (xscale * (21.584962500721154299 - xlower), yscale * (335 - ylower))
  634. line thick thk from 2nd last [].c to last [].c
  635. [ box invis ht .05 wid .05 ] at O.sw + \
  636. (xscale * (21.807354922057605506 - xlower), yscale * (339 - ylower))
  637. line thick thk from 2nd last [].c to last [].c
  638. [ box invis ht .05 wid .05 ] at O.sw + \
  639. (xscale * (22 - xlower), yscale * (337 - ylower))
  640. line thick thk from 2nd last [].c to last [].c
  641. [ box invis ht .05 wid .05 ] at O.sw + \
  642. (xscale * (22.169925001442312151 - xlower), yscale * (338 - ylower))
  643. line thick thk from 2nd last [].c to last [].c
  644. [ box invis ht .05 wid .05 ] at O.sw + \
  645. (xscale * (22.321928094887361738 - xlower), yscale * (336 - ylower))
  646. line thick thk from 2nd last [].c to last [].c
  647. [ box invis ht .05 wid .05 ] at O.sw + \
  648. (xscale * (22.459431618637296424 - xlower), yscale * (337 - ylower))
  649. line thick thk from 2nd last [].c to last [].c
  650. [ box invis ht .05 wid .05 ] at O.sw + \
  651. (xscale * (22.584962500721157852 - xlower), yscale * (335 - ylower))
  652. line thick thk from 2nd last [].c to last [].c
  653. [ box invis ht .05 wid .05 ] at O.sw + \
  654. (xscale * (22.70043971814109085 - xlower), yscale * (338 - ylower))
  655. line thick thk from 2nd last [].c to last [].c
  656. [ box invis ht .05 wid .05 ] at O.sw + \
  657. (xscale * (22.807354922057605506 - xlower), yscale * (339 - ylower))
  658. line thick thk from 2nd last [].c to last [].c
  659. [ box invis ht .05 wid .05 ] at O.sw + \
  660. (xscale * (22.90689059560851959 - xlower), yscale * (336 - ylower))
  661. line thick thk from 2nd last [].c to last [].c
  662. [ box invis ht .05 wid .05 ] at O.sw + \
  663. (xscale * (23 - xlower), yscale * (340 - ylower))
  664. line thick thk from 2nd last [].c to last [].c
  665. [ "\(*D" ] at O.sw + \
  666. (xscale * (23 - xlower), yscale * (340 - ylower))
  667. # DATASET: stride=64, MARK 3
  668. [ "\(mu" ] at O.sw + \
  669. (xscale * (9.0050693696783969955 - xlower), yscale * (11 - ylower))
  670. [ box invis ht .05 wid .05 ] at O.sw + \
  671. (xscale * (10.005069369678396995 - xlower), yscale * (11 - ylower))
  672. line thick thk from 2nd last [].c to last [].c
  673. [ box invis ht .05 wid .05 ] at O.sw + \
  674. (xscale * (10.997689839312798199 - xlower), yscale * (10 - ylower))
  675. line thick thk from 2nd last [].c to last [].c
  676. [ box invis ht .05 wid .05 ] at O.sw + \
  677. (xscale * (11.585116379985436197 - xlower), yscale * (10 - ylower))
  678. line thick thk from 2nd last [].c to last [].c
  679. [ box invis ht .05 wid .05 ] at O.sw + \
  680. (xscale * (12.001384322870542576 - xlower), yscale * (11 - ylower))
  681. line thick thk from 2nd last [].c to last [].c
  682. [ box invis ht .05 wid .05 ] at O.sw + \
  683. (xscale * (12.585116379985436197 - xlower), yscale * (10 - ylower))
  684. line thick thk from 2nd last [].c to last [].c
  685. [ box invis ht .05 wid .05 ] at O.sw + \
  686. (xscale * (12.999538263705169072 - xlower), yscale * (11 - ylower))
  687. line thick thk from 2nd last [].c to last [].c
  688. [ box invis ht .05 wid .05 ] at O.sw + \
  689. (xscale * (13.322574277531574083 - xlower), yscale * (28 - ylower))
  690. line thick thk from 2nd last [].c to last [].c
  691. [ box invis ht .05 wid .05 ] at O.sw + \
  692. (xscale * (13.585116379985436197 - xlower), yscale * (40 - ylower))
  693. line thick thk from 2nd last [].c to last [].c
  694. [ box invis ht .05 wid .05 ] at O.sw + \
  695. (xscale * (13.807157053169248684 - xlower), yscale * (49 - ylower))
  696. line thick thk from 2nd last [].c to last [].c
  697. [ box invis ht .05 wid .05 ] at O.sw + \
  698. (xscale * (14.000461588562853166 - xlower), yscale * (55 - ylower))
  699. line thick thk from 2nd last [].c to last [].c
  700. [ box invis ht .05 wid .05 ] at O.sw + \
  701. (xscale * (14.170078880706594049 - xlower), yscale * (55 - ylower))
  702. line thick thk from 2nd last [].c to last [].c
  703. [ box invis ht .05 wid .05 ] at O.sw + \
  704. (xscale * (14.32183575944998033 - xlower), yscale * (55 - ylower))
  705. line thick thk from 2nd last [].c to last [].c
  706. [ box invis ht .05 wid .05 ] at O.sw + \
  707. (xscale * (14.459137803548600232 - xlower), yscale * (55 - ylower))
  708. line thick thk from 2nd last [].c to last [].c
  709. [ box invis ht .05 wid .05 ] at O.sw + \
  710. (xscale * (14.585116379985436197 - xlower), yscale * (55 - ylower))
  711. line thick thk from 2nd last [].c to last [].c
  712. [ box invis ht .05 wid .05 ] at O.sw + \
  713. (xscale * (14.700404205210695352 - xlower), yscale * (55 - ylower))
  714. line thick thk from 2nd last [].c to last [].c
  715. [ box invis ht .05 wid .05 ] at O.sw + \
  716. (xscale * (14.807157053169248684 - xlower), yscale * (55 - ylower))
  717. line thick thk from 2nd last [].c to last [].c
  718. [ box invis ht .05 wid .05 ] at O.sw + \
  719. (xscale * (14.907044474872799711 - xlower), yscale * (55 - ylower))
  720. line thick thk from 2nd last [].c to last [].c
  721. [ box invis ht .05 wid .05 ] at O.sw + \
  722. (xscale * (15 - xlower), yscale * (55 - ylower))
  723. line thick thk from 2nd last [].c to last [].c
  724. [ box invis ht .05 wid .05 ] at O.sw + \
  725. (xscale * (15.170078880706594049 - xlower), yscale * (56 - ylower))
  726. line thick thk from 2nd last [].c to last [].c
  727. [ box invis ht .05 wid .05 ] at O.sw + \
  728. (xscale * (15.32183575944998033 - xlower), yscale * (55 - ylower))
  729. line thick thk from 2nd last [].c to last [].c
  730. [ box invis ht .05 wid .05 ] at O.sw + \
  731. (xscale * (15.459473587337127398 - xlower), yscale * (55 - ylower))
  732. line thick thk from 2nd last [].c to last [].c
  733. [ box invis ht .05 wid .05 ] at O.sw + \
  734. (xscale * (15.585116379985436197 - xlower), yscale * (55 - ylower))
  735. line thick thk from 2nd last [].c to last [].c
  736. [ box invis ht .05 wid .05 ] at O.sw + \
  737. (xscale * (15.700404205210695352 - xlower), yscale * (55 - ylower))
  738. line thick thk from 2nd last [].c to last [].c
  739. [ box invis ht .05 wid .05 ] at O.sw + \
  740. (xscale * (15.807420872323479699 - xlower), yscale * (55 - ylower))
  741. line thick thk from 2nd last [].c to last [].c
  742. [ box invis ht .05 wid .05 ] at O.sw + \
  743. (xscale * (15.906798260171138182 - xlower), yscale * (55 - ylower))
  744. line thick thk from 2nd last [].c to last [].c
  745. [ box invis ht .05 wid .05 ] at O.sw + \
  746. (xscale * (16 - xlower), yscale * (56 - ylower))
  747. line thick thk from 2nd last [].c to last [].c
  748. [ box invis ht .05 wid .05 ] at O.sw + \
  749. (xscale * (16.1698737047066885 - xlower), yscale * (56 - ylower))
  750. line thick thk from 2nd last [].c to last [].c
  751. [ box invis ht .05 wid .05 ] at O.sw + \
  752. (xscale * (16.322020424415466522 - xlower), yscale * (55 - ylower))
  753. line thick thk from 2nd last [].c to last [].c
  754. [ box invis ht .05 wid .05 ] at O.sw + \
  755. (xscale * (16.459473587337129175 - xlower), yscale * (54 - ylower))
  756. line thick thk from 2nd last [].c to last [].c
  757. [ box invis ht .05 wid .05 ] at O.sw + \
  758. (xscale * (16.584962500721157852 - xlower), yscale * (56 - ylower))
  759. line thick thk from 2nd last [].c to last [].c
  760. [ box invis ht .05 wid .05 ] at O.sw + \
  761. (xscale * (16.700404205210695352 - xlower), yscale * (55 - ylower))
  762. line thick thk from 2nd last [].c to last [].c
  763. [ box invis ht .05 wid .05 ] at O.sw + \
  764. (xscale * (16.807420872323479699 - xlower), yscale * (56 - ylower))
  765. line thick thk from 2nd last [].c to last [].c
  766. [ box invis ht .05 wid .05 ] at O.sw + \
  767. (xscale * (16.906921372774437629 - xlower), yscale * (56 - ylower))
  768. line thick thk from 2nd last [].c to last [].c
  769. [ box invis ht .05 wid .05 ] at O.sw + \
  770. (xscale * (17 - xlower), yscale * (51 - ylower))
  771. line thick thk from 2nd last [].c to last [].c
  772. [ box invis ht .05 wid .05 ] at O.sw + \
  773. (xscale * (17.169976296354082734 - xlower), yscale * (50 - ylower))
  774. line thick thk from 2nd last [].c to last [].c
  775. [ box invis ht .05 wid .05 ] at O.sw + \
  776. (xscale * (17.32192809488736529 - xlower), yscale * (56 - ylower))
  777. line thick thk from 2nd last [].c to last [].c
  778. [ box invis ht .05 wid .05 ] at O.sw + \
  779. (xscale * (17.459473587337129175 - xlower), yscale * (57 - ylower))
  780. line thick thk from 2nd last [].c to last [].c
  781. [ box invis ht .05 wid .05 ] at O.sw + \
  782. (xscale * (17.584962500721157852 - xlower), yscale * (56 - ylower))
  783. line thick thk from 2nd last [].c to last [].c
  784. [ box invis ht .05 wid .05 ] at O.sw + \
  785. (xscale * (17.700475230197337595 - xlower), yscale * (57 - ylower))
  786. line thick thk from 2nd last [].c to last [].c
  787. [ box invis ht .05 wid .05 ] at O.sw + \
  788. (xscale * (17.807354922057605506 - xlower), yscale * (58 - ylower))
  789. line thick thk from 2nd last [].c to last [].c
  790. [ box invis ht .05 wid .05 ] at O.sw + \
  791. (xscale * (17.906921372774437629 - xlower), yscale * (58 - ylower))
  792. line thick thk from 2nd last [].c to last [].c
  793. [ box invis ht .05 wid .05 ] at O.sw + \
  794. (xscale * (18 - xlower), yscale * (61 - ylower))
  795. line thick thk from 2nd last [].c to last [].c
  796. [ box invis ht .05 wid .05 ] at O.sw + \
  797. (xscale * (18.169925001442312151 - xlower), yscale * (61 - ylower))
  798. line thick thk from 2nd last [].c to last [].c
  799. [ box invis ht .05 wid .05 ] at O.sw + \
  800. (xscale * (18.32192809488736529 - xlower), yscale * (61 - ylower))
  801. line thick thk from 2nd last [].c to last [].c
  802. [ box invis ht .05 wid .05 ] at O.sw + \
  803. (xscale * (18.459431618637296424 - xlower), yscale * (62 - ylower))
  804. line thick thk from 2nd last [].c to last [].c
  805. [ box invis ht .05 wid .05 ] at O.sw + \
  806. (xscale * (18.584962500721157852 - xlower), yscale * (63 - ylower))
  807. line thick thk from 2nd last [].c to last [].c
  808. [ box invis ht .05 wid .05 ] at O.sw + \
  809. (xscale * (18.70043971814109085 - xlower), yscale * (63 - ylower))
  810. line thick thk from 2nd last [].c to last [].c
  811. [ box invis ht .05 wid .05 ] at O.sw + \
  812. (xscale * (18.807354922057605506 - xlower), yscale * (76 - ylower))
  813. line thick thk from 2nd last [].c to last [].c
  814. [ box invis ht .05 wid .05 ] at O.sw + \
  815. (xscale * (18.90689059560851959 - xlower), yscale * (78 - ylower))
  816. line thick thk from 2nd last [].c to last [].c
  817. [ box invis ht .05 wid .05 ] at O.sw + \
  818. (xscale * (19 - xlower), yscale * (79 - ylower))
  819. line thick thk from 2nd last [].c to last [].c
  820. [ box invis ht .05 wid .05 ] at O.sw + \
  821. (xscale * (20 - xlower), yscale * (323 - ylower))
  822. line thick thk from 2nd last [].c to last [].c
  823. [ box invis ht .05 wid .05 ] at O.sw + \
  824. (xscale * (20.584962500721154299 - xlower), yscale * (327 - ylower))
  825. line thick thk from 2nd last [].c to last [].c
  826. [ box invis ht .05 wid .05 ] at O.sw + \
  827. (xscale * (21 - xlower), yscale * (327 - ylower))
  828. line thick thk from 2nd last [].c to last [].c
  829. [ box invis ht .05 wid .05 ] at O.sw + \
  830. (xscale * (21.321928094887361738 - xlower), yscale * (327 - ylower))
  831. line thick thk from 2nd last [].c to last [].c
  832. [ box invis ht .05 wid .05 ] at O.sw + \
  833. (xscale * (21.584962500721154299 - xlower), yscale * (326 - ylower))
  834. line thick thk from 2nd last [].c to last [].c
  835. [ box invis ht .05 wid .05 ] at O.sw + \
  836. (xscale * (21.807354922057605506 - xlower), yscale * (325 - ylower))
  837. line thick thk from 2nd last [].c to last [].c
  838. [ box invis ht .05 wid .05 ] at O.sw + \
  839. (xscale * (22 - xlower), yscale * (326 - ylower))
  840. line thick thk from 2nd last [].c to last [].c
  841. [ box invis ht .05 wid .05 ] at O.sw + \
  842. (xscale * (22.169925001442312151 - xlower), yscale * (326 - ylower))
  843. line thick thk from 2nd last [].c to last [].c
  844. [ box invis ht .05 wid .05 ] at O.sw + \
  845. (xscale * (22.321928094887361738 - xlower), yscale * (328 - ylower))
  846. line thick thk from 2nd last [].c to last [].c
  847. [ box invis ht .05 wid .05 ] at O.sw + \
  848. (xscale * (22.459431618637296424 - xlower), yscale * (326 - ylower))
  849. line thick thk from 2nd last [].c to last [].c
  850. [ box invis ht .05 wid .05 ] at O.sw + \
  851. (xscale * (22.584962500721157852 - xlower), yscale * (326 - ylower))
  852. line thick thk from 2nd last [].c to last [].c
  853. [ box invis ht .05 wid .05 ] at O.sw + \
  854. (xscale * (22.70043971814109085 - xlower), yscale * (327 - ylower))
  855. line thick thk from 2nd last [].c to last [].c
  856. [ box invis ht .05 wid .05 ] at O.sw + \
  857. (xscale * (22.807354922057605506 - xlower), yscale * (327 - ylower))
  858. line thick thk from 2nd last [].c to last [].c
  859. [ box invis ht .05 wid .05 ] at O.sw + \
  860. (xscale * (22.90689059560851959 - xlower), yscale * (327 - ylower))
  861. line thick thk from 2nd last [].c to last [].c
  862. [ box invis ht .05 wid .05 ] at O.sw + \
  863. (xscale * (23 - xlower), yscale * (327 - ylower))
  864. line thick thk from 2nd last [].c to last [].c
  865. [ "\(mu" ] at O.sw + \
  866. (xscale * (23 - xlower), yscale * (327 - ylower))
  867. # DATASET: stride=128, MARK 4
  868. [ "\s+4\(bu\s0" ] at O.sw + \
  869. (xscale * (9.0050693696783969955 - xlower), yscale * (10 - ylower))
  870. [ box invis ht .05 wid .05 ] at O.sw + \
  871. (xscale * (10.005069369678396995 - xlower), yscale * (10 - ylower))
  872. line thick thk from 2nd last [].c to last [].c
  873. [ box invis ht .05 wid .05 ] at O.sw + \
  874. (xscale * (10.997689839312798199 - xlower), yscale * (11 - ylower))
  875. line thick thk from 2nd last [].c to last [].c
  876. [ box invis ht .05 wid .05 ] at O.sw + \
  877. (xscale * (11.585116379985436197 - xlower), yscale * (11 - ylower))
  878. line thick thk from 2nd last [].c to last [].c
  879. [ box invis ht .05 wid .05 ] at O.sw + \
  880. (xscale * (12.001384322870542576 - xlower), yscale * (11 - ylower))
  881. line thick thk from 2nd last [].c to last [].c
  882. [ box invis ht .05 wid .05 ] at O.sw + \
  883. (xscale * (12.585116379985436197 - xlower), yscale * (10 - ylower))
  884. line thick thk from 2nd last [].c to last [].c
  885. [ box invis ht .05 wid .05 ] at O.sw + \
  886. (xscale * (12.999538263705169072 - xlower), yscale * (10 - ylower))
  887. line thick thk from 2nd last [].c to last [].c
  888. [ box invis ht .05 wid .05 ] at O.sw + \
  889. (xscale * (13.322574277531574083 - xlower), yscale * (27 - ylower))
  890. line thick thk from 2nd last [].c to last [].c
  891. [ box invis ht .05 wid .05 ] at O.sw + \
  892. (xscale * (13.585116379985436197 - xlower), yscale * (39 - ylower))
  893. line thick thk from 2nd last [].c to last [].c
  894. [ box invis ht .05 wid .05 ] at O.sw + \
  895. (xscale * (13.807157053169248684 - xlower), yscale * (48 - ylower))
  896. line thick thk from 2nd last [].c to last [].c
  897. [ box invis ht .05 wid .05 ] at O.sw + \
  898. (xscale * (14.000461588562853166 - xlower), yscale * (55 - ylower))
  899. line thick thk from 2nd last [].c to last [].c
  900. [ box invis ht .05 wid .05 ] at O.sw + \
  901. (xscale * (14.170078880706594049 - xlower), yscale * (54 - ylower))
  902. line thick thk from 2nd last [].c to last [].c
  903. [ box invis ht .05 wid .05 ] at O.sw + \
  904. (xscale * (14.32183575944998033 - xlower), yscale * (55 - ylower))
  905. line thick thk from 2nd last [].c to last [].c
  906. [ box invis ht .05 wid .05 ] at O.sw + \
  907. (xscale * (14.459137803548600232 - xlower), yscale * (55 - ylower))
  908. line thick thk from 2nd last [].c to last [].c
  909. [ box invis ht .05 wid .05 ] at O.sw + \
  910. (xscale * (14.585116379985436197 - xlower), yscale * (55 - ylower))
  911. line thick thk from 2nd last [].c to last [].c
  912. [ box invis ht .05 wid .05 ] at O.sw + \
  913. (xscale * (14.700404205210695352 - xlower), yscale * (55 - ylower))
  914. line thick thk from 2nd last [].c to last [].c
  915. [ box invis ht .05 wid .05 ] at O.sw + \
  916. (xscale * (14.807157053169248684 - xlower), yscale * (55 - ylower))
  917. line thick thk from 2nd last [].c to last [].c
  918. [ box invis ht .05 wid .05 ] at O.sw + \
  919. (xscale * (14.907044474872799711 - xlower), yscale * (55 - ylower))
  920. line thick thk from 2nd last [].c to last [].c
  921. [ box invis ht .05 wid .05 ] at O.sw + \
  922. (xscale * (15 - xlower), yscale * (55 - ylower))
  923. line thick thk from 2nd last [].c to last [].c
  924. [ box invis ht .05 wid .05 ] at O.sw + \
  925. (xscale * (15.170078880706594049 - xlower), yscale * (55 - ylower))
  926. line thick thk from 2nd last [].c to last [].c
  927. [ box invis ht .05 wid .05 ] at O.sw + \
  928. (xscale * (15.32183575944998033 - xlower), yscale * (54 - ylower))
  929. line thick thk from 2nd last [].c to last [].c
  930. [ box invis ht .05 wid .05 ] at O.sw + \
  931. (xscale * (15.459473587337127398 - xlower), yscale * (55 - ylower))
  932. line thick thk from 2nd last [].c to last [].c
  933. [ box invis ht .05 wid .05 ] at O.sw + \
  934. (xscale * (15.585116379985436197 - xlower), yscale * (55 - ylower))
  935. line thick thk from 2nd last [].c to last [].c
  936. [ box invis ht .05 wid .05 ] at O.sw + \
  937. (xscale * (15.700404205210695352 - xlower), yscale * (55 - ylower))
  938. line thick thk from 2nd last [].c to last [].c
  939. [ box invis ht .05 wid .05 ] at O.sw + \
  940. (xscale * (15.807420872323479699 - xlower), yscale * (55 - ylower))
  941. line thick thk from 2nd last [].c to last [].c
  942. [ box invis ht .05 wid .05 ] at O.sw + \
  943. (xscale * (15.906798260171138182 - xlower), yscale * (55 - ylower))
  944. line thick thk from 2nd last [].c to last [].c
  945. [ box invis ht .05 wid .05 ] at O.sw + \
  946. (xscale * (16 - xlower), yscale * (55 - ylower))
  947. line thick thk from 2nd last [].c to last [].c
  948. [ box invis ht .05 wid .05 ] at O.sw + \
  949. (xscale * (16.1698737047066885 - xlower), yscale * (55 - ylower))
  950. line thick thk from 2nd last [].c to last [].c
  951. [ box invis ht .05 wid .05 ] at O.sw + \
  952. (xscale * (16.322020424415466522 - xlower), yscale * (55 - ylower))
  953. line thick thk from 2nd last [].c to last [].c
  954. [ box invis ht .05 wid .05 ] at O.sw + \
  955. (xscale * (16.459473587337129175 - xlower), yscale * (55 - ylower))
  956. line thick thk from 2nd last [].c to last [].c
  957. [ box invis ht .05 wid .05 ] at O.sw + \
  958. (xscale * (16.584962500721157852 - xlower), yscale * (55 - ylower))
  959. line thick thk from 2nd last [].c to last [].c
  960. [ box invis ht .05 wid .05 ] at O.sw + \
  961. (xscale * (16.700404205210695352 - xlower), yscale * (55 - ylower))
  962. line thick thk from 2nd last [].c to last [].c
  963. [ box invis ht .05 wid .05 ] at O.sw + \
  964. (xscale * (16.807420872323479699 - xlower), yscale * (55 - ylower))
  965. line thick thk from 2nd last [].c to last [].c
  966. [ box invis ht .05 wid .05 ] at O.sw + \
  967. (xscale * (16.906921372774437629 - xlower), yscale * (56 - ylower))
  968. line thick thk from 2nd last [].c to last [].c
  969. [ box invis ht .05 wid .05 ] at O.sw + \
  970. (xscale * (17 - xlower), yscale * (56 - ylower))
  971. line thick thk from 2nd last [].c to last [].c
  972. [ box invis ht .05 wid .05 ] at O.sw + \
  973. (xscale * (17.169976296354082734 - xlower), yscale * (55 - ylower))
  974. line thick thk from 2nd last [].c to last [].c
  975. [ box invis ht .05 wid .05 ] at O.sw + \
  976. (xscale * (17.32192809488736529 - xlower), yscale * (56 - ylower))
  977. line thick thk from 2nd last [].c to last [].c
  978. [ box invis ht .05 wid .05 ] at O.sw + \
  979. (xscale * (17.459473587337129175 - xlower), yscale * (56 - ylower))
  980. line thick thk from 2nd last [].c to last [].c
  981. [ box invis ht .05 wid .05 ] at O.sw + \
  982. (xscale * (17.584962500721157852 - xlower), yscale * (56 - ylower))
  983. line thick thk from 2nd last [].c to last [].c
  984. [ box invis ht .05 wid .05 ] at O.sw + \
  985. (xscale * (17.700475230197337595 - xlower), yscale * (56 - ylower))
  986. line thick thk from 2nd last [].c to last [].c
  987. [ box invis ht .05 wid .05 ] at O.sw + \
  988. (xscale * (17.807354922057605506 - xlower), yscale * (56 - ylower))
  989. line thick thk from 2nd last [].c to last [].c
  990. [ box invis ht .05 wid .05 ] at O.sw + \
  991. (xscale * (17.906921372774437629 - xlower), yscale * (56 - ylower))
  992. line thick thk from 2nd last [].c to last [].c
  993. [ box invis ht .05 wid .05 ] at O.sw + \
  994. (xscale * (18 - xlower), yscale * (59 - ylower))
  995. line thick thk from 2nd last [].c to last [].c
  996. [ box invis ht .05 wid .05 ] at O.sw + \
  997. (xscale * (18.169925001442312151 - xlower), yscale * (60 - ylower))
  998. line thick thk from 2nd last [].c to last [].c
  999. [ box invis ht .05 wid .05 ] at O.sw + \
  1000. (xscale * (18.32192809488736529 - xlower), yscale * (60 - ylower))
  1001. line thick thk from 2nd last [].c to last [].c
  1002. [ box invis ht .05 wid .05 ] at O.sw + \
  1003. (xscale * (18.459431618637296424 - xlower), yscale * (60 - ylower))
  1004. line thick thk from 2nd last [].c to last [].c
  1005. [ box invis ht .05 wid .05 ] at O.sw + \
  1006. (xscale * (18.584962500721157852 - xlower), yscale * (61 - ylower))
  1007. line thick thk from 2nd last [].c to last [].c
  1008. [ box invis ht .05 wid .05 ] at O.sw + \
  1009. (xscale * (18.70043971814109085 - xlower), yscale * (61 - ylower))
  1010. line thick thk from 2nd last [].c to last [].c
  1011. [ box invis ht .05 wid .05 ] at O.sw + \
  1012. (xscale * (18.807354922057605506 - xlower), yscale * (71 - ylower))
  1013. line thick thk from 2nd last [].c to last [].c
  1014. [ box invis ht .05 wid .05 ] at O.sw + \
  1015. (xscale * (18.90689059560851959 - xlower), yscale * (75 - ylower))
  1016. line thick thk from 2nd last [].c to last [].c
  1017. [ box invis ht .05 wid .05 ] at O.sw + \
  1018. (xscale * (19 - xlower), yscale * (75 - ylower))
  1019. line thick thk from 2nd last [].c to last [].c
  1020. [ box invis ht .05 wid .05 ] at O.sw + \
  1021. (xscale * (20 - xlower), yscale * (317 - ylower))
  1022. line thick thk from 2nd last [].c to last [].c
  1023. [ box invis ht .05 wid .05 ] at O.sw + \
  1024. (xscale * (20.584962500721154299 - xlower), yscale * (321 - ylower))
  1025. line thick thk from 2nd last [].c to last [].c
  1026. [ box invis ht .05 wid .05 ] at O.sw + \
  1027. (xscale * (21 - xlower), yscale * (321 - ylower))
  1028. line thick thk from 2nd last [].c to last [].c
  1029. [ box invis ht .05 wid .05 ] at O.sw + \
  1030. (xscale * (21.321928094887361738 - xlower), yscale * (322 - ylower))
  1031. line thick thk from 2nd last [].c to last [].c
  1032. [ box invis ht .05 wid .05 ] at O.sw + \
  1033. (xscale * (21.584962500721154299 - xlower), yscale * (320 - ylower))
  1034. line thick thk from 2nd last [].c to last [].c
  1035. [ box invis ht .05 wid .05 ] at O.sw + \
  1036. (xscale * (21.807354922057605506 - xlower), yscale * (320 - ylower))
  1037. line thick thk from 2nd last [].c to last [].c
  1038. [ box invis ht .05 wid .05 ] at O.sw + \
  1039. (xscale * (22 - xlower), yscale * (320 - ylower))
  1040. line thick thk from 2nd last [].c to last [].c
  1041. [ box invis ht .05 wid .05 ] at O.sw + \
  1042. (xscale * (22.169925001442312151 - xlower), yscale * (319 - ylower))
  1043. line thick thk from 2nd last [].c to last [].c
  1044. [ box invis ht .05 wid .05 ] at O.sw + \
  1045. (xscale * (22.321928094887361738 - xlower), yscale * (320 - ylower))
  1046. line thick thk from 2nd last [].c to last [].c
  1047. [ box invis ht .05 wid .05 ] at O.sw + \
  1048. (xscale * (22.459431618637296424 - xlower), yscale * (321 - ylower))
  1049. line thick thk from 2nd last [].c to last [].c
  1050. [ box invis ht .05 wid .05 ] at O.sw + \
  1051. (xscale * (22.584962500721157852 - xlower), yscale * (320 - ylower))
  1052. line thick thk from 2nd last [].c to last [].c
  1053. [ box invis ht .05 wid .05 ] at O.sw + \
  1054. (xscale * (22.70043971814109085 - xlower), yscale * (321 - ylower))
  1055. line thick thk from 2nd last [].c to last [].c
  1056. [ box invis ht .05 wid .05 ] at O.sw + \
  1057. (xscale * (22.807354922057605506 - xlower), yscale * (323 - ylower))
  1058. line thick thk from 2nd last [].c to last [].c
  1059. [ box invis ht .05 wid .05 ] at O.sw + \
  1060. (xscale * (22.90689059560851959 - xlower), yscale * (321 - ylower))
  1061. line thick thk from 2nd last [].c to last [].c
  1062. [ box invis ht .05 wid .05 ] at O.sw + \
  1063. (xscale * (23 - xlower), yscale * (321 - ylower))
  1064. line thick thk from 2nd last [].c to last [].c
  1065. [ "\s+4\(bu\s0" ] at O.sw + \
  1066. (xscale * (23 - xlower), yscale * (321 - ylower))
  1067. # DATASET: stride=512, MARK 5
  1068. [ box ht .07 wid .07 fill 1 ] at O.sw + \
  1069. (xscale * (9.0050693696783969955 - xlower), yscale * (10 - ylower))
  1070. [ box invis ht .05 wid .05 ] at O.sw + \
  1071. (xscale * (10.005069369678396995 - xlower), yscale * (11 - ylower))
  1072. line thick thk from 2nd last [].c to last [].c
  1073. [ box invis ht .05 wid .05 ] at O.sw + \
  1074. (xscale * (10.997689839312798199 - xlower), yscale * (11 - ylower))
  1075. line thick thk from 2nd last [].c to last [].c
  1076. [ box invis ht .05 wid .05 ] at O.sw + \
  1077. (xscale * (11.585116379985436197 - xlower), yscale * (10 - ylower))
  1078. line thick thk from 2nd last [].c to last [].c
  1079. [ box invis ht .05 wid .05 ] at O.sw + \
  1080. (xscale * (12.001384322870542576 - xlower), yscale * (10 - ylower))
  1081. line thick thk from 2nd last [].c to last [].c
  1082. [ box invis ht .05 wid .05 ] at O.sw + \
  1083. (xscale * (12.585116379985436197 - xlower), yscale * (10 - ylower))
  1084. line thick thk from 2nd last [].c to last [].c
  1085. [ box invis ht .05 wid .05 ] at O.sw + \
  1086. (xscale * (12.999538263705169072 - xlower), yscale * (10 - ylower))
  1087. line thick thk from 2nd last [].c to last [].c
  1088. [ box invis ht .05 wid .05 ] at O.sw + \
  1089. (xscale * (13.322574277531574083 - xlower), yscale * (28 - ylower))
  1090. line thick thk from 2nd last [].c to last [].c
  1091. [ box invis ht .05 wid .05 ] at O.sw + \
  1092. (xscale * (13.585116379985436197 - xlower), yscale * (39 - ylower))
  1093. line thick thk from 2nd last [].c to last [].c
  1094. [ box invis ht .05 wid .05 ] at O.sw + \
  1095. (xscale * (13.807157053169248684 - xlower), yscale * (48 - ylower))
  1096. line thick thk from 2nd last [].c to last [].c
  1097. [ box invis ht .05 wid .05 ] at O.sw + \
  1098. (xscale * (14.000461588562853166 - xlower), yscale * (54 - ylower))
  1099. line thick thk from 2nd last [].c to last [].c
  1100. [ box invis ht .05 wid .05 ] at O.sw + \
  1101. (xscale * (14.170078880706594049 - xlower), yscale * (54 - ylower))
  1102. line thick thk from 2nd last [].c to last [].c
  1103. [ box invis ht .05 wid .05 ] at O.sw + \
  1104. (xscale * (14.32183575944998033 - xlower), yscale * (55 - ylower))
  1105. line thick thk from 2nd last [].c to last [].c
  1106. [ box invis ht .05 wid .05 ] at O.sw + \
  1107. (xscale * (14.459137803548600232 - xlower), yscale * (55 - ylower))
  1108. line thick thk from 2nd last [].c to last [].c
  1109. [ box invis ht .05 wid .05 ] at O.sw + \
  1110. (xscale * (14.585116379985436197 - xlower), yscale * (54 - ylower))
  1111. line thick thk from 2nd last [].c to last [].c
  1112. [ box invis ht .05 wid .05 ] at O.sw + \
  1113. (xscale * (14.700404205210695352 - xlower), yscale * (53 - ylower))
  1114. line thick thk from 2nd last [].c to last [].c
  1115. [ box invis ht .05 wid .05 ] at O.sw + \
  1116. (xscale * (14.807157053169248684 - xlower), yscale * (55 - ylower))
  1117. line thick thk from 2nd last [].c to last [].c
  1118. [ box invis ht .05 wid .05 ] at O.sw + \
  1119. (xscale * (14.907044474872799711 - xlower), yscale * (55 - ylower))
  1120. line thick thk from 2nd last [].c to last [].c
  1121. [ box invis ht .05 wid .05 ] at O.sw + \
  1122. (xscale * (15 - xlower), yscale * (54 - ylower))
  1123. line thick thk from 2nd last [].c to last [].c
  1124. [ box invis ht .05 wid .05 ] at O.sw + \
  1125. (xscale * (15.170078880706594049 - xlower), yscale * (55 - ylower))
  1126. line thick thk from 2nd last [].c to last [].c
  1127. [ box invis ht .05 wid .05 ] at O.sw + \
  1128. (xscale * (15.32183575944998033 - xlower), yscale * (55 - ylower))
  1129. line thick thk from 2nd last [].c to last [].c
  1130. [ box invis ht .05 wid .05 ] at O.sw + \
  1131. (xscale * (15.459473587337127398 - xlower), yscale * (55 - ylower))
  1132. line thick thk from 2nd last [].c to last [].c
  1133. [ box invis ht .05 wid .05 ] at O.sw + \
  1134. (xscale * (15.585116379985436197 - xlower), yscale * (55 - ylower))
  1135. line thick thk from 2nd last [].c to last [].c
  1136. [ box invis ht .05 wid .05 ] at O.sw + \
  1137. (xscale * (15.700404205210695352 - xlower), yscale * (55 - ylower))
  1138. line thick thk from 2nd last [].c to last [].c
  1139. [ box invis ht .05 wid .05 ] at O.sw + \
  1140. (xscale * (15.807420872323479699 - xlower), yscale * (55 - ylower))
  1141. line thick thk from 2nd last [].c to last [].c
  1142. [ box invis ht .05 wid .05 ] at O.sw + \
  1143. (xscale * (15.906798260171138182 - xlower), yscale * (54 - ylower))
  1144. line thick thk from 2nd last [].c to last [].c
  1145. [ box invis ht .05 wid .05 ] at O.sw + \
  1146. (xscale * (16 - xlower), yscale * (50 - ylower))
  1147. line thick thk from 2nd last [].c to last [].c
  1148. [ box invis ht .05 wid .05 ] at O.sw + \
  1149. (xscale * (16.1698737047066885 - xlower), yscale * (50 - ylower))
  1150. line thick thk from 2nd last [].c to last [].c
  1151. [ box invis ht .05 wid .05 ] at O.sw + \
  1152. (xscale * (16.322020424415466522 - xlower), yscale * (50 - ylower))
  1153. line thick thk from 2nd last [].c to last [].c
  1154. [ box invis ht .05 wid .05 ] at O.sw + \
  1155. (xscale * (16.459473587337129175 - xlower), yscale * (50 - ylower))
  1156. line thick thk from 2nd last [].c to last [].c
  1157. [ box invis ht .05 wid .05 ] at O.sw + \
  1158. (xscale * (16.584962500721157852 - xlower), yscale * (50 - ylower))
  1159. line thick thk from 2nd last [].c to last [].c
  1160. [ box invis ht .05 wid .05 ] at O.sw + \
  1161. (xscale * (16.700404205210695352 - xlower), yscale * (50 - ylower))
  1162. line thick thk from 2nd last [].c to last [].c
  1163. [ box invis ht .05 wid .05 ] at O.sw + \
  1164. (xscale * (16.807420872323479699 - xlower), yscale * (50 - ylower))
  1165. line thick thk from 2nd last [].c to last [].c
  1166. [ box invis ht .05 wid .05 ] at O.sw + \
  1167. (xscale * (16.906921372774437629 - xlower), yscale * (54 - ylower))
  1168. line thick thk from 2nd last [].c to last [].c
  1169. [ box invis ht .05 wid .05 ] at O.sw + \
  1170. (xscale * (17 - xlower), yscale * (55 - ylower))
  1171. line thick thk from 2nd last [].c to last [].c
  1172. [ box invis ht .05 wid .05 ] at O.sw + \
  1173. (xscale * (17.169976296354082734 - xlower), yscale * (55 - ylower))
  1174. line thick thk from 2nd last [].c to last [].c
  1175. [ box invis ht .05 wid .05 ] at O.sw + \
  1176. (xscale * (17.32192809488736529 - xlower), yscale * (55 - ylower))
  1177. line thick thk from 2nd last [].c to last [].c
  1178. [ box invis ht .05 wid .05 ] at O.sw + \
  1179. (xscale * (17.459473587337129175 - xlower), yscale * (55 - ylower))
  1180. line thick thk from 2nd last [].c to last [].c
  1181. [ box invis ht .05 wid .05 ] at O.sw + \
  1182. (xscale * (17.584962500721157852 - xlower), yscale * (56 - ylower))
  1183. line thick thk from 2nd last [].c to last [].c
  1184. [ box invis ht .05 wid .05 ] at O.sw + \
  1185. (xscale * (17.700475230197337595 - xlower), yscale * (55 - ylower))
  1186. line thick thk from 2nd last [].c to last [].c
  1187. [ box invis ht .05 wid .05 ] at O.sw + \
  1188. (xscale * (17.807354922057605506 - xlower), yscale * (56 - ylower))
  1189. line thick thk from 2nd last [].c to last [].c
  1190. [ box invis ht .05 wid .05 ] at O.sw + \
  1191. (xscale * (17.906921372774437629 - xlower), yscale * (56 - ylower))
  1192. line thick thk from 2nd last [].c to last [].c
  1193. [ box invis ht .05 wid .05 ] at O.sw + \
  1194. (xscale * (18 - xlower), yscale * (67 - ylower))
  1195. line thick thk from 2nd last [].c to last [].c
  1196. [ box invis ht .05 wid .05 ] at O.sw + \
  1197. (xscale * (18.169925001442312151 - xlower), yscale * (67 - ylower))
  1198. line thick thk from 2nd last [].c to last [].c
  1199. [ box invis ht .05 wid .05 ] at O.sw + \
  1200. (xscale * (18.32192809488736529 - xlower), yscale * (67 - ylower))
  1201. line thick thk from 2nd last [].c to last [].c
  1202. [ box invis ht .05 wid .05 ] at O.sw + \
  1203. (xscale * (18.459431618637296424 - xlower), yscale * (67 - ylower))
  1204. line thick thk from 2nd last [].c to last [].c
  1205. [ box invis ht .05 wid .05 ] at O.sw + \
  1206. (xscale * (18.584962500721157852 - xlower), yscale * (67 - ylower))
  1207. line thick thk from 2nd last [].c to last [].c
  1208. [ box invis ht .05 wid .05 ] at O.sw + \
  1209. (xscale * (18.70043971814109085 - xlower), yscale * (67 - ylower))
  1210. line thick thk from 2nd last [].c to last [].c
  1211. [ box invis ht .05 wid .05 ] at O.sw + \
  1212. (xscale * (18.807354922057605506 - xlower), yscale * (77 - ylower))
  1213. line thick thk from 2nd last [].c to last [].c
  1214. [ box invis ht .05 wid .05 ] at O.sw + \
  1215. (xscale * (18.90689059560851959 - xlower), yscale * (74 - ylower))
  1216. line thick thk from 2nd last [].c to last [].c
  1217. [ box invis ht .05 wid .05 ] at O.sw + \
  1218. (xscale * (19 - xlower), yscale * (80 - ylower))
  1219. line thick thk from 2nd last [].c to last [].c
  1220. [ box invis ht .05 wid .05 ] at O.sw + \
  1221. (xscale * (20 - xlower), yscale * (317 - ylower))
  1222. line thick thk from 2nd last [].c to last [].c
  1223. [ box invis ht .05 wid .05 ] at O.sw + \
  1224. (xscale * (20.584962500721154299 - xlower), yscale * (321 - ylower))
  1225. line thick thk from 2nd last [].c to last [].c
  1226. [ box invis ht .05 wid .05 ] at O.sw + \
  1227. (xscale * (21 - xlower), yscale * (320 - ylower))
  1228. line thick thk from 2nd last [].c to last [].c
  1229. [ box invis ht .05 wid .05 ] at O.sw + \
  1230. (xscale * (21.321928094887361738 - xlower), yscale * (320 - ylower))
  1231. line thick thk from 2nd last [].c to last [].c
  1232. [ box invis ht .05 wid .05 ] at O.sw + \
  1233. (xscale * (21.584962500721154299 - xlower), yscale * (321 - ylower))
  1234. line thick thk from 2nd last [].c to last [].c
  1235. [ box invis ht .05 wid .05 ] at O.sw + \
  1236. (xscale * (21.807354922057605506 - xlower), yscale * (320 - ylower))
  1237. line thick thk from 2nd last [].c to last [].c
  1238. [ box invis ht .05 wid .05 ] at O.sw + \
  1239. (xscale * (22 - xlower), yscale * (321 - ylower))
  1240. line thick thk from 2nd last [].c to last [].c
  1241. [ box invis ht .05 wid .05 ] at O.sw + \
  1242. (xscale * (22.169925001442312151 - xlower), yscale * (320 - ylower))
  1243. line thick thk from 2nd last [].c to last [].c
  1244. [ box invis ht .05 wid .05 ] at O.sw + \
  1245. (xscale * (22.321928094887361738 - xlower), yscale * (321 - ylower))
  1246. line thick thk from 2nd last [].c to last [].c
  1247. [ box invis ht .05 wid .05 ] at O.sw + \
  1248. (xscale * (22.459431618637296424 - xlower), yscale * (322 - ylower))
  1249. line thick thk from 2nd last [].c to last [].c
  1250. [ box invis ht .05 wid .05 ] at O.sw + \
  1251. (xscale * (22.584962500721157852 - xlower), yscale * (321 - ylower))
  1252. line thick thk from 2nd last [].c to last [].c
  1253. [ box invis ht .05 wid .05 ] at O.sw + \
  1254. (xscale * (22.70043971814109085 - xlower), yscale * (321 - ylower))
  1255. line thick thk from 2nd last [].c to last [].c
  1256. [ box invis ht .05 wid .05 ] at O.sw + \
  1257. (xscale * (22.807354922057605506 - xlower), yscale * (322 - ylower))
  1258. line thick thk from 2nd last [].c to last [].c
  1259. [ box invis ht .05 wid .05 ] at O.sw + \
  1260. (xscale * (22.90689059560851959 - xlower), yscale * (322 - ylower))
  1261. line thick thk from 2nd last [].c to last [].c
  1262. [ box invis ht .05 wid .05 ] at O.sw + \
  1263. (xscale * (23 - xlower), yscale * (322 - ylower))
  1264. line thick thk from 2nd last [].c to last [].c
  1265. [ box ht .07 wid .07 fill 1 ] at O.sw + \
  1266. (xscale * (23 - xlower), yscale * (322 - ylower))
  1267. # DATASET: stride=1024, MARK 6
  1268. [ "\s+2\(pl\s0" ] at O.sw + \
  1269. (xscale * (9.0050693696783969955 - xlower), yscale * (11 - ylower))
  1270. [ box invis ht .05 wid .05 ] at O.sw + \
  1271. (xscale * (10.005069369678396995 - xlower), yscale * (10 - ylower))
  1272. line thick thk from 2nd last [].c to last [].c
  1273. [ box invis ht .05 wid .05 ] at O.sw + \
  1274. (xscale * (10.997689839312798199 - xlower), yscale * (10 - ylower))
  1275. line thick thk from 2nd last [].c to last [].c
  1276. [ box invis ht .05 wid .05 ] at O.sw + \
  1277. (xscale * (11.585116379985436197 - xlower), yscale * (11 - ylower))
  1278. line thick thk from 2nd last [].c to last [].c
  1279. [ box invis ht .05 wid .05 ] at O.sw + \
  1280. (xscale * (12.001384322870542576 - xlower), yscale * (11 - ylower))
  1281. line thick thk from 2nd last [].c to last [].c
  1282. [ box invis ht .05 wid .05 ] at O.sw + \
  1283. (xscale * (12.585116379985436197 - xlower), yscale * (10 - ylower))
  1284. line thick thk from 2nd last [].c to last [].c
  1285. [ box invis ht .05 wid .05 ] at O.sw + \
  1286. (xscale * (12.999538263705169072 - xlower), yscale * (11 - ylower))
  1287. line thick thk from 2nd last [].c to last [].c
  1288. [ box invis ht .05 wid .05 ] at O.sw + \
  1289. (xscale * (13.322574277531574083 - xlower), yscale * (27 - ylower))
  1290. line thick thk from 2nd last [].c to last [].c
  1291. [ box invis ht .05 wid .05 ] at O.sw + \
  1292. (xscale * (13.585116379985436197 - xlower), yscale * (39 - ylower))
  1293. line thick thk from 2nd last [].c to last [].c
  1294. [ box invis ht .05 wid .05 ] at O.sw + \
  1295. (xscale * (13.807157053169248684 - xlower), yscale * (48 - ylower))
  1296. line thick thk from 2nd last [].c to last [].c
  1297. [ box invis ht .05 wid .05 ] at O.sw + \
  1298. (xscale * (14.000461588562853166 - xlower), yscale * (53 - ylower))
  1299. line thick thk from 2nd last [].c to last [].c
  1300. [ box invis ht .05 wid .05 ] at O.sw + \
  1301. (xscale * (14.170078880706594049 - xlower), yscale * (54 - ylower))
  1302. line thick thk from 2nd last [].c to last [].c
  1303. [ box invis ht .05 wid .05 ] at O.sw + \
  1304. (xscale * (14.32183575944998033 - xlower), yscale * (54 - ylower))
  1305. line thick thk from 2nd last [].c to last [].c
  1306. [ box invis ht .05 wid .05 ] at O.sw + \
  1307. (xscale * (14.459137803548600232 - xlower), yscale * (54 - ylower))
  1308. line thick thk from 2nd last [].c to last [].c
  1309. [ box invis ht .05 wid .05 ] at O.sw + \
  1310. (xscale * (14.585116379985436197 - xlower), yscale * (55 - ylower))
  1311. line thick thk from 2nd last [].c to last [].c
  1312. [ box invis ht .05 wid .05 ] at O.sw + \
  1313. (xscale * (14.700404205210695352 - xlower), yscale * (55 - ylower))
  1314. line thick thk from 2nd last [].c to last [].c
  1315. [ box invis ht .05 wid .05 ] at O.sw + \
  1316. (xscale * (14.807157053169248684 - xlower), yscale * (55 - ylower))
  1317. line thick thk from 2nd last [].c to last [].c
  1318. [ box invis ht .05 wid .05 ] at O.sw + \
  1319. (xscale * (14.907044474872799711 - xlower), yscale * (54 - ylower))
  1320. line thick thk from 2nd last [].c to last [].c
  1321. [ box invis ht .05 wid .05 ] at O.sw + \
  1322. (xscale * (15 - xlower), yscale * (54 - ylower))
  1323. line thick thk from 2nd last [].c to last [].c
  1324. [ box invis ht .05 wid .05 ] at O.sw + \
  1325. (xscale * (15.170078880706594049 - xlower), yscale * (54 - ylower))
  1326. line thick thk from 2nd last [].c to last [].c
  1327. [ box invis ht .05 wid .05 ] at O.sw + \
  1328. (xscale * (15.32183575944998033 - xlower), yscale * (54 - ylower))
  1329. line thick thk from 2nd last [].c to last [].c
  1330. [ box invis ht .05 wid .05 ] at O.sw + \
  1331. (xscale * (15.459473587337127398 - xlower), yscale * (54 - ylower))
  1332. line thick thk from 2nd last [].c to last [].c
  1333. [ box invis ht .05 wid .05 ] at O.sw + \
  1334. (xscale * (15.585116379985436197 - xlower), yscale * (54 - ylower))
  1335. line thick thk from 2nd last [].c to last [].c
  1336. [ box invis ht .05 wid .05 ] at O.sw + \
  1337. (xscale * (15.700404205210695352 - xlower), yscale * (54 - ylower))
  1338. line thick thk from 2nd last [].c to last [].c
  1339. [ box invis ht .05 wid .05 ] at O.sw + \
  1340. (xscale * (15.807420872323479699 - xlower), yscale * (54 - ylower))
  1341. line thick thk from 2nd last [].c to last [].c
  1342. [ box invis ht .05 wid .05 ] at O.sw + \
  1343. (xscale * (15.906798260171138182 - xlower), yscale * (54 - ylower))
  1344. line thick thk from 2nd last [].c to last [].c
  1345. [ box invis ht .05 wid .05 ] at O.sw + \
  1346. (xscale * (16 - xlower), yscale * (54 - ylower))
  1347. line thick thk from 2nd last [].c to last [].c
  1348. [ box invis ht .05 wid .05 ] at O.sw + \
  1349. (xscale * (16.1698737047066885 - xlower), yscale * (54 - ylower))
  1350. line thick thk from 2nd last [].c to last [].c
  1351. [ box invis ht .05 wid .05 ] at O.sw + \
  1352. (xscale * (16.322020424415466522 - xlower), yscale * (55 - ylower))
  1353. line thick thk from 2nd last [].c to last [].c
  1354. [ box invis ht .05 wid .05 ] at O.sw + \
  1355. (xscale * (16.459473587337129175 - xlower), yscale * (55 - ylower))
  1356. line thick thk from 2nd last [].c to last [].c
  1357. [ box invis ht .05 wid .05 ] at O.sw + \
  1358. (xscale * (16.584962500721157852 - xlower), yscale * (55 - ylower))
  1359. line thick thk from 2nd last [].c to last [].c
  1360. [ box invis ht .05 wid .05 ] at O.sw + \
  1361. (xscale * (16.700404205210695352 - xlower), yscale * (55 - ylower))
  1362. line thick thk from 2nd last [].c to last [].c
  1363. [ box invis ht .05 wid .05 ] at O.sw + \
  1364. (xscale * (16.807420872323479699 - xlower), yscale * (54 - ylower))
  1365. line thick thk from 2nd last [].c to last [].c
  1366. [ box invis ht .05 wid .05 ] at O.sw + \
  1367. (xscale * (16.906921372774437629 - xlower), yscale * (54 - ylower))
  1368. line thick thk from 2nd last [].c to last [].c
  1369. [ box invis ht .05 wid .05 ] at O.sw + \
  1370. (xscale * (17 - xlower), yscale * (54 - ylower))
  1371. line thick thk from 2nd last [].c to last [].c
  1372. [ box invis ht .05 wid .05 ] at O.sw + \
  1373. (xscale * (17.169976296354082734 - xlower), yscale * (54 - ylower))
  1374. line thick thk from 2nd last [].c to last [].c
  1375. [ box invis ht .05 wid .05 ] at O.sw + \
  1376. (xscale * (17.32192809488736529 - xlower), yscale * (55 - ylower))
  1377. line thick thk from 2nd last [].c to last [].c
  1378. [ box invis ht .05 wid .05 ] at O.sw + \
  1379. (xscale * (17.459473587337129175 - xlower), yscale * (55 - ylower))
  1380. line thick thk from 2nd last [].c to last [].c
  1381. [ box invis ht .05 wid .05 ] at O.sw + \
  1382. (xscale * (17.584962500721157852 - xlower), yscale * (55 - ylower))
  1383. line thick thk from 2nd last [].c to last [].c
  1384. [ box invis ht .05 wid .05 ] at O.sw + \
  1385. (xscale * (17.700475230197337595 - xlower), yscale * (55 - ylower))
  1386. line thick thk from 2nd last [].c to last [].c
  1387. [ box invis ht .05 wid .05 ] at O.sw + \
  1388. (xscale * (17.807354922057605506 - xlower), yscale * (55 - ylower))
  1389. line thick thk from 2nd last [].c to last [].c
  1390. [ box invis ht .05 wid .05 ] at O.sw + \
  1391. (xscale * (17.906921372774437629 - xlower), yscale * (55 - ylower))
  1392. line thick thk from 2nd last [].c to last [].c
  1393. [ box invis ht .05 wid .05 ] at O.sw + \
  1394. (xscale * (18 - xlower), yscale * (78 - ylower))
  1395. line thick thk from 2nd last [].c to last [].c
  1396. [ box invis ht .05 wid .05 ] at O.sw + \
  1397. (xscale * (18.169925001442312151 - xlower), yscale * (78 - ylower))
  1398. line thick thk from 2nd last [].c to last [].c
  1399. [ box invis ht .05 wid .05 ] at O.sw + \
  1400. (xscale * (18.32192809488736529 - xlower), yscale * (78 - ylower))
  1401. line thick thk from 2nd last [].c to last [].c
  1402. [ box invis ht .05 wid .05 ] at O.sw + \
  1403. (xscale * (18.459431618637296424 - xlower), yscale * (78 - ylower))
  1404. line thick thk from 2nd last [].c to last [].c
  1405. [ box invis ht .05 wid .05 ] at O.sw + \
  1406. (xscale * (18.584962500721157852 - xlower), yscale * (78 - ylower))
  1407. line thick thk from 2nd last [].c to last [].c
  1408. [ box invis ht .05 wid .05 ] at O.sw + \
  1409. (xscale * (18.70043971814109085 - xlower), yscale * (78 - ylower))
  1410. line thick thk from 2nd last [].c to last [].c
  1411. [ box invis ht .05 wid .05 ] at O.sw + \
  1412. (xscale * (18.807354922057605506 - xlower), yscale * (88 - ylower))
  1413. line thick thk from 2nd last [].c to last [].c
  1414. [ box invis ht .05 wid .05 ] at O.sw + \
  1415. (xscale * (18.90689059560851959 - xlower), yscale * (91 - ylower))
  1416. line thick thk from 2nd last [].c to last [].c
  1417. [ box invis ht .05 wid .05 ] at O.sw + \
  1418. (xscale * (19 - xlower), yscale * (91 - ylower))
  1419. line thick thk from 2nd last [].c to last [].c
  1420. [ box invis ht .05 wid .05 ] at O.sw + \
  1421. (xscale * (20 - xlower), yscale * (324 - ylower))
  1422. line thick thk from 2nd last [].c to last [].c
  1423. [ box invis ht .05 wid .05 ] at O.sw + \
  1424. (xscale * (20.584962500721154299 - xlower), yscale * (325 - ylower))
  1425. line thick thk from 2nd last [].c to last [].c
  1426. [ box invis ht .05 wid .05 ] at O.sw + \
  1427. (xscale * (21 - xlower), yscale * (327 - ylower))
  1428. line thick thk from 2nd last [].c to last [].c
  1429. [ box invis ht .05 wid .05 ] at O.sw + \
  1430. (xscale * (21.321928094887361738 - xlower), yscale * (326 - ylower))
  1431. line thick thk from 2nd last [].c to last [].c
  1432. [ box invis ht .05 wid .05 ] at O.sw + \
  1433. (xscale * (21.584962500721154299 - xlower), yscale * (327 - ylower))
  1434. line thick thk from 2nd last [].c to last [].c
  1435. [ box invis ht .05 wid .05 ] at O.sw + \
  1436. (xscale * (21.807354922057605506 - xlower), yscale * (328 - ylower))
  1437. line thick thk from 2nd last [].c to last [].c
  1438. [ box invis ht .05 wid .05 ] at O.sw + \
  1439. (xscale * (22 - xlower), yscale * (326 - ylower))
  1440. line thick thk from 2nd last [].c to last [].c
  1441. [ box invis ht .05 wid .05 ] at O.sw + \
  1442. (xscale * (22.169925001442312151 - xlower), yscale * (327 - ylower))
  1443. line thick thk from 2nd last [].c to last [].c
  1444. [ box invis ht .05 wid .05 ] at O.sw + \
  1445. (xscale * (22.321928094887361738 - xlower), yscale * (327 - ylower))
  1446. line thick thk from 2nd last [].c to last [].c
  1447. [ box invis ht .05 wid .05 ] at O.sw + \
  1448. (xscale * (22.459431618637296424 - xlower), yscale * (326 - ylower))
  1449. line thick thk from 2nd last [].c to last [].c
  1450. [ box invis ht .05 wid .05 ] at O.sw + \
  1451. (xscale * (22.584962500721157852 - xlower), yscale * (327 - ylower))
  1452. line thick thk from 2nd last [].c to last [].c
  1453. [ box invis ht .05 wid .05 ] at O.sw + \
  1454. (xscale * (22.70043971814109085 - xlower), yscale * (327 - ylower))
  1455. line thick thk from 2nd last [].c to last [].c
  1456. [ box invis ht .05 wid .05 ] at O.sw + \
  1457. (xscale * (22.807354922057605506 - xlower), yscale * (328 - ylower))
  1458. line thick thk from 2nd last [].c to last [].c
  1459. [ box invis ht .05 wid .05 ] at O.sw + \
  1460. (xscale * (22.90689059560851959 - xlower), yscale * (327 - ylower))
  1461. line thick thk from 2nd last [].c to last [].c
  1462. [ box invis ht .05 wid .05 ] at O.sw + \
  1463. (xscale * (23 - xlower), yscale * (326 - ylower))
  1464. line thick thk from 2nd last [].c to last [].c
  1465. [ "\s+2\(pl\s0" ] at O.sw + \
  1466. (xscale * (23 - xlower), yscale * (326 - ylower))
  1467. # DATASET: stride=2048, MARK 7
  1468. [ "\s+4\(**\s0" ] at O.sw + \
  1469. (xscale * (9.0050693696783969955 - xlower), yscale * (10 - ylower))
  1470. [ box invis ht .05 wid .05 ] at O.sw + \
  1471. (xscale * (10.005069369678396995 - xlower), yscale * (10 - ylower))
  1472. line thick thk from 2nd last [].c to last [].c
  1473. [ box invis ht .05 wid .05 ] at O.sw + \
  1474. (xscale * (10.997689839312798199 - xlower), yscale * (10 - ylower))
  1475. line thick thk from 2nd last [].c to last [].c
  1476. [ box invis ht .05 wid .05 ] at O.sw + \
  1477. (xscale * (11.585116379985436197 - xlower), yscale * (10 - ylower))
  1478. line thick thk from 2nd last [].c to last [].c
  1479. [ box invis ht .05 wid .05 ] at O.sw + \
  1480. (xscale * (12.001384322870542576 - xlower), yscale * (10 - ylower))
  1481. line thick thk from 2nd last [].c to last [].c
  1482. [ box invis ht .05 wid .05 ] at O.sw + \
  1483. (xscale * (12.585116379985436197 - xlower), yscale * (10 - ylower))
  1484. line thick thk from 2nd last [].c to last [].c
  1485. [ box invis ht .05 wid .05 ] at O.sw + \
  1486. (xscale * (12.999538263705169072 - xlower), yscale * (10 - ylower))
  1487. line thick thk from 2nd last [].c to last [].c
  1488. [ box invis ht .05 wid .05 ] at O.sw + \
  1489. (xscale * (13.322574277531574083 - xlower), yscale * (27 - ylower))
  1490. line thick thk from 2nd last [].c to last [].c
  1491. [ box invis ht .05 wid .05 ] at O.sw + \
  1492. (xscale * (13.585116379985436197 - xlower), yscale * (40 - ylower))
  1493. line thick thk from 2nd last [].c to last [].c
  1494. [ box invis ht .05 wid .05 ] at O.sw + \
  1495. (xscale * (13.807157053169248684 - xlower), yscale * (48 - ylower))
  1496. line thick thk from 2nd last [].c to last [].c
  1497. [ box invis ht .05 wid .05 ] at O.sw + \
  1498. (xscale * (14.000461588562853166 - xlower), yscale * (54 - ylower))
  1499. line thick thk from 2nd last [].c to last [].c
  1500. [ box invis ht .05 wid .05 ] at O.sw + \
  1501. (xscale * (14.170078880706594049 - xlower), yscale * (54 - ylower))
  1502. line thick thk from 2nd last [].c to last [].c
  1503. [ box invis ht .05 wid .05 ] at O.sw + \
  1504. (xscale * (14.32183575944998033 - xlower), yscale * (55 - ylower))
  1505. line thick thk from 2nd last [].c to last [].c
  1506. [ box invis ht .05 wid .05 ] at O.sw + \
  1507. (xscale * (14.459137803548600232 - xlower), yscale * (54 - ylower))
  1508. line thick thk from 2nd last [].c to last [].c
  1509. [ box invis ht .05 wid .05 ] at O.sw + \
  1510. (xscale * (14.585116379985436197 - xlower), yscale * (54 - ylower))
  1511. line thick thk from 2nd last [].c to last [].c
  1512. [ box invis ht .05 wid .05 ] at O.sw + \
  1513. (xscale * (14.700404205210695352 - xlower), yscale * (55 - ylower))
  1514. line thick thk from 2nd last [].c to last [].c
  1515. [ box invis ht .05 wid .05 ] at O.sw + \
  1516. (xscale * (14.807157053169248684 - xlower), yscale * (54 - ylower))
  1517. line thick thk from 2nd last [].c to last [].c
  1518. [ box invis ht .05 wid .05 ] at O.sw + \
  1519. (xscale * (14.907044474872799711 - xlower), yscale * (54 - ylower))
  1520. line thick thk from 2nd last [].c to last [].c
  1521. [ box invis ht .05 wid .05 ] at O.sw + \
  1522. (xscale * (15 - xlower), yscale * (54 - ylower))
  1523. line thick thk from 2nd last [].c to last [].c
  1524. [ box invis ht .05 wid .05 ] at O.sw + \
  1525. (xscale * (15.170078880706594049 - xlower), yscale * (54 - ylower))
  1526. line thick thk from 2nd last [].c to last [].c
  1527. [ box invis ht .05 wid .05 ] at O.sw + \
  1528. (xscale * (15.32183575944998033 - xlower), yscale * (54 - ylower))
  1529. line thick thk from 2nd last [].c to last [].c
  1530. [ box invis ht .05 wid .05 ] at O.sw + \
  1531. (xscale * (15.459473587337127398 - xlower), yscale * (54 - ylower))
  1532. line thick thk from 2nd last [].c to last [].c
  1533. [ box invis ht .05 wid .05 ] at O.sw + \
  1534. (xscale * (15.585116379985436197 - xlower), yscale * (55 - ylower))
  1535. line thick thk from 2nd last [].c to last [].c
  1536. [ box invis ht .05 wid .05 ] at O.sw + \
  1537. (xscale * (15.700404205210695352 - xlower), yscale * (54 - ylower))
  1538. line thick thk from 2nd last [].c to last [].c
  1539. [ box invis ht .05 wid .05 ] at O.sw + \
  1540. (xscale * (15.807420872323479699 - xlower), yscale * (54 - ylower))
  1541. line thick thk from 2nd last [].c to last [].c
  1542. [ box invis ht .05 wid .05 ] at O.sw + \
  1543. (xscale * (15.906798260171138182 - xlower), yscale * (54 - ylower))
  1544. line thick thk from 2nd last [].c to last [].c
  1545. [ box invis ht .05 wid .05 ] at O.sw + \
  1546. (xscale * (16 - xlower), yscale * (54 - ylower))
  1547. line thick thk from 2nd last [].c to last [].c
  1548. [ box invis ht .05 wid .05 ] at O.sw + \
  1549. (xscale * (16.1698737047066885 - xlower), yscale * (54 - ylower))
  1550. line thick thk from 2nd last [].c to last [].c
  1551. [ box invis ht .05 wid .05 ] at O.sw + \
  1552. (xscale * (16.322020424415466522 - xlower), yscale * (55 - ylower))
  1553. line thick thk from 2nd last [].c to last [].c
  1554. [ box invis ht .05 wid .05 ] at O.sw + \
  1555. (xscale * (16.459473587337129175 - xlower), yscale * (55 - ylower))
  1556. line thick thk from 2nd last [].c to last [].c
  1557. [ box invis ht .05 wid .05 ] at O.sw + \
  1558. (xscale * (16.584962500721157852 - xlower), yscale * (55 - ylower))
  1559. line thick thk from 2nd last [].c to last [].c
  1560. [ box invis ht .05 wid .05 ] at O.sw + \
  1561. (xscale * (16.700404205210695352 - xlower), yscale * (55 - ylower))
  1562. line thick thk from 2nd last [].c to last [].c
  1563. [ box invis ht .05 wid .05 ] at O.sw + \
  1564. (xscale * (16.807420872323479699 - xlower), yscale * (54 - ylower))
  1565. line thick thk from 2nd last [].c to last [].c
  1566. [ box invis ht .05 wid .05 ] at O.sw + \
  1567. (xscale * (16.906921372774437629 - xlower), yscale * (54 - ylower))
  1568. line thick thk from 2nd last [].c to last [].c
  1569. [ box invis ht .05 wid .05 ] at O.sw + \
  1570. (xscale * (17 - xlower), yscale * (54 - ylower))
  1571. line thick thk from 2nd last [].c to last [].c
  1572. [ box invis ht .05 wid .05 ] at O.sw + \
  1573. (xscale * (17.169976296354082734 - xlower), yscale * (54 - ylower))
  1574. line thick thk from 2nd last [].c to last [].c
  1575. [ box invis ht .05 wid .05 ] at O.sw + \
  1576. (xscale * (17.32192809488736529 - xlower), yscale * (55 - ylower))
  1577. line thick thk from 2nd last [].c to last [].c
  1578. [ box invis ht .05 wid .05 ] at O.sw + \
  1579. (xscale * (17.459473587337129175 - xlower), yscale * (55 - ylower))
  1580. line thick thk from 2nd last [].c to last [].c
  1581. [ box invis ht .05 wid .05 ] at O.sw + \
  1582. (xscale * (17.584962500721157852 - xlower), yscale * (55 - ylower))
  1583. line thick thk from 2nd last [].c to last [].c
  1584. [ box invis ht .05 wid .05 ] at O.sw + \
  1585. (xscale * (17.700475230197337595 - xlower), yscale * (55 - ylower))
  1586. line thick thk from 2nd last [].c to last [].c
  1587. [ box invis ht .05 wid .05 ] at O.sw + \
  1588. (xscale * (17.807354922057605506 - xlower), yscale * (55 - ylower))
  1589. line thick thk from 2nd last [].c to last [].c
  1590. [ box invis ht .05 wid .05 ] at O.sw + \
  1591. (xscale * (17.906921372774437629 - xlower), yscale * (55 - ylower))
  1592. line thick thk from 2nd last [].c to last [].c
  1593. [ box invis ht .05 wid .05 ] at O.sw + \
  1594. (xscale * (18 - xlower), yscale * (100 - ylower))
  1595. line thick thk from 2nd last [].c to last [].c
  1596. [ box invis ht .05 wid .05 ] at O.sw + \
  1597. (xscale * (18.169925001442312151 - xlower), yscale * (100 - ylower))
  1598. line thick thk from 2nd last [].c to last [].c
  1599. [ box invis ht .05 wid .05 ] at O.sw + \
  1600. (xscale * (18.32192809488736529 - xlower), yscale * (100 - ylower))
  1601. line thick thk from 2nd last [].c to last [].c
  1602. [ box invis ht .05 wid .05 ] at O.sw + \
  1603. (xscale * (18.459431618637296424 - xlower), yscale * (100 - ylower))
  1604. line thick thk from 2nd last [].c to last [].c
  1605. [ box invis ht .05 wid .05 ] at O.sw + \
  1606. (xscale * (18.584962500721157852 - xlower), yscale * (100 - ylower))
  1607. line thick thk from 2nd last [].c to last [].c
  1608. [ box invis ht .05 wid .05 ] at O.sw + \
  1609. (xscale * (18.70043971814109085 - xlower), yscale * (100 - ylower))
  1610. line thick thk from 2nd last [].c to last [].c
  1611. [ box invis ht .05 wid .05 ] at O.sw + \
  1612. (xscale * (18.807354922057605506 - xlower), yscale * (111 - ylower))
  1613. line thick thk from 2nd last [].c to last [].c
  1614. [ box invis ht .05 wid .05 ] at O.sw + \
  1615. (xscale * (18.90689059560851959 - xlower), yscale * (115 - ylower))
  1616. line thick thk from 2nd last [].c to last [].c
  1617. [ box invis ht .05 wid .05 ] at O.sw + \
  1618. (xscale * (19 - xlower), yscale * (114 - ylower))
  1619. line thick thk from 2nd last [].c to last [].c
  1620. [ box invis ht .05 wid .05 ] at O.sw + \
  1621. (xscale * (20 - xlower), yscale * (340 - ylower))
  1622. line thick thk from 2nd last [].c to last [].c
  1623. [ box invis ht .05 wid .05 ] at O.sw + \
  1624. (xscale * (20.584962500721154299 - xlower), yscale * (340 - ylower))
  1625. line thick thk from 2nd last [].c to last [].c
  1626. [ box invis ht .05 wid .05 ] at O.sw + \
  1627. (xscale * (21 - xlower), yscale * (343 - ylower))
  1628. line thick thk from 2nd last [].c to last [].c
  1629. [ box invis ht .05 wid .05 ] at O.sw + \
  1630. (xscale * (21.321928094887361738 - xlower), yscale * (344 - ylower))
  1631. line thick thk from 2nd last [].c to last [].c
  1632. [ box invis ht .05 wid .05 ] at O.sw + \
  1633. (xscale * (21.584962500721154299 - xlower), yscale * (343 - ylower))
  1634. line thick thk from 2nd last [].c to last [].c
  1635. [ box invis ht .05 wid .05 ] at O.sw + \
  1636. (xscale * (21.807354922057605506 - xlower), yscale * (343 - ylower))
  1637. line thick thk from 2nd last [].c to last [].c
  1638. [ box invis ht .05 wid .05 ] at O.sw + \
  1639. (xscale * (22 - xlower), yscale * (345 - ylower))
  1640. line thick thk from 2nd last [].c to last [].c
  1641. [ box invis ht .05 wid .05 ] at O.sw + \
  1642. (xscale * (22.169925001442312151 - xlower), yscale * (343 - ylower))
  1643. line thick thk from 2nd last [].c to last [].c
  1644. [ box invis ht .05 wid .05 ] at O.sw + \
  1645. (xscale * (22.321928094887361738 - xlower), yscale * (344 - ylower))
  1646. line thick thk from 2nd last [].c to last [].c
  1647. [ box invis ht .05 wid .05 ] at O.sw + \
  1648. (xscale * (22.459431618637296424 - xlower), yscale * (344 - ylower))
  1649. line thick thk from 2nd last [].c to last [].c
  1650. [ box invis ht .05 wid .05 ] at O.sw + \
  1651. (xscale * (22.584962500721157852 - xlower), yscale * (344 - ylower))
  1652. line thick thk from 2nd last [].c to last [].c
  1653. [ box invis ht .05 wid .05 ] at O.sw + \
  1654. (xscale * (22.70043971814109085 - xlower), yscale * (344 - ylower))
  1655. line thick thk from 2nd last [].c to last [].c
  1656. [ box invis ht .05 wid .05 ] at O.sw + \
  1657. (xscale * (22.807354922057605506 - xlower), yscale * (345 - ylower))
  1658. line thick thk from 2nd last [].c to last [].c
  1659. [ box invis ht .05 wid .05 ] at O.sw + \
  1660. (xscale * (22.90689059560851959 - xlower), yscale * (345 - ylower))
  1661. line thick thk from 2nd last [].c to last [].c
  1662. [ box invis ht .05 wid .05 ] at O.sw + \
  1663. (xscale * (23 - xlower), yscale * (345 - ylower))
  1664. line thick thk from 2nd last [].c to last [].c
  1665. [ "\s+4\(**\s0" ] at O.sw + \
  1666. (xscale * (23 - xlower), yscale * (345 - ylower))
  1667. # DATASET: stride=4096, MARK 0
  1668. [ "\(ci" ] at O.sw + \
  1669. (xscale * (9.0050693696783969955 - xlower), yscale * (10 - ylower))
  1670. [ box invis ht .05 wid .05 ] at O.sw + \
  1671. (xscale * (10.005069369678396995 - xlower), yscale * (11 - ylower))
  1672. line thick thk from 2nd last [].c to last [].c
  1673. [ box invis ht .05 wid .05 ] at O.sw + \
  1674. (xscale * (10.997689839312798199 - xlower), yscale * (11 - ylower))
  1675. line thick thk from 2nd last [].c to last [].c
  1676. [ box invis ht .05 wid .05 ] at O.sw + \
  1677. (xscale * (11.585116379985436197 - xlower), yscale * (10 - ylower))
  1678. line thick thk from 2nd last [].c to last [].c
  1679. [ box invis ht .05 wid .05 ] at O.sw + \
  1680. (xscale * (12.001384322870542576 - xlower), yscale * (10 - ylower))
  1681. line thick thk from 2nd last [].c to last [].c
  1682. [ box invis ht .05 wid .05 ] at O.sw + \
  1683. (xscale * (12.585116379985436197 - xlower), yscale * (11 - ylower))
  1684. line thick thk from 2nd last [].c to last [].c
  1685. [ box invis ht .05 wid .05 ] at O.sw + \
  1686. (xscale * (12.999538263705169072 - xlower), yscale * (10 - ylower))
  1687. line thick thk from 2nd last [].c to last [].c
  1688. [ box invis ht .05 wid .05 ] at O.sw + \
  1689. (xscale * (13.322574277531574083 - xlower), yscale * (39 - ylower))
  1690. line thick thk from 2nd last [].c to last [].c
  1691. [ box invis ht .05 wid .05 ] at O.sw + \
  1692. (xscale * (13.585116379985436197 - xlower), yscale * (39 - ylower))
  1693. line thick thk from 2nd last [].c to last [].c
  1694. [ box invis ht .05 wid .05 ] at O.sw + \
  1695. (xscale * (13.807157053169248684 - xlower), yscale * (55 - ylower))
  1696. line thick thk from 2nd last [].c to last [].c
  1697. [ box invis ht .05 wid .05 ] at O.sw + \
  1698. (xscale * (14.000461588562853166 - xlower), yscale * (54 - ylower))
  1699. line thick thk from 2nd last [].c to last [].c
  1700. [ box invis ht .05 wid .05 ] at O.sw + \
  1701. (xscale * (14.170078880706594049 - xlower), yscale * (55 - ylower))
  1702. line thick thk from 2nd last [].c to last [].c
  1703. [ box invis ht .05 wid .05 ] at O.sw + \
  1704. (xscale * (14.32183575944998033 - xlower), yscale * (54 - ylower))
  1705. line thick thk from 2nd last [].c to last [].c
  1706. [ box invis ht .05 wid .05 ] at O.sw + \
  1707. (xscale * (14.459137803548600232 - xlower), yscale * (54 - ylower))
  1708. line thick thk from 2nd last [].c to last [].c
  1709. [ box invis ht .05 wid .05 ] at O.sw + \
  1710. (xscale * (14.585116379985436197 - xlower), yscale * (54 - ylower))
  1711. line thick thk from 2nd last [].c to last [].c
  1712. [ box invis ht .05 wid .05 ] at O.sw + \
  1713. (xscale * (14.700404205210695352 - xlower), yscale * (54 - ylower))
  1714. line thick thk from 2nd last [].c to last [].c
  1715. [ box invis ht .05 wid .05 ] at O.sw + \
  1716. (xscale * (14.807157053169248684 - xlower), yscale * (55 - ylower))
  1717. line thick thk from 2nd last [].c to last [].c
  1718. [ box invis ht .05 wid .05 ] at O.sw + \
  1719. (xscale * (14.907044474872799711 - xlower), yscale * (54 - ylower))
  1720. line thick thk from 2nd last [].c to last [].c
  1721. [ box invis ht .05 wid .05 ] at O.sw + \
  1722. (xscale * (15 - xlower), yscale * (55 - ylower))
  1723. line thick thk from 2nd last [].c to last [].c
  1724. [ box invis ht .05 wid .05 ] at O.sw + \
  1725. (xscale * (15.170078880706594049 - xlower), yscale * (55 - ylower))
  1726. line thick thk from 2nd last [].c to last [].c
  1727. [ box invis ht .05 wid .05 ] at O.sw + \
  1728. (xscale * (15.32183575944998033 - xlower), yscale * (54 - ylower))
  1729. line thick thk from 2nd last [].c to last [].c
  1730. [ box invis ht .05 wid .05 ] at O.sw + \
  1731. (xscale * (15.459473587337127398 - xlower), yscale * (54 - ylower))
  1732. line thick thk from 2nd last [].c to last [].c
  1733. [ box invis ht .05 wid .05 ] at O.sw + \
  1734. (xscale * (15.585116379985436197 - xlower), yscale * (55 - ylower))
  1735. line thick thk from 2nd last [].c to last [].c
  1736. [ box invis ht .05 wid .05 ] at O.sw + \
  1737. (xscale * (15.700404205210695352 - xlower), yscale * (55 - ylower))
  1738. line thick thk from 2nd last [].c to last [].c
  1739. [ box invis ht .05 wid .05 ] at O.sw + \
  1740. (xscale * (15.807420872323479699 - xlower), yscale * (55 - ylower))
  1741. line thick thk from 2nd last [].c to last [].c
  1742. [ box invis ht .05 wid .05 ] at O.sw + \
  1743. (xscale * (15.906798260171138182 - xlower), yscale * (54 - ylower))
  1744. line thick thk from 2nd last [].c to last [].c
  1745. [ box invis ht .05 wid .05 ] at O.sw + \
  1746. (xscale * (16 - xlower), yscale * (54 - ylower))
  1747. line thick thk from 2nd last [].c to last [].c
  1748. [ box invis ht .05 wid .05 ] at O.sw + \
  1749. (xscale * (16.1698737047066885 - xlower), yscale * (55 - ylower))
  1750. line thick thk from 2nd last [].c to last [].c
  1751. [ box invis ht .05 wid .05 ] at O.sw + \
  1752. (xscale * (16.322020424415466522 - xlower), yscale * (55 - ylower))
  1753. line thick thk from 2nd last [].c to last [].c
  1754. [ box invis ht .05 wid .05 ] at O.sw + \
  1755. (xscale * (16.459473587337129175 - xlower), yscale * (55 - ylower))
  1756. line thick thk from 2nd last [].c to last [].c
  1757. [ box invis ht .05 wid .05 ] at O.sw + \
  1758. (xscale * (16.584962500721157852 - xlower), yscale * (55 - ylower))
  1759. line thick thk from 2nd last [].c to last [].c
  1760. [ box invis ht .05 wid .05 ] at O.sw + \
  1761. (xscale * (16.700404205210695352 - xlower), yscale * (54 - ylower))
  1762. line thick thk from 2nd last [].c to last [].c
  1763. [ box invis ht .05 wid .05 ] at O.sw + \
  1764. (xscale * (16.807420872323479699 - xlower), yscale * (54 - ylower))
  1765. line thick thk from 2nd last [].c to last [].c
  1766. [ box invis ht .05 wid .05 ] at O.sw + \
  1767. (xscale * (16.906921372774437629 - xlower), yscale * (55 - ylower))
  1768. line thick thk from 2nd last [].c to last [].c
  1769. [ box invis ht .05 wid .05 ] at O.sw + \
  1770. (xscale * (17 - xlower), yscale * (55 - ylower))
  1771. line thick thk from 2nd last [].c to last [].c
  1772. [ box invis ht .05 wid .05 ] at O.sw + \
  1773. (xscale * (17.169976296354082734 - xlower), yscale * (55 - ylower))
  1774. line thick thk from 2nd last [].c to last [].c
  1775. [ box invis ht .05 wid .05 ] at O.sw + \
  1776. (xscale * (17.32192809488736529 - xlower), yscale * (55 - ylower))
  1777. line thick thk from 2nd last [].c to last [].c
  1778. [ box invis ht .05 wid .05 ] at O.sw + \
  1779. (xscale * (17.459473587337129175 - xlower), yscale * (55 - ylower))
  1780. line thick thk from 2nd last [].c to last [].c
  1781. [ box invis ht .05 wid .05 ] at O.sw + \
  1782. (xscale * (17.584962500721157852 - xlower), yscale * (55 - ylower))
  1783. line thick thk from 2nd last [].c to last [].c
  1784. [ box invis ht .05 wid .05 ] at O.sw + \
  1785. (xscale * (17.700475230197337595 - xlower), yscale * (56 - ylower))
  1786. line thick thk from 2nd last [].c to last [].c
  1787. [ box invis ht .05 wid .05 ] at O.sw + \
  1788. (xscale * (17.807354922057605506 - xlower), yscale * (55 - ylower))
  1789. line thick thk from 2nd last [].c to last [].c
  1790. [ box invis ht .05 wid .05 ] at O.sw + \
  1791. (xscale * (17.906921372774437629 - xlower), yscale * (55 - ylower))
  1792. line thick thk from 2nd last [].c to last [].c
  1793. [ box invis ht .05 wid .05 ] at O.sw + \
  1794. (xscale * (18 - xlower), yscale * (147 - ylower))
  1795. line thick thk from 2nd last [].c to last [].c
  1796. [ box invis ht .05 wid .05 ] at O.sw + \
  1797. (xscale * (18.169925001442312151 - xlower), yscale * (146 - ylower))
  1798. line thick thk from 2nd last [].c to last [].c
  1799. [ box invis ht .05 wid .05 ] at O.sw + \
  1800. (xscale * (18.32192809488736529 - xlower), yscale * (146 - ylower))
  1801. line thick thk from 2nd last [].c to last [].c
  1802. [ box invis ht .05 wid .05 ] at O.sw + \
  1803. (xscale * (18.459431618637296424 - xlower), yscale * (145 - ylower))
  1804. line thick thk from 2nd last [].c to last [].c
  1805. [ box invis ht .05 wid .05 ] at O.sw + \
  1806. (xscale * (18.584962500721157852 - xlower), yscale * (145 - ylower))
  1807. line thick thk from 2nd last [].c to last [].c
  1808. [ box invis ht .05 wid .05 ] at O.sw + \
  1809. (xscale * (18.70043971814109085 - xlower), yscale * (145 - ylower))
  1810. line thick thk from 2nd last [].c to last [].c
  1811. [ box invis ht .05 wid .05 ] at O.sw + \
  1812. (xscale * (18.807354922057605506 - xlower), yscale * (157 - ylower))
  1813. line thick thk from 2nd last [].c to last [].c
  1814. [ box invis ht .05 wid .05 ] at O.sw + \
  1815. (xscale * (18.90689059560851959 - xlower), yscale * (162 - ylower))
  1816. line thick thk from 2nd last [].c to last [].c
  1817. [ box invis ht .05 wid .05 ] at O.sw + \
  1818. (xscale * (19 - xlower), yscale * (160 - ylower))
  1819. line thick thk from 2nd last [].c to last [].c
  1820. [ box invis ht .05 wid .05 ] at O.sw + \
  1821. (xscale * (20 - xlower), yscale * (379 - ylower))
  1822. line thick thk from 2nd last [].c to last [].c
  1823. [ box invis ht .05 wid .05 ] at O.sw + \
  1824. (xscale * (20.584962500721154299 - xlower), yscale * (380 - ylower))
  1825. line thick thk from 2nd last [].c to last [].c
  1826. [ box invis ht .05 wid .05 ] at O.sw + \
  1827. (xscale * (21 - xlower), yscale * (378 - ylower))
  1828. line thick thk from 2nd last [].c to last [].c
  1829. [ box invis ht .05 wid .05 ] at O.sw + \
  1830. (xscale * (21.321928094887361738 - xlower), yscale * (380 - ylower))
  1831. line thick thk from 2nd last [].c to last [].c
  1832. [ box invis ht .05 wid .05 ] at O.sw + \
  1833. (xscale * (21.584962500721154299 - xlower), yscale * (382 - ylower))
  1834. line thick thk from 2nd last [].c to last [].c
  1835. [ box invis ht .05 wid .05 ] at O.sw + \
  1836. (xscale * (21.807354922057605506 - xlower), yscale * (381 - ylower))
  1837. line thick thk from 2nd last [].c to last [].c
  1838. [ box invis ht .05 wid .05 ] at O.sw + \
  1839. (xscale * (22 - xlower), yscale * (381 - ylower))
  1840. line thick thk from 2nd last [].c to last [].c
  1841. [ box invis ht .05 wid .05 ] at O.sw + \
  1842. (xscale * (22.169925001442312151 - xlower), yscale * (381 - ylower))
  1843. line thick thk from 2nd last [].c to last [].c
  1844. [ box invis ht .05 wid .05 ] at O.sw + \
  1845. (xscale * (22.321928094887361738 - xlower), yscale * (382 - ylower))
  1846. line thick thk from 2nd last [].c to last [].c
  1847. [ box invis ht .05 wid .05 ] at O.sw + \
  1848. (xscale * (22.459431618637296424 - xlower), yscale * (382 - ylower))
  1849. line thick thk from 2nd last [].c to last [].c
  1850. [ box invis ht .05 wid .05 ] at O.sw + \
  1851. (xscale * (22.584962500721157852 - xlower), yscale * (382 - ylower))
  1852. line thick thk from 2nd last [].c to last [].c
  1853. [ box invis ht .05 wid .05 ] at O.sw + \
  1854. (xscale * (22.70043971814109085 - xlower), yscale * (382 - ylower))
  1855. line thick thk from 2nd last [].c to last [].c
  1856. [ box invis ht .05 wid .05 ] at O.sw + \
  1857. (xscale * (22.807354922057605506 - xlower), yscale * (383 - ylower))
  1858. line thick thk from 2nd last [].c to last [].c
  1859. [ box invis ht .05 wid .05 ] at O.sw + \
  1860. (xscale * (22.90689059560851959 - xlower), yscale * (383 - ylower))
  1861. line thick thk from 2nd last [].c to last [].c
  1862. [ box invis ht .05 wid .05 ] at O.sw + \
  1863. (xscale * (23 - xlower), yscale * (385 - ylower))
  1864. line thick thk from 2nd last [].c to last [].c
  1865. [ "\(ci" ] at O.sw + \
  1866. (xscale * (23 - xlower), yscale * (385 - ylower))
  1867. # DATASET: stride=8192, MARK 1
  1868. [ "\(sq" ] at O.sw + \
  1869. (xscale * (9.0050693696783969955 - xlower), yscale * (11 - ylower))
  1870. [ box invis ht .05 wid .05 ] at O.sw + \
  1871. (xscale * (10.005069369678396995 - xlower), yscale * (10 - ylower))
  1872. line thick thk from 2nd last [].c to last [].c
  1873. [ box invis ht .05 wid .05 ] at O.sw + \
  1874. (xscale * (10.997689839312798199 - xlower), yscale * (10 - ylower))
  1875. line thick thk from 2nd last [].c to last [].c
  1876. [ box invis ht .05 wid .05 ] at O.sw + \
  1877. (xscale * (11.585116379985436197 - xlower), yscale * (11 - ylower))
  1878. line thick thk from 2nd last [].c to last [].c
  1879. [ box invis ht .05 wid .05 ] at O.sw + \
  1880. (xscale * (12.001384322870542576 - xlower), yscale * (11 - ylower))
  1881. line thick thk from 2nd last [].c to last [].c
  1882. [ box invis ht .05 wid .05 ] at O.sw + \
  1883. (xscale * (12.585116379985436197 - xlower), yscale * (11 - ylower))
  1884. line thick thk from 2nd last [].c to last [].c
  1885. [ box invis ht .05 wid .05 ] at O.sw + \
  1886. (xscale * (12.999538263705169072 - xlower), yscale * (11 - ylower))
  1887. line thick thk from 2nd last [].c to last [].c
  1888. [ box invis ht .05 wid .05 ] at O.sw + \
  1889. (xscale * (13.322574277531574083 - xlower), yscale * (54 - ylower))
  1890. line thick thk from 2nd last [].c to last [].c
  1891. [ box invis ht .05 wid .05 ] at O.sw + \
  1892. (xscale * (13.585116379985436197 - xlower), yscale * (55 - ylower))
  1893. line thick thk from 2nd last [].c to last [].c
  1894. [ box invis ht .05 wid .05 ] at O.sw + \
  1895. (xscale * (13.807157053169248684 - xlower), yscale * (54 - ylower))
  1896. line thick thk from 2nd last [].c to last [].c
  1897. [ box invis ht .05 wid .05 ] at O.sw + \
  1898. (xscale * (14.000461588562853166 - xlower), yscale * (54 - ylower))
  1899. line thick thk from 2nd last [].c to last [].c
  1900. [ box invis ht .05 wid .05 ] at O.sw + \
  1901. (xscale * (14.170078880706594049 - xlower), yscale * (54 - ylower))
  1902. line thick thk from 2nd last [].c to last [].c
  1903. [ box invis ht .05 wid .05 ] at O.sw + \
  1904. (xscale * (14.32183575944998033 - xlower), yscale * (54 - ylower))
  1905. line thick thk from 2nd last [].c to last [].c
  1906. [ box invis ht .05 wid .05 ] at O.sw + \
  1907. (xscale * (14.459137803548600232 - xlower), yscale * (54 - ylower))
  1908. line thick thk from 2nd last [].c to last [].c
  1909. [ box invis ht .05 wid .05 ] at O.sw + \
  1910. (xscale * (14.585116379985436197 - xlower), yscale * (54 - ylower))
  1911. line thick thk from 2nd last [].c to last [].c
  1912. [ box invis ht .05 wid .05 ] at O.sw + \
  1913. (xscale * (14.700404205210695352 - xlower), yscale * (55 - ylower))
  1914. line thick thk from 2nd last [].c to last [].c
  1915. [ box invis ht .05 wid .05 ] at O.sw + \
  1916. (xscale * (14.807157053169248684 - xlower), yscale * (54 - ylower))
  1917. line thick thk from 2nd last [].c to last [].c
  1918. [ box invis ht .05 wid .05 ] at O.sw + \
  1919. (xscale * (14.907044474872799711 - xlower), yscale * (54 - ylower))
  1920. line thick thk from 2nd last [].c to last [].c
  1921. [ box invis ht .05 wid .05 ] at O.sw + \
  1922. (xscale * (15 - xlower), yscale * (54 - ylower))
  1923. line thick thk from 2nd last [].c to last [].c
  1924. [ box invis ht .05 wid .05 ] at O.sw + \
  1925. (xscale * (15.170078880706594049 - xlower), yscale * (55 - ylower))
  1926. line thick thk from 2nd last [].c to last [].c
  1927. [ box invis ht .05 wid .05 ] at O.sw + \
  1928. (xscale * (15.32183575944998033 - xlower), yscale * (55 - ylower))
  1929. line thick thk from 2nd last [].c to last [].c
  1930. [ box invis ht .05 wid .05 ] at O.sw + \
  1931. (xscale * (15.459473587337127398 - xlower), yscale * (55 - ylower))
  1932. line thick thk from 2nd last [].c to last [].c
  1933. [ box invis ht .05 wid .05 ] at O.sw + \
  1934. (xscale * (15.585116379985436197 - xlower), yscale * (54 - ylower))
  1935. line thick thk from 2nd last [].c to last [].c
  1936. [ box invis ht .05 wid .05 ] at O.sw + \
  1937. (xscale * (15.700404205210695352 - xlower), yscale * (55 - ylower))
  1938. line thick thk from 2nd last [].c to last [].c
  1939. [ box invis ht .05 wid .05 ] at O.sw + \
  1940. (xscale * (15.807420872323479699 - xlower), yscale * (54 - ylower))
  1941. line thick thk from 2nd last [].c to last [].c
  1942. [ box invis ht .05 wid .05 ] at O.sw + \
  1943. (xscale * (15.906798260171138182 - xlower), yscale * (54 - ylower))
  1944. line thick thk from 2nd last [].c to last [].c
  1945. [ box invis ht .05 wid .05 ] at O.sw + \
  1946. (xscale * (16 - xlower), yscale * (55 - ylower))
  1947. line thick thk from 2nd last [].c to last [].c
  1948. [ box invis ht .05 wid .05 ] at O.sw + \
  1949. (xscale * (16.1698737047066885 - xlower), yscale * (55 - ylower))
  1950. line thick thk from 2nd last [].c to last [].c
  1951. [ box invis ht .05 wid .05 ] at O.sw + \
  1952. (xscale * (16.322020424415466522 - xlower), yscale * (55 - ylower))
  1953. line thick thk from 2nd last [].c to last [].c
  1954. [ box invis ht .05 wid .05 ] at O.sw + \
  1955. (xscale * (16.459473587337129175 - xlower), yscale * (54 - ylower))
  1956. line thick thk from 2nd last [].c to last [].c
  1957. [ box invis ht .05 wid .05 ] at O.sw + \
  1958. (xscale * (16.584962500721157852 - xlower), yscale * (55 - ylower))
  1959. line thick thk from 2nd last [].c to last [].c
  1960. [ box invis ht .05 wid .05 ] at O.sw + \
  1961. (xscale * (16.700404205210695352 - xlower), yscale * (55 - ylower))
  1962. line thick thk from 2nd last [].c to last [].c
  1963. [ box invis ht .05 wid .05 ] at O.sw + \
  1964. (xscale * (16.807420872323479699 - xlower), yscale * (55 - ylower))
  1965. line thick thk from 2nd last [].c to last [].c
  1966. [ box invis ht .05 wid .05 ] at O.sw + \
  1967. (xscale * (16.906921372774437629 - xlower), yscale * (55 - ylower))
  1968. line thick thk from 2nd last [].c to last [].c
  1969. [ box invis ht .05 wid .05 ] at O.sw + \
  1970. (xscale * (17 - xlower), yscale * (55 - ylower))
  1971. line thick thk from 2nd last [].c to last [].c
  1972. [ box invis ht .05 wid .05 ] at O.sw + \
  1973. (xscale * (17.169976296354082734 - xlower), yscale * (54 - ylower))
  1974. line thick thk from 2nd last [].c to last [].c
  1975. [ box invis ht .05 wid .05 ] at O.sw + \
  1976. (xscale * (17.32192809488736529 - xlower), yscale * (55 - ylower))
  1977. line thick thk from 2nd last [].c to last [].c
  1978. [ box invis ht .05 wid .05 ] at O.sw + \
  1979. (xscale * (17.459473587337129175 - xlower), yscale * (55 - ylower))
  1980. line thick thk from 2nd last [].c to last [].c
  1981. [ box invis ht .05 wid .05 ] at O.sw + \
  1982. (xscale * (17.584962500721157852 - xlower), yscale * (54 - ylower))
  1983. line thick thk from 2nd last [].c to last [].c
  1984. [ box invis ht .05 wid .05 ] at O.sw + \
  1985. (xscale * (17.700475230197337595 - xlower), yscale * (54 - ylower))
  1986. line thick thk from 2nd last [].c to last [].c
  1987. [ box invis ht .05 wid .05 ] at O.sw + \
  1988. (xscale * (17.807354922057605506 - xlower), yscale * (55 - ylower))
  1989. line thick thk from 2nd last [].c to last [].c
  1990. [ box invis ht .05 wid .05 ] at O.sw + \
  1991. (xscale * (17.906921372774437629 - xlower), yscale * (55 - ylower))
  1992. line thick thk from 2nd last [].c to last [].c
  1993. [ box invis ht .05 wid .05 ] at O.sw + \
  1994. (xscale * (18 - xlower), yscale * (232 - ylower))
  1995. line thick thk from 2nd last [].c to last [].c
  1996. [ box invis ht .05 wid .05 ] at O.sw + \
  1997. (xscale * (18.169925001442312151 - xlower), yscale * (231 - ylower))
  1998. line thick thk from 2nd last [].c to last [].c
  1999. [ box invis ht .05 wid .05 ] at O.sw + \
  2000. (xscale * (18.32192809488736529 - xlower), yscale * (231 - ylower))
  2001. line thick thk from 2nd last [].c to last [].c
  2002. [ box invis ht .05 wid .05 ] at O.sw + \
  2003. (xscale * (18.459431618637296424 - xlower), yscale * (232 - ylower))
  2004. line thick thk from 2nd last [].c to last [].c
  2005. [ box invis ht .05 wid .05 ] at O.sw + \
  2006. (xscale * (18.584962500721157852 - xlower), yscale * (232 - ylower))
  2007. line thick thk from 2nd last [].c to last [].c
  2008. [ box invis ht .05 wid .05 ] at O.sw + \
  2009. (xscale * (18.70043971814109085 - xlower), yscale * (230 - ylower))
  2010. line thick thk from 2nd last [].c to last [].c
  2011. [ box invis ht .05 wid .05 ] at O.sw + \
  2012. (xscale * (18.807354922057605506 - xlower), yscale * (240 - ylower))
  2013. line thick thk from 2nd last [].c to last [].c
  2014. [ box invis ht .05 wid .05 ] at O.sw + \
  2015. (xscale * (18.90689059560851959 - xlower), yscale * (246 - ylower))
  2016. line thick thk from 2nd last [].c to last [].c
  2017. [ box invis ht .05 wid .05 ] at O.sw + \
  2018. (xscale * (19 - xlower), yscale * (246 - ylower))
  2019. line thick thk from 2nd last [].c to last [].c
  2020. [ box invis ht .05 wid .05 ] at O.sw + \
  2021. (xscale * (20 - xlower), yscale * (445 - ylower))
  2022. line thick thk from 2nd last [].c to last [].c
  2023. [ box invis ht .05 wid .05 ] at O.sw + \
  2024. (xscale * (20.584962500721154299 - xlower), yscale * (449 - ylower))
  2025. line thick thk from 2nd last [].c to last [].c
  2026. [ box invis ht .05 wid .05 ] at O.sw + \
  2027. (xscale * (21 - xlower), yscale * (441 - ylower))
  2028. line thick thk from 2nd last [].c to last [].c
  2029. [ box invis ht .05 wid .05 ] at O.sw + \
  2030. (xscale * (21.321928094887361738 - xlower), yscale * (449 - ylower))
  2031. line thick thk from 2nd last [].c to last [].c
  2032. [ box invis ht .05 wid .05 ] at O.sw + \
  2033. (xscale * (21.584962500721154299 - xlower), yscale * (449 - ylower))
  2034. line thick thk from 2nd last [].c to last [].c
  2035. [ box invis ht .05 wid .05 ] at O.sw + \
  2036. (xscale * (21.807354922057605506 - xlower), yscale * (450 - ylower))
  2037. line thick thk from 2nd last [].c to last [].c
  2038. [ box invis ht .05 wid .05 ] at O.sw + \
  2039. (xscale * (22 - xlower), yscale * (451 - ylower))
  2040. line thick thk from 2nd last [].c to last [].c
  2041. [ box invis ht .05 wid .05 ] at O.sw + \
  2042. (xscale * (22.169925001442312151 - xlower), yscale * (443 - ylower))
  2043. line thick thk from 2nd last [].c to last [].c
  2044. [ box invis ht .05 wid .05 ] at O.sw + \
  2045. (xscale * (22.321928094887361738 - xlower), yscale * (441 - ylower))
  2046. line thick thk from 2nd last [].c to last [].c
  2047. [ box invis ht .05 wid .05 ] at O.sw + \
  2048. (xscale * (22.459431618637296424 - xlower), yscale * (442 - ylower))
  2049. line thick thk from 2nd last [].c to last [].c
  2050. [ box invis ht .05 wid .05 ] at O.sw + \
  2051. (xscale * (22.584962500721157852 - xlower), yscale * (446 - ylower))
  2052. line thick thk from 2nd last [].c to last [].c
  2053. [ box invis ht .05 wid .05 ] at O.sw + \
  2054. (xscale * (22.70043971814109085 - xlower), yscale * (452 - ylower))
  2055. line thick thk from 2nd last [].c to last [].c
  2056. [ box invis ht .05 wid .05 ] at O.sw + \
  2057. (xscale * (22.807354922057605506 - xlower), yscale * (452 - ylower))
  2058. line thick thk from 2nd last [].c to last [].c
  2059. [ box invis ht .05 wid .05 ] at O.sw + \
  2060. (xscale * (22.90689059560851959 - xlower), yscale * (453 - ylower))
  2061. line thick thk from 2nd last [].c to last [].c
  2062. [ box invis ht .05 wid .05 ] at O.sw + \
  2063. (xscale * (23 - xlower), yscale * (453 - ylower))
  2064. line thick thk from 2nd last [].c to last [].c
  2065. [ "\(sq" ] at O.sw + \
  2066. (xscale * (23 - xlower), yscale * (453 - ylower))
  2067. # DATASET: stride=16384, MARK 2
  2068. [ "\(*D" ] at O.sw + \
  2069. (xscale * (9.0050693696783969955 - xlower), yscale * (10 - ylower))
  2070. [ box invis ht .05 wid .05 ] at O.sw + \
  2071. (xscale * (10.005069369678396995 - xlower), yscale * (10 - ylower))
  2072. line thick thk from 2nd last [].c to last [].c
  2073. [ box invis ht .05 wid .05 ] at O.sw + \
  2074. (xscale * (10.997689839312798199 - xlower), yscale * (10 - ylower))
  2075. line thick thk from 2nd last [].c to last [].c
  2076. [ box invis ht .05 wid .05 ] at O.sw + \
  2077. (xscale * (11.585116379985436197 - xlower), yscale * (11 - ylower))
  2078. line thick thk from 2nd last [].c to last [].c
  2079. [ box invis ht .05 wid .05 ] at O.sw + \
  2080. (xscale * (12.001384322870542576 - xlower), yscale * (10 - ylower))
  2081. line thick thk from 2nd last [].c to last [].c
  2082. [ box invis ht .05 wid .05 ] at O.sw + \
  2083. (xscale * (12.585116379985436197 - xlower), yscale * (10 - ylower))
  2084. line thick thk from 2nd last [].c to last [].c
  2085. [ box invis ht .05 wid .05 ] at O.sw + \
  2086. (xscale * (12.999538263705169072 - xlower), yscale * (10 - ylower))
  2087. line thick thk from 2nd last [].c to last [].c
  2088. [ box invis ht .05 wid .05 ] at O.sw + \
  2089. (xscale * (13.322574277531574083 - xlower), yscale * (10 - ylower))
  2090. line thick thk from 2nd last [].c to last [].c
  2091. [ box invis ht .05 wid .05 ] at O.sw + \
  2092. (xscale * (13.585116379985436197 - xlower), yscale * (11 - ylower))
  2093. line thick thk from 2nd last [].c to last [].c
  2094. [ box invis ht .05 wid .05 ] at O.sw + \
  2095. (xscale * (13.807157053169248684 - xlower), yscale * (10 - ylower))
  2096. line thick thk from 2nd last [].c to last [].c
  2097. [ box invis ht .05 wid .05 ] at O.sw + \
  2098. (xscale * (14.000461588562853166 - xlower), yscale * (10 - ylower))
  2099. line thick thk from 2nd last [].c to last [].c
  2100. [ box invis ht .05 wid .05 ] at O.sw + \
  2101. (xscale * (14.170078880706594049 - xlower), yscale * (54 - ylower))
  2102. line thick thk from 2nd last [].c to last [].c
  2103. [ box invis ht .05 wid .05 ] at O.sw + \
  2104. (xscale * (14.32183575944998033 - xlower), yscale * (54 - ylower))
  2105. line thick thk from 2nd last [].c to last [].c
  2106. [ box invis ht .05 wid .05 ] at O.sw + \
  2107. (xscale * (14.459137803548600232 - xlower), yscale * (55 - ylower))
  2108. line thick thk from 2nd last [].c to last [].c
  2109. [ box invis ht .05 wid .05 ] at O.sw + \
  2110. (xscale * (14.585116379985436197 - xlower), yscale * (55 - ylower))
  2111. line thick thk from 2nd last [].c to last [].c
  2112. [ box invis ht .05 wid .05 ] at O.sw + \
  2113. (xscale * (14.700404205210695352 - xlower), yscale * (55 - ylower))
  2114. line thick thk from 2nd last [].c to last [].c
  2115. [ box invis ht .05 wid .05 ] at O.sw + \
  2116. (xscale * (14.807157053169248684 - xlower), yscale * (54 - ylower))
  2117. line thick thk from 2nd last [].c to last [].c
  2118. [ box invis ht .05 wid .05 ] at O.sw + \
  2119. (xscale * (14.907044474872799711 - xlower), yscale * (54 - ylower))
  2120. line thick thk from 2nd last [].c to last [].c
  2121. [ box invis ht .05 wid .05 ] at O.sw + \
  2122. (xscale * (15 - xlower), yscale * (54 - ylower))
  2123. line thick thk from 2nd last [].c to last [].c
  2124. [ box invis ht .05 wid .05 ] at O.sw + \
  2125. (xscale * (15.170078880706594049 - xlower), yscale * (54 - ylower))
  2126. line thick thk from 2nd last [].c to last [].c
  2127. [ box invis ht .05 wid .05 ] at O.sw + \
  2128. (xscale * (15.32183575944998033 - xlower), yscale * (55 - ylower))
  2129. line thick thk from 2nd last [].c to last [].c
  2130. [ box invis ht .05 wid .05 ] at O.sw + \
  2131. (xscale * (15.459473587337127398 - xlower), yscale * (54 - ylower))
  2132. line thick thk from 2nd last [].c to last [].c
  2133. [ box invis ht .05 wid .05 ] at O.sw + \
  2134. (xscale * (15.585116379985436197 - xlower), yscale * (54 - ylower))
  2135. line thick thk from 2nd last [].c to last [].c
  2136. [ box invis ht .05 wid .05 ] at O.sw + \
  2137. (xscale * (15.700404205210695352 - xlower), yscale * (54 - ylower))
  2138. line thick thk from 2nd last [].c to last [].c
  2139. [ box invis ht .05 wid .05 ] at O.sw + \
  2140. (xscale * (15.807420872323479699 - xlower), yscale * (55 - ylower))
  2141. line thick thk from 2nd last [].c to last [].c
  2142. [ box invis ht .05 wid .05 ] at O.sw + \
  2143. (xscale * (15.906798260171138182 - xlower), yscale * (54 - ylower))
  2144. line thick thk from 2nd last [].c to last [].c
  2145. [ box invis ht .05 wid .05 ] at O.sw + \
  2146. (xscale * (16 - xlower), yscale * (54 - ylower))
  2147. line thick thk from 2nd last [].c to last [].c
  2148. [ box invis ht .05 wid .05 ] at O.sw + \
  2149. (xscale * (16.1698737047066885 - xlower), yscale * (54 - ylower))
  2150. line thick thk from 2nd last [].c to last [].c
  2151. [ box invis ht .05 wid .05 ] at O.sw + \
  2152. (xscale * (16.322020424415466522 - xlower), yscale * (54 - ylower))
  2153. line thick thk from 2nd last [].c to last [].c
  2154. [ box invis ht .05 wid .05 ] at O.sw + \
  2155. (xscale * (16.459473587337129175 - xlower), yscale * (55 - ylower))
  2156. line thick thk from 2nd last [].c to last [].c
  2157. [ box invis ht .05 wid .05 ] at O.sw + \
  2158. (xscale * (16.584962500721157852 - xlower), yscale * (54 - ylower))
  2159. line thick thk from 2nd last [].c to last [].c
  2160. [ box invis ht .05 wid .05 ] at O.sw + \
  2161. (xscale * (16.700404205210695352 - xlower), yscale * (54 - ylower))
  2162. line thick thk from 2nd last [].c to last [].c
  2163. [ box invis ht .05 wid .05 ] at O.sw + \
  2164. (xscale * (16.807420872323479699 - xlower), yscale * (54 - ylower))
  2165. line thick thk from 2nd last [].c to last [].c
  2166. [ box invis ht .05 wid .05 ] at O.sw + \
  2167. (xscale * (16.906921372774437629 - xlower), yscale * (55 - ylower))
  2168. line thick thk from 2nd last [].c to last [].c
  2169. [ box invis ht .05 wid .05 ] at O.sw + \
  2170. (xscale * (17 - xlower), yscale * (54 - ylower))
  2171. line thick thk from 2nd last [].c to last [].c
  2172. [ box invis ht .05 wid .05 ] at O.sw + \
  2173. (xscale * (17.169976296354082734 - xlower), yscale * (54 - ylower))
  2174. line thick thk from 2nd last [].c to last [].c
  2175. [ box invis ht .05 wid .05 ] at O.sw + \
  2176. (xscale * (17.32192809488736529 - xlower), yscale * (55 - ylower))
  2177. line thick thk from 2nd last [].c to last [].c
  2178. [ box invis ht .05 wid .05 ] at O.sw + \
  2179. (xscale * (17.459473587337129175 - xlower), yscale * (55 - ylower))
  2180. line thick thk from 2nd last [].c to last [].c
  2181. [ box invis ht .05 wid .05 ] at O.sw + \
  2182. (xscale * (17.584962500721157852 - xlower), yscale * (55 - ylower))
  2183. line thick thk from 2nd last [].c to last [].c
  2184. [ box invis ht .05 wid .05 ] at O.sw + \
  2185. (xscale * (17.700475230197337595 - xlower), yscale * (53 - ylower))
  2186. line thick thk from 2nd last [].c to last [].c
  2187. [ box invis ht .05 wid .05 ] at O.sw + \
  2188. (xscale * (17.807354922057605506 - xlower), yscale * (55 - ylower))
  2189. line thick thk from 2nd last [].c to last [].c
  2190. [ box invis ht .05 wid .05 ] at O.sw + \
  2191. (xscale * (17.906921372774437629 - xlower), yscale * (55 - ylower))
  2192. line thick thk from 2nd last [].c to last [].c
  2193. [ box invis ht .05 wid .05 ] at O.sw + \
  2194. (xscale * (18 - xlower), yscale * (55 - ylower))
  2195. line thick thk from 2nd last [].c to last [].c
  2196. [ box invis ht .05 wid .05 ] at O.sw + \
  2197. (xscale * (18.169925001442312151 - xlower), yscale * (55 - ylower))
  2198. line thick thk from 2nd last [].c to last [].c
  2199. [ box invis ht .05 wid .05 ] at O.sw + \
  2200. (xscale * (18.32192809488736529 - xlower), yscale * (55 - ylower))
  2201. line thick thk from 2nd last [].c to last [].c
  2202. [ box invis ht .05 wid .05 ] at O.sw + \
  2203. (xscale * (18.459431618637296424 - xlower), yscale * (55 - ylower))
  2204. line thick thk from 2nd last [].c to last [].c
  2205. [ box invis ht .05 wid .05 ] at O.sw + \
  2206. (xscale * (18.584962500721157852 - xlower), yscale * (55 - ylower))
  2207. line thick thk from 2nd last [].c to last [].c
  2208. [ box invis ht .05 wid .05 ] at O.sw + \
  2209. (xscale * (18.70043971814109085 - xlower), yscale * (55 - ylower))
  2210. line thick thk from 2nd last [].c to last [].c
  2211. [ box invis ht .05 wid .05 ] at O.sw + \
  2212. (xscale * (18.807354922057605506 - xlower), yscale * (55 - ylower))
  2213. line thick thk from 2nd last [].c to last [].c
  2214. [ box invis ht .05 wid .05 ] at O.sw + \
  2215. (xscale * (18.90689059560851959 - xlower), yscale * (72 - ylower))
  2216. line thick thk from 2nd last [].c to last [].c
  2217. [ box invis ht .05 wid .05 ] at O.sw + \
  2218. (xscale * (19 - xlower), yscale * (243 - ylower))
  2219. line thick thk from 2nd last [].c to last [].c
  2220. [ box invis ht .05 wid .05 ] at O.sw + \
  2221. (xscale * (20 - xlower), yscale * (432 - ylower))
  2222. line thick thk from 2nd last [].c to last [].c
  2223. [ box invis ht .05 wid .05 ] at O.sw + \
  2224. (xscale * (20.584962500721154299 - xlower), yscale * (445 - ylower))
  2225. line thick thk from 2nd last [].c to last [].c
  2226. [ box invis ht .05 wid .05 ] at O.sw + \
  2227. (xscale * (21 - xlower), yscale * (445 - ylower))
  2228. line thick thk from 2nd last [].c to last [].c
  2229. [ box invis ht .05 wid .05 ] at O.sw + \
  2230. (xscale * (21.321928094887361738 - xlower), yscale * (447 - ylower))
  2231. line thick thk from 2nd last [].c to last [].c
  2232. [ box invis ht .05 wid .05 ] at O.sw + \
  2233. (xscale * (21.584962500721154299 - xlower), yscale * (448 - ylower))
  2234. line thick thk from 2nd last [].c to last [].c
  2235. [ box invis ht .05 wid .05 ] at O.sw + \
  2236. (xscale * (21.807354922057605506 - xlower), yscale * (448 - ylower))
  2237. line thick thk from 2nd last [].c to last [].c
  2238. [ box invis ht .05 wid .05 ] at O.sw + \
  2239. (xscale * (22 - xlower), yscale * (449 - ylower))
  2240. line thick thk from 2nd last [].c to last [].c
  2241. [ box invis ht .05 wid .05 ] at O.sw + \
  2242. (xscale * (22.169925001442312151 - xlower), yscale * (450 - ylower))
  2243. line thick thk from 2nd last [].c to last [].c
  2244. [ box invis ht .05 wid .05 ] at O.sw + \
  2245. (xscale * (22.321928094887361738 - xlower), yscale * (447 - ylower))
  2246. line thick thk from 2nd last [].c to last [].c
  2247. [ box invis ht .05 wid .05 ] at O.sw + \
  2248. (xscale * (22.459431618637296424 - xlower), yscale * (450 - ylower))
  2249. line thick thk from 2nd last [].c to last [].c
  2250. [ box invis ht .05 wid .05 ] at O.sw + \
  2251. (xscale * (22.584962500721157852 - xlower), yscale * (449 - ylower))
  2252. line thick thk from 2nd last [].c to last [].c
  2253. [ box invis ht .05 wid .05 ] at O.sw + \
  2254. (xscale * (22.70043971814109085 - xlower), yscale * (449 - ylower))
  2255. line thick thk from 2nd last [].c to last [].c
  2256. [ box invis ht .05 wid .05 ] at O.sw + \
  2257. (xscale * (22.807354922057605506 - xlower), yscale * (449 - ylower))
  2258. line thick thk from 2nd last [].c to last [].c
  2259. [ box invis ht .05 wid .05 ] at O.sw + \
  2260. (xscale * (22.90689059560851959 - xlower), yscale * (452 - ylower))
  2261. line thick thk from 2nd last [].c to last [].c
  2262. [ box invis ht .05 wid .05 ] at O.sw + \
  2263. (xscale * (23 - xlower), yscale * (452 - ylower))
  2264. line thick thk from 2nd last [].c to last [].c
  2265. [ "\(*D" ] at O.sw + \
  2266. (xscale * (23 - xlower), yscale * (452 - ylower))
  2267. # DATASET: stride=16384, MARK 3
  2268. # DATASET: stride=16384, MARK 4
  2269. .ps 8
  2270. .vs 8
  2271. "8KB" "cache" at O.sw + .35,.32
  2272. arrow thick 2 wid .07 down .15 from O.sw + .35,.20
  2273. ".5MB" "cache" at O.sw + .85,.50
  2274. arrow thick 2 wid .07 down .15 from O.sw + .85,.38
  2275. "Main" "mem" at O.e - .25,.15
  2276. arrow thick 2 wid .07 up .15 from O.e - .25,0
  2277. .vs
  2278. .ps
  2279. # Xaxis title.
  2280. "\s+2log2(Array size)\s0" rjust at O.se - (0, .6)
  2281. # Yaxis title (Latency in nanoseconds)
  2282. .ps +2
  2283. .vs -1
  2284. "L" "a" "t" "e" "n" "c" "y" " " "i" "n" at O.w - (.95, 0)
  2285. "n" "a" "n" "o" "s" "e" "c" "o" "n" "d" "s" at O.w - (.75, 0)
  2286. .ps
  2287. .vs
  2288. # Graph title.
  2289. "\s+2DEC alpha@182mhz memory latencies\s0" at O.n + (-.5, .3)
  2290. # Title.
  2291. #[ "\(ci" ] at O.ne + (.25, - 0 * vs)
  2292. #"stride=8" ljust at last [].e + (.1, 0)
  2293. #[ "\(sq" ] at O.ne + (.25, - 1 * vs)
  2294. #"stride=16" ljust at last [].e + (.1, 0)
  2295. #[ "\(*D" ] at O.ne + (.25, - 2 * vs)
  2296. #"stride=32" ljust at last [].e + (.1, 0)
  2297. #[ "\(mu" ] at O.ne + (.25, - 3 * vs)
  2298. #"stride=64" ljust at last [].e + (.1, 0)
  2299. #[ "\s+4\(bu\s0" ] at O.ne + (.25, - 4 * vs)
  2300. #"stride=128" ljust at last [].e + (.1, 0)
  2301. #[ box ht .07 wid .07 fill 1 ] at O.ne + (.25, - 5 * vs)
  2302. #"stride=512" ljust at last [].e + (.1, 0)
  2303. #[ "\s+2\(pl\s0" ] at O.ne + (.25, - 6 * vs)
  2304. #"stride=1024" ljust at last [].e + (.1, 0)
  2305. #[ "\s+4\(**\s0" ] at O.ne + (.25, - 7 * vs)
  2306. #"stride=2048" ljust at last [].e + (.1, 0)
  2307. #[ "\(ci" ] at O.ne + (.25, - 8 * vs)
  2308. #"stride=4096" ljust at last [].e + (.1, 0)
  2309. #[ "\(sq" ] at O.ne + (.25, - 9 * vs)
  2310. #"stride=8192" ljust at last [].e + (.1, 0)
  2311. #[ "\(*D" ] at O.ne + (.25, - 10 * vs)
  2312. #"stride=16384" ljust at last [].e + (.1, 0)
  2313. ]
  2314. .ft
  2315. .ps
  2316. .PE