1: %!
2: %%BoundingBox: 68 68 542 488
3: %%Creator: Igor
4: %%Title: Layout0
5: %%Creation Date: Wed, Nov 05, 2003 2:31 PM
6: %%DocumentFonts: (atend)
7: %%EndComments
8: 0 556 translate 1 -1 scale
9: /IgorSave save def
10:
11: 1000 dict begin
12:
13: 0 setgray 0 setlinecap
14: 1 setlinewidth 0 setlinejoin
15: 1 setmiterlimit [] 0 setdash
16:
17: /aw 0 def /ah 0 def
18: /x0 0 def /y0 0 def /x1 0 def /y1 0 def
19: /rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def
20: /tmp0 0 def /tmp1 0 def
21: /packedRed 0 def /packedGreen 0 def /packedBlue 0 def
22: /x 0 def /y 0 def /w 0 def /c 0 string def
23:
24: /rbak 1 def /gbak 1 def /bbak 1 def
25: /rfor 0 def /gfor 0 def /bfor 0 def
26:
27: /bdef{bind def}bind def
28: /ldef{load def}bdef
29: /xdef{exch def}bdef
30:
31: /setuserscreendict 22 dict def
32: setuserscreendict begin
33:
34: /tempctm matrix def
35: /temprot matrix def
36: /tempscale matrix def
37:
38: /concatprocs{
39: /proc2 exch cvlit def
40: /proc1 exch cvlit def
41: /newproc proc1 length proc2 length add array def
42: newproc 0 proc1 putinterval
43: newproc proc1 length proc2 putinterval
44: newproc cvx
45: }def
46:
47: /resmatrix matrix def
48: /findresolution{
49: 72 0 resmatrix defaultmatrix dtransform
50: /yres xdef /xres xdef
51: xres dup mul yres dup mul add sqrt
52: }def
53: end
54:
55: /setuserscreen{
56: setuserscreendict begin
57: /spotfunction xdef
58: /screenangle xdef
59: /cellsize xdef
60:
61: /m tempctm currentmatrix def
62: /rm screenangle temprot rotate def
63: /sm cellsize dup tempscale scale def
64:
65: sm rm m m concatmatrix m concatmatrix pop
66: 1 0 m dtransform /y1 xdef /x1 xdef
67: /veclength x1 dup mul y1 dup mul add sqrt def
68: /frequency findresolution veclength div def
69: /newscreenangle y1 x1 atan def
70: m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt
71: {
72: { neg } /spotfunction load concatprocs
73: /spotfunction xdef
74: } if
75: frequency newscreenangle /spotfunction load setscreen
76: end
77: }def
78:
79: /setpatterndict 18 dict def
80: setpatterndict begin
81: /bitison{
82: /ybit xdef /xbit xdef
83: /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def
84: /mask 1 7 xbit 8 mod sub bitshift def
85: bytevalue mask and 0 ne
86: }def
87: end
88:
89: /bitpatternspotfunction{
90: setpatterndict begin
91: /y xdef /x xdef
92: /xindex x 1 add 2 div bpside mul cvi def
93: /yindex y 1 add 2 div bpside mul cvi def
94: xindex yindex bitison
95: { /onbits onbits 1 add def 1 }
96: { /offbits offbits 1 add def 0 }
97: ifelse
98: end
99: }def
100:
101: /setpattern{
102: setpatterndict begin
103: /cellsz xdef
104: /angle xdef
105: /bwidth xdef
106: /bpside xdef
107: /bstring xdef
108:
109: /onbits 0 def /offbits 0 def
110: cellsz angle /bitpatternspotfunction load setuserscreen
111: {} settransfer
112: offbits offbits onbits add div setgray
113: end
114: }def
115:
116: /FillPattern{ % patternstring --
117: /pat xdef
118: gsave
119: pat 8 1 0 72 300 32 div div setpattern
120: fill
121: grestore
122: }def
123:
124:
125:
126: /UseBack{ rbak gbak bbak setrgbcolor }bdef
127: /UseFore{ rfor gfor bfor setrgbcolor }bdef
128: /SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef
129: /SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef
130:
131:
132: /ps {setlinewidth} bdef
133: /clw {currentlinewidth} bdef
134: /sd {0 setdash} bdef
135:
136: /mstroke {0 clw eq {newpath}{stroke} ifelse} bdef
137:
138: /_R{ .5 sub round .5 add}bdef
139: /allign { transform _R exch _R exch itransform }bdef
140: /L {allign lineto} bdef
141: /M {allign moveto} bdef
142:
143: /addto { dup load exec 3 -1 roll add store }bdef
144: /MacLine{ % xto yto xfrom yfrom MacLine --
145: newpath % only handles horizontal or vertical lines
146: /y0 xdef /x0 xdef /y1 xdef /x1 xdef
147: x1 x0 sub abs
148: y1 y0 sub abs gt
149: {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto}
150: {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto}
151: ifelse
152: x0 y0 M
153: x1 y1 L
154: mstroke
155: }bdef
156:
157: /FillPath{ % graylevel FillPath -- fills current path and leaves path alive
158: gsave
159: dup 1 exch sub % glev 1-glev
160: rbak 2 index mul rfor 2 index mul add
161: gbak 3 index mul gfor 3 index mul add
162: bbak 4 index mul bfor 4 index mul add
163: setrgbcolor
164: pop pop
165: fill
166: grestore
167: }bdef
168:
169: /StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive
170: gsave
171: setlinejoin
172: mstroke
173: grestore
174: }bdef
175:
176: /RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange
177: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
178: newpath
179: x0 y0 M
180: x1 y0 L
181: x1 y1 L
182: x0 y1 L
183: closepath
184: }bdef
185:
186: /PaintRect{ % x0 y0 x1 y1 graylevel PaintRect --
187: gsave
188: 5 1 roll
189: RectPath
190: FillPath
191: grestore
192: }bdef
193:
194:
195:
196:
197: % **** begin image stuff *****
198: % The following are used for images. This has to be kept
199: % in synch with corresponding code in ImageDisp.c.In particular
200: % the expansion factor, 8, has to be in synch. LH010606: now to
201: % fix colorscales in layouts, expansion factor is in variable.
202: % packedcolor is (red*256+green)*256+blue
203:
204: /ExpFact 8 def % default expansion factor
205:
206: /SetPackedColor{ % packedcolor SetPackedColor --
207: dup 256 mod /tmp0 xdef % extract blue
208: 256 idiv
209: dup 256 mod /tmp1 xdef % extract green
210: 256 idiv % extract red
211: 255 div /packedRed xdef
212: tmp1 255 div /packedGreen xdef
213: tmp0 255 div /packedBlue xdef
214: }bdef
215:
216: /IR_FillRect{
217: gsave
218: newpath
219: rx0 ry0 M
220: rx1 ry0 L
221: rx1 ry1 L
222: rx0 ry1 L
223: closepath
224: packedRed packedGreen packedBlue setrgbcolor
225: fill
226: grestore
227: }bdef
228:
229: /NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine --
230: SetPackedColor
231:
232: /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls
233:
234: IR_FillRect
235: }bdef
236:
237: /rx{ % xdist rx --
238: ExpFact div
239: dup 0 lt
240: { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left
241: { rx1 /rx0 xdef rx0 add /rx1 xdef }
242: ifelse
243: IR_FillRect
244: }bdef
245:
246: /ry{ % ydist rr --
247: ExpFact div
248: dup 0 lt
249: { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down
250: { ry0 /ry1 xdef ry1 exch sub /ry0 xdef }
251: ifelse
252: IR_FillRect
253: }bdef
254:
255:
256: /cx{ % xdist packedcolor cx --
257: SetPackedColor
258: rx
259: }bdef
260:
261: /cy{ % ydist packedcolor cx --
262: SetPackedColor
263: ry
264: }bdef
265:
266: % **** end image stuff *****
267:
268:
269:
270: /EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color
271: gsave
272: RectPath
273: UseBack fill
274: grestore
275: }bdef
276:
277: /FrameRect{ % x0 y0 x1 y1 FrameRect --
278: RectPath
279: mstroke
280: }bdef
281:
282: /FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version
283: RectPath
284: mstroke
285: }bdef
286:
287:
288: /ellipse{
289: /savematrix matrix currentmatrix def
290: translate scale 0 0 1 0 360 arc
291: savematrix setmatrix
292: }bdef
293:
294:
295:
296: /OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange
297: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
298: newpath
299: x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse
300: closepath
301: }bdef
302:
303:
304: /PaintOval{ % x0 y0 x1 y1 graylevel PaintOval --
305: gsave
306: 5 1 roll
307: OvalPath
308: FillPath
309: grestore
310: }bdef
311:
312: /EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color
313: gsave
314: OvalPath
315: UseBack fill
316: grestore
317: }bdef
318:
319: /FrameOval{ % x0 y0 x1 y1 FrameOval --
320: OvalPath
321: mstroke
322: }bdef
323:
324:
325: /RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r
326: /radius xdef
327: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
328: newpath
329: x0 radius add y0 M
330: x1 y0 x1 y1 radius arcto 4{pop}repeat
331: x1 y1 x0 y1 radius arcto 4{pop}repeat
332: x0 y1 x0 y0 radius arcto 4{pop}repeat
333: x0 y0 x1 y0 radius arcto 4{pop}repeat
334: closepath
335: }bdef
336:
337:
338: /PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect --
339: gsave
340: 6 1 roll
341: RRectPath
342: FillPath
343: grestore
344: }bdef
345:
346: /EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color
347: gsave
348: RRectPath
349: UseBack fill
350: grestore
351: }bdef
352:
353: /FrameRRect{ % x0 y0 x1 y1 r FrameRect --
354: RRectPath
355: mstroke
356: }bdef
357:
358:
359:
360:
361: /CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap
362: gsave
363: setlinecap
364: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
365: newpath
366: x0 y0 M
367: x1 y1 L
368: mstroke
369: grestore
370: }bdef
371:
372: /Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1
373: gsave
374: /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef
375: x0 y0 translate
376: /x1 x1 x0 sub def
377: /y1 y1 y0 sub def
378: y1 x1 atan rotate
379: newpath
380: 0 0 M
381: aw ah 2 div L
382: aw ah 2 div neg L
383: closepath
384: gl FillPath
385: % 10 setmiterlimit
386: % 1 ps
387: % 0 StrokePath
388: grestore
389: }bdef
390:
391:
392: % ************ fonts ************
393:
394:
395: /normal 0 def
396: /bold 1 def
397: /italic 2 def
398: /underline 4 def
399: /outline 8 def
400: /shadow 16 def
401:
402: /FACE1 bold italic or def
403: /FACE2 outline shadow or def
404:
405: /Shadow {
406: gsave
407: siz 0.08 mul 1 index mul x add
408: exch siz 0.07 mul mul y add M
409: c show
410: grestore
411: } def
412:
413: /Outline {
414: gsave
415: siz .02 mul setlinewidth
416: x y M c true charpath
417: gsave UseBack fill grestore stroke
418: grestore
419: } def
420:
421: /Underline{
422: gsave
423: siz 0.08 mul ps
424: x y clw add M x c stringwidth pop add y clw add L stroke
425: grestore
426: }bdef
427:
428: /DoShow{ % assumes x,y,c are already set
429: fontkind FACE2 and
430: dup normal eq {c x y M show} if
431: dup outline eq {Outline} if
432: dup shadow eq {1 Shadow Outline} if
433: outline shadow or eq {1 Shadow 1.5 Shadow Outline} if
434: fontkind underline and 0 ne { Underline } if
435: }bdef
436:
437: /DoWShow{ % assumes x,y,c & w are already set
438: gsave
439: x y translate
440: /x 0 def /y 0 def
441: w c stringwidth pop div 1 scale
442: DoShow
443: grestore
444: }bdef
445:
446: /S{
447: /y xdef /x xdef /c xdef
448: DoShow
449: }bdef
450:
451: /WS{ % string x y desiredwidth WS -
452: /w xdef /y xdef /x xdef /c xdef
453: DoWShow
454: }bdef
455:
456: /F{
457: /fontkind xdef
458: findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont
459: }bdef
460:
461:
462:
463: /Re-encode {
464: dup length array copy
465: /eap 0 def
466: exch {
467: dup type /integertype eq
468: { /eap xdef }
469: {
470: 1 index
471: exch
472: eap exch
473: put
474: /eap eap 1 add def
475: }
476: ifelse
477: } forall
478: } bind def
479:
480: [ 39/quotesingle 96/grave 128/.notdef/.notdef/quotesinglbase
481: /florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex
482: /perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
483: /.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright
484: /bullet/endash/emdash/tilde/trademark/scaron/guilsinglright
485: /oe/.notdef/.notdef/Ydieresis/.notdef/exclamdown/cent
486: /sterling/currency/yen/brokenbar/section/dieresis/copyright
487: /ordfeminine/guillemotleft/logicalnot/.notdef/registered
488: /macron/degree/plusminus/twosuperior/threesuperior/acute
489: /mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine
490: /guillemotright/onequarter/onehalf/threequarters/questiondown
491: /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
492: /Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave
493: /Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute
494: /Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave
495: /Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
496: /agrave/aacute/acircumflex/atilde/adieresis/aring/ae
497: /ccedilla/egrave/eacute/ecircumflex/edieresis/igrave
498: /iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute
499: /ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute
500: /ucircumflex/udieresis/yacute/thorn/ydieresis]
501: /zzz xdef
502:
503: /OurEncoding{ zzz StandardEncoding Re-encode }bdef
504:
505: /EncodeFont {
506: findfont
507: dup length dict begin
508: {
509: 1 index /FID ne
510: { def }
511: { pop pop }
512: ifelse
513: } forall
514: /FontName xdef
515: /Encoding xdef
516: FontName currentdict
517: end
518: definefont pop
519: } bind def
520:
521: /AnObj save def
522: 1 1 1 SetBack 0 0 0 SetFore UseFore
523: 0 0 translate
524: AnObj restore
525: /AnObj save def
526: 1 1 1 SetBack 0 0 0 SetFore UseFore
527: 72 72 translate
528: 1.00 ps
529: gsave 1.00 ps 83.50 17.88 83.50 354.50 0 CapLine grestore
530: gsave 1.00 ps 426.50 17.88 426.50 354.50 0 CapLine grestore
531: 1 ps
532: 1.00 ps
533: gsave 1.00 ps 83.00 354.50 92.37 354.50 0 CapLine grestore
534: 1 ps
535: OurEncoding /_Helvetica /Helvetica EncodeFont
536: 16.00 (_Helvetica) 0 F
537: (-0.8) 51.25 359.88 27.62 WS
538: 1.00 ps
539: gsave 1.00 ps 83.00 270.38 92.37 270.38 0 CapLine grestore
540: 1 ps
541: 16.00 (_Helvetica) 0 F
542: (-0.6) 51.25 275.75 27.62 WS
543: 1.00 ps
544: gsave 1.00 ps 83.00 186.25 92.37 186.25 0 CapLine grestore
545: 1 ps
546: 16.00 (_Helvetica) 0 F
547: (-0.4) 51.25 191.63 27.62 WS
548: 1.00 ps
549: gsave 1.00 ps 83.00 102.00 92.37 102.00 0 CapLine grestore
550: 1 ps
551: 16.00 (_Helvetica) 0 F
552: (-0.2) 51.25 107.38 27.62 WS
553: 1.00 ps
554: gsave 1.00 ps 83.00 17.88 92.37 17.88 0 CapLine grestore
555: 1 ps
556: 16.00 (_Helvetica) 0 F
557: (0.0) 56.63 23.25 22.25 WS
558: 16.00 (_Helvetica) 0 F
559: gsave 38.38 209.12 translate -90 rotate
560: (K \(%\)) 0.00 0.00 40.13 WS
561: grestore
562: 1.00 ps
563: gsave 1.00 ps 83.50 354.50 426.50 354.50 0 CapLine grestore
564: gsave 1.00 ps 83.50 17.88 426.50 17.88 0 CapLine grestore
565: 1 ps
566: 1.00 ps
567: gsave 1.00 ps 426.50 355.00 426.50 345.63 0 CapLine grestore
568: 1 ps
569: 16.00 (_Helvetica) 0 F
570: (30) 417.63 374.00 17.75 WS
571: 1.00 ps
572: gsave 1.00 ps 369.38 355.00 369.38 345.63 0 CapLine grestore
573: 1 ps
574: 16.00 (_Helvetica) 0 F
575: (25) 360.50 374.00 17.75 WS
576: 1.00 ps
577: gsave 1.00 ps 312.13 355.00 312.13 345.63 0 CapLine grestore
578: 1 ps
579: 16.00 (_Helvetica) 0 F
580: (20) 303.25 374.00 17.75 WS
581: 1.00 ps
582: gsave 1.00 ps 255.00 355.00 255.00 345.63 0 CapLine grestore
583: 1 ps
584: 16.00 (_Helvetica) 0 F
585: (15) 246.13 374.00 17.75 WS
586: 1.00 ps
587: gsave 1.00 ps 197.88 355.00 197.88 345.63 0 CapLine grestore
588: 1 ps
589: 16.00 (_Helvetica) 0 F
590: (10) 189.00 374.00 17.75 WS
591: 1.00 ps
592: gsave 1.00 ps 140.63 355.00 140.63 345.63 0 CapLine grestore
593: 1 ps
594: 16.00 (_Helvetica) 0 F
595: (5) 136.25 374.00 8.88 WS
596: 1.00 ps
597: gsave 1.00 ps 83.50 355.00 83.50 345.63 0 CapLine grestore
598: 1 ps
599: 16.00 (_Helvetica) 0 F
600: (0) 79.13 374.00 8.88 WS
601: 16.00 (Symbol) 0 F
602: (c) 190.00 408.50 8.75 WS
603: OurEncoding /_Helvetica /Helvetica EncodeFont
604: 16.00 (_Helvetica) 0 F
605: ( \(x10) 198.75 408.50 35.63 WS
606: 11.25 (_Helvetica) 0 F
607: (-3) 234.38 399.00 10.00 WS
608: 16.00 (_Helvetica) 0 F
609: ( emu/mol\)) 244.38 408.50 75.75 WS
610: 0.50 ps
611: 366.00 152.62 374.00 160.63 2 CapLine
612: 374.00 152.62 366.00 160.63 2 CapLine
613: 366.00 156.63 374.00 156.63 2 CapLine
614: 370.00 152.62 370.00 160.63 2 CapLine
615: 382.38 168.63 390.38 176.63 2 CapLine
616: 390.38 168.63 382.38 176.63 2 CapLine
617: 382.38 172.63 390.38 172.63 2 CapLine
618: 386.38 168.63 386.38 176.63 2 CapLine
619: 394.00 181.75 402.00 189.75 2 CapLine
620: 402.00 181.75 394.00 189.75 2 CapLine
621: 394.00 185.75 402.00 185.75 2 CapLine
622: 398.00 181.75 398.00 189.75 2 CapLine
623: 404.50 211.38 412.50 219.38 2 CapLine
624: 412.50 211.38 404.50 219.38 2 CapLine
625: 404.50 215.37 412.50 215.37 2 CapLine
626: 408.50 211.38 408.50 219.38 2 CapLine
627: 390.00 201.50 398.00 209.50 2 CapLine
628: 398.00 201.50 390.00 209.50 2 CapLine
629: 390.00 205.50 398.00 205.50 2 CapLine
630: 394.00 201.50 394.00 209.50 2 CapLine
631: 369.63 180.38 377.62 188.38 2 CapLine
632: 377.62 180.38 369.63 188.38 2 CapLine
633: 369.63 184.37 377.62 184.37 2 CapLine
634: 373.62 180.38 373.62 188.38 2 CapLine
635: 313.50 139.00 321.50 147.00 2 CapLine
636: 321.50 139.00 313.50 147.00 2 CapLine
637: 313.50 143.00 321.50 143.00 2 CapLine
638: 317.50 139.00 317.50 147.00 2 CapLine
639: 281.38 123.25 289.38 131.25 2 CapLine
640: 289.38 123.25 281.38 131.25 2 CapLine
641: 281.38 127.25 289.38 127.25 2 CapLine
642: 285.38 123.25 285.38 131.25 2 CapLine
643: 234.75 93.87 242.75 101.88 2 CapLine
644: 242.75 93.87 234.75 101.88 2 CapLine
645: 234.75 97.88 242.75 97.88 2 CapLine
646: 238.75 93.87 238.75 101.88 2 CapLine
647: 203.75 71.00 211.75 79.00 2 CapLine
648: 211.75 71.00 203.75 79.00 2 CapLine
649: 203.75 75.00 211.75 75.00 2 CapLine
650: 207.75 71.00 207.75 79.00 2 CapLine
651: 182.00 55.75 190.00 63.75 2 CapLine
652: 190.00 55.75 182.00 63.75 2 CapLine
653: 182.00 59.75 190.00 59.75 2 CapLine
654: 186.00 55.75 186.00 63.75 2 CapLine
655: 170.75 46.25 178.75 54.25 2 CapLine
656: 178.75 46.25 170.75 54.25 2 CapLine
657: 170.75 50.25 178.75 50.25 2 CapLine
658: 174.75 46.25 174.75 54.25 2 CapLine
659: 157.25 38.38 165.25 46.38 2 CapLine
660: 165.25 38.38 157.25 46.38 2 CapLine
661: 157.25 42.38 165.25 42.38 2 CapLine
662: 161.25 38.38 161.25 46.38 2 CapLine
663: 1 ps
664: 1.00 ps
665: newpath 126.25 17.88 M
666: 126.63 18.12 L
667: 128.38 19.25 L
668: 130.00 20.50 L
669: 131.75 21.62 L
670: 133.50 22.87 L
671: 135.25 24.00 L
672: 136.88 25.25 L
673: 138.63 26.37 L
674: 140.38 27.62 L
675: 142.13 28.75 L
676: 143.88 30.00 L
677: 145.50 31.12 L
678: 147.25 32.38 L
679: 149.00 33.50 L
680: 150.75 34.75 L
681: 152.50 35.88 L
682: 154.13 37.13 L
683: 155.88 38.25 L
684: 157.62 39.50 L
685: 159.38 40.63 L
686: 161.12 41.88 L
687: 162.75 43.00 L
688: 164.50 44.25 L
689: 166.25 45.38 L
690: 168.00 46.63 L
691: 169.63 47.75 L
692: 171.38 49.00 L
693: 173.13 50.13 L
694: 174.88 51.38 L
695: 176.63 52.50 L
696: 178.25 53.75 L
697: 180.00 54.88 L
698: 181.75 56.13 L
699: 183.50 57.25 L
700: 185.25 58.50 L
701: 186.88 59.63 L
702: 188.63 60.88 L
703: 190.38 62.00 L
704: 192.13 63.13 L
705: 193.75 64.37 L
706: 195.50 65.50 L
707: 197.25 66.75 L
708: 199.00 67.88 L
709: 200.75 69.13 L
710: 202.38 70.25 L
711: 204.13 71.50 L
712: 205.88 72.62 L
713: 207.63 73.87 L
714: 209.38 75.00 L
715: 211.00 76.25 L
716: 212.75 77.37 L
717: 214.50 78.62 L
718: 216.25 79.75 L
719: 218.00 81.00 L
720: 219.63 82.12 L
721: 221.38 83.37 L
722: 223.13 84.50 L
723: 224.88 85.75 L
724: 226.50 86.88 L
725: 228.25 88.13 L
726: 230.00 89.25 L
727: 231.75 90.50 L
728: 233.50 91.63 L
729: 235.13 92.88 L
730: 236.88 94.00 L
731: 238.62 95.25 L
732: 240.38 96.37 L
733: 242.13 97.62 L
734: 243.75 98.75 L
735: 245.50 100.00 L
736: 247.25 101.13 L
737: 249.00 102.38 L
738: 250.75 103.50 L
739: 252.38 104.75 L
740: 254.13 105.88 L
741: 255.88 107.13 L
742: 257.63 108.25 L
743: 259.25 109.50 L
744: 261.00 110.63 L
745: 262.75 111.88 L
746: 264.50 113.00 L
747: 266.25 114.25 L
748: 267.88 115.38 L
749: 269.63 116.50 L
750: 271.38 117.75 L
751: 273.13 118.88 L
752: 274.88 120.13 L
753: 276.50 121.25 L
754: 278.25 122.50 L
755: 280.00 123.62 L
756: 281.75 124.88 L
757: 283.50 126.00 L
758: 285.13 127.25 L
759: 286.88 128.38 L
760: 288.63 129.63 L
761: 290.38 130.75 L
762: 292.00 132.00 L
763: 293.75 133.13 L
764: 295.50 134.38 L
765: 297.25 135.50 L
766: 299.00 136.75 L
767: 300.63 137.88 L
768: 302.38 139.13 L
769: 304.13 140.25 L
770: 305.88 141.50 L
771: 307.63 142.63 L
772: 309.25 143.88 L
773: 311.00 145.00 L
774: 312.75 146.25 L
775: 314.50 147.37 L
776: 316.25 148.62 L
777: 317.88 149.75 L
778: 319.63 151.00 L
779: 321.37 152.13 L
780: 323.13 153.38 L
781: 324.75 154.50 L
782: 326.50 155.75 L
783: 328.25 156.88 L
784: 330.00 158.13 L
785: 331.75 159.25 L
786: 333.38 160.50 L
787: 335.13 161.63 L
788: 336.88 162.88 L
789: 338.63 164.00 L
790: 340.38 165.25 L
791: 342.00 166.38 L
792: 343.75 167.63 L
793: 345.50 168.75 L
794: 347.25 170.00 L
795: 348.87 171.13 L
796: 350.63 172.25 L
797: 352.38 173.50 L
798: 354.13 174.63 L
799: 355.88 175.88 L
800: 357.50 177.00 L
801: 359.25 178.25 L
802: 361.00 179.38 L
803: 362.75 180.63 L
804: 364.50 181.75 L
805: 366.13 183.00 L
806: 367.88 184.13 L
807: 369.63 185.38 L
808: 371.37 186.50 L
809: 373.13 187.75 L
810: 374.75 188.88 L
811: 376.50 190.13 L
812: 378.25 191.25 L
813: 380.00 192.50 L
814: 381.63 193.63 L
815: 383.38 194.88 L
816: 385.13 196.00 L
817: 386.88 197.25 L
818: 388.63 198.38 L
819: 390.25 199.63 L
820: 392.00 200.75 L
821: 393.75 202.00 L
822: 395.50 203.13 L
823: 397.25 204.38 L
824: 398.88 205.50 L
825: 400.63 206.75 L
826: 402.38 207.88 L
827: 404.13 209.12 L
828: 405.88 210.25 L
829: 407.50 211.50 L
830: 409.25 212.63 L
831: 411.00 213.88 L
832: 412.75 215.00 L
833: 414.38 216.25 L
834: 416.12 217.37 L
835: 417.88 218.63 L
836: 419.62 219.75 L
837: 421.38 221.00 L
838: 423.00 222.13 L
839: 424.75 223.38 L
840: 426.50 224.50 L
841: mstroke
842: [] sd
843: 1 ps
844: AnObj restore
845: /AnObj save def
846: 1 1 1 SetBack 0 0 0 SetFore UseFore
847: 0 0 translate
848: AnObj restore
849: /AnObj save def
850: 1 1 1 SetBack 0 0 0 SetFore UseFore
851: 136 212 translate
852: 1.00 ps
853: gsave 1.00 ps 87.25 17.88 87.25 146.25 0 CapLine grestore
854: gsave 1.00 ps 230.50 17.88 230.50 146.25 0 CapLine grestore
855: 1 ps
856: 1.00 ps
857: gsave 1.00 ps 86.75 18.87 91.25 18.87 0 CapLine grestore
858: 1 ps
859: 1.00 ps
860: gsave 1.00 ps 86.75 40.13 94.75 40.13 0 CapLine grestore
861: 1 ps
862: OurEncoding /_Helvetica /Helvetica EncodeFont
863: 16.00 (_Helvetica) 0 F
864: (0.08) 52.13 45.50 31.12 WS
865: 1.00 ps
866: gsave 1.00 ps 86.75 61.38 91.25 61.38 0 CapLine grestore
867: 1 ps
868: 1.00 ps
869: gsave 1.00 ps 86.75 82.62 94.75 82.62 0 CapLine grestore
870: 1 ps
871: 16.00 (_Helvetica) 0 F
872: (0.04) 52.13 88.00 31.12 WS
873: 1.00 ps
874: gsave 1.00 ps 86.75 103.75 91.25 103.75 0 CapLine grestore
875: 1 ps
876: 1.00 ps
877: gsave 1.00 ps 86.75 125.00 94.75 125.00 0 CapLine grestore
878: 1 ps
879: 16.00 (_Helvetica) 0 F
880: (0.00) 52.13 130.38 31.12 WS
881: 1.00 ps
882: gsave 1.00 ps 86.75 146.25 91.25 146.25 0 CapLine grestore
883: 1 ps
884: 16.00 (_Helvetica) 0 F
885: gsave 41.38 106.50 translate -90 rotate
886: (K) 0.00 0.00 10.63 WS
887: grestore
888: 11.25 (_Helvetica) 0 F
889: gsave 46.25 95.87 translate -90 rotate
890: (cf) 0.00 0.00 8.88 WS
891: grestore
892: 16.00 (_Helvetica) 0 F
893: gsave 41.38 87.00 translate -90 rotate
894: ( \(%\)) 0.00 0.00 29.50 WS
895: grestore
896: 1.00 ps
897: gsave 1.00 ps 87.25 146.25 230.50 146.25 0 CapLine grestore
898: gsave 1.00 ps 87.25 17.88 230.50 17.88 0 CapLine grestore
899: 1 ps
900: 1.00 ps
901: gsave 1.00 ps 230.50 146.75 230.50 138.75 0 CapLine grestore
902: 1 ps
903: 16.00 (_Helvetica) 0 F
904: (300) 217.25 165.13 26.63 WS
905: 1.00 ps
906: gsave 1.00 ps 206.63 146.75 206.63 142.25 0 CapLine grestore
907: 1 ps
908: 1.00 ps
909: gsave 1.00 ps 182.75 146.75 182.75 138.75 0 CapLine grestore
910: 1 ps
911: 16.00 (_Helvetica) 0 F
912: (200) 169.50 165.13 26.63 WS
913: 1.00 ps
914: gsave 1.00 ps 158.87 146.75 158.87 142.25 0 CapLine grestore
915: 1 ps
916: 1.00 ps
917: gsave 1.00 ps 135.00 146.75 135.00 138.75 0 CapLine grestore
918: 1 ps
919: 16.00 (_Helvetica) 0 F
920: (100) 121.75 165.13 26.63 WS
921: 1.00 ps
922: gsave 1.00 ps 111.12 146.75 111.12 142.25 0 CapLine grestore
923: 1 ps
924: 1.00 ps
925: gsave 1.00 ps 87.25 146.75 87.25 138.75 0 CapLine grestore
926: 1 ps
927: 16.00 (_Helvetica) 0 F
928: (0) 82.88 165.13 8.88 WS
929: 16.00 (_Helvetica) 0 F
930: (T \(K\)) 141.12 196.50 35.63 WS
931: 0.50 ps
932: 86.50 48.75 92.50 54.75 2 CapLine
933: 92.50 48.75 86.50 54.75 2 CapLine
934: 86.50 51.75 92.50 51.75 2 CapLine
935: 89.50 48.75 89.50 54.75 2 CapLine
936: 91.63 60.75 97.62 66.75 2 CapLine
937: 97.62 60.75 91.63 66.75 2 CapLine
938: 91.63 63.75 97.62 63.75 2 CapLine
939: 94.62 60.75 94.62 66.75 2 CapLine
940: 94.13 74.00 100.13 80.00 2 CapLine
941: 100.13 74.00 94.13 80.00 2 CapLine
942: 94.13 77.00 100.13 77.00 2 CapLine
943: 97.13 74.00 97.13 80.00 2 CapLine
944: 99.13 130.13 105.13 136.12 2 CapLine
945: 105.13 130.13 99.13 136.12 2 CapLine
946: 99.13 133.13 105.13 133.13 2 CapLine
947: 102.13 130.13 102.13 136.12 2 CapLine
948: 103.87 130.38 109.87 136.38 2 CapLine
949: 109.87 130.38 103.87 136.38 2 CapLine
950: 103.87 133.38 109.87 133.38 2 CapLine
951: 106.88 130.38 106.88 136.38 2 CapLine
952: 108.50 112.63 114.50 118.62 2 CapLine
953: 114.50 112.63 108.50 118.62 2 CapLine
954: 108.50 115.63 114.50 115.63 2 CapLine
955: 111.50 112.63 111.50 118.62 2 CapLine
956: 121.37 105.63 127.38 111.63 2 CapLine
957: 127.38 105.63 121.37 111.63 2 CapLine
958: 121.37 108.63 127.38 108.63 2 CapLine
959: 124.38 105.63 124.38 111.63 2 CapLine
960: 132.00 121.75 138.00 127.75 2 CapLine
961: 138.00 121.75 132.00 127.75 2 CapLine
962: 132.00 124.75 138.00 124.75 2 CapLine
963: 135.00 121.75 135.00 127.75 2 CapLine
964: 151.00 128.50 157.00 134.50 2 CapLine
965: 157.00 128.50 151.00 134.50 2 CapLine
966: 151.00 131.50 157.00 131.50 2 CapLine
967: 154.00 128.50 154.00 134.50 2 CapLine
968: 169.88 124.75 175.88 130.75 2 CapLine
969: 175.88 124.75 169.88 130.75 2 CapLine
970: 169.88 127.75 175.88 127.75 2 CapLine
971: 172.88 124.75 172.88 130.75 2 CapLine
972: 188.88 123.88 194.88 129.87 2 CapLine
973: 194.88 123.88 188.88 129.87 2 CapLine
974: 188.88 126.88 194.88 126.88 2 CapLine
975: 191.88 123.88 191.88 129.87 2 CapLine
976: 202.75 119.63 208.75 125.63 2 CapLine
977: 208.75 119.63 202.75 125.63 2 CapLine
978: 202.75 122.63 208.75 122.63 2 CapLine
979: 205.75 119.63 205.75 125.63 2 CapLine
980: 225.00 123.00 231.00 129.00 2 CapLine
981: 231.00 123.00 225.00 129.00 2 CapLine
982: 225.00 126.00 231.00 126.00 2 CapLine
983: 228.00 123.00 228.00 129.00 2 CapLine
984: 1 ps
985: 1.00 ps
986: newpath 88.50 17.88 M
987: 88.75 25.00 L
988: 89.38 39.63 L
989: 90.12 50.13 L
990: 90.87 58.38 L
991: 91.63 65.12 L
992: 92.25 70.88 L
993: 93.00 75.88 L
994: 93.75 80.25 L
995: 94.50 84.13 L
996: 95.12 87.62 L
997: 95.87 90.75 L
998: 96.63 93.62 L
999: 97.37 96.25 L
1000: 98.00 98.62 L
1001: 98.75 100.75 L
1002: 99.50 102.88 L
1003: 100.25 104.75 L
1004: 100.88 106.50 L
1005: 101.62 108.13 L
1006: 102.38 109.63 L
1007: 103.13 111.00 L
1008: 103.75 112.25 L
1009: 104.50 113.50 L
1010: 105.25 114.63 L
1011: 106.00 115.63 L
1012: 106.63 116.63 L
1013: 107.38 117.50 L
1014: 108.13 118.38 L
1015: 108.87 119.13 L
1016: 109.63 119.75 L
1017: 110.25 120.50 L
1018: 111.00 121.00 L
1019: 111.75 121.63 L
1020: 112.50 122.13 L
1021: 113.13 122.50 L
1022: 113.88 123.00 L
1023: 114.63 123.38 L
1024: 115.38 123.62 L
1025: 116.00 124.00 L
1026: 116.75 124.25 L
1027: 117.50 124.38 L
1028: 118.25 124.63 L
1029: 118.88 124.75 L
1030: 119.63 124.88 L
1031: 120.38 125.00 L
1032: 121.13 125.00 L
1033: 121.75 125.00 L
1034: 122.50 125.00 L
1035: 123.25 125.00 L
1036: 124.00 125.00 L
1037: 124.63 125.00 L
1038: 125.38 125.00 L
1039: 126.13 125.00 L
1040: 126.88 125.00 L
1041: 127.50 125.00 L
1042: 128.25 125.00 L
1043: 129.00 125.00 L
1044: 129.75 125.00 L
1045: 130.50 125.00 L
1046: 131.13 125.00 L
1047: 131.88 125.00 L
1048: 132.63 125.00 L
1049: 133.38 125.00 L
1050: 134.00 125.00 L
1051: 134.75 125.00 L
1052: 135.50 125.00 L
1053: 136.25 125.00 L
1054: 136.88 125.00 L
1055: 137.63 125.00 L
1056: 138.38 125.00 L
1057: 139.13 125.00 L
1058: 139.75 125.00 L
1059: 140.50 125.00 L
1060: 141.25 125.00 L
1061: 142.00 125.00 L
1062: 142.63 125.00 L
1063: 143.38 125.00 L
1064: 144.13 125.00 L
1065: 144.88 125.00 L
1066: 145.50 125.00 L
1067: 146.25 125.00 L
1068: 147.00 125.00 L
1069: 147.75 125.00 L
1070: 148.38 125.00 L
1071: 149.13 125.00 L
1072: 149.88 125.00 L
1073: 150.63 125.00 L
1074: 151.37 125.00 L
1075: 152.00 125.00 L
1076: 152.75 125.00 L
1077: 153.50 125.00 L
1078: 154.25 125.00 L
1079: 154.87 125.00 L
1080: 155.63 125.00 L
1081: 156.38 125.00 L
1082: 157.13 125.00 L
1083: 157.75 125.00 L
1084: 158.50 125.00 L
1085: 159.25 125.00 L
1086: 160.00 125.00 L
1087: 160.63 125.00 L
1088: 161.38 125.00 L
1089: 162.13 125.00 L
1090: 162.88 125.00 L
1091: 163.50 125.00 L
1092: 164.25 125.00 L
1093: 165.00 125.00 L
1094: 165.75 125.00 L
1095: 166.38 125.00 L
1096: 167.13 125.00 L
1097: 167.88 125.00 L
1098: 168.63 125.00 L
1099: 169.37 125.00 L
1100: 170.00 125.00 L
1101: 170.75 125.00 L
1102: 171.50 125.00 L
1103: 172.25 125.00 L
1104: 172.88 125.00 L
1105: 173.62 125.00 L
1106: 174.38 125.00 L
1107: 175.13 125.00 L
1108: 175.75 125.00 L
1109: 176.50 125.00 L
1110: 177.25 125.00 L
1111: 178.00 125.00 L
1112: 178.62 125.00 L
1113: 179.38 125.00 L
1114: 180.13 125.00 L
1115: 180.88 125.00 L
1116: 181.50 125.00 L
1117: 182.25 125.00 L
1118: 183.00 125.00 L
1119: 183.75 125.00 L
1120: 184.37 125.00 L
1121: 185.13 125.00 L
1122: 185.88 125.00 L
1123: 186.63 125.00 L
1124: 187.25 125.00 L
1125: 188.00 125.00 L
1126: 188.75 125.00 L
1127: 189.50 125.00 L
1128: 190.25 125.00 L
1129: 190.88 125.00 L
1130: 191.63 125.00 L
1131: 192.37 125.00 L
1132: 193.13 125.00 L
1133: 193.75 125.00 L
1134: 194.50 125.00 L
1135: 195.25 125.00 L
1136: 196.00 125.00 L
1137: 196.63 125.00 L
1138: 197.37 125.00 L
1139: 198.13 125.00 L
1140: 198.88 125.00 L
1141: 199.50 125.00 L
1142: 200.25 125.00 L
1143: 201.00 125.00 L
1144: 201.75 125.00 L
1145: 202.38 125.00 L
1146: 203.13 125.00 L
1147: 203.88 125.00 L
1148: 204.63 125.00 L
1149: 205.25 125.00 L
1150: 206.00 125.00 L
1151: 206.75 125.00 L
1152: 207.50 125.00 L
1153: 208.13 125.00 L
1154: 208.88 125.00 L
1155: 209.63 125.00 L
1156: 210.38 125.00 L
1157: 211.12 125.00 L
1158: 211.75 125.00 L
1159: 212.50 125.00 L
1160: 213.25 125.00 L
1161: 214.00 125.00 L
1162: 214.63 125.00 L
1163: 215.37 125.00 L
1164: 216.13 125.00 L
1165: 216.88 125.00 L
1166: 217.50 125.00 L
1167: 218.25 125.00 L
1168: 219.00 125.00 L
1169: 219.75 125.00 L
1170: 220.38 125.00 L
1171: 221.13 125.00 L
1172: 221.88 125.00 L
1173: 222.63 125.00 L
1174: 223.25 125.00 L
1175: 224.00 125.00 L
1176: 224.75 125.00 L
1177: 225.50 125.00 L
1178: 226.12 125.00 L
1179: 226.88 125.00 L
1180: 227.63 125.00 L
1181: 228.38 125.00 L
1182: mstroke
1183: newpath 228.38 125.00 M
1184: 229.00 125.00 L
1185: 229.75 125.00 L
1186: 230.50 125.00 L
1187: mstroke
1188: [] sd
1189: 1 ps
1190: AnObj restore
1191: end
1192: IgorSave restore
1193: %%DocumentFonts: Helvetica
1194: %%+Symbol
1195: