home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Workbench / Archivers / mcvertWOS.lha / mcvertppc / mcvert.idraw < prev    next >
Text File  |  1998-04-08  |  13KB  |  891 lines

  1. %!PS-Adobe-2.0 EPSF-1.2
  2. %%DocumentFonts: Helvetica-Bold
  3. %%Pages: 1
  4. %%BoundingBox: 69 66 547 688
  5. %%EndComments
  6.  
  7. %% Contributed by
  8. %% Brian Bartholomew - bb@math.ufl.edu - Univ. of Florida Dept. of Mathematics
  9. %% Sat, 20 Feb 93 04:45:04 EST
  10.  
  11. 50 dict begin
  12.  
  13. /arrowHeight 8 def
  14. /arrowWidth 4 def
  15. /none null def
  16. /numGraphicParameters 17 def
  17. /stringLimit 65535 def
  18.  
  19. /Begin {
  20. save
  21. numGraphicParameters dict begin
  22. } def
  23.  
  24. /End {
  25. end
  26. restore
  27. } def
  28.  
  29. /SetB {
  30. dup type /nulltype eq {
  31. pop
  32. false /brushRightArrow idef
  33. false /brushLeftArrow idef
  34. true /brushNone idef
  35. } {
  36. /brushDashOffset idef
  37. /brushDashArray idef
  38. 0 ne /brushRightArrow idef
  39. 0 ne /brushLeftArrow idef
  40. /brushWidth idef
  41. false /brushNone idef
  42. } ifelse
  43. } def
  44.  
  45. /SetCFg {
  46. /fgblue idef
  47. /fggreen idef
  48. /fgred idef
  49. } def
  50.  
  51. /SetCBg {
  52. /bgblue idef
  53. /bggreen idef
  54. /bgred idef
  55. } def
  56.  
  57. /SetF {
  58. /printSize idef
  59. /printFont idef
  60. } def
  61.  
  62. /SetP {
  63. dup type /nulltype eq {
  64. pop true /patternNone idef
  65. } {
  66. dup -1 eq {
  67. /patternGrayLevel idef
  68. /patternString idef
  69. } {
  70. /patternGrayLevel idef
  71. } ifelse
  72. false /patternNone idef
  73. } ifelse
  74. } def
  75.  
  76. /BSpl {
  77. 0 begin
  78. storexyn
  79. newpath
  80. n 1 gt {
  81. 0 0 0 0 0 0 1 1 true subspline
  82. n 2 gt {
  83. 0 0 0 0 1 1 2 2 false subspline
  84. 1 1 n 3 sub {
  85. /i exch def
  86. i 1 sub dup i dup i 1 add dup i 2 add dup false subspline
  87. } for
  88. n 3 sub dup n 2 sub dup n 1 sub dup 2 copy false subspline
  89. } if
  90. n 2 sub dup n 1 sub dup 2 copy 2 copy false subspline
  91. patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if
  92. brushNone not { istroke } if
  93. 0 0 1 1 leftarrow
  94. n 2 sub dup n 1 sub dup rightarrow
  95. } if
  96. end
  97. } dup 0 4 dict put def
  98.  
  99. /Circ {
  100. newpath
  101. 0 360 arc
  102. patternNone not { ifill } if
  103. brushNone not { istroke } if
  104. } def
  105.  
  106. /CBSpl {
  107. 0 begin
  108. dup 2 gt {
  109. storexyn
  110. newpath
  111. n 1 sub dup 0 0 1 1 2 2 true subspline
  112. 1 1 n 3 sub {
  113. /i exch def
  114. i 1 sub dup i dup i 1 add dup i 2 add dup false subspline
  115. } for
  116. n 3 sub dup n 2 sub dup n 1 sub dup 0 0 false subspline
  117. n 2 sub dup n 1 sub dup 0 0 1 1 false subspline
  118. patternNone not { ifill } if
  119. brushNone not { istroke } if
  120. } {
  121. Poly
  122. } ifelse
  123. end
  124. } dup 0 4 dict put def
  125.  
  126. /Elli {
  127. 0 begin
  128. newpath
  129. 4 2 roll
  130. translate
  131. scale
  132. 0 0 1 0 360 arc
  133. patternNone not { ifill } if
  134. brushNone not { istroke } if
  135. end
  136. } dup 0 1 dict put def
  137.  
  138. /Line {
  139. 0 begin
  140. 2 storexyn
  141. newpath
  142. x 0 get y 0 get moveto
  143. x 1 get y 1 get lineto
  144. brushNone not { istroke } if
  145. 0 0 1 1 leftarrow
  146. 0 0 1 1 rightarrow
  147. end
  148. } dup 0 4 dict put def
  149.  
  150. /MLine {
  151. 0 begin
  152. storexyn
  153. newpath
  154. n 1 gt {
  155. x 0 get y 0 get moveto
  156. 1 1 n 1 sub {
  157. /i exch def
  158. x i get y i get lineto
  159. } for
  160. patternNone not brushLeftArrow not brushRightArrow not and and { ifill } if
  161. brushNone not { istroke } if
  162. 0 0 1 1 leftarrow
  163. n 2 sub dup n 1 sub dup rightarrow
  164. } if
  165. end
  166. } dup 0 4 dict put def
  167.  
  168. /Poly {
  169. 3 1 roll
  170. newpath
  171. moveto
  172. -1 add
  173. { lineto } repeat
  174. closepath
  175. patternNone not { ifill } if
  176. brushNone not { istroke } if
  177. } def
  178.  
  179. /Rect {
  180. 0 begin
  181. /t exch def
  182. /r exch def
  183. /b exch def
  184. /l exch def
  185. newpath
  186. l b moveto
  187. l t lineto
  188. r t lineto
  189. r b lineto
  190. closepath
  191. patternNone not { ifill } if
  192. brushNone not { istroke } if
  193. end
  194. } dup 0 4 dict put def
  195.  
  196. /Text {
  197. ishow
  198. } def
  199.  
  200. /idef {
  201. dup where { pop pop pop } { exch def } ifelse
  202. } def
  203.  
  204. /ifill {
  205. 0 begin
  206. gsave
  207. patternGrayLevel -1 ne {
  208. fgred bgred fgred sub patternGrayLevel mul add
  209. fggreen bggreen fggreen sub patternGrayLevel mul add
  210. fgblue bgblue fgblue sub patternGrayLevel mul add setrgbcolor
  211. eofill
  212. } {
  213. eoclip
  214. originalCTM setmatrix
  215. pathbbox /t exch def /r exch def /b exch def /l exch def
  216. /w r l sub ceiling cvi def
  217. /h t b sub ceiling cvi def
  218. /imageByteWidth w 8 div ceiling cvi def
  219. /imageHeight h def
  220. bgred bggreen bgblue setrgbcolor
  221. eofill
  222. fgred fggreen fgblue setrgbcolor
  223. w 0 gt h 0 gt and {
  224. l b translate w h scale
  225. w h true [w 0 0 h neg 0 h] { patternproc } imagemask
  226. } if
  227. } ifelse
  228. grestore
  229. end
  230. } dup 0 8 dict put def
  231.  
  232. /istroke {
  233. gsave
  234. brushDashOffset -1 eq {
  235. [] 0 setdash
  236. 1 setgray
  237. } {
  238. brushDashArray brushDashOffset setdash
  239. fgred fggreen fgblue setrgbcolor
  240. } ifelse
  241. brushWidth setlinewidth
  242. originalCTM setmatrix
  243. stroke
  244. grestore
  245. } def
  246.  
  247. /ishow {
  248. 0 begin
  249. gsave
  250. fgred fggreen fgblue setrgbcolor
  251. /fontDict printFont findfont printSize scalefont dup setfont def
  252. /descender fontDict begin 0 [FontBBox] 1 get FontMatrix end
  253. transform exch pop def
  254. /vertoffset 0 descender sub printSize sub printFont /Courier ne
  255. printFont /Courier-Bold ne and { 1 add } if def {
  256. 0 vertoffset moveto show
  257. /vertoffset vertoffset printSize sub def
  258. } forall
  259. grestore
  260. end
  261. } dup 0 3 dict put def
  262.  
  263. /patternproc {
  264. 0 begin
  265. /patternByteLength patternString length def
  266. /patternHeight patternByteLength 8 mul sqrt cvi def
  267. /patternWidth patternHeight def
  268. /patternByteWidth patternWidth 8 idiv def
  269. /imageByteMaxLength imageByteWidth imageHeight mul
  270. stringLimit patternByteWidth sub min def
  271. /imageMaxHeight imageByteMaxLength imageByteWidth idiv patternHeight idiv
  272. patternHeight mul patternHeight max def
  273. /imageHeight imageHeight imageMaxHeight sub store
  274. /imageString imageByteWidth imageMaxHeight mul patternByteWidth add string def
  275. 0 1 imageMaxHeight 1 sub {
  276. /y exch def
  277. /patternRow y patternByteWidth mul patternByteLength mod def
  278. /patternRowString patternString patternRow patternByteWidth getinterval def
  279. /imageRow y imageByteWidth mul def
  280. 0 patternByteWidth imageByteWidth 1 sub {
  281. /x exch def
  282. imageString imageRow x add patternRowString putinterval
  283. } for
  284. } for
  285. imageString
  286. end
  287. } dup 0 12 dict put def
  288.  
  289. /min {
  290. dup 3 2 roll dup 4 3 roll lt { exch } if pop
  291. } def
  292.  
  293. /max {
  294. dup 3 2 roll dup 4 3 roll gt { exch } if pop
  295. } def
  296.  
  297. /arrowhead {
  298. 0 begin
  299. transform originalCTM itransform
  300. /taily exch def
  301. /tailx exch def
  302. transform originalCTM itransform
  303. /tipy exch def
  304. /tipx exch def
  305. /dy tipy taily sub def
  306. /dx tipx tailx sub def
  307. /angle dx 0 ne dy 0 ne or { dy dx atan } { 90 } ifelse def
  308. gsave
  309. originalCTM setmatrix
  310. tipx tipy translate
  311. angle rotate
  312. newpath
  313. 0 0 moveto
  314. arrowHeight neg arrowWidth 2 div lineto
  315. arrowHeight neg arrowWidth 2 div neg lineto
  316. closepath
  317. patternNone not {
  318. originalCTM setmatrix
  319. /padtip arrowHeight 2 exp 0.25 arrowWidth 2 exp mul add sqrt brushWidth mul
  320. arrowWidth div def
  321. /padtail brushWidth 2 div def
  322. tipx tipy translate
  323. angle rotate
  324. padtip 0 translate
  325. arrowHeight padtip add padtail add arrowHeight div dup scale
  326. arrowheadpath
  327. ifill
  328. } if
  329. brushNone not {
  330. originalCTM setmatrix
  331. tipx tipy translate
  332. angle rotate
  333. arrowheadpath
  334. istroke
  335. } if
  336. grestore
  337. end
  338. } dup 0 9 dict put def
  339.  
  340. /arrowheadpath {
  341. newpath
  342. 0 0 moveto
  343. arrowHeight neg arrowWidth 2 div lineto
  344. arrowHeight neg arrowWidth 2 div neg lineto
  345. closepath
  346. } def
  347.  
  348. /leftarrow {
  349. 0 begin
  350. y exch get /taily exch def
  351. x exch get /tailx exch def
  352. y exch get /tipy exch def
  353. x exch get /tipx exch def
  354. brushLeftArrow { tipx tipy tailx taily arrowhead } if
  355. end
  356. } dup 0 4 dict put def
  357.  
  358. /rightarrow {
  359. 0 begin
  360. y exch get /tipy exch def
  361. x exch get /tipx exch def
  362. y exch get /taily exch def
  363. x exch get /tailx exch def
  364. brushRightArrow { tipx tipy tailx taily arrowhead } if
  365. end
  366. } dup 0 4 dict put def
  367.  
  368. /midpoint {
  369. 0 begin
  370. /y1 exch def
  371. /x1 exch def
  372. /y0 exch def
  373. /x0 exch def
  374. x0 x1 add 2 div
  375. y0 y1 add 2 div
  376. end
  377. } dup 0 4 dict put def
  378.  
  379. /thirdpoint {
  380. 0 begin
  381. /y1 exch def
  382. /x1 exch def
  383. /y0 exch def
  384. /x0 exch def
  385. x0 2 mul x1 add 3 div
  386. y0 2 mul y1 add 3 div
  387. end
  388. } dup 0 4 dict put def
  389.  
  390. /subspline {
  391. 0 begin
  392. /movetoNeeded exch def
  393. y exch get /y3 exch def
  394. x exch get /x3 exch def
  395. y exch get /y2 exch def
  396. x exch get /x2 exch def
  397. y exch get /y1 exch def
  398. x exch get /x1 exch def
  399. y exch get /y0 exch def
  400. x exch get /x0 exch def
  401. x1 y1 x2 y2 thirdpoint
  402. /p1y exch def
  403. /p1x exch def
  404. x2 y2 x1 y1 thirdpoint
  405. /p2y exch def
  406. /p2x exch def
  407. x1 y1 x0 y0 thirdpoint
  408. p1x p1y midpoint
  409. /p0y exch def
  410. /p0x exch def
  411. x2 y2 x3 y3 thirdpoint
  412. p2x p2y midpoint
  413. /p3y exch def
  414. /p3x exch def
  415. movetoNeeded { p0x p0y moveto } if
  416. p1x p1y p2x p2y p3x p3y curveto
  417. end
  418. } dup 0 17 dict put def
  419.  
  420. /storexyn {
  421. /n exch def
  422. /y n array def
  423. /x n array def
  424. n 1 sub -1 0 {
  425. /i exch def
  426. y i 3 2 roll put
  427. x i 3 2 roll put
  428. } for
  429. } def
  430.  
  431. %%EndProlog
  432.  
  433. %I Idraw 7 Grid 8 
  434.  
  435. %%Page: 1 1
  436.  
  437. Begin
  438. %I b u
  439. %I cfg u
  440. %I cbg u
  441. %I f u
  442. %I p u
  443. %I t
  444. [ 0.8 0 0 0.8 0 0 ] concat
  445. /originalCTM matrix currentmatrix def
  446.  
  447. Begin %I Rect
  448. %I b 65535
  449. 2 0 0 [] 0 SetB
  450. %I cfg Black
  451. 0 0 0 SetCFg
  452. %I cbg White
  453. 1 1 1 SetCBg
  454. none SetP %I p n
  455. %I t
  456. [ 1 0 0 1 -72 275 ] concat
  457. %I
  458. 361 198 556 269 Rect
  459. End
  460.  
  461. Begin %I Rect
  462. %I b 65535
  463. 2 0 0 [] 0 SetB
  464. %I cfg Black
  465. 0 0 0 SetCFg
  466. %I cbg White
  467. 1 1 1 SetCBg
  468. none SetP %I p n
  469. %I t
  470. [ 1 0 0 1 -271 479 ] concat
  471. %I
  472. 361 198 556 269 Rect
  473. End
  474.  
  475. Begin %I Rect
  476. %I b 65535
  477. 2 0 0 [] 0 SetB
  478. %I cfg Black
  479. 0 0 0 SetCFg
  480. %I cbg White
  481. 1 1 1 SetCBg
  482. none SetP %I p n
  483. %I t
  484. [ 1 0 0 1 97 486 ] concat
  485. %I
  486. 361 198 556 269 Rect
  487. End
  488.  
  489. Begin %I Rect
  490. %I b 65535
  491. 2 0 0 [] 0 SetB
  492. %I cfg Black
  493. 0 0 0 SetCFg
  494. %I cbg White
  495. 1 1 1 SetCBg
  496. none SetP %I p n
  497. %I t
  498. [ 1 0 0 1 125 81 ] concat
  499. %I
  500. 361 198 556 269 Rect
  501. End
  502.  
  503. Begin %I Rect
  504. %I b 65535
  505. 2 0 0 [] 0 SetB
  506. %I cfg Black
  507. 0 0 0 SetCFg
  508. %I cbg White
  509. 1 1 1 SetCBg
  510. none SetP %I p n
  511. %I t
  512. [ 1 0 0 1 -269 85 ] concat
  513. %I
  514. 361 198 556 269 Rect
  515. End
  516.  
  517. Begin %I Text
  518. %I cfg Black
  519. 0 0 0 SetCFg
  520. %I f *-helvetica-bold-r-*-140-*
  521. /Helvetica-Bold 14 SetF
  522. %I t
  523. [ 1 0 0 1 348 513 ] concat
  524. %I
  525. [
  526. (MacBinary)
  527. ] Text
  528. End
  529.  
  530. Begin %I Text
  531. %I cfg Black
  532. 0 0 0 SetCFg
  533. %I f *-helvetica-bold-r-*-140-*
  534. /Helvetica-Bold 14 SetF
  535. %I t
  536. [ 1 0 0 1 513 723 ] concat
  537. %I
  538. [
  539. (BinHex 4.0)
  540. ] Text
  541. End
  542.  
  543. Begin %I Text
  544. %I cfg Black
  545. 0 0 0 SetCFg
  546. %I f *-helvetica-bold-r-*-140-*
  547. /Helvetica-Bold 14 SetF
  548. %I t
  549. [ 1 0 0 1 150 324 ] concat
  550. %I
  551. [
  552. (Data Fork)
  553. ] Text
  554. End
  555.  
  556. Begin %I Text
  557. %I cfg Black
  558. 0 0 0 SetCFg
  559. %I f *-helvetica-bold-r-*-140-*
  560. /Helvetica-Bold 14 SetF
  561. %I t
  562. [ 1 0 0 1 534 322 ] concat
  563. %I
  564. [
  565. (Resource Fork)
  566. ] Text
  567. End
  568.  
  569. Begin %I Text
  570. %I cfg Black
  571. 0 0 0 SetCFg
  572. %I f *-helvetica-bold-r-*-140-*
  573. /Helvetica-Bold 14 SetF
  574. %I t
  575. [ 1 0 0 1 173 717 ] concat
  576. %I
  577. [
  578. (Text)
  579. ] Text
  580. End
  581.  
  582. Begin %I Line
  583. %I b 65535
  584. 1 1 0 [] 0 SetB
  585. %I cfg Black
  586. 0 0 0 SetCFg
  587. %I cbg White
  588. 1 1 1 SetCBg
  589. %I p
  590. 0 SetP
  591. %I t
  592. [ 1 0 0 1 -89 166 ] concat
  593. %I
  594. 287 500 373 393 Line
  595. End
  596.  
  597. Begin %I Line
  598. %I b 65535
  599. 1 0 1 [] 0 SetB
  600. %I cfg Black
  601. 0 0 0 SetCFg
  602. %I cbg White
  603. 1 1 1 SetCBg
  604. %I p
  605. 0 SetP
  606. %I t
  607. [ 1 0 0 1 -69 167 ] concat
  608. %I
  609. 355 286 310 199 Line
  610. End
  611.  
  612. Begin %I Line
  613. %I b 65535
  614. 1 0 1 [] 0 SetB
  615. %I cfg Black
  616. 0 0 0 SetCFg
  617. %I cbg White
  618. 1 1 1 SetCBg
  619. %I p
  620. 0 SetP
  621. %I t
  622. [ 1 0 0 1 -69 167 ] concat
  623. %I
  624. 547 290 609 198 Line
  625. End
  626.  
  627. Begin %I Line
  628. %I b 65535
  629. 1 0 1 [] 0 SetB
  630. %I cfg Black
  631. 0 0 0 SetCFg
  632. %I cbg White
  633. 1 1 1 SetCBg
  634. %I p
  635. 0 SetP
  636. %I t
  637. [ 1 0 0 1 -69 167 ] concat
  638. %I
  639. 542 395 584 504 Line
  640. End
  641.  
  642. Begin %I Line
  643. %I b 65535
  644. 1 1 0 [] 0 SetB
  645. %I cfg Black
  646. 0 0 0 SetCFg
  647. %I cbg White
  648. 1 1 1 SetCBg
  649. %I p
  650. 0 SetP
  651. %I t
  652. [ 1 0 0 1 -44 162 ] concat
  653. %I
  654. 542 395 584 504 Line
  655. End
  656.  
  657. Begin %I Line
  658. %I b 65535
  659. 1 0 1 [] 0 SetB
  660. %I cfg Black
  661. 0 0 0 SetCFg
  662. %I cbg White
  663. 1 1 1 SetCBg
  664. %I p
  665. 0 SetP
  666. %I t
  667. [ 1 0 0 1 -58 170 ] concat
  668. %I
  669. 287 500 373 393 Line
  670. End
  671.  
  672. Begin %I Line
  673. %I b 65535
  674. 1 1 0 [] 0 SetB
  675. %I cfg Black
  676. 0 0 0 SetCFg
  677. %I cbg White
  678. 1 1 1 SetCBg
  679. %I p
  680. 0 SetP
  681. %I t
  682. [ 1 0 0 1 -40 167 ] concat
  683. %I
  684. 355 286 310 199 Line
  685. End
  686.  
  687. Begin %I Line
  688. %I b 65535
  689. 1 1 0 [] 0 SetB
  690. %I cfg Black
  691. 0 0 0 SetCFg
  692. %I cbg White
  693. 1 1 1 SetCBg
  694. %I p
  695. 0 SetP
  696. %I t
  697. [ 1 0 0 1 -43 176 ] concat
  698. %I
  699. 547 290 609 198 Line
  700. End
  701.  
  702. Begin %I Text
  703. %I cfg Black
  704. 0 0 0 SetCFg
  705. %I f *-helvetica-bold-r-*-140-*
  706. /Helvetica-Bold 14 SetF
  707. %I t
  708. [ 1 0 0 1 224 419 ] concat
  709. %I
  710. [
  711. (-dU)
  712. ] Text
  713. End
  714.  
  715. Begin %I Text
  716. %I cfg Black
  717. 0 0 0 SetCFg
  718. %I f *-helvetica-bold-r-*-140-*
  719. /Helvetica-Bold 14 SetF
  720. %I t
  721. [ 1 0 0 1 304 406 ] concat
  722. %I
  723. [
  724. (-dD)
  725. ] Text
  726. End
  727.  
  728. Begin %I Text
  729. %I cfg Black
  730. 0 0 0 SetCFg
  731. %I f *-helvetica-bold-r-*-140-*
  732. /Helvetica-Bold 14 SetF
  733. %I t
  734. [ 1 0 0 1 467 405 ] concat
  735. %I
  736. [
  737. (-rU)
  738. ] Text
  739. End
  740.  
  741. Begin %I Text
  742. %I cfg Black
  743. 0 0 0 SetCFg
  744. %I f *-helvetica-bold-r-*-140-*
  745. /Helvetica-Bold 14 SetF
  746. %I t
  747. [ 1 0 0 1 553 429 ] concat
  748. %I
  749. [
  750. (-rD)
  751. ] Text
  752. End
  753.  
  754. Begin %I Text
  755. %I cfg Black
  756. 0 0 0 SetCFg
  757. %I f *-helvetica-bold-r-*-140-*
  758. /Helvetica-Bold 14 SetF
  759. %I t
  760. [ 1 0 0 1 458 629 ] concat
  761. %I
  762. [
  763. (-xU)
  764. ] Text
  765. End
  766.  
  767. Begin %I Text
  768. %I cfg Black
  769. 0 0 0 SetCFg
  770. %I f *-helvetica-bold-r-*-140-*
  771. /Helvetica-Bold 14 SetF
  772. %I t
  773. [ 1 0 0 1 536 613 ] concat
  774. %I
  775. [
  776. (-xD)
  777. ] Text
  778. End
  779.  
  780. Begin %I Text
  781. %I cfg Black
  782. 0 0 0 SetCFg
  783. %I f *-helvetica-bold-r-*-140-*
  784. /Helvetica-Bold 14 SetF
  785. %I t
  786. [ 1 0 0 1 284 631 ] concat
  787. %I
  788. [
  789. (-uD)
  790. ] Text
  791. End
  792.  
  793. Begin %I Text
  794. %I cfg Black
  795. 0 0 0 SetCFg
  796. %I f *-helvetica-bold-r-*-140-*
  797. /Helvetica-Bold 14 SetF
  798. %I t
  799. [ 1 0 0 1 199 611 ] concat
  800. %I
  801. [
  802. (-uU)
  803. ] Text
  804. End
  805.  
  806. Begin %I Text
  807. %I cfg Black
  808. 0 0 0 SetCFg
  809. %I f *-helvetica-bold-r-*-140-*
  810. /Helvetica-Bold 14 SetF
  811. %I t
  812. [ 1 0 0 1 451 536 ] concat
  813. %I
  814. [
  815. (.bin)
  816. ] Text
  817. End
  818.  
  819. Begin %I Text
  820. %I cfg Black
  821. 0 0 0 SetCFg
  822. %I f *-helvetica-bold-r-*-140-*
  823. /Helvetica-Bold 14 SetF
  824. %I t
  825. [ 1 0 0 1 619 748 ] concat
  826. %I
  827. [
  828. (.hqx)
  829. ] Text
  830. End
  831.  
  832. Begin %I Text
  833. %I cfg Black
  834. 0 0 0 SetCFg
  835. %I f *-helvetica-bold-r-*-140-*
  836. /Helvetica-Bold 14 SetF
  837. %I t
  838. [ 1 0 0 1 274 150 ] concat
  839. %I
  840. [
  841. (-s  Silent)
  842. ] Text
  843. End
  844.  
  845. Begin %I Text
  846. %I cfg Black
  847. 0 0 0 SetCFg
  848. %I f *-helvetica-bold-r-*-140-*
  849. /Helvetica-Bold 14 SetF
  850. %I t
  851. [ 1 0 0 1 274 125 ] concat
  852. %I
  853. [
  854. (-v  Verbose)
  855. ] Text
  856. End
  857.  
  858. Begin %I Text
  859. %I cfg Black
  860. 0 0 0 SetCFg
  861. %I f *-helvetica-bold-r-*-140-*
  862. /Helvetica-Bold 14 SetF
  863. %I t
  864. [ 2.24324 0 0 2.24324 244 850.216 ] concat
  865. %I
  866. [
  867. (mcvert\(1\) options)
  868. ] Text
  869. End
  870.  
  871. Begin %I Text
  872. %I cfg Black
  873. 0 0 0 SetCFg
  874. %I f *-helvetica-bold-r-*-140-*
  875. /Helvetica-Bold 14 SetF
  876. %I t
  877. [ 1 0 0 1 274 100 ] concat
  878. %I
  879. [
  880. (-p  Unpack top-level PackIt archives)
  881. ] Text
  882. End
  883.  
  884. End %I eop
  885.  
  886. showpage
  887.  
  888. %%Trailer
  889.  
  890. end
  891.