plurimath 0.2.0 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +13 -0
- data/.github/workflows/release.yml +22 -0
- data/.gitignore +1 -0
- data/.hound.yml +5 -0
- data/.rubocop.yml +8 -0
- data/AsciiMath-Supported-Data.adoc +2000 -0
- data/Gemfile +3 -0
- data/Latex-Supported-Data.adoc +1879 -0
- data/MathML-Supported-Data.adoc +287 -0
- data/README.adoc +96 -0
- data/lib/plurimath/asciimath/constants.rb +267 -229
- data/lib/plurimath/asciimath/parse.rb +125 -26
- data/lib/plurimath/asciimath/parser.rb +6 -3
- data/lib/plurimath/asciimath/transform.rb +1135 -208
- data/lib/plurimath/asciimath.rb +1 -1
- data/lib/plurimath/html/constants.rb +50 -0
- data/lib/plurimath/html/parse.rb +149 -0
- data/lib/plurimath/html/parser.rb +26 -0
- data/lib/plurimath/html/transform.rb +363 -0
- data/lib/plurimath/html.rb +1 -1
- data/lib/plurimath/latex/constants.rb +3729 -1906
- data/lib/plurimath/latex/parse.rb +167 -51
- data/lib/plurimath/latex/parser.rb +12 -4
- data/lib/plurimath/latex/transform.rb +598 -183
- data/lib/plurimath/math/base.rb +15 -0
- data/lib/plurimath/math/formula.rb +96 -11
- data/lib/plurimath/math/function/bar.rb +34 -0
- data/lib/plurimath/math/function/base.rb +32 -5
- data/lib/plurimath/math/function/binary_function.rb +104 -17
- data/lib/plurimath/math/function/cancel.rb +8 -0
- data/lib/plurimath/math/function/ceil.rb +3 -0
- data/lib/plurimath/math/function/color.rb +16 -6
- data/lib/plurimath/math/function/f.rb +8 -0
- data/lib/plurimath/math/function/fenced.rb +95 -3
- data/lib/plurimath/math/function/floor.rb +15 -0
- data/lib/plurimath/math/function/font_style/bold.rb +37 -0
- data/lib/plurimath/math/function/font_style/double_struck.rb +37 -0
- data/lib/plurimath/math/function/font_style/fraktur.rb +37 -0
- data/lib/plurimath/math/function/font_style/italic.rb +37 -0
- data/lib/plurimath/math/function/font_style/monospace.rb +37 -0
- data/lib/plurimath/math/function/font_style/normal.rb +37 -0
- data/lib/plurimath/math/function/font_style/sans-serif.rb +37 -0
- data/lib/plurimath/math/function/font_style/script.rb +37 -0
- data/lib/plurimath/math/function/font_style.rb +18 -25
- data/lib/plurimath/math/function/frac.rb +35 -5
- data/lib/plurimath/math/function/g.rb +7 -0
- data/lib/plurimath/math/function/hat.rb +12 -0
- data/lib/plurimath/math/function/inf.rb +21 -1
- data/lib/plurimath/math/function/int.rb +23 -2
- data/lib/plurimath/math/function/left.rb +25 -4
- data/lib/plurimath/math/function/lim.rb +40 -2
- data/lib/plurimath/math/function/limits.rb +8 -0
- data/lib/plurimath/math/function/log.rb +61 -4
- data/lib/plurimath/math/function/longdiv.rb +12 -0
- data/lib/plurimath/math/function/mbox.rb +31 -0
- data/lib/plurimath/math/function/menclose.rb +46 -0
- data/lib/plurimath/math/function/merror.rb +12 -0
- data/lib/plurimath/math/function/mod.rb +25 -4
- data/lib/plurimath/math/function/msgroup.rb +37 -0
- data/lib/plurimath/math/function/msline.rb +12 -0
- data/lib/plurimath/math/function/multiscript.rb +30 -0
- data/lib/plurimath/math/function/norm.rb +18 -1
- data/lib/plurimath/math/function/obrace.rb +17 -0
- data/lib/plurimath/math/function/oint.rb +2 -2
- data/lib/plurimath/math/function/over.rb +36 -0
- data/lib/plurimath/math/function/overset.rb +36 -7
- data/lib/plurimath/math/function/phantom.rb +28 -0
- data/lib/plurimath/math/function/power.rb +33 -9
- data/lib/plurimath/math/function/power_base.rb +110 -5
- data/lib/plurimath/math/function/prod.rb +29 -2
- data/lib/plurimath/math/function/right.rb +44 -0
- data/lib/plurimath/math/function/root.rb +27 -4
- data/lib/plurimath/math/function/rule.rb +33 -0
- data/lib/plurimath/math/function/scarries.rb +12 -0
- data/lib/plurimath/math/function/scarry.rb +12 -0
- data/lib/plurimath/math/function/sqrt.rb +24 -2
- data/lib/plurimath/math/function/stackrel.rb +27 -0
- data/lib/plurimath/math/function/substack.rb +7 -1
- data/lib/plurimath/math/function/sum.rb +56 -2
- data/lib/plurimath/math/function/sup.rb +3 -0
- data/lib/plurimath/math/function/table/align.rb +24 -0
- data/lib/plurimath/math/function/table/array.rb +44 -0
- data/lib/plurimath/math/function/table/bmatrix.rb +37 -0
- data/lib/plurimath/math/function/table/matrix.rb +32 -0
- data/lib/plurimath/math/function/table/multline.rb +24 -0
- data/lib/plurimath/math/function/table/pmatrix.rb +24 -0
- data/lib/plurimath/math/function/table/split.rb +24 -0
- data/lib/plurimath/math/function/table/vmatrix.rb +24 -0
- data/lib/plurimath/math/function/table.rb +190 -20
- data/lib/plurimath/math/function/td.rb +27 -9
- data/lib/plurimath/math/function/ternary_function.rb +83 -8
- data/lib/plurimath/math/function/text.rb +45 -8
- data/lib/plurimath/math/function/tr.rb +28 -4
- data/lib/plurimath/math/function/ubrace.rb +17 -0
- data/lib/plurimath/math/function/ul.rb +29 -0
- data/lib/plurimath/math/function/unary_function.rb +85 -7
- data/lib/plurimath/math/function/underline.rb +12 -0
- data/lib/plurimath/math/function/underover.rb +107 -0
- data/lib/plurimath/math/function/underset.rb +39 -0
- data/lib/plurimath/math/function/vec.rb +10 -0
- data/lib/plurimath/math/function.rb +13 -2
- data/lib/plurimath/math/number.rb +11 -3
- data/lib/plurimath/math/symbol.rb +57 -9
- data/lib/plurimath/math/unicode.rb +11 -0
- data/lib/plurimath/math.rb +15 -6
- data/lib/plurimath/mathml/constants.rb +224 -179
- data/lib/plurimath/mathml/parser.rb +24 -7
- data/lib/plurimath/mathml/transform.rb +249 -148
- data/lib/plurimath/mathml.rb +1 -1
- data/lib/plurimath/omml/parser.rb +42 -0
- data/lib/plurimath/omml/transform.rb +278 -0
- data/lib/plurimath/omml.rb +1 -1
- data/lib/plurimath/unitsml.rb +4 -0
- data/lib/plurimath/utility.rb +395 -0
- data/lib/plurimath/version.rb +1 -1
- data/plurimath.gemspec +1 -0
- metadata +66 -9
- data/.github/workflows/test.yml +0 -36
- data/README.md +0 -40
- data/lib/plurimath/mathml/parse.rb +0 -63
@@ -3,234 +3,247 @@
|
|
3
3
|
module Plurimath
|
4
4
|
class Asciimath
|
5
5
|
class Constants
|
6
|
-
|
6
|
+
TABLE_PARENTHESIS = {
|
7
|
+
"(:": ":)",
|
8
|
+
"ℒ": "ℛ",
|
9
|
+
"[": "]",
|
7
10
|
"(": ")",
|
11
|
+
}.freeze
|
12
|
+
PARENTHESIS = {
|
8
13
|
"(:": ":)",
|
14
|
+
"ℒ": "ℛ",
|
15
|
+
"(": ")",
|
9
16
|
"{": "}",
|
10
|
-
"{:": ":}",
|
11
17
|
"[": "]",
|
12
18
|
}.freeze
|
13
|
-
SYMBOLS =
|
14
|
-
twoheadrightarrowtail
|
15
|
-
twoheadrightarrow
|
16
|
-
rightarrowtail
|
17
|
-
Leftrightarrow
|
18
|
-
leftrightarrow
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
Leftarrow
|
23
|
-
leftarrow
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
bigwedge
|
30
|
-
rceiling
|
31
|
-
lceiling
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
emptyset
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
epsilon
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
varphi
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
19
|
+
SYMBOLS = {
|
20
|
+
twoheadrightarrowtail: :"⤖",
|
21
|
+
twoheadrightarrow: :"↠",
|
22
|
+
rightarrowtail: :"↣",
|
23
|
+
Leftrightarrow: :"⇔",
|
24
|
+
leftrightarrow: :"↔",
|
25
|
+
Rightarrow: :"⇒",
|
26
|
+
rightarrow: :"→",
|
27
|
+
varepsilon: :"ɛ",
|
28
|
+
Leftarrow: :"⇐",
|
29
|
+
leftarrow: :"←",
|
30
|
+
downarrow: :"↓",
|
31
|
+
therefore: :"∴",
|
32
|
+
backslash: :"\",
|
33
|
+
setminus: :"⧵",
|
34
|
+
triangle: :"△",
|
35
|
+
bigwedge: :"⋀",
|
36
|
+
rceiling: :"⌉",
|
37
|
+
lceiling: :"⌈",
|
38
|
+
supseteq: :"⊇",
|
39
|
+
subseteq: :"⊆",
|
40
|
+
vartheta: :"ϑ",
|
41
|
+
emptyset: :"∅",
|
42
|
+
diamond: :"⋄",
|
43
|
+
uparrow: :"↑",
|
44
|
+
implies: :"⇒",
|
45
|
+
partial: :"∂",
|
46
|
+
because: :"∵",
|
47
|
+
upsilon: :"υ",
|
48
|
+
epsilon: :"ε",
|
49
|
+
bigcap: :"⋂",
|
50
|
+
bigvee: :"⋁",
|
51
|
+
propto: :"∝",
|
52
|
+
approx: :"≈",
|
53
|
+
exists: :"∃",
|
54
|
+
forall: :"∀",
|
55
|
+
otimes: :"⊗",
|
56
|
+
ltimes: :"⋉",
|
57
|
+
bowtie: :"⋈",
|
58
|
+
rtimes: :"⋊",
|
59
|
+
models: :"⊨",
|
60
|
+
mapsto: :"↦",
|
61
|
+
bigcup: :"⋃",
|
62
|
+
succeq: :"⪰",
|
63
|
+
preceq: :"⪯",
|
64
|
+
rfloor: :"⌋",
|
65
|
+
lfloor: :"⌊",
|
66
|
+
square: :"□",
|
67
|
+
supset: :"⊃",
|
68
|
+
subset: :"⊂",
|
69
|
+
lambda: :"λ",
|
70
|
+
Lambda: :"Λ",
|
71
|
+
varphi: :"φ",
|
72
|
+
rangle: :"〉",
|
73
|
+
langle: :"〈",
|
74
|
+
">->>": :"⤖",
|
75
|
+
"/_\\": :"△",
|
76
|
+
"|><|": :"⋈",
|
77
|
+
kappa: :"κ",
|
78
|
+
Delta: :"Δ",
|
79
|
+
delta: :"δ",
|
80
|
+
gamma: :"γ",
|
81
|
+
Gamma: :"Γ",
|
82
|
+
Theta: :"Θ",
|
83
|
+
theta: :"θ",
|
84
|
+
alpha: :"α",
|
85
|
+
aleph: :"ℵ",
|
86
|
+
infty: :"∞",
|
87
|
+
equiv: :"≡",
|
88
|
+
frown: :"⌢",
|
89
|
+
notin: :"∉",
|
90
|
+
angle: :"∠",
|
91
|
+
prime: :"′",
|
92
|
+
"!in": :"∉",
|
93
|
+
cdots: :"⋯",
|
94
|
+
vdash: :"⊢",
|
95
|
+
wedge: :"∧",
|
96
|
+
oplus: :"⊕",
|
97
|
+
nabla: :"∇",
|
98
|
+
ddots: :"⋱",
|
99
|
+
vdots: :"⋮",
|
100
|
+
Sigma: :"Σ",
|
101
|
+
Omega: :"Ω",
|
102
|
+
omega: :"ω",
|
103
|
+
sigma: :"σ",
|
104
|
+
times: :"×",
|
105
|
+
ldots: :"…",
|
106
|
+
">-=": :"⪰",
|
107
|
+
"-<=": :"⪯",
|
108
|
+
"><|": :"⋊",
|
109
|
+
"|==": :"⊨",
|
110
|
+
"|--": :"⊢",
|
111
|
+
"^^^": :"⋀",
|
112
|
+
"|->": :"↦",
|
113
|
+
">->": :"↣",
|
114
|
+
"->>": :"↠",
|
115
|
+
"__|": :"⌋",
|
116
|
+
"|__": :"⌊",
|
117
|
+
"|><": :"⋉",
|
118
|
+
"_|_": :"⊥",
|
119
|
+
"***": :"⋆",
|
120
|
+
"<=>": :"⇔",
|
121
|
+
"...": :"…",
|
122
|
+
"(:": :"〈",
|
123
|
+
":)": :"〉",
|
124
|
+
quad: :" ",
|
125
|
+
star: :"⋆",
|
126
|
+
odot: :"⊙",
|
127
|
+
cdot: :"⋅",
|
128
|
+
rarr: :"→",
|
129
|
+
darr: :"↓",
|
130
|
+
prop: :"∝",
|
131
|
+
lArr: :"⇐",
|
132
|
+
rArr: :"⇒",
|
133
|
+
uarr: :"↑",
|
134
|
+
hArr: :"⇔",
|
135
|
+
harr: :"↔",
|
136
|
+
larr: :"←",
|
137
|
+
grad: :"∇",
|
138
|
+
circ: :"∘",
|
139
|
+
sube: :"⊆",
|
140
|
+
supe: :"⊇",
|
141
|
+
succ: :"≻",
|
142
|
+
prec: :"≺",
|
143
|
+
cong: :"≅",
|
144
|
+
beta: :"β",
|
145
|
+
zeta: :"ζ",
|
146
|
+
iota: :"ι",
|
147
|
+
":'": :"∵",
|
148
|
+
"^^": :"∧",
|
149
|
+
"o+": :"⊕",
|
150
|
+
"o.": :"⊙",
|
151
|
+
"**": :"∗",
|
152
|
+
"~~": :"≈",
|
153
|
+
"O/": :"∅",
|
154
|
+
"->": :"→",
|
155
|
+
"=>": :"⇒",
|
156
|
+
">>": :"〉",
|
157
|
+
"<<": :"〈",
|
158
|
+
"~|": :"⌉",
|
159
|
+
"!=": :"≠",
|
160
|
+
">-": :"≻",
|
161
|
+
"-<": :"≺",
|
162
|
+
"~=": :"≅",
|
163
|
+
"-=": :"≡",
|
164
|
+
":.": :"∴",
|
165
|
+
">=": :"≥",
|
166
|
+
"<=": :"≤",
|
167
|
+
"|~": :"⌈",
|
168
|
+
"/_": :"∠",
|
169
|
+
"+-": :"±",
|
170
|
+
"-:": :"÷",
|
171
|
+
"\\ ": :" ",
|
172
|
+
"\\": :"\\",
|
173
|
+
"//": :/,
|
174
|
+
sup: :"⊃",
|
175
|
+
sub: :"⊂",
|
176
|
+
top: :"⊤",
|
177
|
+
vvv: :"⋁",
|
178
|
+
vee: :"∨",
|
179
|
+
nnn: :"⋂",
|
180
|
+
cap: :"∩",
|
181
|
+
ast: :"∗",
|
182
|
+
bot: :"⊥",
|
183
|
+
del: :"∂",
|
184
|
+
uuu: :"⋃",
|
185
|
+
cup: :"∪",
|
186
|
+
iff: :"⇔",
|
187
|
+
eta: :"η",
|
188
|
+
Phi: :"Φ",
|
189
|
+
Psi: :"Ψ",
|
190
|
+
psi: :"ψ",
|
191
|
+
chi: :"χ",
|
192
|
+
phi: :"ϕ",
|
193
|
+
rho: :"ρ",
|
194
|
+
tau: :"τ",
|
195
|
+
div: :"÷",
|
196
|
+
neg: :"¬",
|
197
|
+
not: :"¬",
|
198
|
+
"*": :"⋅",
|
199
|
+
"@": :"@",
|
200
|
+
"<": :"<",
|
201
|
+
">": :">",
|
202
|
+
"/": :"/",
|
203
|
+
":": :":",
|
204
|
+
"!": :"!",
|
205
|
+
",": :",",
|
206
|
+
";": :";",
|
207
|
+
"?": :"?",
|
208
|
+
"$": :"$",
|
209
|
+
"~": :"~",
|
210
|
+
"|": :"|",
|
211
|
+
"%": :"%",
|
212
|
+
"'": :"'",
|
213
|
+
"&": :"&",
|
214
|
+
"#": :"#",
|
215
|
+
"=": :"=",
|
216
|
+
"-": :"-",
|
217
|
+
"+": :"+",
|
218
|
+
nn: :"∩",
|
219
|
+
vv: :"∨",
|
220
|
+
TT: :"⊤",
|
221
|
+
EE: :"∃",
|
222
|
+
ox: :"⊗",
|
223
|
+
to: :"→",
|
224
|
+
AA: :"∀",
|
225
|
+
uu: :"∪",
|
226
|
+
ne: :"≠",
|
227
|
+
oo: :"∞",
|
228
|
+
ge: :"≥",
|
229
|
+
le: :"≤",
|
230
|
+
in: :"∈",
|
231
|
+
nu: :"ν",
|
232
|
+
mu: :"μ",
|
233
|
+
pi: :"π",
|
234
|
+
Pi: :"Π",
|
235
|
+
xi: :"ξ",
|
236
|
+
Xi: :"Ξ",
|
237
|
+
xx: :"×",
|
238
|
+
pm: :"±",
|
239
|
+
gt: :">",
|
240
|
+
lt: :"<",
|
241
|
+
if: :if,
|
242
|
+
}.freeze
|
233
243
|
UNARY_CLASSES = %i[
|
244
|
+
underbrace
|
245
|
+
overbrace
|
246
|
+
underline
|
234
247
|
arccos
|
235
248
|
arcsin
|
236
249
|
arctan
|
@@ -279,15 +292,8 @@ module Plurimath
|
|
279
292
|
underset
|
280
293
|
stackrel
|
281
294
|
overset
|
282
|
-
color
|
283
|
-
prod
|
284
295
|
frac
|
285
296
|
root
|
286
|
-
oint
|
287
|
-
int
|
288
|
-
sum
|
289
|
-
mod
|
290
|
-
log
|
291
297
|
].freeze
|
292
298
|
FONT_STYLES = %i[
|
293
299
|
mathfrak
|
@@ -298,11 +304,43 @@ module Plurimath
|
|
298
304
|
mathbf
|
299
305
|
bbb
|
300
306
|
bb
|
307
|
+
rm
|
301
308
|
fr
|
302
309
|
cc
|
303
310
|
sf
|
304
311
|
tt
|
312
|
+
ii
|
313
|
+
].freeze
|
314
|
+
SUB_SUP_CLASSES = %w[
|
315
|
+
prod
|
316
|
+
oint
|
317
|
+
lim
|
318
|
+
sum
|
319
|
+
log
|
320
|
+
int
|
305
321
|
].freeze
|
322
|
+
SPECIAL_BOLD_ALPHABETS = %w[
|
323
|
+
ZZ
|
324
|
+
RR
|
325
|
+
QQ
|
326
|
+
NN
|
327
|
+
CC
|
328
|
+
].freeze
|
329
|
+
|
330
|
+
class << self
|
331
|
+
def precompile_constants
|
332
|
+
@values ||=
|
333
|
+
named_hash(UNARY_CLASSES, :unary_class)
|
334
|
+
.merge(named_hash(SYMBOLS.keys, :symbol))
|
335
|
+
.merge(named_hash(FONT_STYLES, :fonts))
|
336
|
+
.merge(named_hash(SPECIAL_BOLD_ALPHABETS, :special_fonts))
|
337
|
+
@values.sort_by { |v, _| -v.length }.to_h
|
338
|
+
end
|
339
|
+
|
340
|
+
def named_hash(hash_or_array, name_key)
|
341
|
+
hash_or_array.each_with_object({}) { |d, i| i[d] = name_key }
|
342
|
+
end
|
343
|
+
end
|
306
344
|
end
|
307
345
|
end
|
308
346
|
end
|