aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tv/doc/src/tv_record_editor_mnesia.ps
diff options
context:
space:
mode:
authorErlang/OTP <[email protected]>2009-11-20 14:54:40 +0000
committerErlang/OTP <[email protected]>2009-11-20 14:54:40 +0000
commit84adefa331c4159d432d22840663c38f155cd4c1 (patch)
treebff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/tv/doc/src/tv_record_editor_mnesia.ps
downloadotp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz
otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2
otp-84adefa331c4159d432d22840663c38f155cd4c1.zip
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/tv/doc/src/tv_record_editor_mnesia.ps')
-rw-r--r--lib/tv/doc/src/tv_record_editor_mnesia.ps897
1 files changed, 897 insertions, 0 deletions
diff --git a/lib/tv/doc/src/tv_record_editor_mnesia.ps b/lib/tv/doc/src/tv_record_editor_mnesia.ps
new file mode 100644
index 0000000000..b4d19f963f
--- /dev/null
+++ b/lib/tv/doc/src/tv_record_editor_mnesia.ps
@@ -0,0 +1,897 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (./tv_record_editor_mnesia.tmp.eps)
+%%CreationDate: (Tue Jun 12 16:09:57 2001)
+%%BoundingBox: 0 41 300 330
+%%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 41 300 330
+userdict begin
+%%BeginData:
+DisplayImage
+0 41
+300.000000 289.000000
+12
+385 371
+1
+0
+0
+8
+ffffff
+000000
+d8d8d8
+c2c2c2
+6b6b6b
+d9d9d9
+b22222
+999999
+000a01ff016a000b0208040001ff016a00000208040000000208040002ff026a00000208
+0400000002080400020000ff0067040002000000020804000000020204060200000004ff
+0467020000000405020204000000020204000209000d02ff025e00000202040000000202
+040002080000020d04000242010302110103023701010211010102020101022301010231
+01010206010102090101023e00000202040000000202040002080000020d040002420101
+02020107020001010203010102010101020e010402230101020601050204010102020101
+02020100021f01010201010002130100020c0100020b01010206010102090101023e0000
+0202040000000202040002080000020d0400024201010205010102030101020301010201
+0101020e0101020101010222010102060101020801010206010102200100020001010212
+0101020b0101020b010102060101020a0100023e00000202040000000202040002080000
+02020406020304000242010102050101020301010203010102010101020e010102010101
+020201030203010302020103020201010200010102010104020601010205010402020101
+0200010402010103020201010200010102000101020c0100020001040201010302030104
+0200010402080104020101030203010102000101020301010202010302020100023f0000
+020204000000040302080000020204000304000002030400024201010205010102040101
+0202010002020101020e0101020101000202010102010101020101010201010102000101
+020101010201010102000101020001010201010102060101020401010201010102020101
+020101010202010102010101020101010200010102000101020f01010202010102010101
+0201010102050101020b0101020201010201010102020102020001010202010102010101
+020101010242000004030101020b00000203040003020000020404000242010102050101
+020401010201010102020101020e01030203010102010101020101010204010102010101
+020101020202010102010101020601040201010102010101020201010201010102020101
+02010101020101020214010102020101020101010201010202040101020b010102060101
+020201010201010102020101020101010201010102450103020b00000203040003020000
+020404000242010102050101020501010200010002030101020e01010200010102020105
+020101010204010102010101020101010203010102010101020601010204010102010101
+020201010201010102020101020101010201010102150101020201050202010302020101
+020b0101020301040202010102010101020201010201010502450103020b000002040400
+030000000205040002420101020501010205010302030101020e01010200010102020101
+020501010204010102010101020101010203010102010101020601010204010102010101
+020201010201010102020101020101010201010102150101020201010208010202010101
+020b010102020101020101010202010102010101020201010201010102490103020b0000
+02040400030000000205040002420101020501010206010102040101020e010102010101
+020101010202010002010101020201000200010102010101020101010203010102000102
+020601010204010102000102020201010201010102020101020101010201010102030101
+020f010102020101020201000205010102010101020b0101020201010201010102020101
+0201010102020101020101010202010002450103020b0000020500000206040002420101
+020501010206010102040101020e01010201010202010103020301030202010302020101
+020401010200010102060105020101010200010102020101020201020201010302020101
+0203010102100102020101030202010402030102020a0102020101020200010102010104
+020301010202010302460103020b0000020d040002420103021101030293010602680103
+020b0000020d040002ff02600103020b0000020d040002ff02600103020c040d02ff0261
+010302ff027c010302ff027c0103020200ff00750400020201030202000004ff04750202
+010302ff027c010302020500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000202010302020000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050001000202010302020500000005ff057201000500020201030202000005ff05740100
+0202010302020500000005ff057201000500020201030202000005ff0574010002020103
+02020500000005ff057201000500020201030202000005ff057401000202010302020500
+000005ff057201000500020201030202000005ff057401000202010302020500000005ff
+057201000500020201030202000005ff057401000202010302020500000005ff05720100
+0500020201030202000005ff057401000202010302020500000005ff0572010005000202
+01030202000005ff057401000202010302020500000005ff057201000500020201030202
+000005ff057401000202010302020500000005ff057201000500020201030202000005ff
+057401000202010302020500000005ff057201000500020201030202000005ff05740100
+02020103020205000000054e01ff0116050c010005000202010302020000054f01ff0116
+050d010002020103020205000000054e010107ff07120101050c01000500020201030202
+0000054f010107ff071100000101050d010002020103020205000000054e0101070100ff
+00100101050c010005000202010302020000054f0101070100ff00100101050d01000202
+0103020205000000054e0101070100ff00100101050c010005000202010302020000054f
+010107010000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+00000300000003000000030000000300000003000000030000d00101050d010002020103
+020205000000054e01010701034000cf0101050c010005000202010302020000054f0101
+07010000033e010000cf0101050d010002020103020205000000054e0101070103130100
+030b01010304010003140100030100cf0101050c010005000202010302020000054f0101
+0701000003120100030a0100031c01000300010000cf0101050d01000202010302020500
+0000050f0100050001010503010205020101050001000503010205250101070103010100
+030201000301010003000101030301010300010003020102030401000304010203020100
+03000101030301020303010103000100030100cf0101050c010005000202010302020000
+051001010501010005010100050201000501010005000100050001000501010005020100
+052401010701000003000100030201000301010103010100030101000301010103010100
+030201000301010403040100030201010301010003010100030201000301010003010101
+0300010000cf0101050d010002020103020205000000050f010005020100050501000501
+010005000100050001000501010005020100052401010701030101000302010003010100
+030201000301010003020100030101000302010003030100030601000302010003020100
+03010100030201000301010003020100030100cf0101050c010005000202010302020000
+051001000502010005020103050101000500010005000100050101040524010107010000
+030001000302010003010100030201000301010003020100030101040303010003060100
+03020100030201000301010403010100030201000300010000cf0101050d010002020103
+020205000000050f01000502010005010100050201000501010005000100050001000501
+010005280101070103010100030201000301010003020100030101000302010003010100
+03070100030601000302010003020100030101000305010003020100030100cf0101050c
+010005000202010302020000051001000502010005010100050201000501010005000100
+050001000501010005020100052401010701000003000100030101010301010003020100
+030101000301010103010100030201000303010003060100030201000302010003010100
+0302010003010100030101010300010000cf0101050d010002020103020205000000050f
+010005020100050201030501010005000100050001000502010205250101070103020101
+030001000301010003020100030201010300010003020102030401000306010003020100
+03020100030201020303010103000100030100cf0101050c010005000202010302020000
+054f010107010000033e010000cf0101050d010002020103020205000000054e01010701
+034000cf0101050c010005000202010302020000054f010107010000033e010000cf0101
+050d010002020103020205000000054e0101070103000100030001000300010003000100
+030001000300010003000100030001000300010003000100030001000300010003000100
+030001000300010003000100030001000300010003000100030001000300010003000100
+030001000300010003000100030001000300010003000100030001000300010003000100
+03000100030000cf0101050c010005000202010302020000054f0101070100ff00100101
+050d010002020103020205000000054e0101070100ff00100101050c0100050002020103
+02020000054f0101070100ff00100101050d010002020103020205000000054e01010701
+00ff00100101050c010005000202010302020000054f0101070000ff00110101050d0100
+02020103020205000000054e01ff0116050c010005000202010302020000054f01ff0116
+050d01000202010302020500000005ff057201000500020201030202000005ff05740100
+0202010302020500000005ff057201000500020201030202000005ff0574010002020103
+02020500000005ff057201000500020201030202000005ff057401000202010302020500
+000005ff057201000500020201030202000005ff057401000202010302020500000005ff
+057201000500020201030202000005ff057401000202010302020500000005ff05720100
+0500020201030202000005ff0574010002020103020205000000055007ff0712050e0100
+05000202010302020000055107ff07110000050f01000202010302020500000005500701
+00ff0010050e0100050002020103020200000551070100ff0010050f0100020201030202
+050000000550070100ff0010050e0100050002020103020200000551070100ff0010050f
+0100020201030202050000000550070100ff0010050e0100050002020103020200000551
+070100ff0010050f010002020103020205000000051a010005050100052d070100130100
+000b0101000401000014010000d1050e010005000202010302020000051b010005050100
+052d070100130100000a0100001c010000d1050f01000202010302020500000005100102
+050301010500010005020101050001000501010005000101050301020503010205030102
+051207010001010000020100000101000000010100030101000001000002010200040100
+00040102000201000000010100030102000301010000010000d1050e0100050002020103
+020200000510010005020100050101000501010105010100050101010501010105010100
+050101000502010005010100050201000501010005020100051107010001010000020100
+000101010001010000010100000101010001010000020100000101040004010000020101
+000101000001010000020100000101000001010100d1050f010002020103020205000000
+051301000501010005020100050101000502010005010100050501000502010005010100
+050501000515070100010100000201000001010000020100000101000002010000010100
+000201000003010000060100000201000002010000010100000201000001010000020100
+00d1050e0100050002020103020200000511010305010100050201000501010005020100
+050101000505010405020102050301020512070100010100000201000001010000020100
+000101000002010000010104000301000006010000020100000201000001010400010100
+0002010000d1050f010002020103020205000000050f0100050201000501010005020100
+050101000502010005010100050501000509010005050100051107010001010000020100
+000101000002010000010100000201000001010000070100000601000002010000020100
+00010100000501000002010000d1050e0100050002020103020200000510010005020100
+050101000501010105010100050101010501010005050100050201000501010005020100
+050101000502010005110701000101000001010100010100000201000001010000010101
+000101000002010000030100000601000002010000020100000101000002010000010100
+0001010100d1050f01000202010302020500000005100103050201010500010005020101
+050001000501010005060102050301020503010205120701000201010000010000010100
+000201000002010100000100000201020004010000060100000201000002010000020102
+000301010000010000d1050e0100050002020103020200000551070100ff0010050f0100
+020201030202050000000550070100ff0010050e01000500020201030202000005510701
+00ff0010050f0100020201030202050000000550070100ff0010050e0100050002020103
+020200000551070100ff0010050f0100020201030202050000000550070100ff0010050e
+0100050002020103020200000551070100ff0010050f0100020201030202050000000550
+070100ff0010050e0100050002020103020200000551070000ff0011050f010002020103
+02020500000005ff057201000500020201030202000005ff057401000202010302020500
+000005ff057201000500020201030202000005ff057401000202010302020500000005ff
+057201000500020201030202000005ff057401000202010302020500000005ff05720100
+0500020201030202000005ff057401000202010302020500000005ff0572010005000202
+01030202000005ff057401000202010302020500000005ff057201000500020201030202
+000005ff057401000202010302020500000005ff057201000500020201030202000005ff
+0574010002020103020205000000055007ff0712050e0100050002020103020200000551
+07ff07110000050f0100020201030202050000000550070100ff0010050e010005000202
+0103020200000551070100ff0010050f0100020201030202050000000550070100ff0010
+050e0100050002020103020200000551070100ff0010050f010002020103020205000000
+0550070100ff0010050e0100050002020103020200000551070100ff0010050f01000202
+010302020500000005190100052201000511070100130100000b01010004010000140100
+00d1050e010005000202010302020000053e01000511070100130100000a0100001c0100
+00d1050f010002020103020205000000050f0104050201020502010005000101050a0102
+05030102050301010500010005020102050b070100010100000201000001010000000101
+000301010000010000020102000401000004010200020100000001010003010200030101
+0000010000d1050e01000500020201030202000005140100050401000502010105010100
+0508010005020100050101000502010005010100050101010501010005020100050a0701
+000101000002010000010101000101000001010000010101000101000002010000010104
+0004010000020101000101000001010000020100000101000001010100d1050f01000202
+010302020500000005120100050501000502010005020100050801000505010005020100
+05010100050201000501010005020100050a070100010100000201000001010000020100
+000101000002010000010100000201000003010000060100000201000002010000010100
+00020100000101000002010000d1050e0100050002020103020200000512010005060100
+0502010005020100050801000505010005020100050101000502010005010104050a0701
+000101000002010000010100000201000001010000020100000101040003010000060100
+000201000002010000010104000101000002010000d1050f010002020103020205000000
+051001000507010005020100050201000508010005050100050201000501010005020100
+05010100050e070100010100000201000001010000020100000101000002010000010100
+0007010000060100000201000002010000010100000501000002010000d1050e01000500
+020201030202000005100100050801000502010105010100050801000502010005010100
+0502010005010100050101010501010005020100050a0701000101000001010100010100
+000201000001010000010101000101000002010000030100000601000002010000020100
+0001010000020100000101000001010100d1050f010002020103020205000000050f0104
+050401000502010005000101050a010205030102050301010500010005020102050b0701
+000201010000010000010100000201000002010100000100000201020004010000060100
+000201000002010000020102000301010000010000d1050e010005000202010302020000
+051e0100050401050526070100ff0010050f010002020103020205000000051d01000531
+070100ff0010050e010005000202010302020000051e01000531070100ff0010050f0100
+020201030202050000000550070100ff0010050e01000500020201030202000005510701
+00ff0010050f0100020201030202050000000550070100ff0010050e0100050002020103
+020200000551070100ff0010050f0100020201030202050000000550070100ff0010050e
+0100050002020103020200000551070000ff0011050f01000202010302020500000005ff
+057201000500020201030202000005ff057401000202010302020500000005ff05720100
+0500020201030202000005ff057401000202010302020500000005ff0572010005000202
+01030202000005ff057401000202010302020500000005ff057201000500020201030202
+000005ff057401000202010302020500000005ff057201000500020201030202000005ff
+057401000202010302020500000005ff057201000500020201030202000005ff05740100
+0202010302020500000005ff057201000500020201030202000005ff0574010002020103
+020205000000055007ff0712050e010005000202010302020000055107ff07110000050f
+0100020201030202050000000550070100ff0010050e0100050002020103020200000551
+070100ff0010050f0100020201030202050000000550070100ff0010050e010005000202
+0103020200000551070100ff0010050f0100020201030202050000000550070100ff0010
+050e0100050002020103020200000551070100ff0010050f010002020103020205000000
+05180100050c01000528070100130100000b0101000401000014010000d1050e01000500
+020201030202000005190100050c01000528070100130100000a0100001c010000d1050f
+010002020103020205000000051001020502010405020102050201040502010205200701
+000101000002010000010100000001010003010100000100000201020004010000040102
+000201000000010100030102000301010000010000d1050e010005000202010302020000
+0510010005020100050301000503010005020100050301000503010005020100051f0701
+000101000002010000010101000101000001010000010101000101000002010000010104
+0004010000020101000101000001010000020100000101000001010100d1050f01000202
+0103020205000000050f01000507010005070100050301000503010005020100051f0701
+000101000002010000010100000201000001010000020100000101000002010000030100
+0006010000020100000201000001010000020100000101000002010000d1050e01000500
+02020103020200000511010205040100050401030503010005030104051f070100010100
+000201000001010000020100000101000002010000010104000301000006010000020100
+0002010000010104000101000002010000d1050f01000202010302020500000005130100
+050301000503010005020100050301000503010005230701000101000002010000010100
+000201000001010000020100000101000007010000060100000201000002010000010100
+000501000002010000d1050e010005000202010302020000051001000502010005030100
+0503010005020100050301000503010005020100051f0701000101000001010100010100
+000201000001010000010101000101000002010000030100000601000002010000020100
+0001010000020100000101000001010100d1050f01000202010302020500000005100102
+050501010502010305040101050201020520070100020101000001000001010000020100
+000201010000010000020102000401000006010000020100000201000002010200030101
+0000010000d1050e0100050002020103020200000551070100ff0010050f010002020103
+0202050000000550070100ff0010050e0100050002020103020200000551070100ff0010
+050f0100020201030202050000000550070100ff0010050e010005000202010302020000
+0551070100ff0010050f0100020201030202050000000550070100ff0010050e01000500
+02020103020200000551070100ff0010050f0100020201030202050000000550070100ff
+0010050e0100050002020103020200000551070000ff0011050f01000202010302020500
+000005ff057201000500020201030202000005ff057401000202010302020500000005ff
+057201000500020201030202000005ff057401000202010302020500000005ff05720100
+0500020201030202000005ff057401000202010302020500000005ff0572010005000202
+01030202000005ff057401000202010302020500000005ff057201000500020201030202
+000005ff057401000202010302020500000005ff057201000500020201030202000005ff
+057401000202010302020500000005ff057201000500020201030202000005ff05740100
+02020103020205000000055007ff0712050e010005000202010302020000055107ff0711
+0000050f0100020201030202050000000550070100ff0010050e01000500020201030202
+00000551070100ff0010050f0100020201030202050000000550070100ff0010050e0100
+050002020103020200000551070100ff0010050f01000202010302020500000005500701
+00ff0010050e0100050002020103020200000551070100ff0010050f0100020201030202
+05000000052d01000521070100130100000b0101000401000014010000d1050e01000500
+0202010302020000052e01000521070100130100000a0100001c010000d1050f01000202
+010302020500000005100102050301020502010005020100050101000500010105020104
+050101000500010105020100050201000511070100010100000201000001010000000101
+000301010000010000020102000401000004010200020100000001010003010200030101
+0000010000d1050e01000500020201030202000005100100050201000501010005020100
+050101000502010005010101050101000503010005030101050101000501010005020100
+051107010001010000020100000101010001010000010100000101010001010000020100
+000101040004010000020101000101000001010000020100000101000001010100d1050f
+010002020103020205000000050f01000505010005020100050101000502010005010100
+050201000503010005030100050601000501010005110701000101000002010000010100
+000201000001010000020100000101000002010000030100000601000002010000020100
+0001010000020100000101000002010000d1050e01000500020201030202000005100100
+050501000502010005010100050201000501010005020100050301000503010005060100
+050101000511070100010100000201000001010000020100000101000002010000010104
+0003010000060100000201000002010000010104000101000002010000d1050f01000202
+0103020205000000050f0100050501000502010005010100050201000501010005020100
+050301000503010005070100050001000511070100010100000201000001010000020100
+000101000002010000010100000701000006010000020100000201000001010000050100
+0002010000d1050e01000500020201030202000005100100050201000501010005020100
+050101000501010105010100050201000503010005030100050701010512070100010100
+000101010001010000020100000101000001010100010100000201000003010000060100
+00020100000201000001010000020100000101000001010100d1050f0100020201030202
+050000000510010205030102050301010500010005010100050201000504010105010100
+050801000512070100020101000001000001010000020100000201010000010000020102
+0004010000060100000201000002010000020102000301010000010000d1050e01000500
+0202010302020000053d01000512070100ff0010050f0100020201030202050000000539
+0100050001000513070100ff0010050e010005000202010302020000053b010005140701
+00ff0010050f0100020201030202050000000550070100ff0010050e0100050002020103
+020200000551070100ff0010050f0100020201030202050000000550070100ff0010050e
+0100050002020103020200000551070100ff0010050f0100020201030202050000000550
+070100ff0010050e0100050002020103020200000551070000ff0011050f010002020103
+02020500000005ff057201000500020201030202000005ff057401000202010302020500
+000005ff057201000500020201030202000005ff057401000202010302020500000005ff
+057201000500020201030202000005ff057401000202010302020500000005ff05720100
+0500020201030202000005ff057401000202010302020500000005ff0572010005000202
+01030202000005ff057401000202010302020500000005ff057201000500020201030202
+000005ff057401000202010302020500000005ff057201000500020201030202000005ff
+057401000202010302020500000005ff057201000500020201030202000005ff05740100
+0202010302020500000005ff057201000500020201030202000005ff0574010002020103
+02020500000005ff057201000500020201030202000005ff057401000202010302020500
+000005ff052f000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+0500000005000000050b01000500020201030202000005ff052f00000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+0500000005000000050000000500000005000000050000000500000005000100050b0100
+0202010302020500000005ff052f000005340100050b01000500020201030202000005ff
+052f000005360100050b01000202010302020500000005ff052f0000052a060005080100
+050b01000500020201030202000005ff052f0000050906000502060005110600050a0600
+05080100050b01000202010302020500000005ff052f0000050806010501060005110600
+050b060005060100050b01000500020201030202000005ff052f00000509060105010600
+05020602050206000502060005010604050a060005060100050b01000202010302020500
+000005ff052f000005080600050006000500060005010600050206000501060005020600
+05030600050d060005040100050b01000500020201030202000005ff052f000005090600
+05000600050006000501060005020600050206000500060005040600050e060005040100
+050b01000202010302020500000005ff052f000005080600050106010501060405030600
+05050600050d060005040100050b01000500020201030202000005ff052f000005090600
+0501060105010600050606000500060005040600050c060005060100050b010002020103
+02020500000005ff052f0000050806000502060005010600050206000501060005020600
+05030600050b060005060100050b01000500020201030202000005ff052f000005090600
+05020600050206020502060005020600050406010508060005080100050b010002020103
+02020500000005ff052f0000052a060005080100050b01000500020201030202000005ff
+052f000005360100050b01000202010302020500000005ff052f000005340100050b0100
+0500020201030202000005ff052f000005360100050b01000202010302020500000005ff
+052f000005340100050b01000500020201030202000005ff052f000005360100050b0100
+0202010302020500000005ff052f00000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+05000100050001000500010005000100050b01000500020201030202000005ff052f0000
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+05000100050b01000202010302020500000005ff057201000500020201030202000005ff
+057401000202010302020500000005ff057201000500020201030202000005ff05740100
+0202010302020500000005ff057201000500020201030202000005ff0574010002020103
+02020500000005ff057201000500020201030202000005ff057401000202010302020500
+000005ff057201000500020201030202000005ff057401000202010302020500000005ff
+057201000500020201030202000005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100020201030202050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500020201030202050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500020201030202000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+0000050001000202010302020500000005ff057201000500020201030202000005ff0574
+01000202010302020500000005ff057201000500020201030202000005ff057401000202
+010302020500000005ff057201000500020201030202000005ff05740100020201030202
+0500000005ff057201000500020201030202000005ff0574010002020103020205000000
+05ff057201000500020201030202000005ff057401000202010302020500000005ff0572
+01000500020201030202000005ff057401000202010302020500000005ff057201000500
+020201030202000005ff057401000202010302020500000005ff05720100050002020103
+0202000005ff057401000202010302020500000005ff0572010005000202010302020000
+05ff057401000202010302020500000005ff057201000500020201030202000005ff0574
+01000202010302020500000005ff057201000500020201030202000005ff057401000202
+010302020500000005ff0572010005000202010302020000052e00000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000517000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005170000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+0528010002020103020205000000052c0000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000051700000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000517000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005280100050002020103
+02020000052e0000054c010005170000054c010005170000054c01000528010002020103
+020205000000052c0000054c010005170000054c010005170000054c0100052801000500
+0202010302020000052e0000054c010005170000054c010005170000054c010005280100
+02020103020205000000052c0000054c010005170000054c010005170000054c01000528
+010005000202010302020000052e0000054c010005170000054c010005170000054c0100
+0528010002020103020205000000052c0000054c010005170000054c010005170000054c
+01000528010005000202010302020000052e0000054c010005170000054c010005170000
+054c01000528010002020103020205000000052c000005110104051f0100051401000517
+000005120102051f01020513010005170000051401030519010005180100052801000500
+0202010302020000052e0000051201000521010005150100051700000510010005020100
+052001000514010005170000051301000502010005180100051901000528010002020103
+020205000000052c00000513010005030100050001010503010205030102050201000500
+010105020104051201000517000005110100050201000502010205020100050001010503
+010205030102050501000513010005170000051401000502010005020102050301020503
+010205020104051601000528010005000202010302020000052e00000512010005030101
+050101000501010005020100050101000502010005010101050101000503010005150100
+051700000510010005050100050201000501010105010100050101000502010005010100
+050201000504010005140100051700000513010005020100050101000502010005010100
+05020100050101000502010005030100051901000528010002020103020205000000052c
+000005130100050301000502010005010100050501000502010005010100050701000514
+010005170000051101000509010005010100050201000501010005050100050201000504
+010005130100051700000514010305020100050201000501010005050100050201000503
+0100051801000528010005000202010302020000052e0000051201000503010005020100
+050201020502010405010100050701000515010005170000051001000506010305010100
+050201000501010005050104050401000514010005170000051301000501010005020104
+050201020502010405030100051901000528010002020103020205000000052c00000513
+010005030100050201000505010005010100050501000507010005140100051700000511
+010005020100050101000502010005010100050201000501010005050100050801000513
+010005170000051401000502010005010100050901000501010005070100051801000528
+010005000202010302020000052e00000512010005030100050201000501010005020100
+050101000502010005010100050701000515010005170000051001000502010005010100
+050201000501010005020100050101000502010005010100050201000504010005140100
+051700000513010005020100050101000502010005010100050201000501010005020100
+05030100051901000528010002020103020205000000052c000005110104050101000502
+010005020102050301020502010005080101051201000517000005120102050301030501
+010005020100050201020503010205050100051301000517000005140100050201000502
+0102050301020503010205050101051601000528010005000202010302020000052e0000
+054c010005170000054c010005170000054c01000528010002020103020205000000052c
+0000054c010005170000054c010005170000054c01000528010005000202010302020000
+052e0000054c010005170000054c010005170000054c0100052801000202010302020500
+0000052c0000054c010005170000054c010005170000054c010005280100050002020103
+02020000052e0000054c010005170000054c010005170000054c01000528010002020103
+020205000000052c0000054c010005170000054c010005170000054c0100052801000500
+0202010302020000052e0000054c010005170000054c010005170000054c010005280100
+02020103020205000000052c0000054c010005170000054c010005170000054c01000528
+010005000202010302020000052e0000054c010005170000054c010005170000054c0100
+0528010002020103020205000000052c0000054c010005170000054c010005170000054c
+01000528010005000202010302020000052e000005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005170000
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100051700000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000528010002020103
+020205000000052c00000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000517000005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005170000050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100052801000500020201030202000005ff0574
+01000202010302020500000005ff057201000500020201030202000005ff057401000202
+010302020500000005ff057201000500020201030202000005ff05740100020201030202
+0500000005ff057201000500020201030202000005ff0574010002020103020205000000
+05ff057201000500020201030202000005ff057401000202010302020500000005ff0572
+01000500020201030202000005ff057401000202010302020500000005ff057201000500
+020201030202000005ff057401000202010302020500000005ff05720100050002020103
+0202000005ff057401000202010100040500000005ff0572010005000005020204000000
+05ff057401000000020204000000020204000500000005ff057201000500000002020400
+000002020400000005ff0574010000000202040000000202040005000000050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050000000202040000000202040000000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010000000202040000000202
+0400000502ff026a00060202040000000208040002ff026a000002080400000002080400
+02ff026a00000208040000000208040001ff016a0000020804000000040901ff016a0000
+0409
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 41 300 330
+%%EOF