From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/tv/doc/src/tv_start_mnesia.ps | 835 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 835 insertions(+) create mode 100644 lib/tv/doc/src/tv_start_mnesia.ps (limited to 'lib/tv/doc/src/tv_start_mnesia.ps') diff --git a/lib/tv/doc/src/tv_start_mnesia.ps b/lib/tv/doc/src/tv_start_mnesia.ps new file mode 100644 index 0000000000..a90185089d --- /dev/null +++ b/lib/tv/doc/src/tv_start_mnesia.ps @@ -0,0 +1,835 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: (ImageMagick) +%%Title: (/clearcase/otp/erts/lib/tv/doc/src/tv_start_mnesia.eps) +%%CreationDate: (Mon Mar 19 17:15:23 2001) +%%BoundingBox: 0 0 377 205 +%%DocumentData: Clean7Bit +%%LanguageLevel: 1 +%%Pages: 0 +%%EndComments + +%%BeginDefaults +%%PageOrientation: Portrait +%%EndDefaults + +%%BeginProlog +% +% Display a color image. The image is displayed in color on +% Postscript viewers or printers that support color, otherwise +% it is displayed as grayscale. +% +/buffer 512 string def +/byte 1 string def +/color_packet 3 string def +/pixels 768 string def + +/DirectClassPacket +{ + % + % Get a DirectClass packet. + % + % Parameters: + % red. + % green. + % blue. + % length: number of pixels minus one of this color (optional). + % + currentfile color_packet readhexstring pop pop + compression 0 gt + { + /number_pixels 3 def + } + { + currentfile byte readhexstring pop 0 get + /number_pixels exch 1 add 3 mul def + } ifelse + 0 3 number_pixels 1 sub + { + pixels exch color_packet putinterval + } for + pixels 0 number_pixels getinterval +} bind def + +/DirectClassImage +{ + % + % Display a DirectClass image. + % + systemdict /colorimage known + { + columns rows 8 + [ + columns 0 0 + rows neg 0 rows + ] + { DirectClassPacket } false 3 colorimage + } + { + % + % No colorimage operator; convert to grayscale. + % + columns rows 8 + [ + columns 0 0 + rows neg 0 rows + ] + { GrayDirectClassPacket } image + } ifelse +} bind def + +/GrayDirectClassPacket +{ + % + % Get a DirectClass packet; convert to grayscale. + % + % Parameters: + % red + % green + % blue + % length: number of pixels minus one of this color (optional). + % + currentfile color_packet readhexstring pop pop + color_packet 0 get 0.299 mul + color_packet 1 get 0.587 mul add + color_packet 2 get 0.114 mul add + cvi + /gray_packet exch def + compression 0 gt + { + /number_pixels 1 def + } + { + currentfile byte readhexstring pop 0 get + /number_pixels exch 1 add def + } ifelse + 0 1 number_pixels 1 sub + { + pixels exch gray_packet put + } for + pixels 0 number_pixels getinterval +} bind def + +/GrayPseudoClassPacket +{ + % + % Get a PseudoClass packet; convert to grayscale. + % + % Parameters: + % index: index into the colormap. + % length: number of pixels minus one of this color (optional). + % + currentfile byte readhexstring pop 0 get + /offset exch 3 mul def + /color_packet colormap offset 3 getinterval def + color_packet 0 get 0.299 mul + color_packet 1 get 0.587 mul add + color_packet 2 get 0.114 mul add + cvi + /gray_packet exch def + compression 0 gt + { + /number_pixels 1 def + } + { + currentfile byte readhexstring pop 0 get + /number_pixels exch 1 add def + } ifelse + 0 1 number_pixels 1 sub + { + pixels exch gray_packet put + } for + pixels 0 number_pixels getinterval +} bind def + +/PseudoClassPacket +{ + % + % Get a PseudoClass packet. + % + % Parameters: + % index: index into the colormap. + % length: number of pixels minus one of this color (optional). + % + currentfile byte readhexstring pop 0 get + /offset exch 3 mul def + /color_packet colormap offset 3 getinterval def + compression 0 gt + { + /number_pixels 3 def + } + { + currentfile byte readhexstring pop 0 get + /number_pixels exch 1 add 3 mul def + } ifelse + 0 3 number_pixels 1 sub + { + pixels exch color_packet putinterval + } for + pixels 0 number_pixels getinterval +} bind def + +/PseudoClassImage +{ + % + % Display a PseudoClass image. + % + % Parameters: + % class: 0-PseudoClass or 1-Grayscale. + % + currentfile buffer readline pop + token pop /class exch def pop + class 0 gt + { + currentfile buffer readline pop + token pop /depth exch def pop + /grays columns 8 add depth sub depth mul 8 idiv string def + columns rows depth + [ + columns 0 0 + rows neg 0 rows + ] + { currentfile grays readhexstring pop } image + } + { + % + % Parameters: + % colors: number of colors in the colormap. + % colormap: red, green, blue color packets. + % + currentfile buffer readline pop + token pop /colors exch def pop + /colors colors 3 mul def + /colormap colors string def + currentfile colormap readhexstring pop pop + systemdict /colorimage known + { + columns rows 8 + [ + columns 0 0 + rows neg 0 rows + ] + { PseudoClassPacket } false 3 colorimage + } + { + % + % No colorimage operator; convert to grayscale. + % + columns rows 8 + [ + columns 0 0 + rows neg 0 rows + ] + { GrayPseudoClassPacket } image + } ifelse + } ifelse +} bind def + +/DisplayImage +{ + % + % Display a DirectClass or PseudoClass image. + % + % Parameters: + % x & y translation. + % x & y scale. + % label pointsize. + % image label. + % image columns & rows. + % class: 0-DirectClass or 1-PseudoClass. + % compression: 0-RunlengthEncodedCompression or 1-NoCompression. + % hex color packets. + % + gsave + currentfile buffer readline pop + token pop /x exch def + token pop /y exch def pop + x y translate + currentfile buffer readline pop + token pop /x exch def + token pop /y exch def pop + currentfile buffer readline pop + token pop /pointsize exch def pop + /Helvetica findfont pointsize scalefont setfont + x y scale + currentfile buffer readline pop + token pop /columns exch def + token pop /rows exch def pop + currentfile buffer readline pop + token pop /class exch def pop + currentfile buffer readline pop + token pop /compression exch def pop + class 0 gt { PseudoClassImage } { DirectClassImage } ifelse + grestore +} bind def +%%EndProlog +%%Page: 1 1 +%%PageBoundingBox: 0 0 377 205 +userdict begin +%%BeginData: +DisplayImage +0 0 +377.000000 205.000000 +12 +755 410 +1 +0 +0 +16 +ffffff +000000 +d8d8d8 +c2c2c2 +6b6b6b +d9d9d9 +b22222 +828282 +a3a3a3 +000000 +000000 +000000 +000000 +000000 +000000 +000000 +000a01ff01ff01dc000b0208040001ff01ff01dc00000208040000000208040002ff02ff +02dc000002080400000002080400020000ff00ff00d90400020000000208040000000202 +04060200000004ff04ff04d9020000000405020204000000020204000209000d02ff02ff +02d000000202040000000202040002080000020d040002ea01030211010302330101021b +010102060101024001010230010102f700000202040000000202040002080000020d0400 +02ea010102020107020001010203010102010101020e010202020102021b0101020e0100 +020b01010206010102400101020c0104021e010102f70000020204000000020204000208 +0000020d040002ea010102050101020301010203010102010101020e010202020102022b +0101020b010102060101024e010102020101021d010102f7000002020400000002020400 +02080000020204060203040002ea010102050101020301010203010102010101020e0102 +020201020202010102000101020301030203010402020101020201030205010402010103 +020301010200010102030101020201030203010402060103020301010200010102070101 +020001010201010102030103020301010202010102000101020201010201010302020101 +020001010201010102030103020201010200010102010101020201030202010102020101 +02e6000002020400000004030208000002020400030400000203040002ea010102050101 +020401010202010002020101020e01000200010102000100020001010202010202000101 +020101010201010102010101020601010201010102010101020501010202010102010101 +020201020200010102020101020101010201010102010101020901010201010102020102 +020001010206010202000102020001010201010102010101020201010202010202000101 +020101010200010102000101020201020200010202000101020101010201010102010101 +02000101020101010201010102010101020101010202010102e6000004030101020b0000 +02030400030200000204040002ea010102050101020401010201010102020101020e0100 +020001010200010002000101020201010201010102010101020101010201010202050101 +020501010205010102060101020201010201010102020101020101010201010102010102 +020801010201010102020101020101010206010102010101020101010205010102020101 +020201010201010102010101020001010200010102020101020101010201010102050101 +02010102020301010201010102010101020101010202010002ea0103020b000002030400 +030200000204040002ea010102050101020501010200010002030101020e010002000101 +020001000200010102020101020101010201010502020103020301010202010402050101 +020301040202010102010101020201010201010502020103020601010201010102020101 +020101010206010102010101020101010202010402020101020201010201010102010101 +020001010200010102020101020101010201010102020104020101010204010102010105 +020201010200010102ea0103020b000002040400030000000205040002ea010102050101 +0205010302030101020e0100020101010201010102020101020101010201010102080102 +020201010201010102010101020501010202010102010101020201010201010102020101 +020101010208010202050101020101010202010102010101020601010201010102010101 +020101010201010102020101020201010201010102010101020101010200010102010101 +020101010201010102010101020101010201010102040101020101010206010102000100 +02eb0103020b000002040400030000000205040002ea0101020501010206010102040101 +020e01000201010102010101020201010201010102010101020201000205010102020101 +020101010201010102050101020201010201010102020101020101010202010102010101 +020201000205010102050101020101010202010102010101020601010201010102010101 +020101010201010102020101020201010201010102020101020701010201010102010101 +0201010102010101020101010204010102010101020201000203010202eb0103020b0000 +020500000206040002ea0101020501010206010102040101020e01000205010102020101 +020101010202010302020104020301010202010202000101020501020201010202000101 +020101040203010102020103020201040207010302030101020101010206010102010101 +020101010202010202000101020101010202010102010101020301050202010102010101 +0201010102020102020001010200010102040101020201030204010102ec0103020b0000 +020d040002ea01030211010302dd010102ed0103020b0000020d040002ff02e2010102ed +0103020b0000020d040002ff02ff02d20103020c040d02ff02ff02d3010302ff02ff02ee +010302ff02ff02ee0103020200ff00ff00e70400020201030202000004ff04ff04e70202 +010302ff02ff02ee0103020200ff00ff00e802020103020200ff00ff00e7070002020103 +0202000105ff05ff05e40701020201030202000105ff05ff05e407010202010302020001 +05ff05ff05e40701020201030202000105ff05ff05e40701020201030202000105ff05ff +05e407010202010302020001050b06040504060005030602051f06000502060005040600 +05270602050b06000506060005ff05ff0535060005020600050906020513070102020103 +02020001050b0600050f0600051f060005020600052c060005020600050a060005ff05ff +053d060005020600050b0600051307010202010302020001050b06000506060205050600 +050306020518060005020600050206020503060205020600050206000517060005020600 +050106000500060105020604050206020503060205020600050006010503060205ff05ff +052006000502060005020602050506000502060005000601050c07010202010302020001 +050b06000508060005050600050206000502060005180600050006000505060005020600 +050206000501060005020600051706000502060005010601050106000503060005060600 +05020600050206000501060105010600050106000502060005ff05ff051f060005020600 +0501060005020600050406000502060105010600050b07010202010302020001050b0603 +050506000505060005020600050206000518060005000600050506000502060005020600 +050106000500060005000600051706000502060005010600050206000503060005060600 +050206000502060005010600050206000501060005ff05ff052306040501060005020600 +050406000502060005020600050b07010202010302020001050b06000508060005050600 +050206040518060005000600050506000502060405010600050006000500060005170600 +050206000501060005020600050306000506060005020600050206000501060005020600 +0502060205ff05ff052006000502060005010604050406000502060005020600050b0701 +0202010302020001050b0600050806000505060005020600051d06000506060005020600 +050506000500060005000600051706000502060005010600050206000503060005060600 +050206000502060005010600050206000505060005ff05ff051f06000502060005010600 +050806000502060005020600050b07010202010302020001050b06000508060005050600 +050206000502060005190600050606000502060005020600050106000500060005000600 +051706000502060005010601050106000503060005060600050206000502060005010600 +05020600050106000502060005ff05ff051f060005020600050106000502060005040600 +0502060105010600050b07010202010302020001050b0600050806000505060005030602 +051a06000506060005030602050306000500060005190602050206000500060105050601 +050406000503060205020600050206000502060205ff05ff052006000502060005020602 +050506000502060005000601050c070102020103020200010576060005ff05ff055b0600 +050f07010202010302020001050a0606052a0606052a06060500060005ff05ff05450606 +050e0600050f07010202010302020001050a0606052a0606052a06060500060005ff05ff +05450606050e0600050f0701020201030202000105ff05ff05e407010202010302020001 +05ff05ff05e40701020201030202000105ff05ff05e40701020201030202000107ff07ff +07e6020201030202000007ff07ff07e702020103020205ff05ff05e802020103020205ff +05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff +05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff +05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff +05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff +05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff +05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff +05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff +05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff +05ff05e802020103020205ff05ff05e802020103020205ff05ff05e8020201030202051c +01020504010305c1080205040803051a0802057f01010505010205f00102050401030519 +0101052f020201030202050e01060508010005060101050f010205010102059b08060508 +0800050608010510080505040801054d010205240104050d0101051e0102052401020501 +0102059301060508010005060101051101030535020201030202050e0100050101010500 +010005070101050601000511010105010100059d08000501080105000800050708010506 +08000513080105060800054d0101050001010524010105000101050c0100051e01010500 +010105240101050101000595010005010101050001000507010105060100051101010501 +010105340202010302020510010105030103050201030503010105030103050801020500 +01010501010305000101050001000500010005020103058b080105030803050208030503 +080105030803050a080105030804054c0101050101050500010305000102050201030501 +01010500010205070101050101010500010305030104051d010105010105050001030500 +010205020103050101010500010205070102050001010501010305000101050001000500 +010005020103058301010503010305020103050301010503010305090101050101000500 +010305020105050101030521020201030202051001010506010105000101050101010502 +010105020101050101010507010005000100050001000505010105000105050001010501 +0101058a0801050608010500080105010801050208010502080105010801050908010502 +080105010801054c01000502010105000101050201000500010205000101050001010501 +010105010102050001000507010105010101050201010502010105010101051d01000502 +010105000101050201000500010205000101050001010501010105010102050001000507 +010005000100050001000505010105000105050001010501010105820101050601010500 +010105010101050201010502010105010101050801020504010105020101050001010501 +010105010101052002020103020205100100050401040500010105010101050201010501 +0106050701000500010205020104050001010500010005000107058a0800050408040500 +0801050108010502080105010806050908010501080105020801054b0101050201000501 +01010500010005000100050001010501010805010101050a010305040101050101010502 +0101051c010105020100050101010500010005000100050001010501010805010101050a +010005000102050201040500010105000100050001070582010005040104050001010501 +01010502010105010106050901020503010105040101050101060520020201030202050f +0101050201010501010105000101050201010501010105020101050b0101050001010501 +01010501010105010100050001000500010005000101058e080105020801050108010500 +0801050208010501080105020801050d08010502080105010801054c0101050101010501 +01020500010005010100050201000500010105050101050a010105060101050201010501 +0101051d010105010101050101020500010005010100050201000500010105050101050a +010105000101050101010501010105010100050001000500010005000101058601010502 +01010501010105000101050201010501010105020101050b010105010101050201010503 +0101050301010525020201030202050f0101050201010501010105000101050101010502 +010105020101050101010507010005010101050101010501010105000101050001000500 +01000500010105010101058a080105020801050108010500080105010801050208010502 +080105010801050908010502080105010801054c01010500010105020103050101010501 +0101050001010501010105010101050a0101050601010502010105010101051d01010500 +0101050201030501010105010101050001010501010105010101050a0100050101010501 +010105010101050001010500010005000100050001010501010105820101050201010501 +010105000101050101010502010105020101050101010507010105010101050201010502 +01020500010105000101050101010521020201030202050e01030502010a050101050501 +0103050701020500010105020107050001000500010105000103058a08030502080a0501 +0805050108030508080505010805054c0102050301010500010005000103050001020500 +010305010104050701030503010505010105051d01020503010105000100050001030500 +010205000103050101040507010205000101050201070500010005000101050001030582 +01030502010a050101050501010305090103050101050500010505010103052202020103 +020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103 +020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e802020103 +020205ff05ff05e8020201030202050201ff01ff01e205020202010302020503010000cb +0101008101010059010100c30101005801000711000005020202010302020503010000cb +0101008101010059010100c3010100580100070103060700030600010502020201030202 +0503010000cb010100810101000c0100002a0100001f010100c301010058010007010305 +0000070003060001050202020103020205030100000a010000130100000c0100000a0100 +000601020086010100810101000b0100000401010009010400010104000a010100020100 +001e0101002701000028010000040100006a0101000a0101004b01000701030500000701 +03050001050202020103020205030100000a010000130100000c0100000a010000080100 +0086010100810101000a01000004010000010100000801000002010000010100000d0100 +0001010000020100001d010100570100006a01010009010000010100004a010007010304 +000107010305000105020202010302020503010000080104000201020003010200020104 +000801040002010200020100000001010005010000030102007f01010081010100090100 +0005010000010100000c010000010100000d01000001010000030100001c010100080101 +000001000002010000000101000301020003010200030102000301020009010100000100 +0003010200020100000001010003010200020104000201020002010000000101005b0101 +0009010000010100004a0100070103040001050007010304000105020202010302020503 +0100000a01000003010000020100000101000002010000030100000c0100000301000002 +01000001010100010100000401000002010000020100007e010100810101000801000006 +010000010100000b010000020103000a01000001010000040100001b0101000801000000 +010000000100000101010001010000010100000201000001010000020100000401000002 +010000020100000801000000010000000100000101000002010000010101000101000004 +01000004010000030100000201000001010100010100005a01010009010000010100004a +01000701030300010501070103040001050202020103020205030100000a010000030100 +000201000001010000070100000c01000007010000010100000201000004010000020100 +00020100007e010100810101000701000007010000010100000b01000006010000090100 +0001010000050100001a0101000801000000010000000100000101000002010000010100 +000201000001010000080100000601000008010000000100000001000001010000020100 +00010100000201000004010000040100000301000002010000010100005e010100090100 +00010100004a01000701030300010502070103030001050202020103020205030100000a +0100000301040002010200040100000c0100000401030001010000020100000401000002 +0104007e010100810101000801000006010000010100000b010000060100000901000001 +010000040100001b01010008010000000100000001000001010000020100000101040002 +010200050100000301030008010000000100000001000001010000020100000101000002 +01000004010000040100000301000002010000010100005e01010009010000010100004a +01000701030200010503070103030001050202020103020205030100000a010000030100 +0009010000030100000c0100000301000002010000010100000201000004010000020100 +0082010100810101000901000005010000010100000a0100000301000002010000090100 +0001010000030100001c0101000801000000010000000100000101000002010000010100 +000901000004010000020100000201000008010000000100000001000001010000020100 +00010100000201000004010000040100000301000002010000010100005e010100090100 +00010100004a01000701030200010504070103020001050202020103020205030100000a +01000003010000020100000101000002010000030100000c010000030100000201000001 +010100010100000401000002010000020100007e010100810101000a0100000401000001 +01000003010100040100000301000002010000030101000301000001010000020100001d +010100080100000001000000010000010100000201000001010000020100000101000002 +010000040100000201000002010000080100000001000000010000010100000201000001 +0100000201000004010000040100000301000002010000010100005e0101000901000001 +0100004a01000701030100010505070103020001050202020103020205030100000b0101 +000201020003010200050101000b01010002010300010100000001010005010000030102 +007f010100810101000b0100000401010004010100040100000401020004010100040101 +00020100001e010100080100000001000000010000010100000201000002010200030102 +000501000003010300080100000001000000010000020102000201000002010000040100 +000501010002010200020100005e0101000a0101004b0100070103010001050607010301 +00010502020201030202050301000023010500a1010100810101000c0100002a0100001f +010100310105008b01010058010007010300000105070701030100010502020201030202 +0503010000cb0101008101010059010100c3010100580100070103000001050807010300 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001070b0300000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010000070d000105020202010302020503010000cb01010081010100590101 +00c30101005801000701030e000105020202010302020503010000cb0101008101010059 +010100c30101005801000701001005020202010302020503010000cb0101008101010059 +010100c30101005801000701000d070000010502020201030202050301ff01ff01ce0701 +0001050a070100010502020201030202050301ff01ff01ce07010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +070100010502020201030202050301ff01ff01ce07010001050a07010001050202020103 +0202050301ff01ff01ce07010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +01ff01ff01ce07010001050a070100010502020201030202050301ff01ff01ce07010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a0701000105020202010302020503010000cb01010081010100590101 +00c301010058010007010001050a0701000105020202010302020503010000cb01010081 +01010059010100c301010058010007010001050a07010001050202020103020205030100 +00cb0101008101010059010100c301010058010007010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a0701000105020202010302020503010000cb01010081010100590101 +00c301010058010007010001050a0701000105020202010302020503010000cb01010081 +01010059010100c301010058010007010001050a07010001050202020103020205030100 +00cb0101008101010059010100c301010058010007010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a0701000105020202010302020503010000cb01010081010100590101 +00c301010058010007010001050a0701000105020202010302020503010000cb01010081 +01010059010100c301010058010007010001050a07010001050202020103020205030100 +00cb0101008101010059010100c301010058010007010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a070100010502020201030202050301ff01ff01ce07010001050a0701 +00010502020201030202050301ff01ff01ce07010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +020201030202050301ff01ff01ce07010001050a070100010502020201030202050301ff +01ff01ce07010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a070100010502020201030202050301ff01ff01ce +07010001050a070100010502020201030202050301ff01ff01ce07010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a0701000105020202010302020503010000cb01010081010100590101 +00c301010058010007010001050a0701000105020202010302020503010000cb01010081 +01010059010100c301010058010007010001050a07010001050202020103020205030100 +00cb0101008101010059010100c301010058010007010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a0701000105020202010302020503010000cb01010081010100590101 +00c301010058010007010001050a0701000105020202010302020503010000cb01010081 +01010059010100c301010058010007010001050a07010001050202020103020205030100 +00cb0101008101010059010100c301010058010007010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a0701000105020202010302020503010000cb01010081010100590101 +00c301010058010007010001050a0701000105020202010302020503010000cb01010081 +01010059010100c301010058010007010001050a07010001050202020103020205030100 +00cb0101008101010059010100c301010058010007010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a070100010502020201030202050301ff01ff01ce07010001050a0701000105020202 +01030202050301ff01ff01ce07010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +050301ff01ff01ce07010001050a070100010502020201030202050301ff01ff01ce0701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a070100010502020201030202050301ff01ff01ce07010001050a +070100010502020201030202050301ff01ff01ce07010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a0701000105020202010302020503010000cb01010081010100590101 +00c301010058010007010001050a0701000105020202010302020503010000cb01010081 +01010059010100c301010058010007010001050a07010001050202020103020205030100 +00cb0101008101010059010100c301010058010007010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a0701000105020202010302020503010000cb01010081010100590101 +00c301010058010007010001050a0701000105020202010302020503010000cb01010081 +01010059010100c301010058010007010001050a07010001050202020103020205030100 +00cb0101008101010059010100c301010058010007010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +05020202010302020503010000cb0101008101010059010100c301010058010007010001 +050a0701000105020202010302020503010000cb0101008101010059010100c301010058 +010007010001050a0701000105020202010302020503010000cb01010081010100590101 +00c301010058010007010001050a0701000105020202010302020503010000cb01010081 +01010059010100c301010058010007010001050a07010001050202020103020205030100 +00cb0101008101010059010100c301010058010007010001050a07010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010001050a07010001 +0502020201030202050301ff01ff01ce07010001050a0701000105020202010302020503 +01ff01ff01ce07010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a0701000105020202010302020503010000cb +0101008101010059010100c301010058010007010001050a070100010502020201030202 +0503010000cb0101008101010059010100c301010058010007010001050a070100010502 +0202010302020503010000cb0101008101010059010100c301010058010007010001050a +0701000105020202010302020503010000cb0101008101010059010100c3010100580100 +07010001050a0701000105020202010302020503010000cb0101008101010059010100c3 +01010058010007010001050a0701000105020202010302020503010000cb010100810101 +0059010100c301010058010007010001050a070100010502020201030202050301ff01ff +01ce07010001050a070100010502020201030202050301ff01ff01ce07010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001050a0701 +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +0001050a0701000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010001050a0701000105020202010302020503010000cb0101008101010059 +010100c301010058010007010001050a0701000105020202010302020503010000cb0101 +008101010059010100c301010058010007010001050a0701000105020202010302020503 +010000cb0101008101010059010100c301010058010007010001050a0701000105020202 +010302020503010000cb0101008101010059010100c301010058010007010001070c0001 +05020202010302020503010000cb0101008101010059010100c301010058010007010000 +070d00010502020201030202050301ff01ff01ce0701030e000105020202010302020503 +01ff01ff01ce0701030e000105020202010302020503010000cb01010081010100590101 +00c30101005801000701030e000105020202010302020503010000cb0101008101010059 +010100c30101005801000701030e000105020202010302020503010000cb010100810101 +0059010100c30101005801000701030e000105020202010302020503010000cb01010081 +01010059010100c30101005801000701030e000105020202010302020503010000cb0101 +008101010059010100c30101005801000701030e000105020202010302020503010000cb +0101008101010059010100c30101005801000701030e0001050202020103020205030100 +00cb0101008101010059010100c30101005801000701030e000105020202010302020503 +010000cb0101008101010059010100c30101005801000701030e00010502020201030202 +0503010000cb0101008101010059010100c30101005801000701030e0001050202020103 +02020503010000cb0101008101010059010100c30101005801000701030e000105020202 +010302020503010000cb0101008101010059010100c30101005801000701030e00010502 +0202010302020503010000cb0101008101010059010100c30101005801000701030e0001 +05020202010302020503010000cb0101008101010059010100c30101005801000701030e +000105020202010302020503010000cb0101008101010059010100c30101005801000701 +030e000105020202010302020503010000cb0101008101010059010100c3010100580100 +0701030e000105020202010302020503010000cb0101008101010059010100c301010058 +01000701030e000105020202010302020503010000cb0101008101010059010100c30101 +005801000701030e000105020202010302020503010000cb0101008101010059010100c3 +0101005801000701030e000105020202010302020503010000cb01010081010100590101 +00c30101005801000701030e00010502020201030202050301ff01ff01ce0701030e0001 +0502020201030202050301ff01ff01ce0701001005020202010302020503010000cb0101 +008101010059010100c301010058010007010300000c0700000105020202010302020503 +010000cb0101008101010059010100c30101005801000701030000010508070103000001 +05020202010302020503010000cb0101008101010059010100c301010058010007010301 +0001050707010300000105020202010302020503010000cb0101008101010059010100c3 +010100580100070103010001050607010301000105020202010302020503010000cb0101 +008101010059010100c30101005801000701030200010505070103010001050202020103 +02020503010000cb0101008101010059010100c301010058010007010302000105040701 +0302000105020202010302020503010000cb0101008101010059010100c3010100580100 +070103030001050307010302000105020202010302020503010000cb0101008101010059 +010100c30101005801000701030300010502070103030001050202020103020205030100 +00cb0101008101010059010100c301010058010007010304000105010701030300010502 +0202010302020503010000cb0101008101010059010100c3010100580100070103040001 +050007010304000105020202010302020503010000cb0101008101010059010100c30101 +0058010007010305000007020304000105020202010302020503010000cb010100810101 +0059010100c3010100580100070103050000070103050001050202020103020205030100 +00cb0101008101010059010100c301010058010007010306070103050001050202020103 +02020503010000cb0101008101010059010100c301010058010007010306070003060001 +05020202010302020503010000cb0101008101010059010100c301010058010007010010 +05020202010302020503010000cb0101008101010059010100c301010058010007000011 +0502020201030202050207ff07ff07d30511020201030202050207ff07ff07d200000511 +02020103020205020701030d0000030000ff00ff00af03000001030c0001051102020103 +020205020701030b00010700030000ff00ff00ae070003000003030a0001051102020103 +0202050207010309000207010300000105ff05ff05ab0701030000050308000105110202 +010302020502070103070003050007010300000105ff05ff05ab07010300000105010003 +0306000105110202010302020502070103050003050207010300000105ff05ff05ab0701 +030000010503000303040001051102020103020205020701030300030504070103000001 +05ff05ff05ab070103000001050500030302000105110202010302020502070103010003 +050607010300000105ff05ff05ab07010300000105070003030000010511020201030202 +05020705050807010300000105ff05ff05ab070103000001050807030001051102020103 +02020502070103010703050607010300000105ff05ff05ab070103000001050707030300 +000105110202010302020502070103030703050407010300000105ff05ff05ab07010300 +0001050507030302000105110202010302020502070103050703050207010300000105ff +05ff05ab0701030000010503070303040001051102020103020205020701030707030500 +07010300000105ff05ff05ab070103000001050107030306000105110202010302020502 +0701030907040300000105ff05ff05ab0701030000010703030800010511020201030202 +05020701030b07020300000107ff07ff07ad030000010701030a00010511020201010004 +05020701030d07000300000007ff07ff07ae030000000700030c00010511000502020400 +0502070100ff00ff00d105110000020204000000020204000502070000ff00ff00d20511 +00000202040000000202040005ff05ff05e800000202040000000202040005ff05ff05e8 +00000202040000000202040005ff05ff05e8000002020400000002020400000502ff02ff +02dc00060202040000000208040002ff02ff02dc00000208040000000208040002ff02ff +02dc00000208040000000208040001ff01ff01dc0000020804000000040901ff01ff01dc +00000409 +%%EndData +end +%%PageTrailer +%%Trailer +%%BoundingBox: 0 0 377 205 +%%EOF -- cgit v1.2.3