亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? gs_res.ps

?? 遺傳算法工具箱 希望高手指點 GATOOLS
?? PS
字號:
%    Copyright (C) 1994, 1996 Aladdin Enterprises.  All rights reserved.
% 
% This file is part of Aladdin Ghostscript.
% 
% Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
% or distributor accepts any responsibility for the consequences of using it,
% or for whether it serves any particular purpose or works at all, unless he
% or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
% License (the "License") for full details.
% 
% Every copy of Aladdin Ghostscript must include a copy of the License,
% normally in a plain ASCII text file named PUBLIC.  The License grants you
% the right to copy, modify and redistribute Aladdin Ghostscript, but only
% under certain conditions described in the License.  Among other things, the
% License requires that the copyright notice and this notice be preserved on
% all copies.

% Initialization file for Level 2 resource machinery.
% When this is run, systemdict is still writable,
% but everything defined here goes into level2dict.

level2dict begin

(BEGIN RESOURCES) VMDEBUG

% We keep track of (global) instances with another entry in the resource
% dictionary, an Instances dictionary.  For categories with implicit
% instances, the values in Instances are the same as the keys;
% for other categories, the values are [instance status size].

% Note that the dictionary that defines a resource category is stored
% in global memory.  The PostScript manual says that each category must
% manage global and local instances separately.  However, objects in
% global memory other than systemdict can't reference objects in local memory.
% This means that the resource category dictionary, which would otherwise be
% the obvious place to keep track of the instances, can't be used to keep
% track of local instances.  Instead, we define a dictionary in local VM
% called localinstancedict, in which the key is the category name and
% the value is the analogue of Instances for local instances.

% We don't currently implement automatic resource unloading.
% When and if we do, it should be hooked to the garbage collector.
% However, Ed Taft of Adobe says their interpreters don't implement this
% either, so we aren't going to worry about it for a while.

currentglobal false setglobal systemdict begin
  /localinstancedict 5 dict def
end true setglobal
/.emptydict 0 dict readonly def
setglobal

% Resource category dictionaries have the following keys (those marked with
% * are optional):
%	Standard, defined in the Red Book:
%		Category (name)
%		*InstanceType (name)
%		DefineResource
%		UndefineResource
%		FindResource
%		ResourceStatus
%		ResourceForAll
%		*ResourceFileName
%	Additional, specific to our implementation:
%		Instances (dictionary)
%		.LocalInstances
%			- .LocalInstances <dict>
%		.GetInstance
%			<key> .GetInstance <instance> -true-
%			<key> .GetInstance -false-
%		.CheckResource
%			<value> .CheckResource <ok>
%		.DoLoadResource
%			<key> .DoLoadResource - (may give an error)
%		.LoadResource
%			<key> .LoadResource - (may give an error)
%		.ResourceFile
%			<key> .ResourceFile <file> -true-
%			<key> .ResourceFile <key> -false-
% All the above procedures expect that the top dictionary on the d-stack
% is the resource dictionary.

% Define enough of the Category category so we can define other categories.
% The dictionary we're about to create will become the Category
% category definition dictionary.

12 dict begin

		% Standard entries

/Category /Category def
/InstanceType /dicttype def

/DefineResource
	{ dup .CheckResource
	   { dup /Category 3 index cvlit .growput readonly
	     dup [ exch 0 -1 ] exch
	     Instances 4 2 roll put
	   }
	   { /typecheck signalerror
	   }
	  ifelse
	} bind def
/FindResource		% (redefined below)
	{ Instances exch get 0 get
	} bind def

		% Additional entries

/Instances 25 dict def
Instances /Category [currentdict 0 -1] put

/.LocalInstances 0 dict def
/.GetInstance
	{ Instances exch .knownget
	} bind def
/.CheckResource
	{ dup gcheck currentglobal and
	   { /DefineResource /FindResource /ResourceForAll /ResourceStatus
	     /UndefineResource }
	   { 2 index exch known and }
	  forall exch pop
	} bind def

Instances end begin	% for the base case of findresource

(END CATEGORY) VMDEBUG

% Define the resource operators.  I don't see how we can possibly restore
% the stacks after an error, since the procedure may have popped and
% pushed elements arbitrarily....

mark
/defineresource		% <key> <instance> <category> defineresource <instance>
	{ /Category findresource dup begin
	  /InstanceType known
	   { dup type InstanceType ne
	      { dup type /packedarraytype eq InstanceType /arraytype eq and
		not { /typecheck signalerror } if
	      } if
	   } if
	  /DefineResource load stopped end { stop } if
	}
/findresource		% <key> <category> findresource <instance>
	{ dup /Category eq
	   { pop //Category 0 get } { /Category findresource } ifelse
	  begin
	  /FindResource load stopped end { stop } if
	}
/resourceforall		% <template> <proc> <scratch> <category> resourceforall -
	{ /Category findresource begin
	  /ResourceForAll load stopped end { stop } if
	}
/resourcestatus		% <key> <category> resourcestatus <status> <size> true
			% <key> <category> resourcestatus false
	{ /Category findresource begin
	  /ResourceStatus load stopped end { stop } if
	}
/undefineresource	% <key> <category> undefineresource -
	{ /Category findresource begin
	  /UndefineResource load stopped end { stop } if
	}
end		% Instances of Category
counttomark 2 idiv { bind odef } repeat pop

% Define the Generic category.

/Generic mark

		% Standard entries

% We're still running in Level 1 mode, so dictionaries won't expand.
% Leave room for the /Category entry.
/Category null

/DefineResource
	{ dup .CheckResource
	   { dup [ exch 0 -1 ] exch
	     currentglobal
	      { false setglobal 2 index UndefineResource	% remove local def if any
		true setglobal
		Instances dup //.emptydict eq
		 { pop 3 dict /Instances 1 index def
		 }
		if
	      }
	      { .LocalInstances dup //.emptydict eq
	         { pop 3 dict localinstancedict Category 2 index put
		 }
		if
	      }
	     ifelse
	     4 2 roll .growput
	   }
	   { /typecheck signalerror
	   }
	  ifelse
	} bind
/UndefineResource
	{  { dup 2 index .knownget
	      { dup 1 get 1 ge
		 { dup 0 null put 1 2 put pop pop }
		 { pop exch .undef }
		ifelse
	      }
	      { pop pop
	      }
	     ifelse
	   }
	  currentglobal
	   { 2 copy Instances exch exec
	   }
	  if .LocalInstances exch exec
	} bind
/FindResource
	{ dup ResourceStatus
	   { pop 1 gt			% not in VM
	      { .DoLoadResource
	      }
	     if
	     .GetInstance pop		% can't fail
	     0 get
	   }
	   { /undefinedresource signalerror
	   }
	  ifelse
	} bind
/ResourceStatus
	{ dup .GetInstance
	   { exch pop dup 1 get exch 2 get true }
	   { .ResourceFile
	      { closefile 2 -1 true }
	      { pop false }
	     ifelse
	   }
	  ifelse
	} bind
/ResourceForAll
	{ % **************** Doesn't present instance groups in
	  % **************** the correct order yet.
	  % We construct a new procedure so we don't have to use
	  % static resources to hold the iteration state.
	  3 packedarray		% template, proc, scratch
	  { exch pop	% stack contains: key, {template, proc, scratch}
	    2 copy 0 get .stringmatch
	     { 1 index type dup /stringtype eq exch /nametype eq or
		{ 2 copy 2 get cvs
		  exch 1 get 3 -1 roll pop
		}
		{ 1 get
		}
	       ifelse exec
	     }
	     { pop pop
	     }
	    ifelse
	  } /exec cvx 3 packedarray cvx
	  % We must pop the resource dictionary off the dict stack
	  % when doing the actual iteration, and restore it afterwards.
	  currentglobal .LocalInstances length 0 eq or not
	   {		% We must do local instances, and do them first.
	     /forall cvx 1 index currentdict 3 packedarray cvx
	     .LocalInstances 3 1 roll end exec begin
	   }
	  if
	  Instances exch
	  /forall cvx currentdict 2 packedarray cvx
	  end exec begin
	} bind

		% Additional entries

% Unfortunately, we can't create the real Instances dictionary now,
% because if someone copies the Generic category (which pp. 95-96 of the
% 2nd Edition Red Book says is legitimate), they'll wind up sharing
% the Instances.  Instead, we have to create Instances on demand,
% just like the entry in localinstancedict.
% We also have to prevent anyone from creating instances of Generic itself.
/Instances //.emptydict

/.LocalInstances
	{ localinstancedict Category .knownget not { //.emptydict } if
	} bind
/.GetInstance
	{ currentglobal
	   { Instances exch .knownget }
	   { .LocalInstances 1 index .knownget
	      { exch pop true }
	      { Instances exch .knownget }
	     ifelse
	   }
	  ifelse
	} bind
/.CheckResource
	{ pop true
	} bind
/.DoLoadResource
	{ dup vmstatus pop exch pop exch
	  .LoadResource
	  vmstatus pop exch pop exch sub
	  1 index .GetInstance not
	   { pop /undefinedresource signalerror }	% didn't load
	  if
	  dup 1 1 put
	  2 3 -1 roll put
	} bind
/.LoadResource
	{ dup .ResourceFile
	   { exch pop currentglobal
	      { run }
	      { true setglobal { run } stopped false setglobal { stop } if }
	     ifelse
	   }
	   { /undefinedresource signalerror
	   }
	 ifelse
	} bind
/.ResourceFile
	{ currentdict /ResourceFileName known
	   { mark 1 index 100 string { ResourceFileName }
	     .internalstopped
	      { cleartomark false }
	      { exch pop findlibfile
		 { exch pop exch pop true }
		 { false }
		ifelse
	      }
	     ifelse
	   }
	   { false }
	  ifelse
	} bind

.dicttomark
/Category defineresource pop

% Fill in the rest of the Category category.
/Category /Category findresource dup
/Generic /Category findresource begin
 { /FindResource /ResourceForAll /ResourceStatus /UndefineResource /.ResourceFile }
 { dup load put dup } forall
pop readonly pop end

(END GENERIC) VMDEBUG

% Define the fixed categories.

mark
	% Things other than types
 /ColorSpaceFamily
   mark colorspacedict { pop } forall .packtomark
 /Emulator
   mark EMULATORS { cvn } forall .packtomark
 /Filter
   mark filterdict { pop } forall .packtomark
 /IODevice
	% Loop until the .getiodevice gets a rangecheck.
   errordict /rangecheck 2 copy get
   errordict /rangecheck { pop stop } put	% pop the command
   mark 0 { {dup .getiodevice exch 1 add} loop} .internalstopped
   pop pop pop .packtomark
   4 1 roll put
   .clearerror
	% Types
 /setcolorrendering where
  { pop /ColorRenderingType
     {1}
  } if
buildfontdict 0 known
  { /FMapType
     {2 3 4 5 6 7 8}
  } if
 /FontType
   [ buildfontdict { pop } forall ]
 /FormType
   {1}
 /HalftoneType
   {1 2 3 4 5}
 /ImageType
   {1}
 /PatternType
   {1}			% should check for Pattern color space
counttomark 2 idiv
 { mark

		% Standard entries

   /DefineResource
	{ /invalidaccess signalerror } bind
   /UndefineResource
	{ /invalidaccess signalerror } bind
   /FindResource
	{ Instances exch get } bind
   /ResourceStatus
	{ Instances exch known { 0 0 true } { false } ifelse } bind
   /ResourceForAll
	/Generic /Category findresource /ResourceForAll get

		% Additional entries

   counttomark 2 add -1 roll
   dup length dict dup begin exch { dup def } forall end readonly
   /Instances exch
   /.LocalInstances	% used by ResourceForAll
	0 dict def

   .dicttomark /Category defineresource pop
 } repeat pop

(END FIXED) VMDEBUG

% Define the other built-in categories.

/.definecategory	% <name> -mark- <key1> ... <valuen> .definecategory -
 { counttomark 2 idiv 2 add		% Instances, Category
   /Generic /Category findresource dup maxlength 3 -1 roll add
   dict .copydict begin
   counttomark 2 idiv { def } repeat pop	% pop the mark
   currentdict end /Category defineresource pop
 } bind def

/ColorRendering mark /InstanceType /dicttype .definecategory
/ColorSpace mark /InstanceType /arraytype .definecategory
/Form mark /InstanceType /dicttype .definecategory
/Halftone mark /InstanceType /dicttype .definecategory
/Pattern mark /InstanceType /dicttype .definecategory
/ProcSet mark /InstanceType /dicttype .definecategory

(END MISC) VMDEBUG

% Define the Encoding category.

/Encoding mark

/InstanceType /arraytype

% Handle already-registered encodings, including lazily loaded encodings
% that aren't loaded yet.

/Instances mark
  EncodingDirectory
   { dup length 256 eq { [ exch 0 -1 ] } { pop [null 2 -1] } ifelse
   } forall
.dicttomark

/.ResourceFileDict mark
  EncodingDirectory
   { dup length 256 eq { pop pop } { 0 get } ifelse
   } forall
.dicttomark

/ResourceFileName
 { exch dup .ResourceFileDict exch .knownget
    { exch pop exch copy }
    { exch pop /undefinedresource signalerror }
   ifelse
 } bind

.definecategory			% Encoding

/.findencoding { /Encoding findresource } bind def
/findencoding /.findencoding load odef
/.defineencoding
 { 2 copy /Encoding defineresource pop
   //EncodingDirectory 3 1 roll put
 } bind def

(END ENCODING) VMDEBUG

% Define the Font category.

/Font mark

/InstanceType /dicttype

/DefineResource
	{ 2 copy //definefont exch pop
	  /Generic /Category findresource /DefineResource get exec
	} bind
/UndefineResource
	{ dup //undefinefont
	  /Generic /Category findresource /UndefineResource get exec
	} bind
/FindResource
	{ dup ResourceStatus
	   { pop 1 gt { .DoLoadResource } if }
	   { .DoLoadResource }
	  ifelse
	  .GetInstance pop 0 get
	} bind

/.LoadResource
	{ //findfont exec pop
	} bind

/Instances FontDirectory length 2 mul dict

.definecategory			% Font

% Redefine font "operators".
/.definefontmap
 { /Font /Category findresource /Instances get
   dup 3 index known
    { pop
    }
    { 2 index
		% Make sure we create the array in global VM.
      .currentglobal true .setglobal
      [null 2 -1] exch .setglobal
      .growput
    }
   ifelse
   //.definefontmap exec
 } bind def

% Make sure the old definitions are still in systemdict so that
% they will get bound properly.
systemdict begin
  /.origdefinefont /definefont load def
  /.origundefinefont /undefinefont load def
  /.origfindfont /findfont load def
end
/definefont
	{ /Font defineresource } bind odef
/undefinefont
	{ /Font undefineresource } bind odef
/findfont
	{ /Font findresource } bind def	% Must be a procedure, not an operator

% Remove initialization utilities.
currentdict /.definecategory .undef
currentdict /.emptydict .undef

end				% level2dict

% Arrange to convert encodings to resources when we switch to Level 2.

/.ressetll /.setlanguagelevel load def
/.setlanguagelevel
 { dup .ressetll 2 eq
    { //systemdict /.setlanguagelevel //systemdict /.ressetll get put
      //systemdict /.ressetll undef
      EncodingDirectory
       { dup length 256 eq
	  { /Encoding defineresource pop }
	  { pop pop }
	 ifelse
       } forall
    }
   if
 } bind def

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色呦呦一区二区三区| 日韩欧美亚洲一区二区| 激情综合五月婷婷| 奇米一区二区三区av| 日韩电影在线免费| 日韩影视精彩在线| 日本一不卡视频| 麻豆国产一区二区| 国产在线一区二区综合免费视频| 久久国产精品99精品国产| 久久精品国产澳门| 国产一区二区不卡| jiyouzz国产精品久久| 91麻豆自制传媒国产之光| 99在线精品观看| 欧美性xxxxxx少妇| 91精品婷婷国产综合久久竹菊| 欧美一区二区三区四区高清| 欧美精品一区二区三区视频 | 精品成人一区二区三区四区| 日韩欧美国产精品| 中文字幕一区视频| 亚洲一区二区三区自拍| 奇米一区二区三区| 成人h动漫精品| 在线亚洲一区二区| 日韩精品一区二区三区在线播放| 久久午夜免费电影| 一区二区三区中文字幕精品精品 | 精品国产成人系列| 国产精品久久久久久久久免费丝袜 | 欧美日韩精品一二三区| 欧美亚洲动漫另类| www成人在线观看| 一区二区成人在线视频| 免费成人在线播放| 91蜜桃视频在线| 精品福利一区二区三区免费视频| 国产精品美女久久福利网站| 亚洲成av人**亚洲成av**| 美日韩一区二区三区| 国内久久婷婷综合| 色婷婷久久一区二区三区麻豆| 日韩欧美久久久| 亚洲福中文字幕伊人影院| 国产成人丝袜美腿| 日韩欧美一区电影| 亚洲综合一区二区三区| 国产91在线|亚洲| 欧美一级片在线看| 亚洲国产综合视频在线观看| 成人美女视频在线观看18| 91精品国产综合久久久久久| 亚洲欧洲成人精品av97| 精品亚洲免费视频| 91精品国产一区二区| 亚洲欧美色综合| 国产白丝网站精品污在线入口| 欧美一级片在线| 午夜欧美大尺度福利影院在线看 | 亚洲精品中文在线影院| 久久精品二区亚洲w码| 欧美色中文字幕| 亚洲免费色视频| 成人激情免费网站| 久久久亚洲欧洲日产国码αv| 日韩激情一二三区| 制服丝袜中文字幕亚洲| 午夜视频在线观看一区二区| 在线观看中文字幕不卡| 国产欧美日韩在线视频| 国产一区二区三区黄视频| 日韩精品在线一区| 久久国产精品色| 欧美一区二区三区在线观看视频| 夜夜嗨av一区二区三区网页| 波多野洁衣一区| 亚洲欧美在线视频| 91香蕉视频mp4| 亚洲最色的网站| 欧美久久久久免费| 美国三级日本三级久久99| 欧美一区二区三区在线观看视频| 美女在线一区二区| www国产精品av| 懂色中文一区二区在线播放| 国产精品美女视频| 日本二三区不卡| 午夜激情久久久| 欧美电影免费观看高清完整版| 精品一区二区三区免费观看| 久久久久久久久久电影| 国产成人亚洲综合a∨猫咪| 久久久噜噜噜久久人人看| 成人一道本在线| 中文字幕中文乱码欧美一区二区 | 日本在线播放一区二区三区| 欧美tickling挠脚心丨vk| 国产精品亚洲成人| 亚洲日本电影在线| 制服丝袜成人动漫| 午夜一区二区三区视频| 欧美日韩久久久| 免费观看久久久4p| 中文字幕欧美一区| 精品视频999| 国产成人自拍在线| 亚洲第一在线综合网站| 久久久久久久综合狠狠综合| 91免费视频网址| 精品制服美女丁香| 国产精品污污网站在线观看| 91免费观看视频在线| 日本成人中文字幕在线视频| 中文字幕精品综合| 欧美日韩视频一区二区| 国产一区二区精品久久91| 亚洲男同1069视频| 久久综合av免费| 欧美视频在线一区二区三区| 国产综合色精品一区二区三区| 国产精品高潮久久久久无| 欧美图区在线视频| 国产资源在线一区| 日韩电影在线一区二区三区| 亚洲人成网站色在线观看| 精品少妇一区二区三区免费观看 | 国产在线一区观看| 视频精品一区二区| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 欧美精品第1页| 91福利视频网站| 99精品久久久久久| 国产一区二区免费看| 老司机精品视频导航| 国产精品国产馆在线真实露脸| 欧美一区二区三区视频在线| 在线精品亚洲一区二区不卡| 国产91精品露脸国语对白| 奇米777欧美一区二区| 亚洲欧美在线视频观看| 久久久国产综合精品女国产盗摄| 日韩一区二区在线观看| 欧美人妇做爰xxxⅹ性高电影| www.66久久| 99热这里都是精品| 成人黄色av电影| 懂色av一区二区在线播放| 国产激情一区二区三区| 国内外精品视频| 国产麻豆精品theporn| 久久99精品久久久久婷婷| 欧美bbbbb| 国产乱人伦精品一区二区在线观看 | 欧美在线色视频| 成年人午夜久久久| 成人高清视频在线| 91在线视频免费观看| 色偷偷一区二区三区| 99精品视频在线观看| 日本道精品一区二区三区| 欧美日韩中文另类| 欧美丰满一区二区免费视频| 欧美体内she精高潮| 在线免费观看日韩欧美| 91麻豆精品国产| 精品国产免费一区二区三区四区| 精品国产一区二区三区不卡| 久久久久久久久97黄色工厂| 久久久www成人免费毛片麻豆| 国产欧美一区二区精品性| 综合亚洲深深色噜噜狠狠网站| 一二三四区精品视频| 视频一区二区中文字幕| 国产精品2024| 91久久国产综合久久| 日韩手机在线导航| 国产精品午夜免费| 亚洲第一成年网| 韩国精品免费视频| 成人av在线网站| 欧美日韩你懂的| 久久综合国产精品| 一区二区成人在线视频| 日本sm残虐另类| 99精品视频一区| 日韩一级黄色大片| 亚洲少妇中出一区| 久久国产精品第一页| 99精品在线观看视频| 欧美视频三区在线播放| 精品理论电影在线观看| 亚洲国产高清在线观看视频| 亚洲午夜国产一区99re久久| 国产高清无密码一区二区三区| 91麻豆.com| 26uuu国产电影一区二区| 亚洲国产精品一区二区久久 | 欧美日韩在线播| 精品国免费一区二区三区|