rghost-ruby1.9-beta 0.8.7.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rghost.rb +18 -0
- data/lib/rghost/border.rb +44 -0
- data/lib/rghost/callback.rb +58 -0
- data/lib/rghost/circle.rb +102 -0
- data/lib/rghost/color.rb +175 -0
- data/lib/rghost/constants.rb +626 -0
- data/lib/rghost/convert.rb +43 -0
- data/lib/rghost/cursor.rb +124 -0
- data/lib/rghost/dash.rb +59 -0
- data/lib/rghost/document.rb +546 -0
- data/lib/rghost/document_callback_facade.rb +64 -0
- data/lib/rghost/dsc_entry.rb +20 -0
- data/lib/rghost/dynamic_document_callback.rb +15 -0
- data/lib/rghost/eps.rb +31 -0
- data/lib/rghost/font.rb +48 -0
- data/lib/rghost/font_map.rb +54 -0
- data/lib/rghost/frame.rb +105 -0
- data/lib/rghost/function.rb +38 -0
- data/lib/rghost/gif.rb +41 -0
- data/lib/rghost/graphic.rb +26 -0
- data/lib/rghost/grid/base_grid.rb +228 -0
- data/lib/rghost/grid/callback_facade.rb +136 -0
- data/lib/rghost/grid/csv_grid.rb +51 -0
- data/lib/rghost/grid/dynamic_callback.rb +12 -0
- data/lib/rghost/grid/field_format.rb +43 -0
- data/lib/rghost/grid/grid.rb +15 -0
- data/lib/rghost/grid/header.rb +120 -0
- data/lib/rghost/grid/matrix.rb +10 -0
- data/lib/rghost/grid/rails_grid.rb +74 -0
- data/lib/rghost/grid/static_callback.rb +13 -0
- data/lib/rghost/grid/style/border_lines.rb +44 -0
- data/lib/rghost/grid/style/bottom_lines.rb +28 -0
- data/lib/rghost/grid/style/old_forms.rb +28 -0
- data/lib/rghost/grid/style/style.rb +8 -0
- data/lib/rghost/gs_alone.rb +25 -0
- data/lib/rghost/helpers.rb +13 -0
- data/lib/rghost/horizontal_line.rb +45 -0
- data/lib/rghost/how_to.rb +75 -0
- data/lib/rghost/image.rb +26 -0
- data/lib/rghost/jpeg.rb +39 -0
- data/lib/rghost/line.rb +89 -0
- data/lib/rghost/line_width.rb +28 -0
- data/lib/rghost/load.rb +43 -0
- data/lib/rghost/newpath.rb +19 -0
- data/lib/rghost/paper.rb +147 -0
- data/lib/rghost/parse_text.rb +53 -0
- data/lib/rghost/pdf_security.rb +36 -0
- data/lib/rghost/point.rb +23 -0
- data/lib/rghost/point_with_command.rb +17 -0
- data/lib/rghost/polygon.rb +75 -0
- data/lib/rghost/ps/AdobeExpert.enc +258 -0
- data/lib/rghost/ps/AdobeLatinEncoding.enc +258 -0
- data/lib/rghost/ps/Bengali.enc +386 -0
- data/lib/rghost/ps/CodePage1250.enc +258 -0
- data/lib/rghost/ps/CodePage1251.enc +258 -0
- data/lib/rghost/ps/CodePage1252.enc +258 -0
- data/lib/rghost/ps/CodePage1253.enc +258 -0
- data/lib/rghost/ps/CodePage1254.enc +258 -0
- data/lib/rghost/ps/CodePage1256.enc +258 -0
- data/lib/rghost/ps/CodePage1257.enc +258 -0
- data/lib/rghost/ps/CodePage1258.enc +258 -0
- data/lib/rghost/ps/CodePage874.enc +258 -0
- data/lib/rghost/ps/Fontmap +5 -0
- data/lib/rghost/ps/IsoLatin.enc +352 -0
- data/lib/rghost/ps/MacCentralEuropean.enc +258 -0
- data/lib/rghost/ps/MacCyrillice.desnc +258 -0
- data/lib/rghost/ps/MacGreek.enc +258 -0
- data/lib/rghost/ps/MacHebrew.enc +258 -0
- data/lib/rghost/ps/TeX-CorkEncoding.enc +258 -0
- data/lib/rghost/ps/TeX-LGR-Greek.enc +258 -0
- data/lib/rghost/ps/TeX-T2AModified2Encoding.enc +258 -0
- data/lib/rghost/ps/TeX-T2BAdobeEncoding.enc +258 -0
- data/lib/rghost/ps/TeX-T2CAdobeEncoding.enc +258 -0
- data/lib/rghost/ps/TeX-X2AdobeEncoding.enc +258 -0
- data/lib/rghost/ps/TeX-XL2encoding.enc +258 -0
- data/lib/rghost/ps/TeXMathExtensionEncoding.enc +258 -0
- data/lib/rghost/ps/TeXMathItalicEncoding.enc +258 -0
- data/lib/rghost/ps/TeXMathSymbolEncoding.enc +258 -0
- data/lib/rghost/ps/US-ASCII.enc +258 -0
- data/lib/rghost/ps/UTF-8.enc +3 -0
- data/lib/rghost/ps/_cusor.ps +46 -0
- data/lib/rghost/ps/basic.ps +25 -0
- data/lib/rghost/ps/begin_document.ps +8 -0
- data/lib/rghost/ps/callbacks.ps +175 -0
- data/lib/rghost/ps/code128.font +344 -0
- data/lib/rghost/ps/code39.font +195 -0
- data/lib/rghost/ps/cursor.ps +106 -0
- data/lib/rghost/ps/datagrid.ps +55 -0
- data/lib/rghost/ps/developer.ps +237 -0
- data/lib/rghost/ps/ean.font +150 -0
- data/lib/rghost/ps/eps.ps +42 -0
- data/lib/rghost/ps/font.ps +38 -0
- data/lib/rghost/ps/frame.ps +16 -0
- data/lib/rghost/ps/gif.ps +150 -0
- data/lib/rghost/ps/horizontal_line.ps +4 -0
- data/lib/rghost/ps/i25.font +103 -0
- data/lib/rghost/ps/jpeg.ps +122 -0
- data/lib/rghost/ps/link.ps +22 -0
- data/lib/rghost/ps/paper.ps +8 -0
- data/lib/rghost/ps/rect_link.ps +17 -0
- data/lib/rghost/ps/rectangle.ps +5 -0
- data/lib/rghost/ps/rghost_default_template.eps +1532 -0
- data/lib/rghost/ps/row.ps +4 -0
- data/lib/rghost/ps/show.ps +21 -0
- data/lib/rghost/ps/table_callbacks.ps +96 -0
- data/lib/rghost/ps/text.ps +63 -0
- data/lib/rghost/ps/textarea.ps +11 -0
- data/lib/rghost/ps/type.ps +1 -0
- data/lib/rghost/ps/unit.ps +3 -0
- data/lib/rghost/ps/vertical_line.ps +12 -0
- data/lib/rghost/ps/virtual_pages.ps +55 -0
- data/lib/rghost/ps_facade.rb +253 -0
- data/lib/rghost/ps_object.rb +55 -0
- data/lib/rghost/rectangle_link.rb +65 -0
- data/lib/rghost/rgengine.so +0 -0
- data/lib/rghost/ruby_ghost_config.rb +243 -0
- data/lib/rghost/ruby_ghost_engine.rb +156 -0
- data/lib/rghost/ruby_ghost_version.rb +8 -0
- data/lib/rghost/ruby_to_ps.rb +78 -0
- data/lib/rghost/scale.rb +29 -0
- data/lib/rghost/shape_content.rb +23 -0
- data/lib/rghost/show.rb +88 -0
- data/lib/rghost/static_document_callback.rb +18 -0
- data/lib/rghost/text.rb +44 -0
- data/lib/rghost/text_in.rb +51 -0
- data/lib/rghost/text_link_in.rb +42 -0
- data/lib/rghost/textarea.rb +88 -0
- data/lib/rghost/units.rb +82 -0
- data/lib/rghost/variable.rb +12 -0
- data/lib/rghost/vertical_line.rb +37 -0
- data/lib/rghost/virtual_pages.rb +42 -0
- metadata +185 -0
@@ -0,0 +1,36 @@
|
|
1
|
+
|
2
|
+
class RGhost::PdfSecurity
|
3
|
+
PERMISSION_VALUES={
|
4
|
+
:base => -4,
|
5
|
+
:print => -4,
|
6
|
+
:modify => -8,
|
7
|
+
:copy => -16,
|
8
|
+
:annotate => -32,
|
9
|
+
:interactive => -256,
|
10
|
+
:copy_access => -512,
|
11
|
+
:assemble => -1024,
|
12
|
+
:high_quality_print => -2048,
|
13
|
+
:all => -3904
|
14
|
+
|
15
|
+
}
|
16
|
+
attr_accessor :owner_password,:user_password,:key_length
|
17
|
+
def initialize
|
18
|
+
@permission_value=PERMISSION_VALUES[:all]
|
19
|
+
@key_lenght=128
|
20
|
+
@owner_password="unknow"
|
21
|
+
@user_password="unknow"
|
22
|
+
end
|
23
|
+
def disable(*permissions)
|
24
|
+
@permission_value=permissions.map{|p| PERMISSION_VALUES[p] }.inject(0){|n,i| i+=n}
|
25
|
+
end
|
26
|
+
def gs_params
|
27
|
+
"-sOwnerPassword##{clear_space(@owner_password)} -sUserPassword##{clear_space(@user_password)} -dEncryptionR#3 -dKeyLength##{@key_lenght} -dPermissions##{@permission_value}"
|
28
|
+
end
|
29
|
+
private
|
30
|
+
|
31
|
+
def clear_space(value)
|
32
|
+
value.to_s.gsub(/([^\w])/,'')
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
|
data/lib/rghost/point.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require "rghost/ps_object"
|
2
|
+
require "rghost/units"
|
3
|
+
|
4
|
+
#Creates one point using default unit defined in RGhost::Config::GS[:unit]
|
5
|
+
class RGhost::Point < RGhost::PsObject
|
6
|
+
attr_accessor :x,:y
|
7
|
+
|
8
|
+
def initialize(x,y)
|
9
|
+
if x.is_a? Hash
|
10
|
+
point=x
|
11
|
+
@x,@y=point[:x],point[:y]
|
12
|
+
else
|
13
|
+
@x,@y=x,y
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def ps
|
18
|
+
"#{RGhost::Units::parse(@x)} #{RGhost::Units::parse(@y)} "
|
19
|
+
end
|
20
|
+
|
21
|
+
|
22
|
+
end
|
23
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require "rghost/ps_object"
|
2
|
+
require "rghost/units"
|
3
|
+
|
4
|
+
class RGhost::PointWithCommand #:nodoc:
|
5
|
+
DEFAULT_POINT={:x => :limit_left , :y => :current_row}
|
6
|
+
|
7
|
+
def self.to(command,point={})
|
8
|
+
|
9
|
+
p=DEFAULT_POINT.dup.merge(point)
|
10
|
+
|
11
|
+
p=RGhost::Point.new(p[:x],p[:y])
|
12
|
+
RGhost::PsObject.new "#{p.ps}#{command}"
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
16
|
+
|
17
|
+
|
@@ -0,0 +1,75 @@
|
|
1
|
+
#Draw one shape based in relative node points.
|
2
|
+
#===Options
|
3
|
+
#
|
4
|
+
#* <tt>:x and :y</tt> - Initial position.
|
5
|
+
#* <tt>:content</tt> - Facade to ShapeContent with same parameters.
|
6
|
+
#* <tt>:border</tt> - Facade to Border with same parameters.
|
7
|
+
#===Examples
|
8
|
+
#
|
9
|
+
# doc.polygon :x => 3.5, :y => 5.5 do
|
10
|
+
# node :x => 4, :y => 0
|
11
|
+
# node :x => 0, :y => -4
|
12
|
+
# node :x => -4, :y => 0
|
13
|
+
# node :x => 0, :y => 4
|
14
|
+
# end
|
15
|
+
#
|
16
|
+
#link:images/polygon01.png
|
17
|
+
#
|
18
|
+
# doc.polygon :x => 3.5, :y => 4.5 do
|
19
|
+
# node :x => 2, :y => 2
|
20
|
+
# node :x => 2, :y => -2
|
21
|
+
# node :x => -2, :y => -2
|
22
|
+
# end
|
23
|
+
#
|
24
|
+
#link:images/polygon02.png
|
25
|
+
#
|
26
|
+
# doc.polygon :x => 1, :y => 5, :border => {:width => 2, :linejoin => 1} do
|
27
|
+
# node :x => 2, :y => 2/2
|
28
|
+
# node :x => 2*2,:y => -2
|
29
|
+
# node :x => -1, :y => -3
|
30
|
+
# node :x => 2, :y => 1
|
31
|
+
# node :x => 3, :y => 2
|
32
|
+
# end
|
33
|
+
#
|
34
|
+
#link:images/polygon03.png
|
35
|
+
class RGhost::Polygon < RGhost::PsObject
|
36
|
+
attr_reader :points
|
37
|
+
|
38
|
+
DEFAULT_OPTIONS={
|
39
|
+
:x => :limit_left,
|
40
|
+
:y => :current_row,
|
41
|
+
:content => RGhost::ShapeContent::DEFAULT_OPTIONS,
|
42
|
+
:border => RGhost::Border::DEFAULT_OPTIONS
|
43
|
+
|
44
|
+
|
45
|
+
}
|
46
|
+
def initialize(options={},&block)
|
47
|
+
super(''){}
|
48
|
+
|
49
|
+
@options = DEFAULT_OPTIONS.dup.merge(options)
|
50
|
+
@points=[]
|
51
|
+
instance_eval(&block) if block
|
52
|
+
end
|
53
|
+
#Creates new relative point by :x => 2 and :y => 4. Used as instance_eval
|
54
|
+
def node(point)
|
55
|
+
@points << point
|
56
|
+
end
|
57
|
+
|
58
|
+
def ps
|
59
|
+
graph=RGhost::Graphic.new
|
60
|
+
graph.set RGhost::Cursor.moveto(@options)
|
61
|
+
graph.set RGhost::Border.new(@options[:border]) if @options[:border]
|
62
|
+
|
63
|
+
@points.each{|p| graph.set RGhost::Line.rlineto(p) }
|
64
|
+
|
65
|
+
graph.raw :closepath
|
66
|
+
#graph.raw :gsave
|
67
|
+
graph.set RGhost::ShapeContent.new(@options[:content]) if @options[:content]
|
68
|
+
#graph.raw :grestore
|
69
|
+
graph.raw :stroke
|
70
|
+
graph
|
71
|
+
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
@@ -0,0 +1,258 @@
|
|
1
|
+
/AdobeExpert [
|
2
|
+
/.notdef % 0x00
|
3
|
+
/.notdef
|
4
|
+
/.notdef
|
5
|
+
/.notdef
|
6
|
+
/.notdef
|
7
|
+
/.notdef
|
8
|
+
/.notdef
|
9
|
+
/.notdef
|
10
|
+
/.notdef
|
11
|
+
/.notdef
|
12
|
+
/.notdef
|
13
|
+
/.notdef
|
14
|
+
/.notdef
|
15
|
+
/.notdef
|
16
|
+
/.notdef
|
17
|
+
/.notdef
|
18
|
+
/.notdef % 0x10
|
19
|
+
/.notdef
|
20
|
+
/.notdef
|
21
|
+
/.notdef
|
22
|
+
/.notdef
|
23
|
+
/.notdef
|
24
|
+
/.notdef
|
25
|
+
/.notdef
|
26
|
+
/.notdef
|
27
|
+
/.notdef
|
28
|
+
/.notdef
|
29
|
+
/.notdef
|
30
|
+
/.notdef
|
31
|
+
/.notdef
|
32
|
+
/.notdef
|
33
|
+
/.notdef
|
34
|
+
/space % 0x20
|
35
|
+
/exclam.sc
|
36
|
+
/hungarumlaut.sc
|
37
|
+
/.notdef
|
38
|
+
/dollar.oldstyle
|
39
|
+
/dollar.superior
|
40
|
+
/ampersand.sc
|
41
|
+
/acute.sc
|
42
|
+
/parenleftsuperior
|
43
|
+
/parenrightsuperior
|
44
|
+
/twodotenleader
|
45
|
+
/onedotenleader
|
46
|
+
/comma
|
47
|
+
/hyphen
|
48
|
+
/period
|
49
|
+
/fraction
|
50
|
+
/zero.oldstyle % 0x30
|
51
|
+
/one.oldstyle
|
52
|
+
/two.oldstyle
|
53
|
+
/three.oldstyle
|
54
|
+
/four.oldstyle
|
55
|
+
/five.oldstyle
|
56
|
+
/six.oldstyle
|
57
|
+
/seven.oldstyle
|
58
|
+
/eight.oldstyle
|
59
|
+
/nine.oldstyle
|
60
|
+
/colon
|
61
|
+
/semicolon
|
62
|
+
/comma.superior
|
63
|
+
/threequartersemdash
|
64
|
+
/period.superior
|
65
|
+
/question.sc
|
66
|
+
/.notdef % 0x40
|
67
|
+
/a.superior
|
68
|
+
/b.superior
|
69
|
+
/cent.superior
|
70
|
+
/d.superior
|
71
|
+
/e.superior
|
72
|
+
/.notdef
|
73
|
+
/.notdef
|
74
|
+
/.notdef
|
75
|
+
/i.superior
|
76
|
+
/.notdef
|
77
|
+
/.notdef
|
78
|
+
/l.superior
|
79
|
+
/m.superior
|
80
|
+
/nsuperior
|
81
|
+
/o.superior
|
82
|
+
/.notdef % 0x50
|
83
|
+
/.notdef
|
84
|
+
/r.superior
|
85
|
+
/s.superior
|
86
|
+
/t.superior
|
87
|
+
/.notdef
|
88
|
+
/ff
|
89
|
+
/fi
|
90
|
+
/fl
|
91
|
+
/ffi
|
92
|
+
/ffl
|
93
|
+
/parenleftinferior
|
94
|
+
/.notdef
|
95
|
+
/parenrightinferior
|
96
|
+
/circumflex.sc
|
97
|
+
/hyphen.superior
|
98
|
+
/grave.sc % 0x60
|
99
|
+
/a.sc
|
100
|
+
/b.sc
|
101
|
+
/c.sc
|
102
|
+
/d.sc
|
103
|
+
/e.sc
|
104
|
+
/f.sc
|
105
|
+
/g.sc
|
106
|
+
/h.sc
|
107
|
+
/i.sc
|
108
|
+
/j.sc
|
109
|
+
/k.sc
|
110
|
+
/l.sc
|
111
|
+
/m.sc
|
112
|
+
/n.sc
|
113
|
+
/o.sc
|
114
|
+
/p.sc % 0x70
|
115
|
+
/q.sc
|
116
|
+
/r.sc
|
117
|
+
/s.sc
|
118
|
+
/t.sc
|
119
|
+
/u.sc
|
120
|
+
/v.sc
|
121
|
+
/w.sc
|
122
|
+
/x.sc
|
123
|
+
/y.sc
|
124
|
+
/z.sc
|
125
|
+
/colonmonetary
|
126
|
+
/onefitted
|
127
|
+
/rupiah
|
128
|
+
/tilde.sc
|
129
|
+
/.notdef
|
130
|
+
/.notdef % 0x80
|
131
|
+
/.notdef
|
132
|
+
/.notdef
|
133
|
+
/.notdef
|
134
|
+
/.notdef
|
135
|
+
/.notdef
|
136
|
+
/.notdef
|
137
|
+
/.notdef
|
138
|
+
/.notdef
|
139
|
+
/.notdef
|
140
|
+
/.notdef
|
141
|
+
/.notdef
|
142
|
+
/.notdef
|
143
|
+
/.notdef
|
144
|
+
/.notdef
|
145
|
+
/.notdef
|
146
|
+
/.notdef % 0x90
|
147
|
+
/.notdef
|
148
|
+
/.notdef
|
149
|
+
/.notdef
|
150
|
+
/.notdef
|
151
|
+
/.notdef
|
152
|
+
/.notdef
|
153
|
+
/.notdef
|
154
|
+
/.notdef
|
155
|
+
/.notdef
|
156
|
+
/.notdef
|
157
|
+
/.notdef
|
158
|
+
/.notdef
|
159
|
+
/.notdef
|
160
|
+
/.notdef
|
161
|
+
/.notdef
|
162
|
+
/.notdef % 0xa0
|
163
|
+
/exclamdown.sc
|
164
|
+
/cent.oldstyle
|
165
|
+
/lslash.sc
|
166
|
+
/.notdef
|
167
|
+
/.notdef
|
168
|
+
/scaron.sc
|
169
|
+
/zcaron.sc
|
170
|
+
/dieresis.sc
|
171
|
+
/breve.sc
|
172
|
+
/caron.sc
|
173
|
+
/.notdef
|
174
|
+
/dotaccent.sc
|
175
|
+
/.notdef
|
176
|
+
/.notdef
|
177
|
+
/macron.sc
|
178
|
+
/.notdef % 0xb0
|
179
|
+
/.notdef
|
180
|
+
/figuredash
|
181
|
+
/hyphen.inferior
|
182
|
+
/.notdef
|
183
|
+
/.notdef
|
184
|
+
/ogonek.sc
|
185
|
+
/ring.sc
|
186
|
+
/cedilla.sc
|
187
|
+
/.notdef
|
188
|
+
/.notdef
|
189
|
+
/.notdef
|
190
|
+
/onequarter
|
191
|
+
/onehalf
|
192
|
+
/threequarters
|
193
|
+
/questiondown.sc
|
194
|
+
/oneeighth % 0xc0
|
195
|
+
/threeeighths
|
196
|
+
/fiveeighths
|
197
|
+
/seveneighths
|
198
|
+
/onethird
|
199
|
+
/twothirds
|
200
|
+
/.notdef
|
201
|
+
/.notdef
|
202
|
+
/zerosuperior
|
203
|
+
/onesuperior
|
204
|
+
/twosuperior
|
205
|
+
/threesuperior
|
206
|
+
/foursuperior
|
207
|
+
/fivesuperior
|
208
|
+
/sixsuperior
|
209
|
+
/sevensuperior
|
210
|
+
/eightsuperior % 0xd0
|
211
|
+
/ninesuperior
|
212
|
+
/zeroinferior
|
213
|
+
/oneinferior
|
214
|
+
/twoinferior
|
215
|
+
/threeinferior
|
216
|
+
/fourinferior
|
217
|
+
/fiveinferior
|
218
|
+
/sixinferior
|
219
|
+
/seveninferior
|
220
|
+
/eightinferior
|
221
|
+
/nineinferior
|
222
|
+
/cent.inferior
|
223
|
+
/dollar.inferior
|
224
|
+
/period.inferior
|
225
|
+
/comma.inferior
|
226
|
+
/agrave.sc % 0xe0
|
227
|
+
/aacute.sc
|
228
|
+
/acircumflex.sc
|
229
|
+
/atilde.sc
|
230
|
+
/adieresis.sc
|
231
|
+
/aring.sc
|
232
|
+
/ae.sc
|
233
|
+
/ccedilla.sc
|
234
|
+
/egrave.sc
|
235
|
+
/eacute.sc
|
236
|
+
/ecircumflex.sc
|
237
|
+
/edieresis.sc
|
238
|
+
/igrave.sc
|
239
|
+
/iacute.sc
|
240
|
+
/icircumflex.sc
|
241
|
+
/idieresis.sc
|
242
|
+
/eth.sc % 0xf0
|
243
|
+
/ntilde.sc
|
244
|
+
/ograve.sc
|
245
|
+
/oacute.sc
|
246
|
+
/ocircumflex.sc
|
247
|
+
/otilde.sc
|
248
|
+
/odieresis.sc
|
249
|
+
/oe.sc
|
250
|
+
/oslash.sc
|
251
|
+
/ugrave.sc
|
252
|
+
/uacute.sc
|
253
|
+
/ucircumflex.sc
|
254
|
+
/udieresis.sc
|
255
|
+
/yacute.sc
|
256
|
+
/thorn.sc
|
257
|
+
/ydieresis.sc
|
258
|
+
] def
|
@@ -0,0 +1,258 @@
|
|
1
|
+
/AdobeLatinEncoding [
|
2
|
+
/.notdef % 0x00
|
3
|
+
/.notdef
|
4
|
+
/.notdef
|
5
|
+
/.notdef
|
6
|
+
/.notdef
|
7
|
+
/.notdef
|
8
|
+
/.notdef
|
9
|
+
/.notdef
|
10
|
+
/.notdef
|
11
|
+
/.notdef
|
12
|
+
/.notdef
|
13
|
+
/.notdef
|
14
|
+
/.notdef
|
15
|
+
/.notdef
|
16
|
+
/.notdef
|
17
|
+
/.notdef
|
18
|
+
/.notdef % 0x10
|
19
|
+
/.notdef
|
20
|
+
/.notdef
|
21
|
+
/.notdef
|
22
|
+
/.notdef
|
23
|
+
/.notdef
|
24
|
+
/.notdef
|
25
|
+
/.notdef
|
26
|
+
/.notdef
|
27
|
+
/.notdef
|
28
|
+
/.notdef
|
29
|
+
/.notdef
|
30
|
+
/.notdef
|
31
|
+
/.notdef
|
32
|
+
/.notdef
|
33
|
+
/.notdef
|
34
|
+
/space % 0x20
|
35
|
+
/exclam
|
36
|
+
/quotedbl
|
37
|
+
/numbersign
|
38
|
+
/dollar
|
39
|
+
/percent
|
40
|
+
/ampersand
|
41
|
+
/quoteright
|
42
|
+
/parenleft
|
43
|
+
/parenright
|
44
|
+
/asterisk
|
45
|
+
/plus
|
46
|
+
/comma
|
47
|
+
/minus
|
48
|
+
/period
|
49
|
+
/slash
|
50
|
+
/zero % 0x30
|
51
|
+
/one
|
52
|
+
/two
|
53
|
+
/three
|
54
|
+
/four
|
55
|
+
/five
|
56
|
+
/six
|
57
|
+
/seven
|
58
|
+
/eight
|
59
|
+
/nine
|
60
|
+
/colon
|
61
|
+
/semicolon
|
62
|
+
/less
|
63
|
+
/equal
|
64
|
+
/greater
|
65
|
+
/question
|
66
|
+
/at % 0x40
|
67
|
+
/A
|
68
|
+
/B
|
69
|
+
/C
|
70
|
+
/D
|
71
|
+
/E
|
72
|
+
/F
|
73
|
+
/G
|
74
|
+
/H
|
75
|
+
/I
|
76
|
+
/J
|
77
|
+
/K
|
78
|
+
/L
|
79
|
+
/M
|
80
|
+
/N
|
81
|
+
/O
|
82
|
+
/P % 0x50
|
83
|
+
/Q
|
84
|
+
/R
|
85
|
+
/S
|
86
|
+
/T
|
87
|
+
/U
|
88
|
+
/V
|
89
|
+
/W
|
90
|
+
/X
|
91
|
+
/Y
|
92
|
+
/Z
|
93
|
+
/bracketleft
|
94
|
+
/backslash
|
95
|
+
/bracketright
|
96
|
+
/asciicircum
|
97
|
+
/underscore
|
98
|
+
/quoteleft % 0x60
|
99
|
+
/a
|
100
|
+
/b
|
101
|
+
/c
|
102
|
+
/d
|
103
|
+
/e
|
104
|
+
/f
|
105
|
+
/g
|
106
|
+
/h
|
107
|
+
/i
|
108
|
+
/j
|
109
|
+
/k
|
110
|
+
/l
|
111
|
+
/m
|
112
|
+
/n
|
113
|
+
/o
|
114
|
+
/p % 0x70
|
115
|
+
/q
|
116
|
+
/r
|
117
|
+
/s
|
118
|
+
/t
|
119
|
+
/u
|
120
|
+
/v
|
121
|
+
/w
|
122
|
+
/x
|
123
|
+
/y
|
124
|
+
/z
|
125
|
+
/braceleft
|
126
|
+
/bar
|
127
|
+
/braceright
|
128
|
+
/asciitilde
|
129
|
+
/.notdef
|
130
|
+
/.notdef % 0x80
|
131
|
+
/.notdef
|
132
|
+
/.notdef
|
133
|
+
/.notdef
|
134
|
+
/.notdef
|
135
|
+
/.notdef
|
136
|
+
/.notdef
|
137
|
+
/.notdef
|
138
|
+
/.notdef
|
139
|
+
/.notdef
|
140
|
+
/.notdef
|
141
|
+
/.notdef
|
142
|
+
/.notdef
|
143
|
+
/.notdef
|
144
|
+
/.notdef
|
145
|
+
/.notdef
|
146
|
+
/dotlessi % 0x90
|
147
|
+
/grave
|
148
|
+
/acute
|
149
|
+
/circumflex
|
150
|
+
/tilde
|
151
|
+
/macron
|
152
|
+
/breve
|
153
|
+
/dotaccent
|
154
|
+
/dieresis
|
155
|
+
/.notdef
|
156
|
+
/ring
|
157
|
+
/cedilla
|
158
|
+
/.notdef
|
159
|
+
/hungarumlaut
|
160
|
+
/ogonek
|
161
|
+
/caron
|
162
|
+
/space % 0xa0
|
163
|
+
/exclamdown
|
164
|
+
/cent
|
165
|
+
/sterling
|
166
|
+
/currency
|
167
|
+
/yen
|
168
|
+
/brokenbar
|
169
|
+
/section
|
170
|
+
/dieresis
|
171
|
+
/copyright
|
172
|
+
/ordfeminine
|
173
|
+
/guillemotleft
|
174
|
+
/logicalnot
|
175
|
+
/hyphen
|
176
|
+
/registered
|
177
|
+
/macron
|
178
|
+
/degree % 0xb0
|
179
|
+
/plusminus
|
180
|
+
/twosuperior
|
181
|
+
/threesuperior
|
182
|
+
/acute
|
183
|
+
/mu
|
184
|
+
/paragraph
|
185
|
+
/periodcentered
|
186
|
+
/cedilla
|
187
|
+
/onesuperior
|
188
|
+
/ordmasculine
|
189
|
+
/guillemotright
|
190
|
+
/onequarter
|
191
|
+
/onehalf
|
192
|
+
/threequarters
|
193
|
+
/questiondown
|
194
|
+
/Agrave % 0xc0
|
195
|
+
/Aacute
|
196
|
+
/Acircumflex
|
197
|
+
/Atilde
|
198
|
+
/Adieresis
|
199
|
+
/Aring
|
200
|
+
/AE
|
201
|
+
/Ccedilla
|
202
|
+
/Egrave
|
203
|
+
/Eacute
|
204
|
+
/Ecircumflex
|
205
|
+
/Edieresis
|
206
|
+
/Igrave
|
207
|
+
/Iacute
|
208
|
+
/Icircumflex
|
209
|
+
/Idieresis
|
210
|
+
/Eth % 0xd0
|
211
|
+
/Ntilde
|
212
|
+
/Ograve
|
213
|
+
/Oacute
|
214
|
+
/Ocircumflex
|
215
|
+
/Otilde
|
216
|
+
/Odieresis
|
217
|
+
/multiply
|
218
|
+
/Oslash
|
219
|
+
/Ugrave
|
220
|
+
/Uacute
|
221
|
+
/Ucircumflex
|
222
|
+
/Udieresis
|
223
|
+
/Yacute
|
224
|
+
/Thorn
|
225
|
+
/germandbls
|
226
|
+
/agrave % 0xe0
|
227
|
+
/aacute
|
228
|
+
/acircumflex
|
229
|
+
/atilde
|
230
|
+
/adieresis
|
231
|
+
/aring
|
232
|
+
/ae
|
233
|
+
/ccedilla
|
234
|
+
/egrave
|
235
|
+
/eacute
|
236
|
+
/ecircumflex
|
237
|
+
/edieresis
|
238
|
+
/igrave
|
239
|
+
/iacute
|
240
|
+
/icircumflex
|
241
|
+
/idieresis
|
242
|
+
/eth % 0xf0
|
243
|
+
/ntilde
|
244
|
+
/ograve
|
245
|
+
/oacute
|
246
|
+
/ocircumflex
|
247
|
+
/otilde
|
248
|
+
/odieresis
|
249
|
+
/divide
|
250
|
+
/oslash
|
251
|
+
/ugrave
|
252
|
+
/uacute
|
253
|
+
/ucircumflex
|
254
|
+
/udieresis
|
255
|
+
/yacute
|
256
|
+
/thorn
|
257
|
+
/ydieresis
|
258
|
+
] def
|