6
|
1 |
/*
|
|
2 |
* reserved comment block
|
|
3 |
* DO NOT REMOVE OR ALTER!
|
|
4 |
*/
|
|
5 |
/*
|
|
6 |
* Copyright 1999-2004 The Apache Software Foundation.
|
|
7 |
*
|
|
8 |
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9 |
* you may not use this file except in compliance with the License.
|
|
10 |
* You may obtain a copy of the License at
|
|
11 |
*
|
|
12 |
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13 |
*
|
|
14 |
* Unless required by applicable law or agreed to in writing, software
|
|
15 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17 |
* See the License for the specific language governing permissions and
|
|
18 |
* limitations under the License.
|
|
19 |
*/
|
|
20 |
/*
|
|
21 |
* $Id: OpCodes.java,v 1.1.2.1 2005/08/01 01:30:33 jeffsuttor Exp $
|
|
22 |
*/
|
|
23 |
package com.sun.org.apache.xpath.internal.compiler;
|
|
24 |
|
|
25 |
/**
|
|
26 |
* Operations codes for XPath.
|
|
27 |
*
|
|
28 |
* Code for the descriptions of the operations codes:
|
|
29 |
* [UPPER CASE] indicates a literal value,
|
|
30 |
* [lower case] is a description of a value,
|
|
31 |
* ([length] always indicates the length of the operation,
|
|
32 |
* including the operations code and the length integer.)
|
|
33 |
* {UPPER CASE} indicates the given production,
|
|
34 |
* {description} is the description of a new production,
|
|
35 |
* (For instance, {boolean expression} means some expression
|
|
36 |
* that should be resolved to a boolean.)
|
|
37 |
* * means that it occurs zero or more times,
|
|
38 |
* + means that it occurs one or more times,
|
|
39 |
* ? means that it is optional.
|
|
40 |
*
|
|
41 |
* returns: indicates what the production should return.
|
|
42 |
*/
|
|
43 |
public class OpCodes
|
|
44 |
{
|
|
45 |
|
|
46 |
/**
|
|
47 |
* [ENDOP]
|
|
48 |
* Some operators may like to have a terminator.
|
|
49 |
* @xsl.usage advanced
|
|
50 |
*/
|
|
51 |
public static final int ENDOP = -1;
|
|
52 |
|
|
53 |
/**
|
|
54 |
* [EMPTY]
|
|
55 |
* Empty slot to indicate NULL.
|
|
56 |
*/
|
|
57 |
public static final int EMPTY = -2;
|
|
58 |
|
|
59 |
/**
|
|
60 |
* [ELEMWILDCARD]
|
|
61 |
* Means ELEMWILDCARD ("*"), used instead
|
|
62 |
* of string index in some places.
|
|
63 |
* @xsl.usage advanced
|
|
64 |
*/
|
|
65 |
public static final int ELEMWILDCARD = -3;
|
|
66 |
|
|
67 |
/**
|
|
68 |
* [OP_XPATH]
|
|
69 |
* [length]
|
|
70 |
* {expression}
|
|
71 |
*
|
|
72 |
* returns:
|
|
73 |
* XNodeSet
|
|
74 |
* XNumber
|
|
75 |
* XString
|
|
76 |
* XBoolean
|
|
77 |
* XRTree
|
|
78 |
* XObject
|
|
79 |
* @xsl.usage advanced
|
|
80 |
*/
|
|
81 |
public static final int OP_XPATH = 1;
|
|
82 |
|
|
83 |
/**
|
|
84 |
* [OP_OR]
|
|
85 |
* [length]
|
|
86 |
* {boolean expression}
|
|
87 |
* {boolean expression}
|
|
88 |
*
|
|
89 |
* returns:
|
|
90 |
* XBoolean
|
|
91 |
* @xsl.usage advanced
|
|
92 |
*/
|
|
93 |
public static final int OP_OR = 2;
|
|
94 |
|
|
95 |
/**
|
|
96 |
* [OP_AND]
|
|
97 |
* [length]
|
|
98 |
* {boolean expression}
|
|
99 |
* {boolean expression}
|
|
100 |
*
|
|
101 |
* returns:
|
|
102 |
* XBoolean
|
|
103 |
* @xsl.usage advanced
|
|
104 |
*/
|
|
105 |
public static final int OP_AND = 3;
|
|
106 |
|
|
107 |
/**
|
|
108 |
* [OP_NOTEQUALS]
|
|
109 |
* [length]
|
|
110 |
* {expression}
|
|
111 |
* {expression}
|
|
112 |
*
|
|
113 |
* returns:
|
|
114 |
* XBoolean
|
|
115 |
* @xsl.usage advanced
|
|
116 |
*/
|
|
117 |
public static final int OP_NOTEQUALS = 4;
|
|
118 |
|
|
119 |
/**
|
|
120 |
* [OP_EQUALS]
|
|
121 |
* [length]
|
|
122 |
* {expression}
|
|
123 |
* {expression}
|
|
124 |
*
|
|
125 |
* returns:
|
|
126 |
* XBoolean
|
|
127 |
* @xsl.usage advanced
|
|
128 |
*/
|
|
129 |
public static final int OP_EQUALS = 5;
|
|
130 |
|
|
131 |
/**
|
|
132 |
* [OP_LTE] (less-than-or-equals)
|
|
133 |
* [length]
|
|
134 |
* {number expression}
|
|
135 |
* {number expression}
|
|
136 |
*
|
|
137 |
* returns:
|
|
138 |
* XBoolean
|
|
139 |
* @xsl.usage advanced
|
|
140 |
*/
|
|
141 |
public static final int OP_LTE = 6;
|
|
142 |
|
|
143 |
/**
|
|
144 |
* [OP_LT] (less-than)
|
|
145 |
* [length]
|
|
146 |
* {number expression}
|
|
147 |
* {number expression}
|
|
148 |
*
|
|
149 |
* returns:
|
|
150 |
* XBoolean
|
|
151 |
* @xsl.usage advanced
|
|
152 |
*/
|
|
153 |
public static final int OP_LT = 7;
|
|
154 |
|
|
155 |
/**
|
|
156 |
* [OP_GTE] (greater-than-or-equals)
|
|
157 |
* [length]
|
|
158 |
* {number expression}
|
|
159 |
* {number expression}
|
|
160 |
*
|
|
161 |
* returns:
|
|
162 |
* XBoolean
|
|
163 |
* @xsl.usage advanced
|
|
164 |
*/
|
|
165 |
public static final int OP_GTE = 8;
|
|
166 |
|
|
167 |
/**
|
|
168 |
* [OP_GT] (greater-than)
|
|
169 |
* [length]
|
|
170 |
* {number expression}
|
|
171 |
* {number expression}
|
|
172 |
*
|
|
173 |
* returns:
|
|
174 |
* XBoolean
|
|
175 |
* @xsl.usage advanced
|
|
176 |
*/
|
|
177 |
public static final int OP_GT = 9;
|
|
178 |
|
|
179 |
/**
|
|
180 |
* [OP_PLUS]
|
|
181 |
* [length]
|
|
182 |
* {number expression}
|
|
183 |
* {number expression}
|
|
184 |
*
|
|
185 |
* returns:
|
|
186 |
* XNumber
|
|
187 |
* @xsl.usage advanced
|
|
188 |
*/
|
|
189 |
public static final int OP_PLUS = 10;
|
|
190 |
|
|
191 |
/**
|
|
192 |
* [OP_MINUS]
|
|
193 |
* [length]
|
|
194 |
* {number expression}
|
|
195 |
* {number expression}
|
|
196 |
*
|
|
197 |
* returns:
|
|
198 |
* XNumber
|
|
199 |
* @xsl.usage advanced
|
|
200 |
*/
|
|
201 |
public static final int OP_MINUS = 11;
|
|
202 |
|
|
203 |
/**
|
|
204 |
* [OP_MULT]
|
|
205 |
* [length]
|
|
206 |
* {number expression}
|
|
207 |
* {number expression}
|
|
208 |
*
|
|
209 |
* returns:
|
|
210 |
* XNumber
|
|
211 |
* @xsl.usage advanced
|
|
212 |
*/
|
|
213 |
public static final int OP_MULT = 12;
|
|
214 |
|
|
215 |
/**
|
|
216 |
* [OP_DIV]
|
|
217 |
* [length]
|
|
218 |
* {number expression}
|
|
219 |
* {number expression}
|
|
220 |
*
|
|
221 |
* returns:
|
|
222 |
* XNumber
|
|
223 |
* @xsl.usage advanced
|
|
224 |
*/
|
|
225 |
public static final int OP_DIV = 13;
|
|
226 |
|
|
227 |
/**
|
|
228 |
* [OP_MOD]
|
|
229 |
* [length]
|
|
230 |
* {number expression}
|
|
231 |
* {number expression}
|
|
232 |
*
|
|
233 |
* returns:
|
|
234 |
* XNumber
|
|
235 |
* @xsl.usage advanced
|
|
236 |
*/
|
|
237 |
public static final int OP_MOD = 14;
|
|
238 |
|
|
239 |
/**
|
|
240 |
* [OP_QUO]
|
|
241 |
* [length]
|
|
242 |
* {number expression}
|
|
243 |
* {number expression}
|
|
244 |
*
|
|
245 |
* returns:
|
|
246 |
* XNumber
|
|
247 |
* @xsl.usage advanced
|
|
248 |
*/
|
|
249 |
public static final int OP_QUO = 15;
|
|
250 |
|
|
251 |
/**
|
|
252 |
* [OP_NEG]
|
|
253 |
* [length]
|
|
254 |
* {number expression}
|
|
255 |
*
|
|
256 |
* returns:
|
|
257 |
* XNumber
|
|
258 |
* @xsl.usage advanced
|
|
259 |
*/
|
|
260 |
public static final int OP_NEG = 16;
|
|
261 |
|
|
262 |
/**
|
|
263 |
* [OP_STRING] (cast operation)
|
|
264 |
* [length]
|
|
265 |
* {expression}
|
|
266 |
*
|
|
267 |
* returns:
|
|
268 |
* XString
|
|
269 |
* @xsl.usage advanced
|
|
270 |
*/
|
|
271 |
public static final int OP_STRING = 17;
|
|
272 |
|
|
273 |
/**
|
|
274 |
* [OP_BOOL] (cast operation)
|
|
275 |
* [length]
|
|
276 |
* {expression}
|
|
277 |
*
|
|
278 |
* returns:
|
|
279 |
* XBoolean
|
|
280 |
* @xsl.usage advanced
|
|
281 |
*/
|
|
282 |
public static final int OP_BOOL = 18;
|
|
283 |
|
|
284 |
/**
|
|
285 |
* [OP_NUMBER] (cast operation)
|
|
286 |
* [length]
|
|
287 |
* {expression}
|
|
288 |
*
|
|
289 |
* returns:
|
|
290 |
* XBoolean
|
|
291 |
* @xsl.usage advanced
|
|
292 |
*/
|
|
293 |
public static final int OP_NUMBER = 19;
|
|
294 |
|
|
295 |
/**
|
|
296 |
* [OP_UNION]
|
|
297 |
* [length]
|
|
298 |
* {PathExpr}+
|
|
299 |
*
|
|
300 |
* returns:
|
|
301 |
* XNodeSet
|
|
302 |
* @xsl.usage advanced
|
|
303 |
*/
|
|
304 |
public static final int OP_UNION = 20;
|
|
305 |
|
|
306 |
/**
|
|
307 |
* [OP_LITERAL]
|
|
308 |
* [3]
|
|
309 |
* [index to token]
|
|
310 |
*
|
|
311 |
* returns:
|
|
312 |
* XString
|
|
313 |
* @xsl.usage advanced
|
|
314 |
*/
|
|
315 |
public static final int OP_LITERAL = 21;
|
|
316 |
|
|
317 |
/** The low opcode for nodesets, needed by getFirstPredicateOpPos and
|
|
318 |
* getNextStepPos. */
|
|
319 |
static final int FIRST_NODESET_OP = 22;
|
|
320 |
|
|
321 |
/**
|
|
322 |
* [OP_VARIABLE]
|
|
323 |
* [4]
|
|
324 |
* [index to namespace token, or EMPTY]
|
|
325 |
* [index to function name token]
|
|
326 |
*
|
|
327 |
* returns:
|
|
328 |
* XString
|
|
329 |
* @xsl.usage advanced
|
|
330 |
*/
|
|
331 |
public static final int OP_VARIABLE = 22;
|
|
332 |
|
|
333 |
/**
|
|
334 |
* [OP_GROUP]
|
|
335 |
* [length]
|
|
336 |
* {expression}
|
|
337 |
*
|
|
338 |
* returns:
|
|
339 |
* XNodeSet
|
|
340 |
* XNumber
|
|
341 |
* XString
|
|
342 |
* XBoolean
|
|
343 |
* XRTree
|
|
344 |
* XObject
|
|
345 |
* @xsl.usage advanced
|
|
346 |
*/
|
|
347 |
public static final int OP_GROUP = 23;
|
|
348 |
|
|
349 |
/**
|
|
350 |
* [OP_EXTFUNCTION] (Extension function.)
|
|
351 |
* [length]
|
|
352 |
* [index to namespace token]
|
|
353 |
* [index to function name token]
|
|
354 |
* {OP_ARGUMENT}
|
|
355 |
*
|
|
356 |
* returns:
|
|
357 |
* XNodeSet
|
|
358 |
* XNumber
|
|
359 |
* XString
|
|
360 |
* XBoolean
|
|
361 |
* XRTree
|
|
362 |
* XObject
|
|
363 |
* @xsl.usage advanced
|
|
364 |
*/
|
|
365 |
public static final int OP_EXTFUNCTION = 24;
|
|
366 |
|
|
367 |
/**
|
|
368 |
* [OP_FUNCTION]
|
|
369 |
* [length]
|
|
370 |
* [FUNC_name]
|
|
371 |
* {OP_ARGUMENT}
|
|
372 |
* [ENDOP]
|
|
373 |
*
|
|
374 |
* returns:
|
|
375 |
* XNodeSet
|
|
376 |
* XNumber
|
|
377 |
* XString
|
|
378 |
* XBoolean
|
|
379 |
* XRTree
|
|
380 |
* XObject
|
|
381 |
* @xsl.usage advanced
|
|
382 |
*/
|
|
383 |
public static final int OP_FUNCTION = 25;
|
|
384 |
|
|
385 |
/** The last opcode for stuff that can be a nodeset. */
|
|
386 |
static final int LAST_NODESET_OP = 25;
|
|
387 |
|
|
388 |
/**
|
|
389 |
* [OP_ARGUMENT] (Function argument.)
|
|
390 |
* [length]
|
|
391 |
* {expression}
|
|
392 |
*
|
|
393 |
* returns:
|
|
394 |
* XNodeSet
|
|
395 |
* XNumber
|
|
396 |
* XString
|
|
397 |
* XBoolean
|
|
398 |
* XRTree
|
|
399 |
* XObject
|
|
400 |
* @xsl.usage advanced
|
|
401 |
*/
|
|
402 |
public static final int OP_ARGUMENT = 26;
|
|
403 |
|
|
404 |
/**
|
|
405 |
* [OP_NUMBERLIT] (Number literal.)
|
|
406 |
* [3]
|
|
407 |
* [index to token]
|
|
408 |
*
|
|
409 |
* returns:
|
|
410 |
* XString
|
|
411 |
* @xsl.usage advanced
|
|
412 |
*/
|
|
413 |
public static final int OP_NUMBERLIT = 27;
|
|
414 |
|
|
415 |
/**
|
|
416 |
* [OP_LOCATIONPATH]
|
|
417 |
* [length]
|
|
418 |
* {FROM_stepType}
|
|
419 |
* | {function}
|
|
420 |
* {predicate}
|
|
421 |
* [ENDOP]
|
|
422 |
*
|
|
423 |
* (Note that element and attribute namespaces and
|
|
424 |
* names can be wildcarded '*'.)
|
|
425 |
*
|
|
426 |
* returns:
|
|
427 |
* XNodeSet
|
|
428 |
* @xsl.usage advanced
|
|
429 |
*/
|
|
430 |
public static final int OP_LOCATIONPATH = 28;
|
|
431 |
|
|
432 |
// public static final int LOCATIONPATHEX_MASK = 0x0000FFFF;
|
|
433 |
// public static final int LOCATIONPATHEX_ISSIMPLE = 0x00010000;
|
|
434 |
// public static final int OP_LOCATIONPATH_EX = (28 | 0x00010000);
|
|
435 |
|
|
436 |
/**
|
|
437 |
* [OP_PREDICATE]
|
|
438 |
* [length]
|
|
439 |
* {expression}
|
|
440 |
* [ENDOP] (For safety)
|
|
441 |
*
|
|
442 |
* returns:
|
|
443 |
* XBoolean or XNumber
|
|
444 |
* @xsl.usage advanced
|
|
445 |
*/
|
|
446 |
public static final int OP_PREDICATE = 29;
|
|
447 |
|
|
448 |
/**
|
|
449 |
* [OP_MATCHPATTERN]
|
|
450 |
* [length]
|
|
451 |
* {PathExpr}+
|
|
452 |
*
|
|
453 |
* returns:
|
|
454 |
* XNodeSet
|
|
455 |
* @xsl.usage advanced
|
|
456 |
*/
|
|
457 |
public static final int OP_MATCHPATTERN = 30;
|
|
458 |
|
|
459 |
/**
|
|
460 |
* [OP_LOCATIONPATHPATTERN]
|
|
461 |
* [length]
|
|
462 |
* {FROM_stepType}
|
|
463 |
* | {function}{predicate}
|
|
464 |
* [ENDOP]
|
|
465 |
* returns:
|
|
466 |
* XNodeSet
|
|
467 |
* @xsl.usage advanced
|
|
468 |
*/
|
|
469 |
public static final int OP_LOCATIONPATHPATTERN = 31;
|
|
470 |
|
|
471 |
/**
|
|
472 |
* [NODETYPE_COMMENT]
|
|
473 |
* No size or arguments.
|
|
474 |
* Note: must not overlap function OP number!
|
|
475 |
*
|
|
476 |
* returns:
|
|
477 |
* XBoolean
|
|
478 |
* @xsl.usage advanced
|
|
479 |
*/
|
|
480 |
public static final int NODETYPE_COMMENT = 1030;
|
|
481 |
|
|
482 |
/**
|
|
483 |
* [NODETYPE_TEXT]
|
|
484 |
* No size or arguments.
|
|
485 |
* Note: must not overlap function OP number!
|
|
486 |
*
|
|
487 |
* returns:
|
|
488 |
* XBoolean
|
|
489 |
* @xsl.usage advanced
|
|
490 |
*/
|
|
491 |
public static final int NODETYPE_TEXT = 1031;
|
|
492 |
|
|
493 |
/**
|
|
494 |
* [NODETYPE_PI]
|
|
495 |
* [index to token]
|
|
496 |
* Note: must not overlap function OP number!
|
|
497 |
*
|
|
498 |
* returns:
|
|
499 |
* XBoolean
|
|
500 |
* @xsl.usage advanced
|
|
501 |
*/
|
|
502 |
public static final int NODETYPE_PI = 1032;
|
|
503 |
|
|
504 |
/**
|
|
505 |
* [NODETYPE_NODE]
|
|
506 |
* No size or arguments.
|
|
507 |
* Note: must not overlap function OP number!
|
|
508 |
*
|
|
509 |
* returns:
|
|
510 |
* XBoolean
|
|
511 |
* @xsl.usage advanced
|
|
512 |
*/
|
|
513 |
public static final int NODETYPE_NODE = 1033;
|
|
514 |
|
|
515 |
/**
|
|
516 |
* [NODENAME]
|
|
517 |
* [index to ns token or EMPTY]
|
|
518 |
* [index to name token]
|
|
519 |
*
|
|
520 |
* returns:
|
|
521 |
* XBoolean
|
|
522 |
* @xsl.usage advanced
|
|
523 |
*/
|
|
524 |
public static final int NODENAME = 34;
|
|
525 |
|
|
526 |
/**
|
|
527 |
* [NODETYPE_ROOT]
|
|
528 |
* No size or arguments.
|
|
529 |
*
|
|
530 |
* returns:
|
|
531 |
* XBoolean
|
|
532 |
* @xsl.usage advanced
|
|
533 |
*/
|
|
534 |
public static final int NODETYPE_ROOT = 35;
|
|
535 |
|
|
536 |
/**
|
|
537 |
* [NODETYPE_ANY]
|
|
538 |
* No size or arguments.
|
|
539 |
*
|
|
540 |
* returns:
|
|
541 |
* XBoolean
|
|
542 |
* @xsl.usage advanced
|
|
543 |
*/
|
|
544 |
public static final int NODETYPE_ANYELEMENT = 36;
|
|
545 |
|
|
546 |
/**
|
|
547 |
* [NODETYPE_ANY]
|
|
548 |
* No size or arguments.
|
|
549 |
*
|
|
550 |
* returns:
|
|
551 |
* XBoolean
|
|
552 |
* @xsl.usage advanced
|
|
553 |
*/
|
|
554 |
public static final int NODETYPE_FUNCTEST = 1034;
|
|
555 |
|
|
556 |
/**
|
|
557 |
* [FROM_stepType]
|
|
558 |
* [length, including predicates]
|
|
559 |
* [length of just the step, without the predicates]
|
|
560 |
* {node test}
|
|
561 |
* {predicates}?
|
|
562 |
*
|
|
563 |
* returns:
|
|
564 |
* XBoolean
|
|
565 |
* @xsl.usage advanced
|
|
566 |
*/
|
|
567 |
public static final int AXES_START_TYPES = 37;
|
|
568 |
|
|
569 |
/** ancestor axes opcode. */
|
|
570 |
public static final int FROM_ANCESTORS = 37;
|
|
571 |
|
|
572 |
/** ancestor-or-self axes opcode. */
|
|
573 |
public static final int FROM_ANCESTORS_OR_SELF = 38;
|
|
574 |
|
|
575 |
/** attribute axes opcode. */
|
|
576 |
public static final int FROM_ATTRIBUTES = 39;
|
|
577 |
|
|
578 |
/** children axes opcode. */
|
|
579 |
public static final int FROM_CHILDREN = 40;
|
|
580 |
|
|
581 |
/** descendants axes opcode. */
|
|
582 |
public static final int FROM_DESCENDANTS = 41;
|
|
583 |
|
|
584 |
/** descendants-of-self axes opcode. */
|
|
585 |
public static final int FROM_DESCENDANTS_OR_SELF = 42;
|
|
586 |
|
|
587 |
/** following axes opcode. */
|
|
588 |
public static final int FROM_FOLLOWING = 43;
|
|
589 |
|
|
590 |
/** following-siblings axes opcode. */
|
|
591 |
public static final int FROM_FOLLOWING_SIBLINGS = 44;
|
|
592 |
|
|
593 |
/** parent axes opcode. */
|
|
594 |
public static final int FROM_PARENT = 45;
|
|
595 |
|
|
596 |
/** preceding axes opcode. */
|
|
597 |
public static final int FROM_PRECEDING = 46;
|
|
598 |
|
|
599 |
/** preceding-sibling axes opcode. */
|
|
600 |
public static final int FROM_PRECEDING_SIBLINGS = 47;
|
|
601 |
|
|
602 |
/** self axes opcode. */
|
|
603 |
public static final int FROM_SELF = 48;
|
|
604 |
|
|
605 |
/** namespace axes opcode. */
|
|
606 |
public static final int FROM_NAMESPACE = 49;
|
|
607 |
|
|
608 |
/** '/' axes opcode. */
|
|
609 |
public static final int FROM_ROOT = 50;
|
|
610 |
|
|
611 |
/**
|
|
612 |
* For match patterns.
|
|
613 |
* @xsl.usage advanced
|
|
614 |
*/
|
|
615 |
public static final int MATCH_ATTRIBUTE = 51;
|
|
616 |
|
|
617 |
/**
|
|
618 |
* For match patterns.
|
|
619 |
* @xsl.usage advanced
|
|
620 |
*/
|
|
621 |
public static final int MATCH_ANY_ANCESTOR = 52;
|
|
622 |
|
|
623 |
/**
|
|
624 |
* For match patterns.
|
|
625 |
* @xsl.usage advanced
|
|
626 |
*/
|
|
627 |
public static final int MATCH_IMMEDIATE_ANCESTOR = 53;
|
|
628 |
|
|
629 |
/** The end of the axes types. */
|
|
630 |
public static final int AXES_END_TYPES = 53;
|
|
631 |
|
|
632 |
/** The next free ID. Please keep this up to date. */
|
|
633 |
private static final int NEXT_FREE_ID = 99;
|
|
634 |
}
|