%! %%DocumentFonts: (at end) %%Creator: DviLaser, ArborText, Inc. %%Title: TeX output 1991.10.24:1248 %%Pages: (at end) %%EndComments % % Dvips.pro - included prolog for DviLaser-generated PostScript files. % % Copyright (c) 1986-88, ArborText, Inc. All Rights Reserved. % % This PostScript prolog code is part of the proprietary DVILASER/PS % program package and may not be copied or re-distributed without % the permission of ArborText, Inc. % systemdict /setpacking known % use array packing mode if its available {/savepackingmode currentpacking def true setpacking} if /$DviLaser where {pop} {/$DviLaser 200 dict def} ifelse % Begin document /BeginDviLaserDoc { vmstatus pop pop 0 eq { $DviLaser begin InitializeState } { /DviLaserJob save def $DviLaser begin InitializeState /DviLaserFonts save def } ifelse } bind def % End document /EndDviLaserDoc { vmstatus pop pop 0 eq { end } { DviLaserFonts restore end DviLaserJob restore } ifelse } bind def $DviLaser begin /tempstr 64 string def /tempint 0 def /tempmatrix matrix def % % Debugging routines % /DebugMode false def /PrintInt { tempstr cvs print } bind def /PrintLn { (\n) print flush } bind def /PrintVMStats { (VM status - ) print vmstatus 3 copy PrintInt (\(total\), ) print PrintInt (\(used\), ) print pop exch sub PrintInt (\(remaining\), ) print PrintInt (\(level\)) print PrintLn } bind def /VMS /PrintVMStats load def /VMSDebug { DebugMode {PrintVMStats} {pop} ifelse } bind def (beginning of common prolog) VMSDebug % Make it easy to bind definitions. /bdef { bind def } bind def /xdef { exch def } bdef % Begin page /BP { /Magnification xdef /DviLaserPage save def (beginning of page) VMSDebug } bdef % End page /EP { DviLaserPage restore } bdef % Exit page (temporarily) to add fonts/characters. /XP { % Save current point information so it can be reset later. /Xpos where {pop Xpos} {0} ifelse /Ypos where {pop Ypos} {0} ifelse /currentpoint cvx stopped {0 0 moveto currentpoint} if /DviLaserPage where {pop DviLaserPage restore} if moveto /Ypos xdef /Xpos xdef } bdef % Resume page /RP { /DviLaserPage save def } bdef % Purge all fonts to reclaim memory space. /PF { GlobalMode LocalMode } bdef % Switch to base save/restore level, saving state information. /GlobalMode { /UserSave where {pop UserSave} if % invoke "UserSave" if available PortraitMode PaperWidth PaperHeight PxlResolution Resolution Magnification Ymax RasterScaleFactor % Save current point information so it can be reset later. /currentpoint cvx stopped {0 0 moveto currentpoint} if /DviLaserPage where {pop DviLaserPage restore} if DviLaserFonts restore RecoverState } bdef % Preserve state at the base level. /RecoverState { 10 copy /Ypos xdef /Xpos xdef /RasterScaleFactor xdef /Ymax xdef /Magnification xdef /Resolution xdef /PxlResolution xdef /PaperHeight xdef /PaperWidth xdef /PortraitMode xdef DoInitialScaling PortraitMode not {PaperWidth 0 SetupLandscape} if Xpos Ypos moveto } bdef % Initialize state variables to default values. /InitializeState { /Resolution 3600.0 def /PxlResolution 300.0 def /RasterScaleFactor PxlResolution Resolution div def /PortraitMode true def GetPageDimensions 72.0 div Resolution mul /PaperHeight xdef 72.0 div Resolution mul /PaperWidth xdef /Ymax PaperHeight def /Magnification 1000.0 def /Xpos 0.0 def /Ypos 0.0 def /InitialMatrix matrix currentmatrix def } bdef % % Procedure to figure out the current page dimensions. There unfortunately % is no direct way to obtain this information. This approach works for % letter, note, and legal page sizes. % % GetPageDimensions % /GetPageDimensions { /noop {} bdef gsave initmatrix initclip mark newpath clippath /noop dup dup dup pathforall counttomark 13 eq { % stack looks right, calculate page dimensions from path information 2 index /ht xdef 3 index /wd xdef 8 index ht add /ht xdef 6 index wd add /wd xdef } { % unexpected number of stack entries, return default values /wd 8.5 72.0 mul def /ht 11.0 72.0 mul def } ifelse cleartomark grestore wd ht } bdef % Switch from base save/restore level, restoring state information. /LocalMode { /Ypos xdef /Xpos xdef /RasterScaleFactor xdef /Ymax xdef /Magnification xdef /Resolution xdef /PxlResolution xdef /PaperHeight xdef /PaperWidth xdef /PortraitMode xdef DoInitialScaling PortraitMode not {PaperWidth 0 SetupLandscape} if Xpos Ypos moveto /UserRestore where {pop UserRestore} if % invoke "UserRestore" if available /DviLaserFonts save def /DviLaserPage save def } bdef % Abbreviations /S /show load def /SV /save load def /RST /restore load def /Yadjust {Ymax exch sub} bdef % (x,y) position absolute, just set Xpos & Ypos, don't move. /SXY { Yadjust /Ypos xdef /Xpos xdef } bdef % (x,y) position absolute /XY { Yadjust 2 copy /Ypos xdef /Xpos xdef moveto } bdef % (x,0) position absolute /X { currentpoint exch pop 2 copy /Ypos xdef /Xpos xdef moveto } bdef % (0,y) position absolute /Y { currentpoint pop exch Yadjust 2 copy /Ypos xdef /Xpos xdef moveto } bdef % (x,y) position relative /xy { neg rmoveto currentpoint /Ypos xdef /Xpos xdef } bdef % (x,0) position relative /x { 0.0 rmoveto currentpoint /Ypos xdef /Xpos xdef } bdef % (0,y) position relative /y { 0.0 exch neg rmoveto currentpoint /Ypos xdef /Xpos xdef } bdef % Print a rule /R { /ht xdef /wd xdef gsave 0 setgray currentpoint newpath moveto 0.0 ht rlineto wd 0.0 rlineto 0.0 ht neg rlineto wd neg 0.0 rlineto closepath fill grestore wd 0.0 rmoveto currentpoint /Ypos xdef /Xpos xdef } bdef % % RES % /RES { /Resolution xdef /PxlResolution xdef /RasterScaleFactor PxlResolution Resolution div def DoInitialScaling } bdef % % Do initial scaling. % /DoInitialScaling { InitialMatrix setmatrix 72.0 Resolution div dup scale } bdef % % PM % /PM { XP /PaperWidth xdef /PaperHeight xdef /Ymax PaperHeight def /PortraitMode true def DoInitialScaling RP } bdef % % LM % /LM { XP /PaperWidth xdef /PaperHeight xdef /Ymax PaperWidth def /PortraitMode false def DoInitialScaling PaperWidth 0 SetupLandscape RP } bdef % Change magnification setting /MAG { XP /Magnification xdef RP } bdef % % Switch to landscape mode % /SetupLandscape { translate 90.0 rotate } bdef % % SPB - begin "\special" mode % % This is the PostScript procedure used to transfer from the internal % environment used for the DVI translation code emitted by DVIPS to % a standard PostScript environment. % % Parameters: 0 - Local % 1 - Global % 2 - Inline % /SPB { /spc_mode xdef spc_mode 0 eq spc_mode 2 eq or {XP} {spc_mode 1 eq {GlobalMode} if} ifelse Resolution 72.0 div dup scale % Restore default scaling... Magnification 1000.0 div dup scale % Adjust for any magnification... /Xpos Xpos 72.0 Resolution div mul 1000.0 Magnification div mul def /Ypos Ypos 72.0 Resolution div mul 1000.0 Magnification div mul def } bdef % % SPE - end "\special" mode % % This is the PostScript procedure used to reenter the internal % environment used for the DVI translation code emitted by DVIPS from % the standard PostScript environment provided for processing user-supplied % PostScript code. % % Parameters: 0 - Local % 1 - Global % 2 - Inline % /SPE { /spc_mode xdef 1000.0 Magnification div dup scale % Un-adjust for any magnification... 72.0 Resolution div dup scale % Restore default internal scaling... spc_mode 0 eq spc_mode 2 eq or {RP} {spc_mode 1 eq {LocalMode} if} ifelse } bdef % % PP % /PP { /#copies xdef showpage /#copies 1 def } bdef % % CLRP % /CLRP { erasepage } bdef % % /font-name DMF % /DMF { /psz xdef /nam xdef nam findfont psz scalefont setfont } bdef % % /abcd (xxx) str-concat ==> /abcdxxx % /str-concatstr 64 string def /str-concat { /xxx xdef /nam xdef /namstr nam str-concatstr cvs def /newnam namstr length xxx length add string def newnam 0 namstr putinterval newnam namstr length xxx putinterval newnam cvn } bdef % % /abcdef 2 str-strip ==> /cdef % /str-strip { /num xdef /nam xdef /namstr nam tempstr cvs def /newlen namstr length num sub def namstr num newlen getinterval cvn } bdef % % copydict ==> new-dict on stack % /copydict { dup length 1 add dict /newdict xdef {1 index /FID ne {newdict 3 1 roll put} {pop pop} ifelse } forall newdict } bdef % % DefineCMEncoding % /DefineCMEncoding { /EncodeType xdef /CMEncoding 256 array def /Times-Roman findfont /Encoding get aload pop CMEncoding astore pop EncodeType 11 eq {Do-CM-rm-encoding} if EncodeType 12 eq {Do-CM-it-encoding} if EncodeType 13 eq {Do-CM-tt-encoding} if } bdef % % Do special mappings for the various CM-font types. Characters that % get "covered up" are repositioned in the range (128,128+32). % /Do-standard-CM-encodings { CMEncoding dup 0 /.notdef put dup 1 /.notdef put dup 2 /.notdef put dup 3 /.notdef put dup 4 /.notdef put dup 5 /.notdef put dup 6 /.notdef put dup 7 /.notdef put dup 8 /.notdef put dup 9 /.notdef put dup 10 /.notdef put dup 11 /.notdef put dup 12 /fi put dup 13 /fl put dup 14 /.notdef put dup 15 /.notdef put dup 16 /dotlessi put dup 17 /.notdef put dup 18 /grave put dup 19 /acute put dup 20 /caron put dup 21 /breve put dup 22 /macron put dup 23 /ring put dup 24 /cedilla put dup 25 /germandbls put dup 26 /ae put dup 27 /oe put dup 28 /oslash put dup 29 /AE put dup 30 /OE put dup 31 /Oslash put dup 127 /dieresis put dup 128 /space put dup 129 /quotedbl put dup 130 /sterling put dup 131 /dollar put dup 132 /less put dup 133 /greater put dup 134 /backslash put dup 135 /asciicircum put dup 136 /underscore put dup 137 /braceleft put dup 138 /bar put dup 139 /braceright put dup 140 /asciitilde put pop } bdef /Do-CM-rm-encoding { Do-standard-CM-encodings CMEncoding dup 32 /.notdef put dup 34 /quotedblright put dup 60 /exclamdown put dup 62 /questiondown put dup 92 /quotedblleft put dup 94 /circumflex put dup 95 /dotaccent put dup 123 /endash put dup 124 /emdash put dup 125 /hungarumlaut put dup 126 /tilde put pop } bdef /Do-CM-it-encoding { Do-standard-CM-encodings CMEncoding dup 32 /.notdef put dup 34 /quotedblright put dup 36 /sterling put dup 60 /exclamdown put dup 62 /questiondown put dup 92 /quotedblleft put dup 94 /circumflex put dup 95 /dotaccent put dup 123 /endash put dup 124 /emdash put dup 125 /hungarumlaut put dup 126 /tilde put pop } bdef /Do-CM-tt-encoding { Do-standard-CM-encodings CMEncoding dup 12 /.notdef put dup 13 /quotesingle put dup 14 /exclamdown put dup 15 /questiondown put pop } bdef % % Routines to handle packing/unpacking numbers. % % PackHW --> % /PackHW { /num xdef /pos xdef /target xdef num 16#0000FFFF and 1 pos sub 16 mul bitshift target or } bdef % % PackByte --> % /PackByte { /num xdef /pos xdef /target xdef num 16#000000FF and 3 pos sub 8 mul bitshift target or } bdef % % UnpkHW --> % /UnpkHW { /num xdef /pos xdef num 1 pos sub -16 mul bitshift 16#0000FFFF and dup 16#00007FFF gt {16#00010000 sub} if } bdef % % UnpkByte --> % /UnpkByte { /num xdef /pos xdef num 3 pos sub -8 mul bitshift 16#000000FF and dup 16#0000007F gt {16#00000100 sub} if } bdef % % DefineCMFont % % type 10: "as-is" PostScript font % type 11: CM-mapped PostScript font - roman % type 12: CM-mapped PostScript font - text italic % type 13: CM-mapped PostScript font - typewriter type % /int-dict-name {int (-dict) str-concat} bdef /int-dict {int (-dict) str-concat cvx load} bdef /DF { true % signal that the font is already loaded DefineCMFont } bdef /DNF { false % signal that the font is not already loaded DefineCMFont } bdef /DefineCMFont { /loaded xdef /typ xdef /psz xdef /ext xdef /int xdef typ 10 ne { % font_type = 11, 12, 13 loaded not { /fnam ext 3 str-strip def fnam findfont copydict /newdict xdef typ DefineCMEncoding newdict /Encoding CMEncoding put ext newdict definefont pop } if int-dict-name ext findfont psz scalefont def currentdict int [int-dict /setfont cvx] cvx put } { % font_type = 10 /fnam ext def int-dict-name fnam findfont psz scalefont def currentdict int [int-dict /setfont cvx] cvx put } ifelse } bdef % % % [llx lly urx ury] DefinePXLFont % /PXLF { true % signal that the font is already loaded DefinePXLFont } bdef /PXLNF { false % signal that the font is not already loaded DefinePXLFont } bdef /PXLBuildCharDict 17 dict def /CMEncodingArray 256 array def 0 1 255 {CMEncodingArray exch dup tempstr cvs cvn put} for /RasterConvert {RasterScaleFactor div} bdef /TransformBBox { aload pop /BB-ury xdef /BB-urx xdef /BB-lly xdef /BB-llx xdef [BB-llx RasterConvert BB-lly RasterConvert BB-urx RasterConvert BB-ury RasterConvert] } bdef /DefinePXLFont { /newfont xdef /bb xdef /num xdef /psz xdef /dsz xdef /pxlmag xdef /ext xdef /int xdef /fnam ext (-) str-concat pxlmag tempstr cvs str-concat def newfont not { int-dict-name 13 dict def int-dict begin /FontType 3 def /FontMatrix [1 dsz div 0 0 1 dsz div 0 0] def /FontBBox bb TransformBBox def /Encoding CMEncodingArray def /CharDict 1 dict def CharDict begin /Char-Info num array def end /BuildChar { PXLBuildCharDict begin /char xdef /fontdict xdef fontdict /CharDict get /Char-Info get char get aload pop /rasters xdef /PackedWord1 xdef 0 PackedWord1 UnpkHW 16#7FFF ne { /PackedWord2 xdef /wx 0 PackedWord1 UnpkHW def /rows 2 PackedWord1 UnpkByte def /cols 3 PackedWord1 UnpkByte def /llx 0 PackedWord2 UnpkByte def /lly 1 PackedWord2 UnpkByte def /urx 2 PackedWord2 UnpkByte def /ury 3 PackedWord2 UnpkByte def } { /PackedWord2 xdef /PackedWord3 xdef /PackedWord4 xdef /wx 1 PackedWord1 UnpkHW def /rows 0 PackedWord2 UnpkHW def /cols 1 PackedWord2 UnpkHW def /llx 0 PackedWord3 UnpkHW def /lly 1 PackedWord3 UnpkHW def /urx 0 PackedWord4 UnpkHW def /ury 1 PackedWord4 UnpkHW def } ifelse rows 0 lt { /rows rows neg def /runlength 1 def } { /runlength 0 def } ifelse wx 0 llx RasterConvert lly RasterConvert urx RasterConvert ury RasterConvert setcachedevice rows 0 ne { gsave cols rows true RasterScaleFactor 0 0 RasterScaleFactor neg llx .5 add neg ury .5 add tempmatrix astore GenerateRasters imagemask grestore } if end } def end fnam int-dict definefont pop } if int-dict-name fnam findfont psz scalefont def currentdict int [int-dict /setfont cvx] cvx put } bdef % % PXLC % /PXLC { /rasters xdef /runlength xdef /cols xdef /rows xdef /ury xdef /urx xdef /lly xdef /llx xdef /wx xdef /code xdef /int xdef % See if the long or short format is required true cols CKSZ rows CKSZ ury CKSZ urx CKSZ lly CKSZ llx CKSZ TackRunLengthToRows { int-dict /CharDict get /Char-Info get code [0 0 llx PackByte 1 lly PackByte 2 urx PackByte 3 ury PackByte 0 0 wx PackHW 2 rows PackByte 3 cols PackByte rasters] put} { int-dict /CharDict get /Char-Info get code [0 0 urx PackHW 1 ury PackHW 0 0 llx PackHW 1 lly PackHW 0 0 rows PackHW 1 cols PackHW 0 0 16#7FFF PackHW 1 wx PackHW rasters] put} ifelse } bdef /CKSZ {abs 127 le and} bdef /TackRunLengthToRows {runlength 0 ne {/rows rows neg def} if} bdef % % PLOTC % /PLOTC { /rasters xdef /runlength xdef /cols xdef /rows xdef /ury xdef /urx xdef /lly xdef /llx xdef /psz xdef /dsz xdef /wx xdef % "Plot" a character's raster pattern. rows 0 ne { gsave currentpoint translate psz dsz div dup scale cols rows true RasterScaleFactor 0 0 RasterScaleFactor neg llx .5 add neg ury .5 add tempmatrix astore GenerateRasters imagemask grestore } if wx x } bdef % Routine to generate rasters for "imagemask". /GenerateRasters { rasters runlength 1 eq {RunLengthToRasters} if } bdef % Routine to convert from runlength encoding back to rasters. /RunLengthToRasters { % ...not done yet... } bdef % % These procedures handle bitmap processing. % % BMbeg % /BMbeg { /BMmagnification xdef /BMresolution xdef /BMrows xdef /BMcols xdef /BMcurrentrow 0 def gsave 0.0 setgray Resolution BMresolution div dup scale currentpoint translate BMmagnification 1000.0 div dup scale 0.0 BMrows moveto BMrows dup scale currentpoint translate /BMCheckpoint save def } bdef /BMend { BMCheckpoint restore grestore } bdef % % BMswath % /BMswath { /rows xdef /rasters xdef BMcols rows true [BMrows 0 0 BMrows neg 0 BMcurrentrow neg] rasters imagemask /BMcurrentrow BMcurrentrow rows add def BMcurrentrow % save this on the stack around a restore... BMCheckpoint restore /BMcurrentrow xdef /BMCheckpoint save def } bdef (end of common prolog) VMSDebug end systemdict /setpacking known {savepackingmode setpacking} if % % End of included prolog section. % BeginDviLaserDoc CLRP 300 3600 RES %%EndProlog %%Page 1 1 1200 BP 42120 30600 PM 0 0 XY XP /F49 /cmvtt10 360 598 597.758 128 [-3 -12 50 34] PXLNF RP XP /F49 70 401 2 0 29 29 30 32 0 PXLC RP 3175 2072 XY F49(F)S XP /F49 85 453 2 0 34 29 30 40 0 PXLC RP 3576 2072 XY F49(U)S XP /F49 78 453 2 0 34 29 30 40 0 PXLC RP 4029 2072 XY F49(N)S XP /F49 69 418 2 0 32 29 30 32 0 PXLC RP 4482 2072 XY F49(E)S XP /F49 84 453 2 0 34 29 30 40 0 PXLC RP 4901 2072 XY F49(T)S XP /F49 45 209 1 9 12 12 4 16 0 PXLC RP 5354 2072 XY F49(-)S XP /F49 80 418 2 0 30 29 30 32 0 PXLC RP 5563 2072 XY F49(P)S XP /F49 82 453 2 0 36 29 30 40 0 PXLC RP 5982 2072 XY F49(R)S XP /F49 79 488 3 0 36 29 30 40 0 <0007F80000 003FFF0000 00FFFFC000 03FFFFF000 07F807F800 0FC000FC00 1F80007E00 3E00001F00 3C00000F00 7C00000F80 7800000780 F8000007C0 F0000003C0 F0000003C0 F0000003C0 F0000003C0 F0000003C0 F0000003C0 F8000007C0 7800000780 7C00000F80 3E00001F00 3F00003F00 1F80007E00 0FE001FC00 07F807F800 03FFFFF000 00FFFFC000 003FFF0000 0007F80000> PXLC RP 6418 2072 XY F49(O)S XP /F49 74 314 3 0 22 29 30 24 0 <03FFF0 03FFF0 03FFF0 03FFF0 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 000F00 200F00 F80F00 F81F00 F83F00 FFFF00 FFFE00 3FF800 0FE000> PXLC RP 6906 2072 XY F49(JE)S XP /F49 75 471 2 0 35 29 30 40 0 PXLC RP 7638 2072 XY F49(KT)S XP /F49 73 209 1 0 14 29 30 16 0 PXLC RP 8562 2072 XY F49(I)S XP /F49 77 558 2 0 42 29 30 48 0 PXLC RP 16135 2072 XY F49(MUI)S XP /F49 83 349 3 0 24 29 30 24 0 <03FE38 0FFFF8 3FFFF8 7FFFF8 7E03F8 FC01F8 F800F8 F00078 F00078 F80000 FC0000 7E0000 7FF000 3FFF00 0FFFC0 03FFF0 001FF8 0001F8 0000FC 00007C 00003C F0003C F0003C F0007C F800FC FE01F8 FFFFF8 FFFFF0 FFFFC0 E3FF00> PXLC RP 17355 2072 XY F49(STIO)S 600 y 3175 X(T)S XP /F49 105 174 0 0 12 30 31 16 0 <0F00 1F80 1F80 1F80 1F80 0F00 0000 0000 0000 0000 7F80 7F80 7F80 7F80 0780 0780 0780 0780 0780 0780 0780 0780 0780 0780 0780 0780 0780 FFF8 FFF8 FFF8 FFF8> PXLC RP 3628 2672 XY F49(i)S XP /F49 101 279 2 0 20 20 21 24 0 <01F800 0FFE00 1FFF80 3FFF80 7F0FC0 7C07C0 FC03E0 F803E0 FFFFE0 FFFFE0 FFFFE0 FFFFE0 F80000 F801E0 7C01E0 7E03E0 3F87E0 3FFFC0 1FFF80 07FF00 01FC00> PXLC RP 3802 2672 XY F49(e)S XP /F49 116 244 1 0 15 27 28 16 0 <0F00 0F00 0F00 0F00 0F00 0F00 0F00 FFFC FFFC FFFC FFFC 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F0C 0F1E 0F1E 0F1E 0FBE 0FBE 0FFC 07FC 07F8 01E0> PXLC RP 4081 2672 XY F49(t)S XP /F49 111 314 2 0 22 20 21 24 0 <01FC00 07FF00 0FFF80 1FFFC0 3F07E0 7C01F0 7800F0 F800F8 F00078 F00078 F00078 F00078 F00078 F800F8 7800F0 7C01F0 3F07E0 1FFFC0 0FFF80 07FF00 01FC00> PXLC RP 4325 2672 XY F49(otie)S XP /F49 54 314 2 0 22 29 30 24 0 <003F80 01FFC0 03FFE0 0FFFF0 1FE1F0 1F81F0 3F01F0 7E01F0 7C0000 7C0000 F81000 FBFF00 FFFFC0 FFFFE0 FFFFF0 FE03F0 FC01F8 F800F8 F800F8 F80078 F80078 780078 7C00F8 7C00F8 3E01F0 3F07F0 1FFFE0 0FFFC0 07FF00 01FC00> PXLC RP 5546 2672 XY F49(6)S XP /F49 48 314 2 0 22 29 30 24 0 <01FC00 07FF00 0FFF80 1FFFC0 3F07E0 3E03E0 7C01F0 7800F0 7800F0 F00078 F00078 F00078 F00078 F00078 F00078 F00078 F00078 F00078 F00078 F00078 F800F8 7800F0 7800F0 7C01F0 3E03E0 3F07E0 1FFFC0 0FFF80 07FF00 01FC00> PXLC RP 3175 3272 XY F49(0)S XP /F49 50 314 3 0 21 29 30 24 0 <07F800 1FFE00 3FFF00 7FFF80 FC1FC0 F807C0 F803E0 F803E0 F801E0 7001E0 0001E0 0003E0 0003E0 0007C0 0007C0 000F80 001F80 003F00 007E00 00FC00 01F800 03F000 0FE000 1FC000 3F01E0 7E01E0 FFFFE0 FFFFE0 FFFFE0 FFFFE0> PXLC RP 3489 3272 XY F49(2)S XP /F49 49 314 4 0 20 29 30 24 0 <00E000 01E000 07E000 FFE000 FFE000 FFE000 FDE000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 01E000 FFFF80 FFFF80 FFFF80 FFFF80> PXLC RP 3802 3272 XY F49(101)S 209 x(ESPOO)S 600 y 3175 X(M)S XP /F49 97 305 2 0 23 20 21 24 0 <0FF800 3FFE00 3FFF00 3FFF80 3E0FC0 1C07C0 0003C0 03FFC0 0FFFC0 3FFFC0 7FFFC0 FE03C0 F803C0 F003C0 F007C0 F80FC0 FC1FC0 7FFFFC 7FFFFC 3FFFFC 0FE0FC> PXLC RP 3733 3872 XY F49(a)S XP /F49 114 244 0 0 17 20 21 24 0 PXLC RP 4038 3872 XY F49(r)S XP /F49 107 331 1 0 25 29 30 32 0 PXLC RP 4282 3872 XY F49(k)S XP /F49 117 349 0 0 27 20 21 32 0 PXLC RP 4613 3872 XY F49(u)S XP /F49 115 248 2 0 17 20 21 16 0 <0FFE 3FFE 7FFE FFFE F83E F01E F01E F800 FFC0 7FF8 1FFC 03FE 003F F01F F00F F81F FC3F FFFF FFFE FFFC E7F0> PXLC RP 4962 3872 XY F49(s)S 209 x(Sa)S XP /F49 100 349 2 0 27 29 30 32 0 <000FF800 000FF800 000FF800 000FF800 00007800 00007800 00007800 00007800 00007800 01FC7800 07FF7800 1FFFF800 3FFFF800 7F83F800 7E01F800 FC00F800 F8007800 F8007800 F0007800 F0007800 F0007800 F800F800 F800F800 FC01F800 7E03F800 7F07F800 3FFFFFC0 1FFFFFC0 0FFE7FC0 03F87FC0> PXLC RP 6072 3872 XY F49(de)S XP /F49 110 349 0 0 27 20 21 32 0 PXLC RP 6700 3872 XY F49(nie)S XP /F49 109 523 0 0 43 20 21 48 0 PXLC RP 7502 3872 XY F49(mi)S XP /F49 51 314 2 0 22 29 30 24 0 <03FC00 0FFF00 1FFF80 3FFFC0 3E07E0 3E03E0 3E01E0 1C01E0 0001E0 0003E0 0007E0 000FC0 01FFC0 01FF80 01FF80 01FFE0 0007F0 0001F0 0000F8 0000F8 000078 700078 F800F8 F800F8 F801F0 FC07F0 7FFFE0 7FFFC0 1FFF80 03FC00> PXLC RP 16135 3872 XY F49(3)S XP /F49 46 174 4 0 9 5 6 8 0 <78 FC FC FC FC 78> PXLC RP 16449 3872 XY F49(.)S XP /F49 57 314 2 0 22 29 30 24 0 <01FC00 07FF00 1FFF80 3FFFC0 7F07E0 7E03F0 FC01F0 F801F0 F000F8 F000F8 F000F8 F800F8 F800F8 FC01F8 7E03F8 7FFFF8 3FFFF8 1FFFF8 07FEF8 0040F8 0000F0 0001F0 7C03F0 7C07E0 7C0FE0 7C1FC0 7FFF80 3FFF00 1FFC00 07F000> PXLC RP 16902 3872 XY F49(9.)S 279 x(1991)S 22615 X(1)S XP /F49 40 244 2 -5 15 34 40 16 0 <003C 007C 01FC 03F8 07E0 0FC0 0F80 1F00 1F00 3E00 3E00 7C00 7C00 7800 F800 F800 F000 F000 F000 F000 F000 F000 F000 F000 F800 F800 7800 7C00 7C00 3E00 3E00 1F00 1F00 0F80 0FC0 07E0 03F8 01FC 007C 003C> PXLC RP 22929 3872 XY F49(\(3)S XP /F49 41 244 3 -5 16 34 40 16 0 PXLC RP 23487 3872 XY F49(\))S 12272 Y 3175 X(FUNETIN)S XP /F49 72 453 2 0 34 29 30 40 0 PXLC RP 6226 12272 XY F49(H)S XP /F49 89 453 2 0 35 29 30 40 0 PXLC RP 6679 12272 XY F49(Y)S XP /F49 86 453 1 0 35 29 30 40 0 PXLC RP 7132 12272 XY F49(V)S XP /F49 127 314 5 25 19 30 6 16 0 <783C FC7E FC7E FC7E FC7E 783C> PXLC RP 7655 12164 XY F49(\177)S XP /F49 65 453 2 0 34 29 30 40 0 <0003E00000 0007F00000 0007F00000 000FF80000 000F780000 000F780000 001E3C0000 001E3C0000 001E3C0000 003C1E0000 003C1E0000 003C1E0000 00780F0000 00780F0000 00780F0000 00F0078000 00F0078000 00F0078000 01E003C000 01FFFFC000 01FFFFC000 03FFFFE000 03FFFFE000 07C001F000 078000F000 078000F000 FFF80FFF80 FFF80FFF80 FFF80FFF80 FFF80FFF80> PXLC RP 7586 12272 XY F49(AKSYTT)S -108 y 70 x(\177)S 108 y -384 x(AV)S -108 y 71 x(\177)S 108 y -384 x(A)S 209 x(K)S -108 y 70 x(\177)S 108 y -384 x (AYTT)S -108 y 88 x(\177)S 108 y -401 x(O)S 210 x(JA)S 209 x(SA)S XP /F49 76 384 2 0 28 29 30 32 0 PXLC RP 16547 12272 XY F49(LLITUT)S 209 x(VERKK)S -17 x(O)S -17 x(YHTE)S 2 x(Y)S XP /F49 68 471 2 0 34 29 30 40 0 PXLC RP 24044 12272 XY F49(DET)S 14071 Y 9655 X(T)S -4 x(\177)S -310 x(am)S -4 x(\177)S -310 x(an)S 404 x(m)S -17 x(uistion)S 404 x(tark)S -17 x (oituksena)S 404 x(on)S 404 x(se)S XP /F49 108 174 0 0 13 29 30 16 0 PXLC RP 20453 14071 XY F49(l)S XP /F49 118 331 1 0 25 20 21 32 0 PXLC RP 20628 14071 XY F49(vitt)S -4 x(\177)S -309 x(a)S -5 x(\177)S -309 x (a)S 404 x(toisaalta)S XP /F49 44 174 4 -7 10 5 13 8 0 <78 FC FE FE FE 7E 1E 3E 7E FC FC F8 E0> PXLC RP 24950 14071 XY F49(,)S 453 x(mik)S -3 x(\177)S -310 x(a)S 404 x(on)S 600 y 9655 X(FUNET-v)S -16 x(erk)S -17 x(on)S 262 x(asianm)S -17 x (uk)S -35 x(aista)S 263 x(k)S -39 x(\177)S -310 x(a)S XP /F49 121 331 1 -11 25 20 32 32 0 PXLC RP 18791 14671 XY F49(ytt\177)S -313 x(o)S -5 x(\177)S -309 x(a)S XP /F49 106 192 -3 -11 9 30 42 16 0 <00F0 01F8 01F8 01F8 01F8 00F0 0000 0000 0000 0000 0FF8 0FF8 0FF8 0FF8 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 0078 00F8 F8F8 F9F0 FFF0 FFE0 7FC0 3F00> PXLC RP 20492 14671 XY F49(ja)S 263 x(millai)S 2 x(set)S 262 x(v)S -17 x (erkk)S -17 x(o)S -18 x(y)S XP /F49 104 349 0 0 27 29 30 32 0 PXLC RP 25921 14671 XY F49(h)S -18 x(teydet)S 600 y 9655 X(o)S -18 x(v)S -34 x(at)S 289 x(sallittuja,)S 310 x(ja)S 289 x(toisaalta)S 289 x (menettelyta)S XP /F49 112 349 0 -11 25 20 32 32 0 PXLC RP 20619 15271 XY F49(p)S 17 x(o)S 35 x(ja,)S 309 x(joilla)S 290 x(v)S -17 x(erk)S -17 x(on)S 288 x(asiaton)S 600 y 9655 X(k)S -4 x(\177)S -310 x(aytt\177)S -313 x(o)S 152 x(estet)S -5 x(\177)S -310 x(a)S -4 x(\177)S -309 x(an.)S 260 x(Tietoliik)S -16 x(ennev)S -18 x(erk)S -17 x(oston)S 151 x(oletetaan)S 153 x(m)S -18 x(uo)S 17 x(dosta)S -18 x(v)S -34 x(an)S 152 x(hie-)S 600 y 9655 X(rarkkisen)S 230 x (struktuurin,)S 236 x(joss)S -2 x(a)S 231 x(joukk)S -18 x(o)S 230 x (k)S -34 x(ansallisia)S 230 x(v)S -17 x(erkk)S -17 x(o)S 35 x(ja)S 230 x(liitt)S -3 x(\177)S -309 x(a)S -5 x(\177)S -309 x(a)S 230 x(k)S -17 x(or-)S 600 y 9655 X(k)S -17 x(eak)S -18 x(oulujen)S 149 x(tai)S 150 x(yrit)S -17 x(ysten)S 149 x(v)S -17 x(erkk)S -17 x(o)S 35 x(ja)S 149 x(\(esimerkiksi)S 151 x(k)S -18 x(ork)S -17 x(eak)S -17 x(ouluk)S -35 x(ampuk-)S 600 y 9655 X(sen)S 145 x(v)S -17 x(erk)S -17 x(on)S 146 x(tai)S 147 x(yrit)S -17 x(yksen)S 146 x(yhden)S 146 x (toimipisteen)S 146 x(l)S -4 x(\177)S -309 x(ahiv)S -17 x(erk)S -18 x (on\))S 146 x(k)S -34 x(ansalliseksi)S 600 y 9655 X(v)S -17 x(erk)S -18 x(oksi)S 258 x(\(FUNE)S 2 x(T\))S 258 x(ja)S 258 x(n)S -5 x (\177)S -310 x(am)S -4 x(\177)S -310 x(a)S 259 x(yh)S -18 x(teisp)S 17 x(ohjoismaiseksi)S 257 x(v)S -17 x(erk)S -17 x(oksi)S 258 x (\(NOR-)S 600 y 9655 X(DUnet\),)S 209 x(jok)S -35 x(a)S 209 x(lii)S 2 x(tt)S -18 x(yy)S 210 x(maailmanlaa)S 36 x(juiseen)S 208 x(v)S -17 x(erkk)S -17 x(o)S 18 x(on.)S 20071 Y 9655 X(T)S -4 x(\177)S -310 x(ass)S -5 x(\177)S -310 x(a)S 298 x(puh)S -19 x(utaan)S 297 x (erit)S -17 x(yisesti)S 297 x(liik)S -16 x(en)S -18 x(teest)S -4 x (\177)S -310 x(a,)S 320 x(jok)S -35 x(a)S 297 x(on)S 297 x(l)S -4 x (\177)S -310 x(ah)S -18 x(t\177)S -314 x(oisin)S 297 x(jostakin)S 600 y 9655 X(FUNETin)S 281 x(j)S -4 x(\177)S -310 x(asenor)S XP /F49 103 314 1 -12 23 20 33 24 0 <01F8FC 07FFFE 0FFFFE 1FFFFE 3F0FDC 3E07C0 3E07C0 3C03C0 3C03C0 3E07C0 3E07C0 1F0F80 1FFF80 3FFF00 3FFE00 3DF800 3C0000 1F8000 1FFF80 3FFFF0 7FFFF8 7C00FC F8003E F0001E E0000E E0000E F0001E F8003E 7F01FC 7FFFFC 1FFFF0 0FFFE0 01FF00> PXLC RP 14567 20671 XY F49(ganisaation)S 280 x(v)S -17 x(erk)S -17 x(osta)S 279 x(ja)S 280 x(kulk)S -17 x(ee)S 280 x(FUNETi)S 2 x(n)S 280 x(k)S -35 x(autta)S 600 y 9655 X(toisen)S 170 x(j)S -4 x(\177)S -310 x (asenorganisaation)S 170 x(v)S -17 x(erkk)S -17 x(o)S 17 x(on)S 171 x (tai)S 171 x(johonkin)S 171 x(m)S -18 x(uuh)S -18 x(un)S 170 x (FUNET)S 2 x(iin)S 600 y 9655 X(liitett)S -16 x(yyn)S 209 x(v)S -17 x (erkk)S -17 x(o)S 17 x(on)S 209 x(k)S -17 x(otimaassa)S 209 x(tai)S 209 x(ulk)S -17 x(omailla.)S 23071 Y 9655 X(Liik)S -17 x(en)S -18 x (teen)S 232 x(tulee)S 232 x(olla)S 233 x(h)S -17 x(yv)S -39 x(\177)S -310 x(aksytt)S -4 x(\177)S -309 x(av)S -39 x(\177)S -310 x(a)S -4 x (\177)S -310 x(a)S 233 x(k)S -35 x(aikkien)S 233 x(niiden)S 232 x(v)S -17 x(erkk)S -17 x(o)S 35 x(jen)S 232 x(k)S -35 x(an-)S 600 y 9655 X (nalta,)S 189 x(joita)S 183 x(se)S 182 x(k)S -39 x(\177)S -309 x (aytt)S -4 x(\177)S -310 x(a)S -4 x(\177)S -310 x(a.)S 271 x (Esimerkiksi)S 184 x(liik)S -16 x(en)S -18 x(teen)S 183 x (suomalaisesta)S 182 x(k)S -17 x(ork)S -17 x(ea-)S 600 y 9655 X(k)S -17 x(oulusta)S 290 x(yhdysv)S -36 x(altalai)S 2 x(seen)S 290 x (tulee)S 290 x(olla)S 291 x(FUNET)S 2 x(in)S 290 x(ja)S 291 x (NSFnetin)S 290 x(sek)S -5 x(\177)S -309 x(a)S 600 y 9655 X (kummankin)S 145 x(k)S -17 x(ork)S -18 x(eak)S -17 x(oulun)S 145 x (s)S -5 x(\177)S -310 x(a)S -4 x(\177)S -310 x(an)S -17 x(t\177)S -314 x(ojen)S 144 x(m)S -17 x(uk)S -35 x(aista.)S 258 x(S)S -5 x (\177)S -309 x(a)S -5 x(\177)S -309 x(ann\177)S -315 x(ot)S 145 x(o)S -18 x(v)S -34 x(at)S 145 x(yleens)S -5 x(\177)S -309 x(a)S 600 y 9655 X(kuitenkin)S 209 x(h)S -17 x(yvin)S 209 x(samank)S -35 x (altaisia.)S 26671 Y 3175 X(1.)S 279 x(M)S -5 x(\177)S -309 x(a)S -4 x(\177)S -310 x(aritelmi)S -3 x(\177)S -310 x(a)S 27871 Y 9655 X (FUNETin)S 232 x(tark)S -17 x(oituksena)S 231 x(on)S 231 x(tarjota)S 231 x(k)S -17 x(ork)S -17 x(eak)S -17 x(ouluille)S 231 x(niiden)S 231 x(tarvitse-)S 600 y 9655 X(mia)S 313 x(v)S -18 x(erkk)S -17 x(o)S -17 x(yh)S -18 x(teyksi)S -4 x(\177)S -309 x(a)S 312 x(ja)S 312 x(m)S -17 x(uita)S 312 x(tietolii)S 2 x(k)S -18 x(ennepalv)S -17 x(eluja.)S 588 x(Se)S 312 x(palv)S -17 x(elee)S 600 y 9655 X(m)S -18 x(y\177)S -313 x(os)S 252 x(tutkim)S -17 x(uslaitoksia)S 253 x(ja)S 252 x (tutkim)S -17 x(usta)S 253 x(harjoitta)S -18 x(via)S 254 x(yrit)S -17 x(yksi)S -4 x(\177)S -310 x(a)S 253 x(niiden)S 600 y 9655 X (tarvitessa)S 209 x(tutkim)S -17 x(ukseen)S 209 x(liitt)S -17 x(y)S -17 x(en)S 209 x(tietoliik)S -16 x(enneyh)S -18 x(teyksi)S -4 x (\177)S -310 x(a.)S 30871 Y 9655 X(Hyv)S -4 x(\177)S -309 x(aksytt)S -4 x(\177)S -310 x(av)S -4 x(\177)S -310 x(a)S 291 x(k)S -4 x(\177)S -310 x(aytt\177)S -313 x(o)S 290 x(on)S 290 x(sopus)S -2 x(oinn)S -18 x(ussa)S 290 x(k)S -35 x(aikki)S 2 x(en)S 290 x(niiden)S 290 x (v)S -17 x(erkk)S -17 x(o)S 35 x(jen)S 600 y 9655 X(m)S -5 x(\177)S -309 x(a)S -4 x(\177)S -310 x(ar)S -4 x(\177)S -310 x(aysten)S 311 x (k)S -35 x(anssa,)S 336 x(jonk)S -35 x(a)S 311 x(k)S -35 x(autta)S 311 x(kyseinen)S 311 x(yh)S -18 x(teys)S 311 x(kulk)S -17 x(ee.)S 584 x(T)S -4 x(\177)S -309 x(am)S -5 x(\177)S -309 x(a)S 600 y 9655 X (k)S -17 x(osk)S -18 x(ee)S 322 x(niin)S 323 x(v)S -35 x(akioso)S -18 x(v)S -17 x(elluksia)S 323 x(\(kuten)S 322 x(s)S -4 x(\177)S -310 x(ahk)S -17 x(\177)S -314 x(op)S 17 x(osti,)S 350 x (tiedostonsiirto)S 322 x(ja)S 600 y 9655 X(et)S -5 x(\177)S -309 x (ak)S -39 x(\177)S -310 x(aytt\177)S -313 x(o\))S 352 x(kuin)S 353 x (p)S 17 x(oikk)S -17 x(euksellistakin)S 353 x(k)S -39 x(\177)S -310 x (aytt)S (\177)S -313 x(o)S -5 x(\177)S -309 x(a)S 352 x(\(kuten)S 352 x (tietolii)S 2 x(k)S -18 x(enne-)S 600 y 9655 X(protok)S -18 x (ollien)S 210 x(k)S -17 x(ok)S -18 x(eiluja)S 210 x(tms.\).)S 34471 Y 9655 X(Sallittu)S 213 x(v)S -17 x(erkk)S -17 x(o)S -18 x(yh)S -17 x (teys)S 212 x(on)S 212 x(v)S -17 x(erkk)S -17 x(o)S 35 x(jen)S 212 x (v)S -39 x(\177)S -310 x(alinen)S 213 x(yh)S -18 x(teys,)S 214 x (jok)S -35 x(a)S 213 x(tek)S -18 x(ee)S 213 x(mah-)S 600 y 9655 X (dolliseksi)S 161 x(liik)S -16 x(en)S -18 x(teen)S 160 x(FUNET)S 2 x(-v)S -17 x(erk)S -18 x(on)S 161 x(k)S -35 x(autta,)S 171 x (johon)S 159 x(on)S 161 x(asianm)S -18 x(uk)S -35 x(ainen)S 600 y 9655 X(lupa)S 209 x(ja)S 209 x(jok)S -35 x(a)S 209 x(t)S -4 x(\177)S -310 x(aytt)S -4 x(\177)S -309 x(a)S -4 x(\177)S -310 x(a)S 209 x (ne)S 209 x(ehdot,)S 209 x(jolla)S 210 x(v)S -18 x(erkk)S -17 x(o)S 18 x(on)S 208 x(saa)S 209 x(liit)S 2 x(t)S -18 x(y)S -21 x(\177)S -310 x(a.)S 36871 Y 3175 X(2.)S 279 x(Hyv)S -4 x(\177)S -309 x (aksytt)S -4 x(\177)S -310 x(av)S -4 x(\177)S -310 x(a)S 210 x(k)S -4 x(\177)S -310 x(aytt\177)S -313 x(o)S 38071 Y -27 x(FUNETin)S 280 x(p)S -5 x(\177)S -309 x(a)S -5 x(\177)S -309 x(am)S -4 x(\177)S -310 x(a)S -4 x(\177)S -310 x(ar)S -4 x(\177)S -310 x(an)S -4 x (\177)S -310 x(a)S 279 x(on)S 278 x(osaltaan)S 279 x(edist)S -5 x (\177)S -309 x(a)S -5 x(\177)S -309 x(a)S 279 x(suomalaista)S 278 x (tutkim)S -17 x(us-)S 600 y 9655 X(ta)S 267 x(ja)S 267 x(k)S -17 x (ork)S -17 x(eak)S -17 x(oulutason)S 266 x(op)S 17 x(etusta.)S 452 x (V)S -52 x(erk)S -17 x(on)S 267 x(k)S -4 x(\177)S -310 x(aytt\177)S -314 x(o,)S 282 x(jok)S -35 x(a)S 268 x(tuk)S -18 x(ee)S 267 x(t)S -4 x(\177)S -310 x(at)S -4 x(\177)S -309 x(a,)S 600 y 9655 X(on)S 264 x(yleens)S -5 x(\177)S -309 x(a)S 265 x(h)S -18 x(yv)S -39 x (\177)S -309 x(aksytt)S -4 x(\177)S -310 x(av)S -39 x(\177)S -310 x (a)S -4 x(\177)S -310 x(a)S 265 x(k)S -39 x(\177)S -309 x(aytt\177)S -314 x(o)S -4 x(\177)S -310 x(a.)S 446 x(Siten)S 264 x(m)S -17 x(y)S (\177)S -314 x(os)S 264 x(j)S -4 x(\177)S -310 x(asenorganisaatioi-)S 1 PP EP %%Page 2 2 1200 BP 42120 30600 PM 0 0 XY 2072 Y 9655 X F49(den)S 208 x(maksulliseen)S 208 x(palv)S -17 x (elutoimin)S -17 x(taan)S 209 x(\(tutkim)S -17 x(uspro)S 34 x (jekteihin\))S 208 x(liit)S 2 x(t)S -18 x(yv)S -39 x(\177)S -309 x (a)S 600 y 9655 X(k)S -4 x(\177)S -310 x(aytt\177)S -313 x(o)S 209 x (on)S 208 x(h)S -17 x(yv)S -39 x(\177)S -310 x(aksytt)S -4 x(\177)S -309 x(av)S -39 x(\177)S -310 x(a)S -4 x(\177)S -310 x(a.)S 3872 Y 9655 X(Sen)S 141 x(sijaan)S 142 x(k)S -34 x(aupallinen)S 142 x(k)S -4 x(\177)S -310 x(aytt\177)S -313 x(o)S 142 x(on)S 141 x(yleens)S -4 x(\177)S -310 x(a)S 143 x(kiellett)S -17 x(y)S -52 x(.)S 257 x(T)S -52 x(utkim)S -17 x(usyh)S -18 x(teis\177)S -314 x(o)S -5 x(\177)S -309 x(a)S 600 y 9655 X(h)S -18 x(y\177)S -314 x(odytt)S -4 x(\177)S -310 x(av)S -4 x(\177)S -309 x(at)S 143 x(k)S -35 x(aupallisetkin)S 143 x(palv)S -17 x(elut)S 143 x(o)S -18 x(v)S -34 x(at)S 143 x (mahdollisia,)S 156 x(m)S -17 x(utta)S 143 x(niille)S 143 x(on)S 600 y 9655 X(saata)S -18 x(v)S -34 x(a)S 209 x(erikseen)S 209 x (lupa)S 209 x(FUNETi)S 2 x(lta.)S 6272 Y 9655 X(Alla)S 167 x(on)S 167 x(esimerkinomaisesti)S 166 x(lueteltu)S 167 x(k)S -4 x(\177)S -310 x(aytt\177)S -313 x(otilan)S -17 x(teita)S 167 x(ja)S 166 x (miten)S 167 x(k)S -4 x(\177)S -310 x(ayt\177)S -314 x(on)S 600 y 9655 X(sallitta)S -17 x(vuutta)S 209 x(on)S 209 x(niiss)S -5 x(\177)S -309 x(a)S 209 x(tulkitta)S -16 x(v)S -35 x(a)S XP /F49 58 174 4 0 9 20 21 8 0 <78 FC FC FC FC 78 00 00 00 00 00 00 00 00 00 78 FC FC FC FC 78> PXLC RP 18766 6872 XY F49(:)S 8072 Y 10240 X(\(1\))S 314 x(Kaik)S -17 x(en)S 189 x(k)S -4 x(\177)S -310 x(ayt\177)S -314 x(on)S 189 x(tulee)S 190 x(olla)S 190 x(FUNETi)S 2 x(n)S 189 x(palv)S -17 x(elemien)S 190 x(ak)S -35 x(ateemisten)S 600 y 11356 X(ja)S 209 x(m)S -18 x (uiden)S 209 x(j)S -5 x(\177)S -309 x(asenorgan)S -2 x(isaatioiden)S 210 x(p)S -5 x(\177)S -310 x(a)S -4 x(\177)S -309 x(am)S -5 x(\177)S -309 x(a)S -5 x(\177)S -309 x(arien)S 209 x(m)S -17 x(uk)S -35 x (aista.)S 9872 Y 10240 X(\(2\))S 314 x(T)S -52 x(utkim)S -17 x(usta)S 152 x(tai)S 153 x(op)S 17 x(etusta)S 152 x(palv)S -17 x(elev)S -35 x (a)S 153 x(ep)S -5 x(\177)S -309 x(ak)S -35 x(aupallinen)S 153 x (toimin)S -17 x(ta)S 152 x(on)S 600 y 11356 X(h)S -18 x(yv)S -4 x (\177)S -310 x(aksytt)S -4 x(\177)S -309 x(av)S -4 x(\177)S -310 x (a)S -4 x(\177)S -310 x(a.)S 11672 Y 10240 X(\(3\))S 314 x(K)S -5 x (\177)S -310 x(aytt\177)S -313 x(o)S 164 x(on)S 165 x(h)S -18 x(yv)S -39 x(\177)S -309 x(aksytt)S -4 x(\177)S -310 x(av)S -39 x(\177)S -309 x(a)S -5 x(\177)S -309 x(a)S 165 x(v)S -35 x(aikk)S -34 x(a)S 165 x(se)S 164 x(ei)S 165 x(olisi)S 166 x(tutkim)S -17 x(ukseen)S 163 x(v)S -38 x(\177)S -310 x(alit-)S 600 y 11356 X(t\177)S -314 x (om)S -5 x(\177)S -309 x(asti)S 235 x(liitt)S -16 x(yv)S -39 x(\177)S -310 x(a)S -4 x(\177)S -310 x(a,)S 243 x(jos)S 234 x(se)S 235 x(v)S -39 x(\177)S -310 x(alill)S 2 x(isesti)S 235 x(palv)S -17 x(elee)S 235 x(sit)S -4 x(\177)S -310 x(a.)S 358 x(Esimerkiksi)S 600 y 11356 X (tutkim)S -17 x(uksen)S 209 x(ja)S 210 x(op)S 17 x(etuksen)S 210 x (in)S XP /F49 102 192 0 0 17 29 30 24 0 <003F00 00FFC0 01FFC0 03FFC0 07E7C0 07C380 078000 078000 078000 FFFC00 FFFC00 FFFC00 FFFC00 078000 078000 078000 078000 078000 078000 078000 078000 078000 078000 078000 078000 078000 FFFE00 FFFE00 FFFE00 FFFE00> PXLC RP 19168 12872 XY F49(frastruktuuria)S 210 x(palv)S -17 x(elev)S -35 x (a)S 211 x(liik)S -16 x(enne)S 599 y 11356 X(on)S 208 x(h)S -17 x (yv)S -39 x(\177)S -310 x(aksytt)S -4 x(\177)S -309 x(av)S -39 x (\177)S -310 x(a)S -4 x(\177)S -310 x(a.)S 14671 Y 10240 X(\()S XP /F49 52 314 1 0 23 29 30 24 0 <001F80 003F80 003F80 007B80 00FB80 00F380 01E380 03E380 03C380 078380 0F8380 0F0380 1E0380 3E0380 3C0380 780380 F80380 FFFFFE FFFFFE FFFFFE FFFFFE 000380 000380 000380 000380 000380 007FFC 007FFC 007FFC 007FFC> PXLC RP 10484 14671 XY F49(4\))S 314 x(Kaupallisten)S 169 x(yrit)S -17 x (ysten)S 169 x(k)S -34 x(aupallinen)S 169 x(k)S -4 x(\177)S -309 x (aytt)S (\177)S -314 x(o)S 170 x(ei)S 170 x(yleens)S -5 x(\177)S -310 x(a)S 170 x(ole)S 170 x(sallit-)S 600 y 11356 X(tua,)S 191 x(jollei)S 187 x (se)S 186 x(ole)S 187 x(p)S 17 x(erusteltua)S 187 x(edell)S -5 x (\177)S -309 x(a)S 187 x(olev)S -35 x(an)S 187 x(k)S -18 x(ohdan)S 186 x(3)S 187 x(m)S -18 x(uk)S -35 x(aises-)S 600 y 11356 X(ti.)S 336 x(FUNET)S 2 x(in)S 228 x(joh)S -18 x(toryhm)S -5 x(\177)S -309 x (an)S 228 x(on)S 227 x(h)S -17 x(yv)S -39 x(\177)S -310 x(aksytt)S -4 x(\177)S -309 x(av)S -39 x(\177)S -310 x(a)S 228 x(t)S -4 x(\177)S -309 x(allainen)S 228 x(k)S -4 x(\177)S -309 x(aytt\177)S -314 x(o)S 600 y 11356 X(kussakin)S 208 x(tapauksessa)S 208 x(erikseen.)S 17671 Y 10240 X(\()S XP /F49 53 314 3 0 21 29 30 24 0 <7FFFC0 7FFFC0 7FFFC0 7FFFC0 780000 780000 780000 780000 780000 780000 780000 7BF800 7FFE00 7FFF00 7FFF80 7E0FC0 7C07C0 7803E0 0003E0 0001E0 0001E0 F801E0 F803E0 F803E0 F807C0 FC1FC0 7FFF80 7FFF00 1FFC00 07F000> PXLC RP 10484 17671 XY F49(5\))S 314 x(Kaupallistenkin)S 406 x(yrit)S -17 x (ysten)S 407 x(tutkim)S -17 x(us-)S 406 x(ja)S 406 x(k)S -17 x (oulutusk)S -40 x(\177)S -310 x(aytt\177)S -313 x(o)S 406 x(on)S 600 y 11356 X(yleens)S -5 x(\177)S -310 x(a)S 252 x(sallittua.)S 407 x(Sen)S 251 x(sijaan)S 251 x(niiden)S 251 x(hallinnollinen)S 252 x(tai)S 252 x(op)S 17 x(era-)S 600 y 11356 X(tiivinen)S 210 x(k)S -5 x(\177)S -309 x(aytt\177)S -314 x(o)S 209 x(ei)S 210 x(ole.)S 20071 Y 10240 X(\(6\))S 314 x(K)S -5 x(\177)S -310 x(ayt\177)S -313 x (on)S 262 x(tulee)S 262 x(olla)S 264 x(sopu)S -2 x(soinn)S -18 x (ussa)S 262 x(eettisten)S 262 x(ohjeiden)S 261 x(\(liite\))S 264 x (ja)S 600 y 11356 X(yleisesti)S 209 x(h)S -18 x(yv)S -3 x(\177)S -310 x(aksytt)S -17 x(yjen)S 209 x(h)S -18 x(yvien)S 210 x(tap)S 17 x(o)S 35 x(jen)S 208 x(k)S -34 x(anssa.)S 21871 Y 10240 X(\()S XP /F49 55 314 2 0 22 30 31 24 0 PXLC RP 10484 21871 XY F49(7\))S 314 x(FUNETin)S 469 x(joh)S -19 x(toryhm)S -4 x(\177)S -310 x(a)S 468 x(ratk)S -34 x(aisee)S 467 x (tarvittaessa,)S 533 x(onk)S -17 x(o)S 467 x(jokin)S 600 y 11356 X (k)S -5 x(\177)S -309 x(aytt\177)S -314 x(o)S 255 x(h)S -17 x(yv)S -39 x(\177)S -310 x(aksytt)S -4 x(\177)S -309 x(av)S -39 x(\177)S -310 x(a)S -4 x(\177)S -310 x(a)S 256 x(v)S -35 x(ai)S 256 x(ei.)S 417 x(N)S -4 x(\177)S -309 x(aist)S -5 x(\177)S -309 x(a)S 255 x(p)S -5 x(\177)S -309 x(a)S -4 x(\177)S -310 x(at\177)S -314 x(oksist)S -5 x(\177)S -309 x(a)S 255 x(tiedotetaan)S 600 y 11356 X(k)S -39 x (\177)S -310 x(aytt)S -4 x(\177)S -310 x(ajille)S 211 x(ja)S 209 x (j)S -5 x(\177)S -310 x(asenorganisaatioille.)S 24871 Y 3175 X(3.)S 279 x(Sallittu)S 210 x(v)S -17 x(erkk)S -17 x(o)S -18 x(yh)S -17 x (teys)S 26071 Y -53 x(FUNET)S 156 x(p)S -18 x(yrkii)S 157 x(h)S -18 x (uoleh)S -18 x(timaan)S 155 x(siit)S -4 x(\177)S -309 x(a,)S 166 x (ett)S -4 x(\177)S -310 x(a)S 155 x(FUNET)S 2 x(iin)S 155 x(liitet)S -16 x(yt)S 155 x(v)S -17 x(erk)S -17 x(ot)S 155 x(tu-)S 600 y 9655 X (k)S -17 x(ev)S -35 x(at)S 225 x(t)S -5 x(\177)S -309 x(am)S -4 x (\177)S -310 x(an)S 224 x(yh)S -17 x(teisen)S 224 x(resurssin)S 223 x (tehok)S -35 x(asta)S 225 x(k)S -39 x(\177)S -310 x(aytt\177)S -313 x (o)S -5 x(\177)S -310 x(a)S 225 x(ja)S 225 x(suo)S 34 x(jausta)S 224 x(h)S -5 x(\177)S -310 x(ai-)S 600 y 9655 X(ri\177)S -314 x (oilt)S -4 x(\177)S -309 x(a.)S 279 x(J)S -4 x(\177)S -310 x (asenorganisaatioiden)S 208 x(tulee)S 209 x(osaltaan)S 209 x(p)S -17 x(yrki)S -4 x(\177)S -309 x(a)S 209 x(samaan.)S 28471 Y 9655 X (FUNETin)S 222 x(on)S 221 x(olta)S -17 x(v)S -35 x(a)S 222 x (selvill)S -3 x(\177)S -310 x(a)S 221 x(siit)S -4 x(\177)S -309 x (a,)S 224 x(mit)S -4 x(\177)S -309 x(a)S 221 x(v)S -17 x(erkk)S -17 x (o)S 35 x(ja)S 221 x(on)S 221 x(kytk)S -17 x(ett)S -17 x(y)S 221 x (ja)S 221 x(mi-)S 600 y 9655 X(hin)S 266 x(v)S -17 x(erkk)S -17 x (oa)S 267 x(k)S -39 x(\177)S -310 x(aytet)S -3 x(\177)S -310 x(a)S -4 x(\177)S -310 x(an.)S 452 x(FUNETi)S 2 x(lle)S 267 x(tulee)S 267 x (ilmoittaa,)S 283 x(jos)S 266 x(j)S -5 x(\177)S -309 x(asenorga-)S 600 y 9655 X(nisaation)S 266 x(v)S -18 x(erkk)S -16 x(oa)S 266 x(v)S -18 x(oidaan)S 266 x(k)S -39 x(\177)S -309 x(aytt)S -4 x(\177)S -310 x (a)S -4 x(\177)S -310 x(a)S 266 x(k)S -17 x(olmannen)S 266 x(osapuo)S -2 x(len)S 266 x(FUNET)S 2 x(-)S 600 y 9655 X(yh)S -18 x(teyksiin.)S 31471 Y 9655 X(V)S -52 x(erkk)S -17 x(o)S -18 x(yh)S -17 x(teyden)S 508 x(j)S -5 x(\177)S -310 x(alleenm)S -17 x(yyn)S -17 x(ti)S 509 x (\(esimerkiksi)S 508 x(teknologiakyl)S -3 x(\177)S -309 x(an)S 507 x (tai)S 600 y 9655 X(m)S -18 x(uun)S 304 x(j)S -4 x(\177)S -310 x (asen)S -18 x(yrit)S -17 x(yksen)S 305 x(tarjoamana\))S 305 x(on)S 304 x(sallittua)S 305 x(v)S -34 x(ain)S 305 x(FUNETin)S 306 x(lu-)S 600 y 9655 X(v)S -35 x(alla.)S 33871 Y 9655 X(Yh)S -18 x(teyksi)S -4 x(\177)S -309 x(a,)S 171 x(jotk)S -35 x(a)S 161 x(aiheutta)S -18 x (v)S -34 x(at)S 160 x(hank)S -35 x(alia)S 162 x(reitit)S -17 x (ysongelmia)S 161 x(tai)S 161 x(o)S -17 x(v)S -35 x(at)S 161 x(m)S -18 x(uu-)S 600 y 9655 X(ten)S 277 x(ristiriidassa)S 278 x(v)S -18 x (erk)S -17 x(on)S 277 x(tehokk)S -35 x(aan)S 278 x(yh)S -18 x (teisen)S 277 x(k)S -39 x(\177)S -309 x(ayt\177)S -314 x(on)S 277 x (k)S -35 x(anssa,)S 294 x(ei)S 278 x(tule)S 600 y 9655 X(rak)S -17 x (en)S -18 x(taa.)S 36271 Y 3175 X(4.)S 279 x(J)S -5 x(\177)S -309 x (asenorganis)S -2 x(aatioiden)S 210 x(v)S -17 x(elv)S -17 x (ollisuuksia)S 37471 Y 9655 X(FUNET)S 212 x(jak)S -35 x(aa)S 212 x (t)S -5 x(\177)S -309 x(am)S -4 x(\177)S -310 x(an)S 211 x(s)S -5 x (\177)S -310 x(a)S -4 x(\177)S -309 x(ann\177)S -315 x(ost\177)S -315 x(on)S 211 x(j)S -4 x(\177)S -310 x(asenorganisaatioilleen,)S 212 x(joiden)S 210 x(tu-)S 600 y 9655 X(lee)S 209 x(tiedottaa)S 210 x (n)S -5 x(\177)S -310 x(aist)S -4 x(\177)S -309 x(a)S 209 x (asioista)S 209 x(k)S -39 x(\177)S -310 x(aytt)S -3 x(\177)S -310 x (aj)S -5 x(\177)S -309 x(akunnalleen.)S 39271 Y 9655 X(V)S -52 x (astuu)S 203 x(siit)S -4 x(\177)S -310 x(a,)S 205 x(ett)S -4 x(\177)S -310 x(a)S 204 x(k)S -4 x(\177)S -310 x(aytt\177)S -313 x(o)S 203 x (on)S 203 x(h)S -17 x(yv)S -39 x(\177)S -310 x(aksytt)S -4 x(\177)S -309 x(av)S -39 x(\177)S -310 x(a)S -4 x(\177)S -310 x(a,)S 205 x (on)S 204 x(ensisijass)S -2 x(a)S 204 x(yh)S -18 x(teyden)S 1 PP EP %%Page 3 3 1200 BP 42120 30600 PM 0 0 XY 2072 Y 9655 X F49(otta)S 35 x(jan)S 171 x(v)S -17 x(erk)S -17 x (osta)S 171 x(v)S -35 x(astaa)S -17 x(v)S -35 x(alla)S 172 x(j)S -4 x(\177)S -310 x(asenorganisaatiolla.)S 267 x(Jos)S 171 x(k)S -39 x (\177)S -310 x(ayt\177)S -314 x(on)S 171 x(h)S -17 x(yv)S -39 x (\177)S -310 x(ak-)S 600 y 9655 X(sytt)S -5 x(\177)S -309 x(avyys)S 209 x(ei)S 210 x(ole)S 209 x(selv)S -4 x(\177)S -310 x(a,)S 210 x (on)S 209 x(otetta)S -18 x(v)S -34 x(a)S 209 x(yh)S -17 x(teytt)S -4 x(\177)S -310 x(a)S 209 x(FUNET)S 2 x(iin.)S 3872 Y 3175 X(5.)S 279 x(T)S -4 x(\177)S -310 x(ayt)S -4 x(\177)S -309 x(an)S -18 x(t)S (\177)S -314 x(o\177)S -314 x(onpano)S 5072 Y 9655 X(Niiss)S -4 x (\177)S -310 x(a)S 352 x(tapauksissa,)S 386 x(joissa)S 351 x (jostakin)S 352 x(k)S -39 x(\177)S -310 x(ayt\177)S -313 x(ost)S -5 x(\177)S -310 x(a)S 352 x(to)S 17 x(detaan,)S 387 x(ett)S -4 x (\177)S -309 x(a)S 351 x(se)S 352 x(ei)S 600 y 9655 X(ole)S 348 x (FUNETi)S 2 x(n)S 347 x(k)S -34 x(annalta)S 348 x(h)S -18 x(yv)S -39 x(\177)S -309 x(aksytt)S -4 x(\177)S -310 x(av)S -39 x(\177)S -309 x(a)S -5 x(\177)S -309 x(a,)S 383 x(liik)S -16 x(en)S -18 x (teen)S 348 x(l)S -4 x(\177)S -310 x(ah)S -18 x(teen)S 348 x(v)S -17 x(erkk)S -17 x(o)S 600 y 9655 X(\(yleens)S -5 x(\177)S -309 x(a)S 355 x(FUNETi)S 2 x(n)S 355 x(j)S -5 x(\177)S -310 x (asenorganisaatio\))S 355 x(on)S 355 x(v)S -18 x(elv)S -17 x (ollinen)S 356 x(h)S -18 x(uomautta-)S 600 y 9655 X(maan)S 209 x (asianomaiselle)S 209 x(ja)S 210 x(est)S -5 x(\177)S -310 x(am)S -4 x(\177)S -310 x(a)S -4 x(\177)S -310 x(an)S 209 x(v)S -39 x(\177)S -309 x(a)S -5 x(\177)S -309 x(arink)S -39 x(\177)S -310 x(ayt\177)S -313 x(on)S 209 x(v)S -35 x(astaisuudes)S -2 x(sa.)S 8072 Y 9655 X (FUNET)S 219 x(h)S -18 x(uoleh)S -18 x(tii)S 218 x(parhaansa)S 217 x (m)S -18 x(uk)S -35 x(aan)S 217 x(siit)S -4 x(\177)S -309 x(a,)S 220 x(ett)S -5 x(\177)S -309 x(a)S 217 x(FUNET)S 2 x(in)S 217 x(ja)S 217 x(siihen)S 600 y 9655 X(liitett)S -16 x(yjen)S 232 x(m)S -18 x (uiden)S 232 x(v)S -17 x(erkk)S -17 x(o)S 35 x(jen)S 232 x(\(erit)S -17 x(yisesti)S 232 x(k)S -34 x(ansain)S -18 x(v)S -39 x(\177)S -310 x (alisten)S 233 x(v)S -17 x(erkk)S -17 x(o)S 34 x(jen\))S 600 y 9655 X (h)S -18 x(yv)S -39 x(\177)S -309 x(aksytt)S -4 x(\177)S -310 x(av)S -39 x(\177)S -309 x(an)S 199 x(k)S -39 x(\177)S -310 x(ayt\177)S -313 x(on)S 199 x(ja)S 199 x(sallittujen)S 200 x(v)S -17 x(erkk)S -17 x(o)S -18 x(yh)S -17 x(teyksien)S 199 x(s)S -5 x(\177)S -309 x (a)S -5 x(\177)S -309 x(an)S -18 x(t\177)S -314 x(oj)S -4 x(\177)S -310 x(a)S 200 x(nou-)S 600 y 9655 X(datetaan.)S 279 x(FUNETi)S 2 x (n)S 208 x(j)S -4 x(\177)S -310 x(asenorganisaatioiden)S 208 x (tulee)S 210 x(tehd)S -5 x(\177)S -310 x(a)S 209 x(samoin.)S 12772 Y 3175 X(Liite:)S 279 x(FUNET)S 2 x(in)S 209 x(ja)S 209 x(m)S -17 x (uiden)S 208 x(tutkim)S -17 x(usyh)S -18 x(teis\177)S -314 x(ojen)S 208 x(k)S -4 x(\177)S -309 x(ayt\177)S -314 x(on)S 209 x(etiik)S -34 x(asta,)S 209 x(3.)S 279 x(9.)S 280 x(1991)S 1 PP EP %%Trailer EndDviLaserDoc %%DocumentFonts: cmvtt10 %%Pages 3