max_stars_repo_path stringlengths 4 261 | max_stars_repo_name stringlengths 6 106 | max_stars_count int64 0 38.8k | id stringlengths 1 6 | text stringlengths 7 1.05M |
|---|---|---|---|---|
ts2060/tokens.asm | nagydani/zx-rom-mods | 15 | 92310 | <gh_stars>10-100
COPYRIGHT:
DEFB $7F
DEFM " 2021 ePoint Systems Ltd"
DEFB $8D
; functions, etc.
HEX_T: EQU $24 ; $
LABEL_T:EQU $40 ; @
TIMES_T:EQU $5B ; [
OCT_T: EQU $5C ; \
MEM_T: EQU $5D ; ]
DELETE_T:EQU $5F ; _
FPOKE_T:EQU $60 ; GBP
ONERR_T:EQU $7B ; {
STICK_T:EQU $7C ; |
SOUND_T:EQU $7D ; }
FREE_T: EQU $7E ; ~
RESET_T:EQU $7F
RND_T: EQU $A5
SCREEN_T:EQU $AA
ATTR_TK:EQU $AB
DPOKE_T:EQU $AB
AT_T: EQU $AC
TAB_T: EQU $AD
CODE_T: EQU $AF
PEEK_T: EQU $BE
USR_T: EQU $C0
STR_T: EQU $C1
CHR_T: EQU $C2
BIN_T: EQU $C4
AND_T: EQU $C6
LINE_T: EQU $CA
THEN_T: EQU $CB
TO_T: EQU $CC
STEP_T: EQU $CD
MERGE_T:EQU $D5
TIME_T: EQU $D5
VERIFY_T:EQU $D6
REF_T: EQU $D6
BEEP_T: EQU $D7
CIRCLE_T:EQU $D8
FPEEK_T:EQU $D8
INK_T: EQU $D9
PAPER_T:EQU $DA
FLASH_T:EQU $DB
BRIGHT_T:EQU $DC
INVERSE_T:EQU $DD
OVER_T: EQU $DE
OUT_T: EQU $DF
DPEEK_T:EQU $DF
TURBO_T:EQU AT_T
PALETTE_T:EQU ATTR_TK
DEFPROC_T:EQU LABEL_T
STOP_T: EQU $E2
DATA_T: EQU $E4
CONTINUE_T:EQU $E8
REM_T: EQU $EA
FOR_T: EQU $EB
GOTO_T: EQU $EC
GOSUB_T:EQU $ED
NEXT_T: EQU $F3
POKE_T: EQU $F4
IF_T: EQU $FA
FN_TABLE:
DEFB "[" ; TIMES_T
DEFB TIMES_M - $
DEFB "]" ; MEM_T
DEFB MEM_M - $
DEFB "|" ; STICK_T
DEFB STICK_M - $
DEFB "~" ; FREE_T
DEFB FREE_M - $
DEFB MERGE_T ; TIME_T
DEFB TIME_M - $
DEFB VERIFY_T ; REF_T
DEFB REF_M - $
DEFB CIRCLE_T ; FPEEK_T
DEFB FPEEK_M - $
DEFB OUT_T ; DPEEK_T
DEFB DPEEK_M - $
DEFB 0
TK_TABLE:
DEFB "@" ; LABEL_T
DEFB LABEL_M - $
DEFB "_" ; DELETE_T
DEFB DELETE_M - $
DEFB FPOKE_T
DEFB FPOKE_M - $
DEFB "{" ; ONERR_T
DEFB ONERR_M - $
DEFB "}" ; SOUND_T
DEFB SOUND_M - $
DEFB RESET_T
DEFB RESET_M - $
DEFB USR_T
DEFB USR_M - $
DEFB SCREEN_T
DEFB SCREEN_M - $
DEFB ATTR_TK ; DPOKE_T
DEFB DPOKE_M - $
DEFB SPECTRUM_T
DEFB SPECTRUM_M - $
DEFB PLAY_T
DEFB PLAY_M - $
DEFB 0
; functions
; E s + 'H'
FPEEK_M:DEFM "FPEEK"
DEFB $80+" "
; E s + 'O'
DPEEK_M:DEFM "DPEEK"
DEFB $80+" "
; E s + 'S'
STICK_M:DEFM "STICK"
DEFB $80+" "
; E s + 'Z'
TIMES_M:DEFM "TIME$"
DEFB $80+" "
; E s + 'T'
TIME_M: DEFM "TIM"
DEFB $80+"E"
; E s + 'R'
REF_M: DEFM "REF"
DEFB $80+" "
; E s + 'U'
MEM_M: DEFM "MEM"
DEFB $80+"$"
; E s + 'A'
FREE_M: DEFM "FRE"
DEFB $80+"E"
; instructions
; s + '2'
LABEL_M:DEFB $80+"@"
; E s + 'F'
ONERR_M:DEFM "ON ER"
DEFB $80+"R"
; E s + 'P'
RESET_M:DEFM "RESE"
DEFB $80+"T"
; s + '0'
DELETE_M:
DEFM "DELET"
DEFB $80+"E"
; E s + 'K'
SCREEN_M:DEFM "DISPLA"
DEFB $80+"Y"
; E s + 'L'
DPOKE_M:DEFM "DPOK"
DEFB $80+"E"
; s + 'X'
FPOKE_M:DEFM "FPOK"
DEFB $80+"E"
; E 'L'
USR_M: DEFM "US"
DEFB $80+"R"
; E s + 'G'
SOUND_M:DEFM "SOUN"
DEFB $80+"D"
SPECTRUM_T:EQU $A3
; G 'T'
SPECTRUM_M:DEFM "SPECTRU"
DEFB $80+"M"
PLAY_T:EQU $A4
; G 'U'
PLAY_M: DEFM "PLA"
DEFB $80+"Y"
|
oeis/023/A023645.asm | neoneye/loda-programs | 0 | 94787 | <reponame>neoneye/loda-programs
; A023645: a(n) = tau(n)-1 if n is odd or tau(n)-2 if n is even.
; Submitted by <NAME>(w2)
; 0,0,1,1,1,2,1,2,2,2,1,4,1,2,3,3,1,4,1,4,3,2,1,6,2,2,3,4,1,6,1,4,3,2,3,7,1,2,3,6,1,6,1,4,5,2,1,8,2,4,3,4,1,6,3,6,3,2,1,10,1,2,5,5,3,6,1,4,3,6,1,10,1,2,5,4,3,6,1,8,4,2,1,10,3,2,3,6,1,10,3,4,3,2,3,10,1,4,5,7
add $0,1
mov $2,$0
mul $2,2
lpb $0
mov $3,$2
dif $3,$0
sub $0,2
cmp $3,$2
add $4,$3
lpe
lpb $2
mov $1,$2
mul $4,4
sub $4,2
sub $1,$4
cmp $2,3
lpe
div $1,4
mov $0,$1
sub $0,1
|
bootsect.asm | ne-oss/friendly-os | 0 | 81119 | <reponame>ne-oss/friendly-os
; A simple boot sector program that loops forever
loop:
jmp loop
times 510-($-$$) db 0
dw 0xaa55
|
src/main/antlr4/com/biu/parser/sql/PlSqlLexer.g4 | raviksf/jsparser | 0 | 2440 | /**
* Oracle(c) PL/SQL 11g Parser
*
* Copyright (c) 2009-2011 <NAME> <<EMAIL>>
* Copyright (c) 2015-2017 <NAME> (KvanTTT, <EMAIL>, Positive Technologies).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
lexer grammar PlSqlLexer;
A_LETTER: 'A';
ADD: 'ADD';
AFTER: 'AFTER';
AGENT: 'AGENT';
AGGREGATE: 'AGGREGATE';
ALL: 'ALL';
ALTER: 'ALTER';
ANALYZE: 'ANALYZE';
AND: 'AND';
ANY: 'ANY';
ARRAY: 'ARRAY';
AS: 'AS';
ASC: 'ASC';
ASSOCIATE: 'ASSOCIATE';
AT: 'AT';
ATTRIBUTE: 'ATTRIBUTE';
AUDIT: 'AUDIT';
AUTHID: 'AUTHID';
AUTO: 'AUTO';
AUTOMATIC: 'AUTOMATIC';
AUTONOMOUS_TRANSACTION: 'AUTONOMOUS_TRANSACTION';
BATCH: 'BATCH';
BEFORE: 'BEFORE';
BEGIN: 'BEGIN';
BETWEEN: 'BETWEEN';
BFILE: 'BFILE';
BINARY_DOUBLE: 'BINARY_DOUBLE';
BINARY_FLOAT: 'BINARY_FLOAT';
BINARY_INTEGER: 'BINARY_INTEGER';
BLOB: 'BLOB';
BLOCK: 'BLOCK';
BODY: 'BODY';
BOOLEAN: 'BOOLEAN';
BOTH: 'BOTH';
BREADTH: 'BREADTH';
BULK: 'BULK';
BY: 'BY';
BYTE: 'BYTE';
C_LETTER: 'C';
CACHE: 'CACHE';
CALL: 'CALL';
CANONICAL: 'CANONICAL';
CASCADE: 'CASCADE';
CASE: 'CASE';
CAST: 'CAST';
CHAR: 'CHAR';
CHAR_CS: 'CHAR_CS';
CHARACTER: 'CHARACTER';
CHECK: 'CHECK';
CHR: 'CHR';
CLOB: 'CLOB';
CLOSE: 'CLOSE';
CLUSTER: 'CLUSTER';
COALESCE: 'COALESCE';
COLLECT: 'COLLECT';
COLUMN: 'COLUMN';
COLUMNS: 'COLUMNS';
COMMENT: 'COMMENT';
COMMIT: 'COMMIT';
COMMITTED: 'COMMITTED';
COMPATIBILITY: 'COMPATIBILITY';
COMPILE: 'COMPILE';
COMPOUND: 'COMPOUND';
CONNECT: 'CONNECT';
CONNECT_BY_ROOT: 'CONNECT_BY_ROOT';
CONSTANT: 'CONSTANT';
CONSTRAINT: 'CONSTRAINT';
CONSTRAINTS: 'CONSTRAINTS';
CONSTRUCTOR: 'CONSTRUCTOR';
CONTENT: 'CONTENT';
CONTEXT: 'CONTEXT';
CONTINUE: 'CONTINUE';
CONVERT: 'CONVERT';
CORRUPT_XID: 'CORRUPT_XID';
CORRUPT_XID_ALL: 'CORRUPT_XID_ALL';
COST: 'COST';
COUNT: 'COUNT';
CREATE: 'CREATE';
CROSS: 'CROSS';
CUBE: 'CUBE';
CURRENT: 'CURRENT';
CURRENT_USER: 'CURRENT_USER';
CURSOR: 'CURSOR';
CUSTOMDATUM: 'CUSTOMDATUM';
CYCLE: 'CYCLE';
DATA: 'DATA';
DATABASE: 'DATABASE';
DATE: 'DATE';
DAY: 'DAY';
DB_ROLE_CHANGE: 'DB_ROLE_CHANGE';
DBTIMEZONE: 'DBTIMEZONE';
DDL: 'DDL';
DEBUG: 'DEBUG';
DEC: 'DEC';
DECIMAL: 'DECIMAL';
DECLARE: 'DECLARE';
DECOMPOSE: 'DECOMPOSE';
DECREMENT: 'DECREMENT';
DEFAULT: 'DEFAULT';
DEFAULTS: 'DEFAULTS';
DEFERRED: 'DEFERRED';
DEFINER: 'DEFINER';
DELETE: 'DELETE';
DEPTH: 'DEPTH';
DESC: 'DESC';
DETERMINISTIC: 'DETERMINISTIC';
DIMENSION: 'DIMENSION';
DISABLE: 'DISABLE';
DISASSOCIATE: 'DISASSOCIATE';
DISTINCT: 'DISTINCT';
DOCUMENT: 'DOCUMENT';
DOUBLE: 'DOUBLE';
DROP: 'DROP';
DSINTERVAL_UNCONSTRAINED: 'DSINTERVAL_UNCONSTRAINED';
EACH: 'EACH';
ELEMENT: 'ELEMENT';
ELSE: 'ELSE';
ELSIF: 'ELSIF';
EMPTY: 'EMPTY';
ENABLE: 'ENABLE';
ENCODING: 'ENCODING';
END: 'END';
ENTITYESCAPING: 'ENTITYESCAPING';
ERR: 'ERR';
ERRORS: 'ERRORS';
ESCAPE: 'ESCAPE';
EVALNAME: 'EVALNAME';
EXCEPTION: 'EXCEPTION';
EXCEPTION_INIT: 'EXCEPTION_INIT';
EXCEPTIONS: 'EXCEPTIONS';
EXCLUDE: 'EXCLUDE';
EXCLUSIVE: 'EXCLUSIVE';
EXECUTE: 'EXECUTE';
EXISTS: 'EXISTS';
EXIT: 'EXIT';
EXPLAIN: 'EXPLAIN';
EXTERNAL: 'EXTERNAL';
EXTRACT: 'EXTRACT';
FAILURE: 'FAILURE';
FALSE: 'FALSE';
FETCH: 'FETCH';
FINAL: 'FINAL';
FIRST: 'FIRST';
FIRST_VALUE: 'FIRST_VALUE';
FLOAT: 'FLOAT';
FOLLOWING: 'FOLLOWING';
FOLLOWS: 'FOLLOWS';
FOR: 'FOR';
FORALL: 'FORALL';
FORCE: 'FORCE';
FROM: 'FROM';
FULL: 'FULL';
FUNCTION: 'FUNCTION';
GOTO: 'GOTO';
GRANT: 'GRANT';
GROUP: 'GROUP';
GROUPING: 'GROUPING';
HASH: 'HASH';
HAVING: 'HAVING';
HIDE: 'HIDE';
HOUR: 'HOUR';
IF: 'IF';
IGNORE: 'IGNORE';
IMMEDIATE: 'IMMEDIATE';
IN: 'IN';
INCLUDE: 'INCLUDE';
INCLUDING: 'INCLUDING';
INCREMENT: 'INCREMENT';
INDENT: 'INDENT';
INDEX: 'INDEX';
INDEXED: 'INDEXED';
INDICATOR: 'INDICATOR';
INDICES: 'INDICES';
INFINITE: 'INFINITE';
INLINE: 'INLINE';
INNER: 'INNER';
INOUT: 'INOUT';
INSERT: 'INSERT';
INSTANTIABLE: 'INSTANTIABLE';
INSTEAD: 'INSTEAD';
INT: 'INT';
INTEGER: 'INTEGER';
INTERSECT: 'INTERSECT';
INTERVAL: 'INTERVAL';
INTO: 'INTO';
INVALIDATE: 'INVALIDATE';
IS: 'IS';
ISOLATION: 'ISOLATION';
ITERATE: 'ITERATE';
JAVA: 'JAVA';
JOIN: 'JOIN';
KEEP: 'KEEP';
LANGUAGE: 'LANGUAGE';
LAST: 'LAST';
LAST_VALUE: 'LAST_VALUE';
LEADING: 'LEADING';
LEFT: 'LEFT';
LEVEL: 'LEVEL';
LIBRARY: 'LIBRARY';
LIKE: 'LIKE';
LIKE2: 'LIKE2';
LIKE4: 'LIKE4';
LIKEC: 'LIKEC';
LIMIT: 'LIMIT';
LOCAL: 'LOCAL';
LOCK: 'LOCK';
LOCKED: 'LOCKED';
LOG: 'LOG';
LOGOFF: 'LOGOFF';
LOGON: 'LOGON';
LONG: 'LONG';
LOOP: 'LOOP';
MAIN: 'MAIN';
MAP: 'MAP';
MATCHED: 'MATCHED';
MAXVALUE: 'MAXVALUE';
MEASURES: 'MEASURES';
MEMBER: 'MEMBER';
MERGE: 'MERGE';
MINUS: 'MINUS';
MINUTE: 'MINUTE';
MINVALUE: 'MINVALUE';
MLSLABEL: 'MLSLABEL';
MODE: 'MODE';
MODEL: 'MODEL';
MODIFY: 'MODIFY';
MONTH: 'MONTH';
MULTISET: 'MULTISET';
NAME: 'NAME';
NAN: 'NAN';
NATURAL: 'NATURAL';
NATURALN: 'NATURALN';
NAV: 'NAV';
NCHAR: 'NCHAR';
NCHAR_CS: 'NCHAR_CS';
NCLOB: 'NCLOB';
NESTED: 'NESTED';
NEW: 'NEW';
NO: 'NO';
NOAUDIT: 'NOAUDIT';
NOCACHE: 'NOCACHE';
NOCOPY: 'NOCOPY';
NOCYCLE: 'NOCYCLE';
NOENTITYESCAPING: 'NOENTITYESCAPING';
NOMAXVALUE: 'NOMAXVALUE';
NOMINVALUE: 'NOMINVALUE';
NONE: 'NONE';
NOORDER: 'NOORDER';
NOSCHEMACHECK: 'NOSCHEMACHECK';
NOT: 'NOT';
NOWAIT: 'NOWAIT';
NULL: 'NULL';
NULLS: 'NULLS';
NUMBER: 'NUMBER';
NUMERIC: 'NUMERIC';
NVARCHAR2: 'NVARCHAR2';
OBJECT: 'OBJECT';
OF: 'OF';
OFF: 'OFF';
OID: 'OID';
OLD: 'OLD';
ON: 'ON';
ONLY: 'ONLY';
OPEN: 'OPEN';
OPTION: 'OPTION';
OR: 'OR';
ORADATA: 'ORADATA';
ORDER: 'ORDER';
ORDINALITY: 'ORDINALITY';
OSERROR: 'OSERROR';
OUT: 'OUT';
OUTER: 'OUTER';
OVER: 'OVER';
OVERRIDING: 'OVERRIDING';
PACKAGE: 'PACKAGE';
PARALLEL_ENABLE: 'PARALLEL_ENABLE';
PARAMETERS: 'PARAMETERS';
PARENT: 'PARENT';
PARTITION: 'PARTITION';
PASSING: 'PASSING';
PATH: 'PATH';
PERCENT_ISOPEN: '%ISOPEN';
PERCENT_FOUND: '%FOUND';
PERCENT_NOTFOUND: '%NOTFOUND';
PERCENT_ROWCOUNT: '%ROWCOUNT';
PERCENT_ROWTYPE: '%ROWTYPE';
PERCENT_TYPE: '%TYPE';
PIPELINED: 'PIPELINED';
PIVOT: 'PIVOT';
PLAN: 'PLAN';
PUBLIC: 'PUBLIC';
PLS_INTEGER: 'PLS_INTEGER';
POSITIVE: 'POSITIVE';
POSITIVEN: 'POSITIVEN';
PRAGMA: 'PRAGMA';
PRECEDING: 'PRECEDING';
PRECISION: 'PRECISION';
PRESENT: 'PRESENT';
PRIOR: 'PRIOR';
PROCEDURE: 'PROCEDURE';
RAISE: 'RAISE';
RANGE: 'RANGE';
RAW: 'RAW';
READ: 'READ';
REAL: 'REAL';
RECORD: 'RECORD';
REF: 'REF';
REFERENCE: 'REFERENCE';
REFERENCING: 'REFERENCING';
REJECT: 'REJECT';
RELIES_ON: 'RELIES_ON';
RENAME: 'RENAME';
REPLACE: 'REPLACE';
RESPECT: 'RESPECT';
RESTRICT_REFERENCES: 'RESTRICT_REFERENCES';
RESULT: 'RESULT';
RESULT_CACHE: 'RESULT_CACHE';
RETURN: 'RETURN';
RETURNING: 'RETURNING';
REUSE: 'REUSE';
REVERSE: 'REVERSE';
REVOKE: 'REVOKE';
RIGHT: 'RIGHT';
ROLLBACK: 'ROLLBACK';
ROLLUP: 'ROLLUP';
ROW: 'ROW';
ROWID: 'ROWID';
ROWS: 'ROWS';
RULES: 'RULES';
SAMPLE: 'SAMPLE';
SAVE: 'SAVE';
SAVEPOINT: 'SAVEPOINT';
SCHEMA: 'SCHEMA';
SCHEMACHECK: 'SCHEMACHECK';
SCN: 'SCN';
SEARCH: 'SEARCH';
SECOND: 'SECOND';
SEED: 'SEED';
SEGMENT: 'SEGMENT';
SELECT: 'SELECT';
SELF: 'SELF';
SEQUENCE: 'SEQUENCE';
SEQUENTIAL: 'SEQUENTIAL';
SERIALIZABLE: 'SERIALIZABLE';
SERIALLY_REUSABLE: 'SERIALLY_REUSABLE';
SERVERERROR: 'SERVERERROR';
SESSIONTIMEZONE: 'SESSIONTIMEZONE';
SET: 'SET';
SETS: 'SETS';
SETTINGS: 'SETTINGS';
SHARE: 'SHARE';
SHOW: 'SHOW';
SHUTDOWN: 'SHUTDOWN';
SIBLINGS: 'SIBLINGS';
SIGNTYPE: 'SIGNTYPE';
SIMPLE_INTEGER: 'SIMPLE_INTEGER';
SINGLE: 'SINGLE';
SIZE: 'SIZE';
SKIP_: 'SKIP';
SMALLINT: 'SMALLINT';
SNAPSHOT: 'SNAPSHOT';
SOME: 'SOME';
SPECIFICATION: 'SPECIFICATION';
SQLDATA: 'SQLDATA';
SQLERROR: 'SQLERROR';
STANDALONE: 'STANDALONE';
START: 'START';
STARTUP: 'STARTUP';
STATEMENT: 'STATEMENT';
STATEMENT_ID: 'STATEMENT_ID';
STATIC: 'STATIC';
STATISTICS: 'STATISTICS';
STRING: 'STRING';
SUBMULTISET: 'SUBMULTISET';
SUBPARTITION: 'SUBPARTITION';
SUBSTITUTABLE: 'SUBSTITUTABLE';
SUBTYPE: 'SUBTYPE';
SUCCESS: 'SUCCESS';
SUSPEND: 'SUSPEND';
SYNONYM: 'SYNONYM';
TABLE: 'TABLE';
THE: 'THE';
THEN: 'THEN';
TIME: 'TIME';
TIMESTAMP: 'TIMESTAMP';
TIMESTAMP_LTZ_UNCONSTRAINED: 'TIMESTAMP_LTZ_UNCONSTRAINED';
TIMESTAMP_TZ_UNCONSTRAINED: 'TIMESTAMP_TZ_UNCONSTRAINED';
TIMESTAMP_UNCONSTRAINED: 'TIMESTAMP_UNCONSTRAINED';
TIMEZONE_ABBR: 'TIMEZONE_ABBR';
TIMEZONE_HOUR: 'TIMEZONE_HOUR';
TIMEZONE_MINUTE: 'TIMEZONE_MINUTE';
TIMEZONE_REGION: 'TIMEZONE_REGION';
TO: 'TO';
TRAILING: 'TRAILING';
TRANSACTION: 'TRANSACTION';
TRANSLATE: 'TRANSLATE';
TREAT: 'TREAT';
TRIGGER: 'TRIGGER';
TRUE: 'TRUE';
TRUNCATE: 'TRUNCATE';
TYPE: 'TYPE';
UNBOUNDED: 'UNBOUNDED';
UNDER: 'UNDER';
UNION: 'UNION';
UNIQUE: 'UNIQUE';
UNLIMITED: 'UNLIMITED';
UNPIVOT: 'UNPIVOT';
UNTIL: 'UNTIL';
UPDATE: 'UPDATE';
UPDATED: 'UPDATED';
UPSERT: 'UPSERT';
UROWID: 'UROWID';
USE: 'USE';
USING: 'USING';
VALIDATE: 'VALIDATE';
VALUE: 'VALUE';
VALUES: 'VALUES';
VARCHAR: 'VARCHAR';
VARCHAR2: 'VARCHAR2';
VARIABLE: 'VARIABLE';
VARRAY: 'VARRAY';
VARYING: 'VARYING';
VERSION: 'VERSION';
VERSIONS: 'VERSIONS';
WAIT: 'WAIT';
WARNING: 'WARNING';
WELLFORMED: 'WELLFORMED';
WHEN: 'WHEN';
WHENEVER: 'WHENEVER';
WHERE: 'WHERE';
WHILE: 'WHILE';
WITH: 'WITH';
WITHIN: 'WITHIN';
WORK: 'WORK';
WRITE: 'WRITE';
XML: 'XML';
XMLAGG: 'XMLAGG';
XMLATTRIBUTES: 'XMLATTRIBUTES';
XMLCAST: 'XMLCAST';
XMLCOLATTVAL: 'XMLCOLATTVAL';
XMLELEMENT: 'XMLELEMENT';
XMLEXISTS: 'XMLEXISTS';
XMLFOREST: 'XMLFOREST';
XMLNAMESPACES: 'XMLNAMESPACES';
XMLPARSE: 'XMLPARSE';
XMLPI: 'XMLPI';
XMLQUERY: 'XMLQUERY';
XMLROOT: 'XMLROOT';
XMLSERIALIZE: 'XMLSERIALIZE';
XMLTABLE: 'XMLTABLE';
YEAR: 'YEAR';
YES: 'YES';
YMINTERVAL_UNCONSTRAINED: 'YMINTERVAL_UNCONSTRAINED';
ZONE: 'ZONE';
PREDICTION: 'PREDICTION';
PREDICTION_BOUNDS: 'PREDICTION_BOUNDS';
PREDICTION_COST: 'PREDICTION_COST';
PREDICTION_DETAILS: 'PREDICTION_DETAILS';
PREDICTION_PROBABILITY: 'PREDICTION_PROBABILITY';
PREDICTION_SET: 'PREDICTION_SET';
CUME_DIST: 'CUME_DIST';
DENSE_RANK: 'DENSE_RANK';
LISTAGG: 'LISTAGG';
PERCENT_RANK: 'PERCENT_RANK';
PERCENTILE_CONT: 'PERCENTILE_CONT';
PERCENTILE_DISC: 'PERCENTILE_DISC';
RANK: 'RANK';
AVG: 'AVG';
CORR: 'CORR';
COVAR_: 'COVAR_';
DECODE: 'DECODE';
LAG: 'LAG';
LEAD: 'LEAD';
MAX: 'MAX';
MEDIAN: 'MEDIAN';
MIN: 'MIN';
NTILE: 'NTILE';
NVL: 'NVL';
RATIO_TO_REPORT: 'RATIO_TO_REPORT';
REGR_: 'REGR_';
ROUND: 'ROUND';
ROW_NUMBER: 'ROW_NUMBER';
SUBSTR: 'SUBSTR';
TO_CHAR: 'TO_CHAR';
TRIM: 'TRIM';
SUM: 'SUM';
STDDEV: 'STDDEV';
VAR_: 'VAR_';
VARIANCE: 'VARIANCE';
// Rule #358 <NATIONAL_CHAR_STRING_LIT> - subtoken typecast in <REGULAR_ID>, it also incorporates <character_representation>
// Lowercase 'n' is a usual addition to the standard
NATIONAL_CHAR_STRING_LIT: 'N' '\'' (~('\'' | '\r' | '\n' ) | '\'' '\'' | NEWLINE)* '\'';
// Rule #040 <BIT_STRING_LIT> - subtoken typecast in <REGULAR_ID>
// Lowercase 'b' is a usual addition to the standard
BIT_STRING_LIT: 'B' ('\'' [01]* '\'')+;
// Rule #284 <HEX_STRING_LIT> - subtoken typecast in <REGULAR_ID>
// Lowercase 'x' is a usual addition to the standard
HEX_STRING_LIT: 'X' ('\'' [A-F0-9]* '\'')+;
DOUBLE_PERIOD: '..';
PERIOD: '.';
//{ Rule #238 <EXACT_NUM_LIT>
// This rule is a bit tricky - it resolves the ambiguity with <PERIOD>
// It also incorporates <mantisa> and <exponent> for the <APPROXIMATE_NUM_LIT>
// Rule #501 <signed_integer> was incorporated directly in the token <APPROXIMATE_NUM_LIT>
// See also the rule #617 <unsigned_num_lit>
/*
: (
UNSIGNED_INTEGER
( '.' UNSIGNED_INTEGER
| {$type = UNSIGNED_INTEGER;}
) ( E ('+' | '-')? UNSIGNED_INTEGER {$type = APPROXIMATE_NUM_LIT;} )?
| '.' UNSIGNED_INTEGER ( E ('+' | '-')? UNSIGNED_INTEGER {$type = APPROXIMATE_NUM_LIT;} )?
)
(D | F)?
;*/
UNSIGNED_INTEGER: UNSIGNED_INTEGER_FRAGMENT;
APPROXIMATE_NUM_LIT: FLOAT_FRAGMENT ('E' ('+'|'-')? (FLOAT_FRAGMENT | UNSIGNED_INTEGER_FRAGMENT))? ('D' | 'F')?;
// Rule #--- <CHAR_STRING> is a base for Rule #065 <char_string_lit> , it incorporates <character_representation>
// and a superfluous subtoken typecasting of the "QUOTE"
CHAR_STRING: '\'' (~('\'' | '\r' | '\n') | '\'' '\'' | NEWLINE)* '\'';
// Perl-style quoted string, see Oracle SQL reference, chapter String Literals
CHAR_STRING_PERL : 'Q' ( QS_ANGLE | QS_BRACE | QS_BRACK | QS_PAREN) -> type(CHAR_STRING);
fragment QUOTE : '\'' ;
fragment QS_ANGLE : QUOTE '<' .*? '>' QUOTE ;
fragment QS_BRACE : QUOTE '{' .*? '}' QUOTE ;
fragment QS_BRACK : QUOTE '[' .*? ']' QUOTE ;
fragment QS_PAREN : QUOTE '(' .*? ')' QUOTE ;
fragment QS_OTHER_CH: ~('<' | '{' | '[' | '(' | ' ' | '\t' | '\n' | '\r');
// Rule #163 <DELIMITED_ID>
DELIMITED_ID: '"' (~('"' | '\r' | '\n') | '"' '"')+ '"' ;
// Rule #546 <SQL_SPECIAL_CHAR> was split into single rules
PERCENT: '%';
AMPERSAND: '&';
LEFT_PAREN: '(';
RIGHT_PAREN: ')';
DOUBLE_ASTERISK: '**';
ASTERISK: '*';
PLUS_SIGN: '+';
MINUS_SIGN: '-';
COMMA: ',';
SOLIDUS: '/';
AT_SIGN: '@';
ASSIGN_OP: ':=';
// See OCI reference for more information about this
BINDVAR
: ':' SIMPLE_LETTER (SIMPLE_LETTER | [0-9] | '_')*
| ':' DELIMITED_ID // not used in SQL but spotted in v$sqltext when using cursor_sharing
| ':' UNSIGNED_INTEGER
| QUESTION_MARK // not in SQL, not in Oracle, not in OCI, use this for JDBC
;
COLON: ':';
SEMICOLON: ';';
LESS_THAN_OR_EQUALS_OP: '<=';
LESS_THAN_OP: '<';
GREATER_THAN_OR_EQUALS_OP: '>=';
NOT_EQUAL_OP: '!='| '<>'| '^='| '~=';
CARRET_OPERATOR_PART: '^';
TILDE_OPERATOR_PART: '~';
EXCLAMATION_OPERATOR_PART: '!';
GREATER_THAN_OP: '>';
fragment
QUESTION_MARK: '?';
// protected UNDERSCORE : '_' SEPARATOR ; // subtoken typecast within <INTRODUCER>
CONCATENATION_OP: '||';
VERTICAL_BAR: '|';
EQUALS_OP: '=';
// Rule #532 <SQL_EMBDD_LANGUAGE_CHAR> was split into single rules:
LEFT_BRACKET: '[';
RIGHT_BRACKET: ']';
//{ Rule #319 <INTRODUCER>
INTRODUCER
: '_' //(SEPARATOR {$type = UNDERSCORE;})?
;
//{ Rule #479 <SEPARATOR>
// It was originally a protected rule set to be filtered out but the <COMMENT> and <'-'> clashed.
/*SEPARATOR
: '-' -> type('-')
| COMMENT -> channel(HIDDEN)
| (SPACE | NEWLINE)+ -> channel(HIDDEN)
;*/
//}
SPACES: [ \t\r\n]+ -> skip;
//{ Rule #504 <SIMPLE_LETTER> - simple_latin _letter was generalised into SIMPLE_LETTER
// Unicode is yet to be implemented - see NSF0
fragment
SIMPLE_LETTER
: [A-Z]
;
//}
// Rule #176 <DIGIT> was incorporated by <UNSIGNED_INTEGER>
//{ Rule #615 <UNSIGNED_INTEGER> - subtoken typecast in <EXACT_NUM_LIT>
fragment
UNSIGNED_INTEGER_FRAGMENT: [0-9]+ ;
fragment
FLOAT_FRAGMENT
: UNSIGNED_INTEGER* '.'? UNSIGNED_INTEGER+
;
//{ Rule #097 <COMMENT>
SINGLE_LINE_COMMENT: '--' ~('\r' | '\n')* (NEWLINE | EOF) -> channel(HIDDEN);
MULTI_LINE_COMMENT: '/*' .*? '*/' -> channel(HIDDEN);
// SQL*Plus prompt
// TODO should be grammar rule, but tricky to implement
PROMPT
: 'prompt' SPACE ( ~('\r' | '\n') )* (NEWLINE|EOF)
;
START_CMD
// TODO When using full word START there is a conflict with START WITH in sequences and CONNECT BY queries
// 'start' SPACE ( ~( '\r' | '\n') )* (NEWLINE|EOF)
: 'sta' SPACE ( ~('\r' | '\n') )* (NEWLINE|EOF)
// TODO Single @ conflicts with a database link name, like employees@remote
// | '@' ( ~('\r' | '\n') )* (NEWLINE|EOF)
| '@@' ( ~('\r' | '\n') )* (NEWLINE|EOF)
;
//{ Rule #360 <NEWLINE>
fragment
NEWLINE: '\r'? '\n';
fragment
SPACE: [ \t];
//{ Rule #442 <REGULAR_ID> additionally encapsulates a few STRING_LITs.
// Within testLiterals all reserved and non-reserved words are being resolved
REGULAR_ID: SIMPLE_LETTER (SIMPLE_LETTER | '$' | '_' | '#' | [0-9])*;
ZV: '@!' -> channel(HIDDEN); |
test/Fail/FlatDomInequality-1.agda | cagix/agda | 1,989 | 13045 | module FlatDomInequality-1 where
postulate
A : Set
g : A → A
g x = x
h : (@♭ x : A) → A
h = g
|
kv-avm-machines.adb | davidkristola/vole | 4 | 3344 | <filename>kv-avm-machines.adb<gh_stars>1-10
with Ada.Exceptions; use Ada.Exceptions;
with Ada.Text_IO;
with kv.avm.Log; use kv.avm.Log;
with kv.avm.Actors;
with kv.avm.Messages;
with kv.avm.Actor_Pool;
with kv.avm.Executables;
with kv.avm.Actor_References.Sets;
package body kv.avm.Machines is
use Interfaces;
use kv.avm.Control;
use kv.avm.Executables;
use kv.avm.Executable_Lists;
-----------------------------------------------------------------------------
procedure Initialize
(Self : in out Machine_Type;
Processor : in kv.avm.Processors.Processor_Access;
Factory : in kv.avm.Executables.Factory_Access) is
begin
Self.Processor := Processor;
Self.Factory := Factory;
Self.Future := kv.avm.control.NO_FUTURE;
Self.Router.Initialize(kv.avm.Control.Control_Interface(Self)'UNCHECKED_ACCESS);
Self.Steps := 0;
Self.Cursor := 0;
Self.Reaped := 0;
Self.Cycles := 0;
for List in Self.Lists'RANGE loop
Self.Lists(List).Initialize(List);
end loop;
end Initialize;
-----------------------------------------------------------------------------
function Get_Router(Self : Machine_Type) return kv.avm.Routers.Router_Type is
begin
return Self.Router;
end Get_Router;
-----------------------------------------------------------------------------
function Check_For_Beginning_Of_Cycle(Self : Machine_Type) return Boolean is
begin
-- If the cursor has advanced down to zero (remember, it moves down)
return Self.Cursor = 0;
end Check_For_Beginning_Of_Cycle;
-----------------------------------------------------------------------------
function Check_Message_Delivery_Policy(Self : Machine_Type) return Boolean is
begin
-- Always deliver messages at the beginning of the cycle
return True;
end Check_Message_Delivery_Policy;
-----------------------------------------------------------------------------
function Check_Undeferral_Policy(Self : Machine_Type) return Boolean is
begin
-- If there are still no actor instances ready to run, undefer the deferred ones
if Self.Router.Get_Queue_Size < 100 then
return True;
end if;
return Self.Lists(Active).Get_Last = 0;
end Check_Undeferral_Policy;
-----------------------------------------------------------------------------
function Check_Garbage_Collection_Policy(Self : Machine_Type) return Boolean is
begin
-- Collect garbage if we have a buildup of idle actor instances
return Natural(Self.Lists(Idle).Get_Last) > (Self.Old_Idle + Self.Garbage_Trigger);
end Check_Garbage_Collection_Policy;
-----------------------------------------------------------------------------
procedure Beginning_Of_Cycle
(Self : in out Machine_Type) is
begin
Self.Cycles := Self.Cycles + 1;
if self.Check_Message_Delivery_Policy then
Self.Router.Deliver_Messages;
end if;
if Self.Check_Undeferral_Policy then
Self.Undefer;
end if;
if self.Check_Garbage_Collection_Policy then
Self.Garbage_Collection;
end if;
Self.Cursor := Self.Lists(Active).Get_Last; -- Restart the cursor
exception
when Error: others =>
Put_Error("EXCEPTION (in Beginning_Of_Cycle): " & Exception_Information(Error));
raise;
end Beginning_Of_Cycle;
-----------------------------------------------------------------------------
procedure Process_Current_Executable
(Self : in out Machine_Type) is
Working : kv.avm.Executables.Executable_Access;
Status : kv.avm.Control.Status_Type;
begin
Working := Self.Lists(Active).Get(Self.Cursor);
if Working.Is_Running then
Working.Step(Self.Processor, Status);
if Status /= Active then
--Put_Line("Machine Instance Control: deactivating " & Working.Image & " because it returned status = " & Status_Type'IMAGE(Status));
--TODO: use the returned status to figure out what to do with the executable.
Self.Lists(Status).Acquire_From(Self.Cursor, Self.Lists(Active));
end if;
else
Put_Line("Non-running instance is in the active list, moving " & Working.Image & " to the idle list");
Self.Lists(Idle).Acquire_From(Self.Cursor, Self.Lists(Active));
end if;
Self.Cursor := Self.Cursor - 1;
end Process_Current_Executable;
-----------------------------------------------------------------------------
procedure Step
(Self : in out Machine_Type) is
begin
Self.Steps := Self.Steps + 1;
if Self.Check_For_Beginning_Of_Cycle then
self.Beginning_Of_Cycle;
end if;
if Self.Cursor /= 0 then
Self.Process_Current_Executable;
end if;
exception
when Error: others =>
Put_Error("EXCEPTION (in Step): " & Exception_Information(Error));
raise;
end Step;
-----------------------------------------------------------------------------
function Current_Instance(Self : Machine_Type) return kv.avm.Executables.Executable_Access is
begin
if Self.Cursor = 0 then
return Self.Lists(Active).Get(Self.Lists(Active).Get_Last);
end if;
return Self.Lists(Active).Get(Self.Cursor);
end Current_Instance;
-----------------------------------------------------------------------------
function Done(Self : Machine_Type) return Boolean is
begin
return Self.Lists(Active).Get_Last = 0;
end Done;
-----------------------------------------------------------------------------
function Get_Steps(Self : Machine_Type) return Natural is
begin
return Self.Steps;
end Get_Steps;
-----------------------------------------------------------------------------
function Get_Total(Self : Machine_Type) return Natural is
Count : Natural := 0;
begin
for Status in Active .. Idle loop
Count := Count + Natural(Self.Lists(Status).Get_Last);
end loop;
return Count;
end Get_Total;
-----------------------------------------------------------------------------
function Get_Active(Self : Machine_Type) return Natural is
begin
return Natural(Self.Lists(Active).Get_Last);
end Get_Active;
-----------------------------------------------------------------------------
function Get_Idle(Self : Machine_Type) return Natural is
begin
return Natural(Self.Lists(Idle).Get_Last);
end Get_Idle;
-----------------------------------------------------------------------------
function Get_Blocked(Self : Machine_Type) return Natural is
begin
return Natural(Self.Lists(Blocked).Get_Last);
end Get_Blocked;
-----------------------------------------------------------------------------
function Get_Deferred(Self : Machine_Type) return Natural is
begin
return Natural(Self.Lists(Deferred).Get_Last);
end Get_Deferred;
-----------------------------------------------------------------------------
function Get_Queue_Size(Self : Machine_Type) return Natural is
begin
return Self.Router.Get_Queue_Size;
end Get_Queue_Size;
-----------------------------------------------------------------------------
procedure Set_Queue_Limit(Self : in out Machine_Type; Queue_Limit : in Natural) is
begin
Self.Router.Set_Queue_Limit(Queue_Limit);
end Set_Queue_Limit;
-----------------------------------------------------------------------------
function Get_Cycles(Self : Machine_Type) return Natural is
begin
return Self.Cycles;
end Get_Cycles;
-----------------------------------------------------------------------------
function Get_Reaped(Self : Machine_Type) return Natural is
begin
return Self.Reaped;
end Get_Reaped;
-----------------------------------------------------------------------------
procedure Set_Capabilities(Self : in out Machine_Type; Capabilities : in kv.avm.Capabilities.Capabilities_Type) is
begin
Self.Capabilities := Capabilities;
end Set_Capabilities;
-----------------------------------------------------------------------------
procedure Set_Garbage_Trigger(Self : in out Machine_Type; Garbage_Trigger : in Natural) is
begin
Self.Garbage_Trigger := Garbage_Trigger;
end Set_Garbage_Trigger;
-----------------------------------------------------------------------------
procedure Deliver_Messages
(Self : in out Machine_Type) is
begin
Self.Router.Deliver_Messages;
end Deliver_Messages;
-----------------------------------------------------------------------------
-- Internal method
procedure Undefer
(Self : in out Machine_Type) is
Current : kv.avm.Executable_Lists.Cursor_Type;
Working : kv.avm.Executables.Executable_Access;
begin
Current := Self.Lists(Deferred).Get_Last;
while Current /= 0 loop
Working := Self.Lists(Deferred).Get(Current);
if Working.Is_Running then
Self.Lists(Active).Acquire_From(Current, Self.Lists(Deferred));
end if;
Current := Current - 1;
end loop;
exception
when Error: others =>
Put_Error("EXCEPTION (in Undefer): " & Exception_Information(Error));
raise;
end Undefer;
-----------------------------------------------------------------------------
-- Internal method
function Non_Idle(Self : Machine_Type) return kv.avm.Actor_References.Sets.Set is
Current : kv.avm.Executable_Lists.Cursor_Type;
Working : kv.avm.Executables.Executable_Access;
Collection : kv.avm.Actor_References.Sets.Set := kv.avm.Actor_References.Sets.Empty_Set;
begin
for Status in Running_Status_Type loop
Current := Self.Lists(Status).Get_Last;
while Current /= 0 loop
Working := Self.Lists(Status).Get(Current);
Collection.Union(Working.Reachable);
Current := Current - 1;
end loop;
end loop;
return Collection;
exception
when Error: others =>
Put_Error("EXCEPTION (in Non_Idle): " & Exception_Information(Error));
raise;
end Non_Idle;
-----------------------------------------------------------------------------
-- Internal method
function Expand_Reachable_Set
(Self : Machine_Type;
Starting : kv.avm.Actor_References.Sets.Set) return kv.avm.Actor_References.Sets.Set is
use kv.avm.Actor_References.Sets;
use kv.avm.Actor_References;
Working : kv.avm.Executables.Executable_Access;
Could_Run : Set;
Added : Set;
Expand : Set;
Reach : Set;
Check : Cursor;
Reference : Actor_Reference_Type;
begin
Could_Run := Starting;
Expand := Starting;
loop
-- Go through everything in Could_Run and see if all if its rachables are in the list.
-- If not, add them and try it again.
Added := Empty_Set;
Check := Expand.First;
while Check /= No_Element loop
Reference := Element(Check);
Working := kv.avm.Actor_Pool.Resolve(Reference);
Reach := Working.Reachable;
Added.Union(Reach - Could_Run);
Next(Check);
end loop;
exit when Added = Empty_Set;
--Ada.Text_IO.Put_Line("*** Garbage_Collection, adding some to Could_Run");
Could_Run.Union(Added);
Expand := Added;
end loop;
return Could_Run;
exception
when Error: others =>
Put_Error("EXCEPTION (in Expand_Reachable_Set): " & Exception_Information(Error));
raise;
end Expand_Reachable_Set;
-----------------------------------------------------------------------------
-- Internal method
procedure Delete_Unreachable_Executables
(Self : in out Machine_Type;
Reachable : in kv.avm.Actor_References.Sets.Set) is
Current : kv.avm.Executable_Lists.Cursor_Type;
Working : kv.avm.Executables.Executable_Access;
Reference : kv.avm.Actor_References.Actor_Reference_Type;
begin
Current := Self.Lists(Idle).Get_Last;
while Current /= 0 loop
Reference := Self.Lists(Idle).Get_Handle(Current).Get_Reference;
if not Reachable.Contains(Reference) then
Working := Self.Lists(Idle).Get(Current);
Put_Line("Deleting unreachable idle executable " & Working.Image);
Self.Lists(Idle).Delete(Current);
kv.avm.Actor_Pool.Delete(Reference);
Self.Reaped := Self.Reaped + 1;
end if;
Current := Current - 1;
end loop;
exception
when Error: others =>
Put_Error("EXCEPTION (in Delete_Unreachable_Executables): " & Exception_Information(Error));
raise;
end Delete_Unreachable_Executables;
-----------------------------------------------------------------------------
-- Internal method
procedure Garbage_Collection
(Self : in out Machine_Type) is
use kv.avm.Actor_References.Sets;
Reachable : Set;
begin
Put_Line("Running Garbage_Collection");
Reachable := Union(Self.Non_Idle, Self.Router.Reachable_From_Messages);
--TODO: add all machine pending callbacks (not implemented yet)
Reachable := Self.Expand_Reachable_Set(Reachable);
Self.Delete_Unreachable_Executables(Reachable);
Self.Old_Idle := Natural(Self.Lists(Idle).Get_Last);
exception
when Error: others =>
Put_Error("EXCEPTION (in Garbage_Collection): " & Exception_Information(Error));
raise;
end Garbage_Collection;
-----------------------------------------------------------------------------
-- Internal method
procedure Activate_Instance
(Self : in out Machine_Type;
Instance : in kv.avm.Executables.Executable_Access) is
Location : kv.avm.Executable_Lists.Cursor_Type;
begin
Location := Self.Lists(Deferred).Find(Instance);
if Location /= 0 then
Self.Lists(Active).Acquire_From(Location, Self.Lists(Deferred));
else
Location := Self.Lists(Idle).Find(Instance);
if Location /= 0 then
Self.Lists(Active).Acquire_From(Location, Self.Lists(Idle));
else
Location := Self.Lists(Blocked).Find(Instance);
if Location /= 0 then
Self.Lists(Active).Acquire_From(Location, Self.Lists(Blocked));
end if;
end if;
end if;
exception
when Error: others =>
Put_Error("EXCEPTION (in Activate_Instance): " & Exception_Information(Error));
raise;
end Activate_Instance;
-----------------------------------------------------------------------------
procedure New_Actor
(Self : in out Machine_Type;
Name : in String;
Instance : out kv.avm.Actor_References.Actor_Reference_Type) is
Actor_Pointer : kv.avm.Actors.Actor_Access;
Instance_Pointer : kv.avm.Executables.Executable_Access;
Empty_Data : kv.avm.Tuples.Tuple_Type;
use kv.avm.Actors;
begin
--Put_Line("kv.avm.machine.New_Actor "&Name);
Actor_Pointer := kv.avm.Actors.Get_Actor_By_Name(Name);
if Actor_Pointer = null then
Put_Line("ERROR: kv.avm.machine.New_Actor, Actor_Pointer is null because <"&Name&"> could not be found.");
raise Machine_Error;
end if;
Self.Factory.New_Executable(Actor_Pointer, Self'UNCHECKED_ACCESS, Instance_Pointer, Instance);
Put_Line("Machine Instance Control: adding " & Instance_Pointer.Image);
Self.Lists(Active).Add(Instance_Pointer, Instance);
exception
when Error: others =>
Put_Error("EXCEPTION (in New_Actor): " & Exception_Information(Error));
raise;
end New_Actor;
-----------------------------------------------------------------------------
procedure Post_Message
(Self : in out Machine_Type;
Message : in kv.avm.Messages.Message_Type;
Status : out kv.avm.Control.Status_Type) is
begin
Self.Router.Post_Message(Message, Status);
end Post_Message;
-----------------------------------------------------------------------------
procedure Post_Response
(Self : in out Machine_Type;
Reply_To : in kv.avm.Actor_References.Actor_Reference_Type;
Answer : in kv.avm.Tuples.Tuple_Type;
Future : in Interfaces.Unsigned_32) is
begin
Self.Router.Post_Response(Reply_To, Answer, Future);
end Post_Response;
-----------------------------------------------------------------------------
procedure Generate_Next_Future
(Self : in out Machine_Type;
Future : out Interfaces.Unsigned_32) is
begin
Self.Future := Self.Future + 1;
Future := Self.Future;
end Generate_Next_Future;
-----------------------------------------------------------------------------
procedure Trap_To_The_Machine
(Self : in out Machine_Type;
Trap : in String;
Data : in kv.avm.Registers.Register_Type;
Answer : out kv.avm.Registers.Register_Type;
Status : out kv.avm.Control.Status_Type) is
begin
Put_Line("Machine_Type.Trap_To_The_Machine called with name = '"&Trap&"'");
Self.Capabilities.Execute(Trap, Self, Data, Answer, Status);
exception
when Error: others =>
Put_Error("EXCEPTION (in Trap_To_The_Machine): " & Exception_Information(Error));
raise;
end Trap_To_The_Machine;
-----------------------------------------------------------------------------
procedure Activate_Instance
(Self : in out Machine_Type;
Instance : in kv.avm.Actor_References.Actor_Reference_Type) is
Executable : kv.avm.Executables.Executable_Access;
begin
Executable := kv.avm.actor_pool.Resolve(Instance);
Self.Activate_Instance(Executable);
end Activate_Instance;
-----------------------------------------------------------------------------
procedure Start_With
(Self : in out Machine_Type;
Actor : in String;
Message : in String;
Data : in kv.avm.Memories.Register_Array_Type) is
Instance : kv.avm.Actor_References.Actor_Reference_Type;
Content : aliased kv.avm.Tuples.Tuple_Type;
Empty_Tuple : aliased kv.avm.Tuples.Tuple_Type;
Status : kv.avm.Control.Status_Type;
Constructor_Message : kv.avm.Messages.Message_Type;
Go_Message : kv.avm.Messages.Message_Type;
begin
Self.New_Actor(Actor, Instance);
Empty_Tuple.Initialize;
Empty_Tuple.Fold_Empty;
Constructor_Message.Initialize
(Source => kv.avm.Actor_References.Null_Reference,
Reply_To => kv.avm.Actor_References.Null_Reference,
Destination => Instance,
Message_Name => "CONSTRUCTOR",
Data => Empty_Tuple,
Future => kv.avm.Control.NO_FUTURE);
Self.Post_Message
(Message => Constructor_Message,
Status => Status);
Content.Initialize;
Content.Fold(Data);
Go_Message.Initialize
(Source => kv.avm.Actor_References.Null_Reference,
Reply_To => kv.avm.Actor_References.Null_Reference,
Destination => Instance,
Message_Name => Message,
Data => Content,
Future => kv.avm.Control.NO_FUTURE);
Self.Post_Message
(Message => Go_Message,
Status => Status);
exception
when Error: others =>
Put_Error("EXCEPTION (in Start_With): " & Exception_Information(Error));
raise;
end Start_With;
end kv.avm.Machines;
|
examples/adventure_game/src/engine_hooks.adb | persan/gdnative_ada | 10 | 533 | <gh_stars>1-10
with GDNative.Context;
with GDNative.Console;
with GDNative.Exceptions;
with Adventure;
package body Engine_Hooks is
procedure On_GDNative_Init (p_options : access Thin.godot_gdnative_init_options) is begin
Context.GDNative_Initialize (p_options);
Console.Put ("GDNative Initialized!");
end;
procedure On_GDNative_Terminate (p_options : access Thin.godot_gdnative_terminate_options) is begin
Console.Put ("GDNative Finalized!");
Context.GDNative_Finalize (p_options);
end;
procedure On_Nativescript_Init (p_handle : Thin.Nativescript_Handle) is begin
Console.Put ("Nativescript Initialzing");
Context.Nativescript_Initialize (p_handle);
Adventure.Register_Classes;
Console.Put ("Nativescript Initialized!");
exception
when Error : others => Exceptions.Put_Error (Error);
end;
end;
|
src/asm-functions.asm | PascalBeyer/PBC | 1 | 92377 |
; Was compiled with 'nasm -g -f win64 src/asm-functions.asm -o build/asm-functions.obj'
; This file only exists because for some reason msvc does not let you define the 'mem*' routines
; but requires them to work.
SECTION .text
global memcpy
global memset
global memcmp
global strcmp
global strlen
memcpy:
; rcx = dest
; rdx = source
; r8 = count
mov rax, rcx ; return original destination pointer
mov rcx, r8 ; move count to rcx
mov r8, rsi ; save rsi in r8
mov r9, rdi ; save rdi in r9
mov rdi, rax ; move destination pointer to rdi
mov rsi, rdx ; move source pointer to rsi
rep movsb ; copy source to destination buffer
mov rsi, r8 ; restore rsi
mov rdi, r9 ; restore rdi
ret
; return = dest
memset:
; rcx = dest
; rdx = value
; r8 = count
mov r9, rdi ; save rdi in r9
mov rax, rdx ; load 'value'
mov rdi, rcx ; load 'dest'
xchg rcx, r8 ; move count to rcx, and the original destiniation to r8
rep stosb ; copy AL to destination buffer
mov rax, r8 ; return original destination buffer
mov rdi, r9 ; restore rdi
ret
; return = dest
memcmp:
; rcx = ptr1
; rdx = ptr2
; r8 = count
mov r9, rdi ; save rdi
mov rdi, rcx ; load 'ptr1'
mov rcx, r8 ; load 'count'
mov r8, rsi ; save rsi
mov rsi, rdx ; load 'ptr2'
xor eax, eax ; clear eax, later used for the return value
xor edx, edx ; clear edx, later used for the return value
repe cmpsb ; compare 'ptr1' to 'ptr2' for 'count' bytes
setl dl ; set edx if last byte had 'ptr1' < 'ptr2'
setg al ; set eax if last byte had 'ptr1' > 'ptr2'
sub eax, edx ; exactly -1 if 'ptr1' < 'ptr2' and 1 if 'ptr1' > 'ptr2'
mov rdi, r9 ; restore rdi
mov rsi, r8 ; restore rsi
ret
strcmp:
; rcx = ptr1
; rdx = ptr2
mov r9, rdi ; save rdi
mov r8, rsi ; save rsi
mov rdi, rcx ; load 'ptr1'
mov rsi, rdx ; load 'ptr2'
xor eax, eax ; clear eax, later used for the return value
xor edx, edx ; clear edx, later used for the return value
loop:
cmpsb ; compare 'ptr1' to 'ptr2', increment both
jne unequal ; break strings unequal
movzx ecx, byte[rdi]
test ecx, ecx ; check if we are at the zero terminator
je equal ; break both strings zero
jmp loop ; loop
unequal:
setl dl ; set edx if last byte had 'ptr1' < 'ptr2'
setg al ; set eax if last byte had 'ptr1' > 'ptr2'
sub eax, edx ; exactly -1 if 'ptr1' < 'ptr2' and 1 if 'ptr1' > 'ptr2'
equal:
mov rdi, r9 ; restore rdi
mov rsi, r8 ; restore rsi
ret
; @cleanup: do these all have to do cld (clear direction flag)
strlen:
; rcx = string
mov r9, rdi ; save rdi
mov rdi, rcx ; load 'string'
mov rcx, -1 ; load larges possible string
xor eax, eax ; zero compare operant
repne scasb ; compare until string is zero
not rcx ; as this is computed in two compliment and rcx got decremented each comparison,
; rcx now holds the length
lea rax, [rcx - 1] ; load the length into rax
mov rdi, r9 ; restore rdi
ret
|
libsrc/_DEVELOPMENT/target/rc2014/device/8255/8080/8255_read_byte.asm | UnivEngineer/z88dk | 4 | 29757 | <reponame>UnivEngineer/z88dk<filename>libsrc/_DEVELOPMENT/target/rc2014/device/8255/8080/8255_read_byte.asm
IF __CPU_INTEL__
INCLUDE "_DEVELOPMENT/target/rc2014/config_rc2014-8085_private.inc"
ELIF __CPU_Z80__
INCLUDE "config_private.inc"
ENDIF
SECTION code_driver
PUBLIC ide_read_byte
;Do a read bus cycle to the drive, using the 8255
;input A = ide register address
;output A = lower byte read from IDE drive
;output E = lower byte read from IDE drive
;uses AF, DE
.ide_read_byte
ld d,a ;copy address to D
out (__IO_PIO_IDE_CTL),a ;drive address onto control lines
or __IO_IDE_RD_LINE
out (__IO_PIO_IDE_CTL),a ;and assert read pin
in a,(__IO_PIO_IDE_LSB) ;read the lower byte
ld e,a ;save read byte
ld a,d
out (__IO_PIO_IDE_CTL),a ;deassert read pin
xor a
out (__IO_PIO_IDE_CTL),a ;deassert all control pins
ld a,e
ret
|
mac/jm.applescript | tBoccinfuso/AvariavsLauncher | 0 | 4442 | <reponame>tBoccinfuso/AvariavsLauncher<filename>mac/jm.applescript
tell application "Safari"
tell window 1
set current tab to (make new tab with properties {URL:"https://juncturemedia.com/"})
end tell
end tell |
libsrc/_DEVELOPMENT/l/sccz80/crt0/l_asr_u.asm | jpoikela/z88dk | 38 | 3295 | <reponame>jpoikela/z88dk
; Z88 Small C+ Run time Library
; Moved functions over to proper libdefs
; To make startup code smaller and neater!
;
; 6/9/98 djm
;
; 22/3/99 djm Rewritten to be shorter.. unsigned version
SECTION code_clib
SECTION code_l_sccz80
PUBLIC l_asr_u
PUBLIC l_asr_u_hl_by_e
EXTERN l_lsr_hl
l_asr_u:
ex de,hl
l_asr_u_hl_by_e:
ld a,e
jp l_lsr_hl
|
data/maps/headers/Route11.asm | opiter09/ASM-Machina | 1 | 162361 |
map_header Route11, ROUTE_11, OVERWORLD, WEST | EAST
connection west, VermilionCity, VERMILION_CITY, -4
connection east, Route12, ROUTE_12, -27
end_map_header
|
oeis/020/A020793.asm | neoneye/loda-programs | 11 | 89058 | ; A020793: Decimal expansion of 1/6.
; Submitted by <NAME>
; 1,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6
cmp $0,0
gcd $0,6
|
libsrc/_DEVELOPMENT/temp/sp1/zx/c/sccz80/sp1_ScreenStr_callee.asm | jpoikela/z88dk | 640 | 86391 | ; uint __CALLEE__ sp1_ScreenStr_callee(uchar row, uchar col)
; 02.2006 aralbrec, Sprite Pack v3.0
; sinclair zx version
SECTION code_clib
SECTION code_temp_sp1
PUBLIC sp1_ScreenStr_callee
EXTERN asm_sp1_ScreenStr
sp1_ScreenStr_callee:
pop hl
pop de
ex (sp),hl
ld d,l
jp asm_sp1_ScreenStr
|
oeis/051/A051683.asm | neoneye/loda-programs | 11 | 172511 | ; A051683: Triangle read by rows: T(n,k) = n!*k.
; Submitted by <NAME>
; 1,2,4,6,12,18,24,48,72,96,120,240,360,480,600,720,1440,2160,2880,3600,4320,5040,10080,15120,20160,25200,30240,35280,40320,80640,120960,161280,201600,241920,282240,322560,362880,725760,1088640,1451520,1814400,2177280,2540160,2903040,3265920,3628800,7257600,10886400,14515200,18144000,21772800,25401600,29030400,32659200,36288000,39916800,79833600,119750400,159667200,199584000,239500800,279417600,319334400,359251200,399168000,439084800,479001600,958003200,1437004800,1916006400,2395008000,2874009600
mov $3,1
lpb $0
sub $0,$3
mov $2,$3
add $3,1
mul $1,$3
add $1,$2
min $3,$0
lpe
mov $0,$1
add $0,1
|
out/prologin_template_charmatrix.adb | FardaleM/metalang | 22 | 969 | <reponame>FardaleM/metalang<gh_stars>10-100
with ada.text_io, ada.Integer_text_IO, Ada.Text_IO.Text_Streams, Ada.Strings.Fixed, Interfaces.C;
use ada.text_io, ada.Integer_text_IO, Ada.Strings, Ada.Strings.Fixed, Interfaces.C;
procedure prologin_template_charmatrix is
type stringptr is access all char_array;
procedure PString(s : stringptr) is
begin
String'Write (Text_Streams.Stream (Current_Output), To_Ada(s.all));
end;
procedure PChar(c : in Character) is
begin
Character'Write (Text_Streams.Stream (Current_Output), c);
end;
procedure PInt(i : in Integer) is
begin
String'Write (Text_Streams.Stream (Current_Output), Trim(Integer'Image(i), Left));
end;
procedure SkipSpaces is
C : Character;
Eol : Boolean;
begin
loop
Look_Ahead(C, Eol);
exit when Eol or C /= ' ';
Get(C);
end loop;
end;
type e is Array (Integer range <>) of Character;
type e_PTR is access e;
type f is Array (Integer range <>) of e_PTR;
type f_PTR is access f;
function programme_candidat(tableau : in f_PTR; taille_x : in Integer; taille_y : in Integer) return Integer is
out0 : Integer;
begin
out0 := 0;
for i in integer range 0..taille_y - 1 loop
for j in integer range 0..taille_x - 1 loop
out0 := out0 + Character'Pos(tableau(i)(j)) * (i + j * 2);
PChar(tableau(i)(j));
end loop;
PString(new char_array'( To_C("--" & Character'Val(10))));
end loop;
return out0;
end;
taille_y : Integer;
taille_x : Integer;
tableau : f_PTR;
c : e_PTR;
a : f_PTR;
begin
Get(taille_x);
SkipSpaces;
Get(taille_y);
SkipSpaces;
a := new f (0..taille_y - 1);
for b in integer range 0..taille_y - 1 loop
c := new e (0..taille_x - 1);
for d in integer range 0..taille_x - 1 loop
Get(c(d));
end loop;
SkipSpaces;
a(b) := c;
end loop;
tableau := a;
PInt(programme_candidat(tableau, taille_x, taille_y));
PString(new char_array'( To_C("" & Character'Val(10))));
end;
|
Some Basic Programs/18.asm | moni-kishore-dhar/Problem-Solving-by-Assembly-Language | 1 | 99577 | ;1+(1*2)+(1*2*3)+(1*2*3*4)
mov cx,4
mov di,0 ;ans will be stored
loop1:
mov bx,1
mov ax,1
loop2:
mul bx
add bx,1
cmp bx,cx
jle loop2
add di,ax
loop loop1
|
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c5/c57003a.ada | best08618/asylo | 7 | 20106 | <filename>gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c5/c57003a.ada
-- C57003A.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- CHECK THAT THE EXIT STATEMENT IS EVALUATED EACH TIME THROUGH A LOOP,
-- AND THAT IT IS EVALUATED CORRECTLY WHETHER POSITIONED AT THE
-- BEGINNING, MIDDLE, OR END OF THE LOOP.
-- EACH TEST IS A LOOP ON J WHERE THE EXIT CONDITIONS ARE TO EVALUATE
-- TO 'FALSE' A CERTAIN NUMBER OF TIMES UNTIL, AT THE APPROPRIATE
-- TIME, ONE OF THEM EVALUATES TO 'TRUE' AND CAUSES THE LOOP TO BE
-- EXITED.
--
--
-- THE TEST IS PERFORMED 30 TIMES FOR EACH OF THE FIRST TWO
-- DATA TYPES CONSIDERED ('INTEGER', USER-DEFINED ENUMERATION)
-- AND 26 TIMES FOR 'CHARACTER' (THUS 86 TIMES ALTOGETHER).
--
--
-- EACH DATA TYPE HAS ITS OWN SEPARATE SECTION OF CODE. ALL SECTIONS
-- FOLLOW THE SAME TESTING ALGORITHM (MUTATIS MUTANDIS). THE CALCU-
-- LATIONS WHICH KEEP TRACK OF THE FLOW OF CONTROL ARE ALL DONE IN
-- INTEGER ARITHMETIC. THERE ARE THREE DATA TYPES, THUS THREE
-- SECTIONS.
--
--
-- FOR EACH DATA TYPE, THE 30 TESTS ARE DIVIDED INTO 3 "SEGMENTS"
--
-- << NOTE: THE NUMBER OF SEGMENTS IS WRITTEN " 3 " ,
-- THE NUMBER OF SECTIONS IS WRITTEN "THREE" >>
--
-- (OF 10 TESTS EACH, EXCEPT 10,10,6 FOR 'CHARACTER'), NUMBERED
-- 0 , 1 , 2 AND CORRESPONDING TO THE 3 SIGNIFICANTLY DIFFERENT
-- POSITIONS OF AN EXIT STATEMENT WITH RESPECT TO THE LOOP IT IS IN
-- ( "AT THE VERY TOP" , "AT THE VERY BOTTOM" , "ANYWHERE IN BETWEEN"
-- ). AT THE BEGINNING OF EACH TEST, THE VARIABLE WHICH_SEGMENT
-- IS UPDATED TO CONTAIN THE NEW VALUE OF THIS IDENTIFYING NUMBER
-- (FOR THE TEST ABOUT TO BEGIN):
--
-- EXIT AT THE TOP ........ WHICH_SEGMENT = 0
-- EXIT FROM THE MIDDLE ........ WHICH_SEGMENT = 1
-- EXIT AT THE BOTTOM ........ WHICH_SEGMENT = 2 .
--
--
-- WITHIN EACH SECTION, THE TESTS ARE NUMBERED FROM 1 TO 30
-- (26 FOR 'CHARACTER'). THIS NUMBER IS STORED IN THE INTEGER
-- VARIABLE INT_I (EQUAL TO THE CURRENT VALUE OF THE OUTER-LOOP
-- INDEX WHEN THAT INDEX IS OF INTEGER TYPE), WHOSE APPROPRIATE VALUE
-- FOR EACH TEST IS SET AT THE BEGINNING OF THE TEST.
--
--
-- AS PART OF THE EVALUATION PROCESS, THE PROGRAM COMPUTES FOR EACH
-- TEST (I.E. FOR EACH VALUE OF I , OR OF INT_I ) THE APPROPRIATE
-- NUMBER OF INNER-LOOP ITERATIONS REQUIRED BEFORE EXIT; THIS IS
-- THE EXPECTED VALUE OF J (EXPRESSED AS AN INTEGER IN THE RANGE
-- 1..10 ) AND STORES IT IN EXPECTED_J . FOR EACH OF THE THREE
-- SECTIONS, THE TIME SEQUENCE OF THESE 30 VALUES IS
--
-- 1 2 3 4 5 6 7 8 9 10 << SEGMENT 1 >>
-- 6 6 7 7 8 8 9 9 10 10 << SEGMENT 2 >>
-- 7 8 8 8 9 9 9 10 10 10 << SEGMENT 3 >>
--
-- (EACH SECTION GETS ALL 3 ROWS, NOT ONE ROW PER SECTION;
-- FOR 'CHARACTER', WHERE ONLY 26 VALUES ARE REQUIRED, THE LAST 4
-- VALUES ARE OMITTED). THIS NUMBER IS COMPARED WITH THE ACTUAL
-- VALUE OF J (ACTUAL NUMBER OF INNER-LOOP ITERATIONS BEFORE THE
-- EXECUTION OF THE EXIT STATEMENT) AS SAVED JUST BEFORE THE EXIT
-- FROM THE LOOP (AGAIN IN THE FORM OF AN INTEGER IN THE RANGE
-- 1..30 , IRRESPECTIVE OF THE DATA TYPE BEING TESTED), I F
-- SUCH SAVED VALUE IS AVAILABLE.
--
--
-- THE ACTUAL VALUE OF INNER-LOOP ITERATIONS (AS SAVED IMMEDIATELY
-- BEFORE THE EXIT, AS OPPOSED TO A VALUE LEFT OVER FROM SOME
-- PREVIOUS ITERATION) IS AVAILABLE ONLY IF WHICH_SEGMENT /= 0 ,
-- AND IS THEN STORED IN SAVE_J .
--
--
-- FOR THE CASE WHICH_SEGMENT = 0 , THE ITERATIONS ARE COUNTED IN
-- THE VARIABLE COUNT , WHOSE VALUE AT THE COMPLETION OF THE
-- I-TH TEST ( I IN 1..10 ) MUST BE EQUAL TO EXPECTED_J - 1 ,
-- AND THUS TO I - 1 (METHODOLOGICALLY AS WELL AS COMPUTATIONALLY
-- THIS IS NO DIFFERENT FROM USING THE MOST RECENT VALUE OF SAVE_J
-- WHEN A CURRENT ONE CANNOT BE OBTAINED). AFTER BEING INCREMENTED
-- BY 1 , COUNT IS CHECKED AGAINST EXPECTED_J .
--
--
-- THIS CONCLUDES THE DESCRIPTION OF THE CASE WHICH_SEGMENT = 0 ,
-- AND THUS OF THE ALGORITHM. THE ONLY REASON FOR SPLITTING THE
-- CASE WHICH_SEGMENT /= 0 INTO TWO IS THE DESIRE TO PROVIDE FOR
-- DISTINCT MESSAGES.
-- RM 04/23/81
-- SPS 3/7/83
WITH REPORT;
PROCEDURE C57003A IS
USE REPORT ;
BEGIN
TEST( "C57003A" , "TEST THAT THE EXIT STATEMENT IS EVALUATED" &
" EACH TIME THROUGH THE LOOP" );
DECLARE
WHICH_SEGMENT : INTEGER RANGE 0..2 ; -- BOUNDS ARE TIGHT
SAVE_J : INTEGER RANGE 1..10 ;
EXPECTED_J : INTEGER RANGE 1..10 ;
COUNT : INTEGER RANGE 0..100 := 0 ;
INT_I : INTEGER RANGE 1..30 ;
TYPE ENUM IS ( CHANGE_THE_ORIGIN_FROM_0_TO_1 ,
A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 ,
A11, A12, A13, A14, A15, A16, A17, A18, A19, A20 ,
A21, A22, A23, A24, A25, A26, A27, A28, A29, A30 );
BEGIN
--------------------------------------------------------------
----------------------- INTEGER ----------------------------
FOR I IN INTEGER RANGE 1..30 LOOP
WHICH_SEGMENT := ( I - 1 ) / 10 ;
EXPECTED_J := ( I + WHICH_SEGMENT ) /
( WHICH_SEGMENT + 1 ) ;
COUNT := 0 ;
FOR J IN INTEGER RANGE 1..10 LOOP
-- J NOT SAVED HERE (SO THAT 'EXIT' BE FIRST STMT)
EXIT WHEN WHICH_SEGMENT = 0 AND
1*J >= I ;--COUNT+:=1 ON NXT LINE INSTEAD
COUNT := COUNT + 1 ;
NULL ;
NULL ;
NULL ;
SAVE_J := J ;
EXIT WHEN WHICH_SEGMENT = 1 AND
2*J >= I ;
NULL ;
NULL ;
NULL ;
SAVE_J := J ;
EXIT WHEN WHICH_SEGMENT = 2 AND
3*J >= I ;
END LOOP;
COUNT := COUNT + 1 ; -- SEE HEADER
CASE WHICH_SEGMENT IS
WHEN 0 =>
IF COUNT /= EXPECTED_J THEN
FAILED( "WRONG COUNT; INT, EXIT AT TOP" );
END IF;
WHEN 1 => -- WOULD WORK ALSO FOR 0
IF SAVE_J /= EXPECTED_J THEN
FAILED( "WRONG COUNT; I,EXIT AT MIDDLE" );
END IF;
WHEN 2 =>
IF SAVE_J /= EXPECTED_J THEN
FAILED( "WRONG COUNT; I,EXIT AT BOTTOM" );
END IF;
END CASE;
END LOOP;
--------------------------------------------------------------
---------------------- CHARACTER ---------------------------
FOR I IN CHARACTER RANGE 'A'..'Z' LOOP
INT_I := CHARACTER'POS(I) - CHARACTER'POS('A') + 1;
WHICH_SEGMENT := ( INT_I - 1 ) / 10 ;
EXPECTED_J := ( INT_I + WHICH_SEGMENT ) /
( WHICH_SEGMENT + 1 ) ;
COUNT := 0 ;
FOR J IN CHARACTER RANGE 'A'..'J' LOOP
-- J NOT SAVED HERE (SO THAT 'EXIT' BE FIRST STMT)
EXIT WHEN WHICH_SEGMENT = 0 AND
J >= I ; -- COUNT+:=1 ON NXT LINE INSTEAD
COUNT := COUNT + 1 ;
NULL ;
NULL ;
NULL ;
SAVE_J := CHARACTER'POS(J) - CHARACTER'POS('A') + 1;
EXIT WHEN WHICH_SEGMENT = 1 AND
2 * SAVE_J >= INT_I ;
NULL ;
NULL ;
NULL ;
EXIT WHEN WHICH_SEGMENT = 2 AND
3 * SAVE_J >= INT_I ;
END LOOP;
COUNT := COUNT + 1 ;
CASE WHICH_SEGMENT IS
WHEN 0 =>
IF COUNT /= EXPECTED_J THEN
FAILED( "WRONG COUNT;CHAR, EXIT AT TOP" );
END IF;
WHEN 1 => -- WOULD WORK ALSO FOR 0
IF SAVE_J /= EXPECTED_J THEN
FAILED( "WRONG COUNT; C,EXIT AT MIDDLE" );
END IF;
WHEN 2 =>
IF SAVE_J /= EXPECTED_J THEN
FAILED( "WRONG COUNT; C,EXIT AT BOTTOM" );
END IF;
END CASE;
END LOOP;
--------------------------------------------------------------
--------------------- ENUMERATION --------------------------
FOR I IN ENUM RANGE A1..A30 LOOP
INT_I := ENUM'POS(I) ;
WHICH_SEGMENT := ( INT_I - 1 ) / 10 ;
EXPECTED_J := ( INT_I + WHICH_SEGMENT ) /
( WHICH_SEGMENT + 1 ) ;
COUNT := 0 ;
FOR J IN ENUM RANGE A1..A10 LOOP
-- J NOT SAVED HERE (SO THAT 'EXIT' BE FIRST STMT)
EXIT WHEN WHICH_SEGMENT = 0 AND
J >= I ; -- COUNT+:=1 ON NXT LINE INSTEAD
COUNT := COUNT + 1 ;
NULL ;
NULL ;
NULL ;
SAVE_J := ENUM'POS(J) ;
EXIT WHEN WHICH_SEGMENT = 1 AND
2 * SAVE_J >= INT_I ;
NULL ;
NULL ;
NULL ;
EXIT WHEN WHICH_SEGMENT = 2 AND
3 * SAVE_J >= INT_I ;
END LOOP;
COUNT := COUNT + 1 ;
CASE WHICH_SEGMENT IS
WHEN 0 =>
IF COUNT /= EXPECTED_J THEN
FAILED( "WRONG COUNT;ENUM, EXIT AT TOP" );
END IF;
WHEN 1 => -- WOULD WORK ALSO FOR 0
IF SAVE_J /= EXPECTED_J THEN
FAILED( "WRONG COUNT; E,EXIT AT MIDDLE" );
END IF;
WHEN 2 =>
IF SAVE_J /= EXPECTED_J THEN
FAILED( "WRONG COUNT; E,EXIT AT BOTTOM" );
END IF;
END CASE;
END LOOP;
--------------------------------------------------------------
END ;
RESULT ;
END C57003A ;
|
main/plugins/org.talend.model.migration/transformation/tos_metadata400to410.asm | rdubois/tcommon-studio-se | 0 | 4784 | <reponame>rdubois/tcommon-studio-se
<?xml version = '1.0' encoding = 'ISO-8859-1' ?>
<asm version="1.0" name="0">
<cp>
<constant value="TosMetadata400to410"/>
<constant value="links"/>
<constant value="NTransientLinkSet;"/>
<constant value="col"/>
<constant value="J"/>
<constant value="inElements"/>
<constant value="id"/>
<constant value="main"/>
<constant value="A"/>
<constant value="OclParametrizedType"/>
<constant value="#native"/>
<constant value="Collection"/>
<constant value="J.setName(S):V"/>
<constant value="OclSimpleType"/>
<constant value="OclAny"/>
<constant value="J.setElementType(J):V"/>
<constant value="ecore::EObject"/>
<constant value="INMODEL"/>
<constant value="IN"/>
<constant value="J.allInstancesFrom(J):J"/>
<constant value="isInElement"/>
<constant value="__initisInElement"/>
<constant value="J.registerHelperAttribute(SS):V"/>
<constant value="0"/>
<constant value="TransientLinkSet"/>
<constant value="A.__matcher__():V"/>
<constant value="A.__exec__():V"/>
<constant value="10:59-10:83"/>
<constant value="10:101-10:105"/>
<constant value="10:59-10:106"/>
<constant value="12:16-12:22"/>
<constant value="42:29-42:30"/>
<constant value="self"/>
<constant value="__resolve__"/>
<constant value="1"/>
<constant value="J.oclIsKindOf(J):B"/>
<constant value="18"/>
<constant value="NTransientLinkSet;.getLinkBySourceElement(S):QNTransientLink;"/>
<constant value="J.oclIsUndefined():B"/>
<constant value="15"/>
<constant value="NTransientLink;.getTargetFromSource(J):J"/>
<constant value="17"/>
<constant value="30"/>
<constant value="Sequence"/>
<constant value="2"/>
<constant value="A.__resolve__(J):J"/>
<constant value="QJ.including(J):QJ"/>
<constant value="QJ.flatten():QJ"/>
<constant value="e"/>
<constant value="value"/>
<constant value="resolveTemp"/>
<constant value="S"/>
<constant value="NTransientLink;.getNamedTargetFromSource(JS):J"/>
<constant value="name"/>
<constant value="__matcher__"/>
<constant value="A.__matchMetadata():V"/>
<constant value="A.__matchGenericConnection():V"/>
<constant value="A.__matchFileConnection():V"/>
<constant value="A.__matchAbstractMetadataColumn():V"/>
<constant value="A.__matchAbstractMetadataTable():V"/>
<constant value="A.__matchMDMConnection():V"/>
<constant value="A.__matchDatabaseConnection():V"/>
<constant value="A.__matchSAPFunctionUnit():V"/>
<constant value="A.__matchSAPFunctionParameterColumn():V"/>
<constant value="A.__matchSAPFunctionParameterTable():V"/>
<constant value="A.__matchInputSAPFunctionParameterTable():V"/>
<constant value="A.__matchOutputSAPFunctionParameterTable():V"/>
<constant value="A.__matchSchemaTarget():V"/>
<constant value="A.__matchQueriesConnection():V"/>
<constant value="A.__matchQuery():V"/>
<constant value="A.__matchXmlXPathLoopDescriptor():V"/>
<constant value="A.__matchCDCConnection():V"/>
<constant value="A.__matchCDCType():V"/>
<constant value="A.__matchSAPTestInputParameterTable():V"/>
<constant value="A.__matchConceptTarget():V"/>
<constant value="__exec__"/>
<constant value="Metadata"/>
<constant value="NTransientLinkSet;.getLinksByRule(S):QNTransientLink;"/>
<constant value="A.__applyMetadata(NTransientLink;):V"/>
<constant value="GenericConnection"/>
<constant value="A.__applyGenericConnection(NTransientLink;):V"/>
<constant value="FileConnection"/>
<constant value="A.__applyFileConnection(NTransientLink;):V"/>
<constant value="AbstractMetadataColumn"/>
<constant value="A.__applyAbstractMetadataColumn(NTransientLink;):V"/>
<constant value="MetadataColumn"/>
<constant value="A.__applyMetadataColumn(NTransientLink;):V"/>
<constant value="TdColumn"/>
<constant value="A.__applyTdColumn(NTransientLink;):V"/>
<constant value="AbstractMetadataTable"/>
<constant value="A.__applyAbstractMetadataTable(NTransientLink;):V"/>
<constant value="MetadataTable"/>
<constant value="A.__applyMetadataTable(NTransientLink;):V"/>
<constant value="DbTable"/>
<constant value="A.__applyDbTable(NTransientLink;):V"/>
<constant value="DbView"/>
<constant value="A.__applyDbView(NTransientLink;):V"/>
<constant value="DelimitedFileConnection"/>
<constant value="A.__applyDelimitedFileConnection(NTransientLink;):V"/>
<constant value="PositionalFileConnection"/>
<constant value="A.__applyPositionalFileConnection(NTransientLink;):V"/>
<constant value="EbcdicConnection"/>
<constant value="A.__applyEbcdicConnection(NTransientLink;):V"/>
<constant value="MDMConnection"/>
<constant value="A.__applyMDMConnection(NTransientLink;):V"/>
<constant value="DatabaseConnection"/>
<constant value="A.__applyDatabaseConnection(NTransientLink;):V"/>
<constant value="SAPConnection"/>
<constant value="A.__applySAPConnection(NTransientLink;):V"/>
<constant value="SAPFunctionUnit"/>
<constant value="A.__applySAPFunctionUnit(NTransientLink;):V"/>
<constant value="SAPFunctionParameterColumn"/>
<constant value="A.__applySAPFunctionParameterColumn(NTransientLink;):V"/>
<constant value="SAPFunctionParameterTable"/>
<constant value="A.__applySAPFunctionParameterTable(NTransientLink;):V"/>
<constant value="InputSAPFunctionParameterTable"/>
<constant value="A.__applyInputSAPFunctionParameterTable(NTransientLink;):V"/>
<constant value="OutputSAPFunctionParameterTable"/>
<constant value="A.__applyOutputSAPFunctionParameterTable(NTransientLink;):V"/>
<constant value="RegexpFileConnection"/>
<constant value="A.__applyRegexpFileConnection(NTransientLink;):V"/>
<constant value="XmlFileConnection"/>
<constant value="A.__applyXmlFileConnection(NTransientLink;):V"/>
<constant value="SchemaTarget"/>
<constant value="A.__applySchemaTarget(NTransientLink;):V"/>
<constant value="QueriesConnection"/>
<constant value="A.__applyQueriesConnection(NTransientLink;):V"/>
<constant value="Query"/>
<constant value="A.__applyQuery(NTransientLink;):V"/>
<constant value="LdifFileConnection"/>
<constant value="A.__applyLdifFileConnection(NTransientLink;):V"/>
<constant value="FileExcelConnection"/>
<constant value="A.__applyFileExcelConnection(NTransientLink;):V"/>
<constant value="XmlXPathLoopDescriptor"/>
<constant value="A.__applyXmlXPathLoopDescriptor(NTransientLink;):V"/>
<constant value="GenericSchemaConnection"/>
<constant value="A.__applyGenericSchemaConnection(NTransientLink;):V"/>
<constant value="LDAPSchemaConnection"/>
<constant value="A.__applyLDAPSchemaConnection(NTransientLink;):V"/>
<constant value="WSDLSchemaConnection"/>
<constant value="A.__applyWSDLSchemaConnection(NTransientLink;):V"/>
<constant value="SalesforceSchemaConnection"/>
<constant value="A.__applySalesforceSchemaConnection(NTransientLink;):V"/>
<constant value="CDCConnection"/>
<constant value="A.__applyCDCConnection(NTransientLink;):V"/>
<constant value="CDCType"/>
<constant value="A.__applyCDCType(NTransientLink;):V"/>
<constant value="SubscriberTable"/>
<constant value="A.__applySubscriberTable(NTransientLink;):V"/>
<constant value="SAPTestInputParameterTable"/>
<constant value="A.__applySAPTestInputParameterTable(NTransientLink;):V"/>
<constant value="Concept"/>
<constant value="A.__applyConcept(NTransientLink;):V"/>
<constant value="ConceptTarget"/>
<constant value="A.__applyConceptTarget(NTransientLink;):V"/>
<constant value="HL7Connection"/>
<constant value="A.__applyHL7Connection(NTransientLink;):V"/>
<constant value="J.includes(J):J"/>
<constant value="13:2-13:12"/>
<constant value="13:2-13:23"/>
<constant value="13:34-13:38"/>
<constant value="13:2-13:39"/>
<constant value="__matchMetadata"/>
<constant value="connection::Metadata"/>
<constant value="MMOF!Classifier;.allInstancesFrom(S):QJ"/>
<constant value="B.not():B"/>
<constant value="33"/>
<constant value="TransientLink"/>
<constant value="NTransientLink;.setRule(MATL!Rule;):V"/>
<constant value="s"/>
<constant value="NTransientLink;.addSourceElement(SJ):V"/>
<constant value="t"/>
<constant value="OUTMODEL"/>
<constant value="NTransientLink;.addTargetElement(SJ):V"/>
<constant value="NTransientLinkSet;.addLink2(NTransientLink;B):V"/>
<constant value="30:46-30:56"/>
<constant value="30:46-30:67"/>
<constant value="30:78-30:79"/>
<constant value="30:46-30:80"/>
<constant value="31:8-40:38"/>
<constant value="__applyMetadata"/>
<constant value="NTransientLink;"/>
<constant value="NTransientLink;.getSourceElement(S):J"/>
<constant value="NTransientLink;.getTargetElement(S):J"/>
<constant value="3"/>
<constant value="properties"/>
<constant value="comment"/>
<constant value="label"/>
<constant value="readOnly"/>
<constant value="synchronised"/>
<constant value="divergency"/>
<constant value="connections"/>
<constant value="33:23-33:24"/>
<constant value="33:23-33:35"/>
<constant value="33:9-33:35"/>
<constant value="34:15-34:16"/>
<constant value="34:15-34:19"/>
<constant value="34:9-34:19"/>
<constant value="35:20-35:21"/>
<constant value="35:20-35:29"/>
<constant value="35:9-35:29"/>
<constant value="36:18-36:19"/>
<constant value="36:18-36:25"/>
<constant value="36:9-36:25"/>
<constant value="37:21-37:22"/>
<constant value="37:21-37:31"/>
<constant value="37:9-37:31"/>
<constant value="38:25-38:26"/>
<constant value="38:25-38:39"/>
<constant value="38:9-38:39"/>
<constant value="39:23-39:24"/>
<constant value="39:23-39:35"/>
<constant value="39:9-39:35"/>
<constant value="40:24-40:25"/>
<constant value="40:24-40:37"/>
<constant value="40:9-40:37"/>
<constant value="link"/>
<constant value="__matchGenericConnection"/>
<constant value="connection::Connection"/>
<constant value="J.oclIsTypeOf(J):J"/>
<constant value="34"/>
<constant value="36"/>
<constant value="303"/>
<constant value="65"/>
<constant value="newGenericPackage"/>
<constant value="connection::GenericPackage"/>
<constant value="connection::SAPConnection"/>
<constant value="99"/>
<constant value="connection::XmlFileConnection"/>
<constant value="133"/>
<constant value="connection::LdifFileConnection"/>
<constant value="167"/>
<constant value="connection::GenericSchemaConnection"/>
<constant value="201"/>
<constant value="connection::LDAPSchemaConnection"/>
<constant value="235"/>
<constant value="connection::WSDLSchemaConnection"/>
<constant value="269"/>
<constant value="connection::SalesforceSchemaConnection"/>
<constant value="46:6-46:7"/>
<constant value="46:20-46:52"/>
<constant value="46:6-46:53"/>
<constant value="48:8-48:13"/>
<constant value="47:4-47:5"/>
<constant value="47:4-47:17"/>
<constant value="46:3-48:19"/>
<constant value="49:8-64:4"/>
<constant value="65:3-67:4"/>
<constant value="289:8-297:32"/>
<constant value="402:8-408:28"/>
<constant value="443:8-448:28"/>
<constant value="476:8-478:42"/>
<constant value="483:8-506:36"/>
<constant value="511:8-526:30"/>
<constant value="531:8-546:30"/>
<constant value="__applyGenericConnection"/>
<constant value="4"/>
<constant value="version"/>
<constant value="ContextMode"/>
<constant value="ContextId"/>
<constant value="CJ.including(J):CJ"/>
<constant value="dataPackage"/>
<constant value="queries"/>
<constant value="tables"/>
<constant value="ownedElement"/>
<constant value="51:23-51:24"/>
<constant value="51:23-51:35"/>
<constant value="51:9-51:35"/>
<constant value="52:15-52:16"/>
<constant value="52:15-52:19"/>
<constant value="52:9-52:19"/>
<constant value="53:20-53:21"/>
<constant value="53:20-53:29"/>
<constant value="53:9-53:29"/>
<constant value="54:18-54:19"/>
<constant value="54:18-54:25"/>
<constant value="54:9-54:25"/>
<constant value="55:21-55:22"/>
<constant value="55:21-55:31"/>
<constant value="55:9-55:31"/>
<constant value="56:25-56:26"/>
<constant value="56:25-56:39"/>
<constant value="56:9-56:39"/>
<constant value="57:23-57:24"/>
<constant value="57:23-57:35"/>
<constant value="57:9-57:35"/>
<constant value="58:20-58:21"/>
<constant value="58:20-58:29"/>
<constant value="58:9-58:29"/>
<constant value="59:24-59:25"/>
<constant value="59:24-59:37"/>
<constant value="59:9-59:37"/>
<constant value="60:22-60:23"/>
<constant value="60:22-60:33"/>
<constant value="60:9-60:33"/>
<constant value="62:30-62:47"/>
<constant value="62:21-62:48"/>
<constant value="62:6-62:48"/>
<constant value="63:14-63:15"/>
<constant value="63:14-63:23"/>
<constant value="63:3-63:23"/>
<constant value="66:21-66:22"/>
<constant value="66:21-66:29"/>
<constant value="66:5-66:29"/>
<constant value="__matchFileConnection"/>
<constant value="connection::FileConnection"/>
<constant value="connection::DelimitedFileConnection"/>
<constant value="41"/>
<constant value="newRecordFile"/>
<constant value="orgomg::cwm::resource::record::RecordFile"/>
<constant value="245"/>
<constant value="connection::PositionalFileConnection"/>
<constant value="75"/>
<constant value="connection::EbcdicConnection"/>
<constant value="109"/>
<constant value="connection::RegexpFileConnection"/>
<constant value="143"/>
<constant value="connection::FileExcelConnection"/>
<constant value="177"/>
<constant value="connection::HL7Connection"/>
<constant value="211"/>
<constant value="193:8-195:38"/>
<constant value="109:3-110:30"/>
<constant value="200:8-200:59"/>
<constant value="205:8-207:32"/>
<constant value="396:8-397:52"/>
<constant value="453:8-462:34"/>
<constant value="613:8-615:30"/>
<constant value="75:8-108:34"/>
<constant value="__applyFileConnection"/>
<constant value="Server"/>
<constant value="FilePath"/>
<constant value="Format"/>
<constant value="Encoding"/>
<constant value="FieldSeparatorValue"/>
<constant value="RowSeparatorType"/>
<constant value="RowSeparatorValue"/>
<constant value="TextIdentifier"/>
<constant value="UseHeader"/>
<constant value="HeaderValue"/>
<constant value="UseFooter"/>
<constant value="FooterValue"/>
<constant value="UseLimit"/>
<constant value="LimitValue"/>
<constant value="FirstLineCaption"/>
<constant value="RemoveEmptyRow"/>
<constant value="EscapeType"/>
<constant value="EscapeChar"/>
<constant value="TextEnclosure"/>
<constant value="CsvOption"/>
<constant value="76:23-76:24"/>
<constant value="76:23-76:35"/>
<constant value="76:9-76:35"/>
<constant value="77:15-77:16"/>
<constant value="77:15-77:19"/>
<constant value="77:9-77:19"/>
<constant value="78:20-78:21"/>
<constant value="78:20-78:29"/>
<constant value="78:9-78:29"/>
<constant value="79:18-79:19"/>
<constant value="79:18-79:25"/>
<constant value="79:9-79:25"/>
<constant value="80:21-80:22"/>
<constant value="80:21-80:31"/>
<constant value="80:9-80:31"/>
<constant value="81:25-81:26"/>
<constant value="81:25-81:39"/>
<constant value="81:9-81:39"/>
<constant value="82:23-82:24"/>
<constant value="82:23-82:35"/>
<constant value="82:9-82:35"/>
<constant value="83:20-83:21"/>
<constant value="83:20-83:29"/>
<constant value="83:9-83:29"/>
<constant value="84:24-84:25"/>
<constant value="84:24-84:37"/>
<constant value="84:9-84:37"/>
<constant value="85:22-85:23"/>
<constant value="85:22-85:33"/>
<constant value="85:9-85:33"/>
<constant value="87:27-87:40"/>
<constant value="87:18-87:41"/>
<constant value="87:3-87:41"/>
<constant value="88:14-88:15"/>
<constant value="88:14-88:23"/>
<constant value="88:3-88:23"/>
<constant value="89:16-89:17"/>
<constant value="89:16-89:24"/>
<constant value="89:6-89:24"/>
<constant value="90:21-90:22"/>
<constant value="90:21-90:31"/>
<constant value="90:9-90:31"/>
<constant value="91:19-91:20"/>
<constant value="91:19-91:27"/>
<constant value="91:9-91:27"/>
<constant value="92:21-92:22"/>
<constant value="92:21-92:31"/>
<constant value="92:9-92:31"/>
<constant value="93:32-93:33"/>
<constant value="93:32-93:53"/>
<constant value="93:9-93:53"/>
<constant value="94:29-94:30"/>
<constant value="94:29-94:47"/>
<constant value="94:9-94:47"/>
<constant value="95:30-95:31"/>
<constant value="95:30-95:49"/>
<constant value="95:9-95:49"/>
<constant value="96:27-96:28"/>
<constant value="96:27-96:43"/>
<constant value="96:9-96:43"/>
<constant value="97:22-97:23"/>
<constant value="97:22-97:33"/>
<constant value="97:9-97:33"/>
<constant value="98:24-98:25"/>
<constant value="98:24-98:37"/>
<constant value="98:9-98:37"/>
<constant value="99:22-99:23"/>
<constant value="99:22-99:33"/>
<constant value="99:9-99:33"/>
<constant value="100:24-100:25"/>
<constant value="100:24-100:37"/>
<constant value="100:9-100:37"/>
<constant value="101:21-101:22"/>
<constant value="101:21-101:31"/>
<constant value="101:9-101:31"/>
<constant value="102:23-102:24"/>
<constant value="102:23-102:35"/>
<constant value="102:9-102:35"/>
<constant value="103:29-103:30"/>
<constant value="103:29-103:47"/>
<constant value="103:9-103:47"/>
<constant value="104:27-104:28"/>
<constant value="104:27-104:43"/>
<constant value="104:9-104:43"/>
<constant value="105:23-105:24"/>
<constant value="105:23-105:35"/>
<constant value="105:9-105:35"/>
<constant value="106:23-106:24"/>
<constant value="106:23-106:35"/>
<constant value="106:9-106:35"/>
<constant value="107:26-107:27"/>
<constant value="107:26-107:41"/>
<constant value="107:9-107:41"/>
<constant value="108:22-108:23"/>
<constant value="108:22-108:33"/>
<constant value="108:9-108:33"/>
<constant value="110:21-110:22"/>
<constant value="110:21-110:29"/>
<constant value="110:5-110:29"/>
<constant value="__matchAbstractMetadataColumn"/>
<constant value="connection::MetadataColumn"/>
<constant value="J.oclIsKindOf(J):J"/>
<constant value="19"/>
<constant value="110"/>
<constant value="table"/>
<constant value="tableType"/>
<constant value="TABLE"/>
<constant value="J.=(J):J"/>
<constant value="VIEW"/>
<constant value="J.or(J):J"/>
<constant value="connection::cwm::relational::TdColumn"/>
<constant value="newInitialValue"/>
<constant value="orgomg::cwm::objectmodel::core::Expression"/>
<constant value="115:6-115:7"/>
<constant value="115:20-115:56"/>
<constant value="115:6-115:57"/>
<constant value="117:8-117:13"/>
<constant value="116:4-116:14"/>
<constant value="116:4-116:25"/>
<constant value="116:36-116:37"/>
<constant value="116:4-116:38"/>
<constant value="115:3-117:19"/>
<constant value="149:53-149:54"/>
<constant value="149:53-149:60"/>
<constant value="149:53-149:70"/>
<constant value="149:73-149:80"/>
<constant value="149:53-149:80"/>
<constant value="149:86-149:87"/>
<constant value="149:86-149:93"/>
<constant value="149:86-149:103"/>
<constant value="149:106-149:112"/>
<constant value="149:86-149:112"/>
<constant value="149:52-149:113"/>
<constant value="150:8-150:60"/>
<constant value="138:3-140:4"/>
<constant value="145:8-145:49"/>
<constant value="__applyMetadataColumn"/>
<constant value="sourceType"/>
<constant value="initialValue"/>
<constant value="talendType"/>
<constant value="key"/>
<constant value="nullable"/>
<constant value="length"/>
<constant value="precision"/>
<constant value="originalField"/>
<constant value="pattern"/>
<constant value="displayField"/>
<constant value="defaultValue"/>
<constant value="body"/>
<constant value="119:20-119:21"/>
<constant value="119:20-119:32"/>
<constant value="119:6-119:32"/>
<constant value="120:15-120:16"/>
<constant value="120:15-120:19"/>
<constant value="120:9-120:19"/>
<constant value="121:20-121:21"/>
<constant value="121:20-121:29"/>
<constant value="121:9-121:29"/>
<constant value="122:18-122:19"/>
<constant value="122:18-122:25"/>
<constant value="122:9-122:25"/>
<constant value="123:21-123:22"/>
<constant value="123:21-123:31"/>
<constant value="123:9-123:31"/>
<constant value="124:25-124:26"/>
<constant value="124:25-124:39"/>
<constant value="124:9-124:39"/>
<constant value="125:23-125:24"/>
<constant value="125:23-125:35"/>
<constant value="125:9-125:35"/>
<constant value="126:23-126:24"/>
<constant value="126:23-126:35"/>
<constant value="126:9-126:35"/>
<constant value="128:19-128:34"/>
<constant value="128:3-128:34"/>
<constant value="129:17-129:18"/>
<constant value="129:17-129:29"/>
<constant value="129:3-129:29"/>
<constant value="130:16-130:17"/>
<constant value="130:16-130:21"/>
<constant value="130:9-130:21"/>
<constant value="131:21-131:22"/>
<constant value="131:21-131:31"/>
<constant value="131:9-131:31"/>
<constant value="132:19-132:20"/>
<constant value="132:19-132:27"/>
<constant value="132:9-132:27"/>
<constant value="133:22-133:23"/>
<constant value="133:22-133:33"/>
<constant value="133:9-133:33"/>
<constant value="135:11-135:12"/>
<constant value="135:11-135:26"/>
<constant value="135:3-135:26"/>
<constant value="136:20-136:21"/>
<constant value="136:20-136:29"/>
<constant value="136:9-136:29"/>
<constant value="137:25-137:26"/>
<constant value="137:25-137:39"/>
<constant value="137:9-137:39"/>
<constant value="139:12-139:13"/>
<constant value="139:12-139:26"/>
<constant value="139:4-139:26"/>
<constant value="__applyTdColumn"/>
<constant value="__matchAbstractMetadataTable"/>
<constant value="connection::MetadataTable"/>
<constant value="193"/>
<constant value="62"/>
<constant value="connection::cwm::relational::TdTable"/>
<constant value="192"/>
<constant value="96"/>
<constant value="connection::cwm::relational::TdView"/>
<constant value="connection::SubscriberTable"/>
<constant value="130"/>
<constant value="connection::Concept"/>
<constant value="164"/>
<constant value="155:6-155:7"/>
<constant value="155:20-155:55"/>
<constant value="155:6-155:56"/>
<constant value="157:8-157:13"/>
<constant value="156:4-156:14"/>
<constant value="156:4-156:25"/>
<constant value="156:36-156:37"/>
<constant value="156:4-156:38"/>
<constant value="155:3-157:19"/>
<constant value="180:52-180:53"/>
<constant value="180:52-180:63"/>
<constant value="180:66-180:73"/>
<constant value="180:52-180:73"/>
<constant value="181:8-181:59"/>
<constant value="185:52-185:53"/>
<constant value="185:52-185:63"/>
<constant value="185:66-185:72"/>
<constant value="185:52-185:72"/>
<constant value="186:8-186:58"/>
<constant value="574:53-574:63"/>
<constant value="574:53-574:74"/>
<constant value="574:85-574:86"/>
<constant value="574:53-574:87"/>
<constant value="575:8-577:30"/>
<constant value="595:45-595:55"/>
<constant value="595:45-595:66"/>
<constant value="595:77-595:78"/>
<constant value="595:45-595:79"/>
<constant value="596:8-600:44"/>
<constant value="176:8-176:48"/>
<constant value="__applyMetadataTable"/>
<constant value="sourceName"/>
<constant value="attachedCDC"/>
<constant value="activatedCDC"/>
<constant value="columns"/>
<constant value="feature"/>
<constant value="159:23-159:24"/>
<constant value="159:23-159:35"/>
<constant value="159:9-159:35"/>
<constant value="160:15-160:16"/>
<constant value="160:15-160:19"/>
<constant value="160:9-160:19"/>
<constant value="161:20-161:21"/>
<constant value="161:20-161:29"/>
<constant value="161:9-161:29"/>
<constant value="162:18-162:19"/>
<constant value="162:18-162:25"/>
<constant value="162:9-162:25"/>
<constant value="163:21-163:22"/>
<constant value="163:21-163:31"/>
<constant value="163:9-163:31"/>
<constant value="164:25-164:26"/>
<constant value="164:25-164:39"/>
<constant value="164:9-164:39"/>
<constant value="165:23-165:24"/>
<constant value="165:23-165:35"/>
<constant value="165:9-165:35"/>
<constant value="167:17-167:18"/>
<constant value="167:17-167:29"/>
<constant value="167:9-167:29"/>
<constant value="168:22-168:23"/>
<constant value="168:22-168:33"/>
<constant value="168:9-168:33"/>
<constant value="169:24-169:25"/>
<constant value="169:24-169:37"/>
<constant value="169:9-169:37"/>
<constant value="170:25-170:26"/>
<constant value="170:25-170:39"/>
<constant value="170:9-170:39"/>
<constant value="171:20-171:21"/>
<constant value="171:20-171:29"/>
<constant value="171:9-171:29"/>
<constant value="__applyDbTable"/>
<constant value="__applyDbView"/>
<constant value="__applyDelimitedFileConnection"/>
<constant value="FieldSeparatorType"/>
<constant value="splitRecord"/>
<constant value="194:31-194:32"/>
<constant value="194:31-194:51"/>
<constant value="194:9-194:51"/>
<constant value="195:24-195:25"/>
<constant value="195:24-195:37"/>
<constant value="195:9-195:37"/>
<constant value="__applyPositionalFileConnection"/>
<constant value="__applyEbcdicConnection"/>
<constant value="MidFile"/>
<constant value="DataFile"/>
<constant value="206:20-206:21"/>
<constant value="206:20-206:29"/>
<constant value="206:9-206:29"/>
<constant value="207:21-207:22"/>
<constant value="207:21-207:31"/>
<constant value="207:9-207:31"/>
<constant value="__matchMDMConnection"/>
<constant value="connection::MDMConnection"/>
<constant value="newXmlSchemaPackage"/>
<constant value="orgomg::cwm::resource::xml::Schema"/>
<constant value="212:8-234:4"/>
<constant value="235:3-236:30"/>
<constant value="__applyMDMConnection"/>
<constant value="Username"/>
<constant value="Password"/>
<constant value="Port"/>
<constant value="Universe"/>
<constant value="Datamodel"/>
<constant value="schemas"/>
<constant value="Datacluster"/>
<constant value="213:23-213:24"/>
<constant value="213:23-213:35"/>
<constant value="213:9-213:35"/>
<constant value="214:15-214:16"/>
<constant value="214:15-214:19"/>
<constant value="214:9-214:19"/>
<constant value="215:20-215:21"/>
<constant value="215:20-215:29"/>
<constant value="215:9-215:29"/>
<constant value="216:18-216:19"/>
<constant value="216:18-216:25"/>
<constant value="216:9-216:25"/>
<constant value="217:21-217:22"/>
<constant value="217:21-217:31"/>
<constant value="217:9-217:31"/>
<constant value="218:25-218:26"/>
<constant value="218:25-218:39"/>
<constant value="218:9-218:39"/>
<constant value="219:23-219:24"/>
<constant value="219:23-219:35"/>
<constant value="219:9-219:35"/>
<constant value="220:20-220:21"/>
<constant value="220:20-220:29"/>
<constant value="220:9-220:29"/>
<constant value="221:24-221:25"/>
<constant value="221:24-221:37"/>
<constant value="221:9-221:37"/>
<constant value="222:22-222:23"/>
<constant value="222:22-222:33"/>
<constant value="222:9-222:33"/>
<constant value="224:30-224:49"/>
<constant value="224:21-224:50"/>
<constant value="224:6-224:50"/>
<constant value="225:14-225:15"/>
<constant value="225:14-225:23"/>
<constant value="225:3-225:23"/>
<constant value="226:18-226:19"/>
<constant value="226:18-226:28"/>
<constant value="226:6-226:28"/>
<constant value="227:21-227:22"/>
<constant value="227:21-227:31"/>
<constant value="227:9-227:31"/>
<constant value="228:17-228:18"/>
<constant value="228:17-228:23"/>
<constant value="228:9-228:23"/>
<constant value="229:19-229:20"/>
<constant value="229:19-229:27"/>
<constant value="229:9-229:27"/>
<constant value="230:21-230:22"/>
<constant value="230:21-230:31"/>
<constant value="230:9-230:31"/>
<constant value="231:22-231:23"/>
<constant value="231:22-231:33"/>
<constant value="231:9-231:33"/>
<constant value="232:14-232:15"/>
<constant value="232:14-232:23"/>
<constant value="232:3-232:23"/>
<constant value="233:24-233:25"/>
<constant value="233:24-233:37"/>
<constant value="233:9-233:37"/>
<constant value="236:21-236:22"/>
<constant value="236:21-236:29"/>
<constant value="236:5-236:29"/>
<constant value="__matchDatabaseConnection"/>
<constant value="connection::DatabaseConnection"/>
<constant value="newSchema"/>
<constant value="orgomg::cwm::resource::relational::Schema"/>
<constant value="241:8-281:24"/>
<constant value="282:3-284:30"/>
<constant value="__applyDatabaseConnection"/>
<constant value="DatabaseType"/>
<constant value="DriverJarPath"/>
<constant value="DriverClass"/>
<constant value="URL"/>
<constant value="dbVersionString"/>
<constant value="ServerName"/>
<constant value="DatasourceName"/>
<constant value="FileFieldName"/>
<constant value="SID"/>
<constant value="SqlSynthax"/>
<constant value="StringQuote"/>
<constant value="NullChar"/>
<constant value="DbmsId"/>
<constant value="ProductId"/>
<constant value="DBRootPath"/>
<constant value="AdditionalParams"/>
<constant value="StandardSQL"/>
<constant value="SystemSQL"/>
<constant value="cdcTypeMode"/>
<constant value="SQLMode"/>
<constant value="cdcConns"/>
<constant value="Schema"/>
<constant value="UiSchema"/>
<constant value="243:23-243:24"/>
<constant value="243:23-243:35"/>
<constant value="243:9-243:35"/>
<constant value="244:15-244:16"/>
<constant value="244:15-244:19"/>
<constant value="244:9-244:19"/>
<constant value="245:20-245:21"/>
<constant value="245:20-245:29"/>
<constant value="245:9-245:29"/>
<constant value="246:18-246:19"/>
<constant value="246:18-246:25"/>
<constant value="246:9-246:25"/>
<constant value="247:21-247:22"/>
<constant value="247:21-247:31"/>
<constant value="247:9-247:31"/>
<constant value="248:25-248:26"/>
<constant value="248:25-248:39"/>
<constant value="248:9-248:39"/>
<constant value="249:23-249:24"/>
<constant value="249:23-249:35"/>
<constant value="249:9-249:35"/>
<constant value="250:20-250:21"/>
<constant value="250:20-250:29"/>
<constant value="250:9-250:29"/>
<constant value="251:24-251:25"/>
<constant value="251:24-251:37"/>
<constant value="251:9-251:37"/>
<constant value="252:22-252:23"/>
<constant value="252:22-252:33"/>
<constant value="252:9-252:33"/>
<constant value="254:30-254:39"/>
<constant value="254:21-254:40"/>
<constant value="254:6-254:40"/>
<constant value="255:14-255:15"/>
<constant value="255:14-255:23"/>
<constant value="255:3-255:23"/>
<constant value="256:22-256:23"/>
<constant value="256:22-256:36"/>
<constant value="256:6-256:36"/>
<constant value="257:26-257:27"/>
<constant value="257:26-257:41"/>
<constant value="257:9-257:41"/>
<constant value="258:24-258:25"/>
<constant value="258:24-258:37"/>
<constant value="258:9-258:37"/>
<constant value="259:16-259:17"/>
<constant value="259:16-259:21"/>
<constant value="259:9-259:21"/>
<constant value="260:28-260:29"/>
<constant value="260:28-260:45"/>
<constant value="260:9-260:45"/>
<constant value="261:17-261:18"/>
<constant value="261:17-261:23"/>
<constant value="261:9-261:23"/>
<constant value="262:21-262:22"/>
<constant value="262:21-262:31"/>
<constant value="262:9-262:31"/>
<constant value="263:21-263:22"/>
<constant value="263:21-263:31"/>
<constant value="263:9-263:31"/>
<constant value="264:23-264:24"/>
<constant value="264:23-264:35"/>
<constant value="264:9-264:35"/>
<constant value="265:27-265:28"/>
<constant value="265:27-265:43"/>
<constant value="265:9-265:43"/>
<constant value="266:26-266:27"/>
<constant value="266:26-266:41"/>
<constant value="266:9-266:41"/>
<constant value="268:16-268:17"/>
<constant value="268:16-268:21"/>
<constant value="268:9-268:21"/>
<constant value="269:23-269:24"/>
<constant value="269:23-269:35"/>
<constant value="269:9-269:35"/>
<constant value="270:24-270:25"/>
<constant value="270:24-270:37"/>
<constant value="270:9-270:37"/>
<constant value="271:21-271:22"/>
<constant value="271:21-271:31"/>
<constant value="271:9-271:31"/>
<constant value="272:19-272:20"/>
<constant value="272:19-272:27"/>
<constant value="272:9-272:27"/>
<constant value="273:22-273:23"/>
<constant value="273:22-273:33"/>
<constant value="273:9-273:33"/>
<constant value="274:23-274:24"/>
<constant value="274:23-274:35"/>
<constant value="274:9-274:35"/>
<constant value="275:29-275:30"/>
<constant value="275:29-275:47"/>
<constant value="275:9-275:47"/>
<constant value="276:24-276:25"/>
<constant value="276:24-276:37"/>
<constant value="276:9-276:37"/>
<constant value="277:22-277:23"/>
<constant value="277:22-277:33"/>
<constant value="277:9-277:33"/>
<constant value="278:24-278:25"/>
<constant value="278:24-278:37"/>
<constant value="278:9-278:37"/>
<constant value="279:20-279:21"/>
<constant value="279:20-279:29"/>
<constant value="279:9-279:29"/>
<constant value="280:21-280:22"/>
<constant value="280:21-280:31"/>
<constant value="280:9-280:31"/>
<constant value="281:15-281:16"/>
<constant value="281:15-281:23"/>
<constant value="281:3-281:23"/>
<constant value="283:13-283:14"/>
<constant value="283:13-283:21"/>
<constant value="283:5-283:21"/>
<constant value="284:21-284:22"/>
<constant value="284:21-284:29"/>
<constant value="284:5-284:29"/>
<constant value="__applySAPConnection"/>
<constant value="Host"/>
<constant value="Client"/>
<constant value="SystemNumber"/>
<constant value="Language"/>
<constant value="currentFucntion"/>
<constant value="Funtions"/>
<constant value="290:17-290:18"/>
<constant value="290:17-290:23"/>
<constant value="290:9-290:23"/>
<constant value="291:21-291:22"/>
<constant value="291:21-291:31"/>
<constant value="291:9-291:31"/>
<constant value="292:21-292:22"/>
<constant value="292:21-292:31"/>
<constant value="292:9-292:31"/>
<constant value="293:19-293:20"/>
<constant value="293:19-293:27"/>
<constant value="293:9-293:27"/>
<constant value="294:25-294:26"/>
<constant value="294:25-294:39"/>
<constant value="294:9-294:39"/>
<constant value="295:21-295:22"/>
<constant value="295:21-295:31"/>
<constant value="295:9-295:31"/>
<constant value="296:28-296:29"/>
<constant value="296:28-296:45"/>
<constant value="296:9-296:45"/>
<constant value="297:21-297:22"/>
<constant value="297:21-297:31"/>
<constant value="297:9-297:31"/>
<constant value="__matchSAPFunctionUnit"/>
<constant value="connection::SAPFunctionUnit"/>
<constant value="39"/>
<constant value="newDescription"/>
<constant value="orgomg::cwm::foundation::businessinformation::Description"/>
<constant value="301:53-301:63"/>
<constant value="301:53-301:74"/>
<constant value="301:85-301:86"/>
<constant value="301:53-301:87"/>
<constant value="302:8-320:62"/>
<constant value="321:3-323:4"/>
<constant value="__applySAPFunctionUnit"/>
<constant value="Name"/>
<constant value="OutputType"/>
<constant value="OutputTableName"/>
<constant value="description"/>
<constant value="InputParameterTable"/>
<constant value="OutputParameterTable"/>
<constant value="TestInputParameterTable"/>
<constant value="Document"/>
<constant value="304:23-304:24"/>
<constant value="304:23-304:35"/>
<constant value="304:9-304:35"/>
<constant value="305:15-305:16"/>
<constant value="305:15-305:19"/>
<constant value="305:9-305:19"/>
<constant value="306:20-306:21"/>
<constant value="306:20-306:29"/>
<constant value="306:9-306:29"/>
<constant value="307:18-307:19"/>
<constant value="307:18-307:25"/>
<constant value="307:9-307:25"/>
<constant value="308:21-308:22"/>
<constant value="308:21-308:31"/>
<constant value="308:9-308:31"/>
<constant value="309:25-309:26"/>
<constant value="309:25-309:39"/>
<constant value="309:9-309:39"/>
<constant value="310:23-310:24"/>
<constant value="310:23-310:35"/>
<constant value="310:9-310:35"/>
<constant value="311:17-311:18"/>
<constant value="311:17-311:23"/>
<constant value="311:9-311:23"/>
<constant value="312:23-312:24"/>
<constant value="312:23-312:35"/>
<constant value="312:9-312:35"/>
<constant value="313:28-313:29"/>
<constant value="313:28-313:45"/>
<constant value="313:9-313:45"/>
<constant value="315:33-315:47"/>
<constant value="315:24-315:48"/>
<constant value="315:9-315:48"/>
<constant value="316:32-316:33"/>
<constant value="316:32-316:53"/>
<constant value="316:9-316:53"/>
<constant value="317:33-317:34"/>
<constant value="317:33-317:55"/>
<constant value="317:9-317:55"/>
<constant value="318:26-318:27"/>
<constant value="318:26-318:41"/>
<constant value="318:9-318:41"/>
<constant value="319:19-319:20"/>
<constant value="319:19-319:27"/>
<constant value="319:9-319:27"/>
<constant value="320:36-320:37"/>
<constant value="320:36-320:61"/>
<constant value="320:9-320:61"/>
<constant value="322:12-322:13"/>
<constant value="322:12-322:22"/>
<constant value="322:4-322:22"/>
<constant value="__matchSAPFunctionParameterColumn"/>
<constant value="connection::SAPFunctionParameterColumn"/>
<constant value="327:64-327:74"/>
<constant value="327:64-327:85"/>
<constant value="327:96-327:97"/>
<constant value="327:64-327:98"/>
<constant value="328:8-343:26"/>
<constant value="344:3-346:4"/>
<constant value="__applySAPFunctionParameterColumn"/>
<constant value="ParameterType"/>
<constant value="StructureOrTableName"/>
<constant value="DataType"/>
<constant value="Length"/>
<constant value="Value"/>
<constant value="Description"/>
<constant value="330:23-330:24"/>
<constant value="330:23-330:35"/>
<constant value="330:9-330:35"/>
<constant value="331:15-331:16"/>
<constant value="331:15-331:19"/>
<constant value="331:9-331:19"/>
<constant value="332:20-332:21"/>
<constant value="332:20-332:29"/>
<constant value="332:9-332:29"/>
<constant value="333:18-333:19"/>
<constant value="333:18-333:25"/>
<constant value="333:9-333:25"/>
<constant value="334:21-334:22"/>
<constant value="334:21-334:31"/>
<constant value="334:9-334:31"/>
<constant value="335:25-335:26"/>
<constant value="335:25-335:39"/>
<constant value="335:9-335:39"/>
<constant value="336:23-336:24"/>
<constant value="336:23-336:35"/>
<constant value="336:9-336:35"/>
<constant value="337:17-337:18"/>
<constant value="337:17-337:23"/>
<constant value="337:9-337:23"/>
<constant value="338:26-338:27"/>
<constant value="338:26-338:41"/>
<constant value="338:9-338:41"/>
<constant value="339:33-339:34"/>
<constant value="339:33-339:55"/>
<constant value="339:9-339:55"/>
<constant value="340:21-340:22"/>
<constant value="340:21-340:31"/>
<constant value="340:9-340:31"/>
<constant value="341:19-341:20"/>
<constant value="341:19-341:27"/>
<constant value="341:9-341:27"/>
<constant value="342:33-342:47"/>
<constant value="342:24-342:48"/>
<constant value="342:9-342:48"/>
<constant value="343:18-343:19"/>
<constant value="343:18-343:25"/>
<constant value="343:9-343:25"/>
<constant value="345:12-345:13"/>
<constant value="345:12-345:25"/>
<constant value="345:4-345:25"/>
<constant value="__matchSAPFunctionParameterTable"/>
<constant value="connection::SAPFunctionParameterTable"/>
<constant value="351:6-351:7"/>
<constant value="351:20-351:67"/>
<constant value="351:6-351:68"/>
<constant value="353:8-353:13"/>
<constant value="352:4-352:14"/>
<constant value="352:4-352:25"/>
<constant value="352:36-352:37"/>
<constant value="352:4-352:38"/>
<constant value="351:3-353:19"/>
<constant value="354:8-363:30"/>
<constant value="__applySAPFunctionParameterTable"/>
<constant value="356:23-356:24"/>
<constant value="356:23-356:35"/>
<constant value="356:9-356:35"/>
<constant value="357:15-357:16"/>
<constant value="357:15-357:19"/>
<constant value="357:9-357:19"/>
<constant value="358:20-358:21"/>
<constant value="358:20-358:29"/>
<constant value="358:9-358:29"/>
<constant value="359:18-359:19"/>
<constant value="359:18-359:25"/>
<constant value="359:9-359:25"/>
<constant value="360:21-360:22"/>
<constant value="360:21-360:31"/>
<constant value="360:9-360:31"/>
<constant value="361:25-361:26"/>
<constant value="361:25-361:39"/>
<constant value="361:9-361:39"/>
<constant value="362:23-362:24"/>
<constant value="362:23-362:35"/>
<constant value="362:9-362:35"/>
<constant value="363:20-363:21"/>
<constant value="363:20-363:29"/>
<constant value="363:9-363:29"/>
<constant value="__matchInputSAPFunctionParameterTable"/>
<constant value="connection::InputSAPFunctionParameterTable"/>
<constant value="367:68-367:78"/>
<constant value="367:68-367:89"/>
<constant value="367:100-367:101"/>
<constant value="367:68-367:102"/>
<constant value="368:8-377:30"/>
<constant value="__applyInputSAPFunctionParameterTable"/>
<constant value="370:23-370:24"/>
<constant value="370:23-370:35"/>
<constant value="370:9-370:35"/>
<constant value="371:15-371:16"/>
<constant value="371:15-371:19"/>
<constant value="371:9-371:19"/>
<constant value="372:20-372:21"/>
<constant value="372:20-372:29"/>
<constant value="372:9-372:29"/>
<constant value="373:18-373:19"/>
<constant value="373:18-373:25"/>
<constant value="373:9-373:25"/>
<constant value="374:21-374:22"/>
<constant value="374:21-374:31"/>
<constant value="374:9-374:31"/>
<constant value="375:25-375:26"/>
<constant value="375:25-375:39"/>
<constant value="375:9-375:39"/>
<constant value="376:23-376:24"/>
<constant value="376:23-376:35"/>
<constant value="376:9-376:35"/>
<constant value="377:20-377:21"/>
<constant value="377:20-377:29"/>
<constant value="377:9-377:29"/>
<constant value="__matchOutputSAPFunctionParameterTable"/>
<constant value="connection::OutputSAPFunctionParameterTable"/>
<constant value="381:69-381:79"/>
<constant value="381:69-381:90"/>
<constant value="381:101-381:102"/>
<constant value="381:69-381:103"/>
<constant value="382:8-391:30"/>
<constant value="__applyOutputSAPFunctionParameterTable"/>
<constant value="384:23-384:24"/>
<constant value="384:23-384:35"/>
<constant value="384:9-384:35"/>
<constant value="385:15-385:16"/>
<constant value="385:15-385:19"/>
<constant value="385:9-385:19"/>
<constant value="386:20-386:21"/>
<constant value="386:20-386:29"/>
<constant value="386:9-386:29"/>
<constant value="387:18-387:19"/>
<constant value="387:18-387:25"/>
<constant value="387:9-387:25"/>
<constant value="388:21-388:22"/>
<constant value="388:21-388:31"/>
<constant value="388:9-388:31"/>
<constant value="389:25-389:26"/>
<constant value="389:25-389:39"/>
<constant value="389:9-389:39"/>
<constant value="390:23-390:24"/>
<constant value="390:23-390:35"/>
<constant value="390:9-390:35"/>
<constant value="391:20-391:21"/>
<constant value="391:20-391:29"/>
<constant value="391:9-391:29"/>
<constant value="__applyRegexpFileConnection"/>
<constant value="397:31-397:32"/>
<constant value="397:31-397:51"/>
<constant value="397:9-397:51"/>
<constant value="__applyXmlFileConnection"/>
<constant value="XsdFilePath"/>
<constant value="XmlFilePath"/>
<constant value="Guess"/>
<constant value="MaskXPattern"/>
<constant value="schema"/>
<constant value="403:24-403:25"/>
<constant value="403:24-403:37"/>
<constant value="403:9-403:37"/>
<constant value="404:24-404:25"/>
<constant value="404:24-404:37"/>
<constant value="404:9-404:37"/>
<constant value="405:18-405:19"/>
<constant value="405:18-405:25"/>
<constant value="405:9-405:25"/>
<constant value="406:25-406:26"/>
<constant value="406:25-406:39"/>
<constant value="406:9-406:39"/>
<constant value="407:21-407:22"/>
<constant value="407:21-407:31"/>
<constant value="407:9-407:31"/>
<constant value="408:19-408:20"/>
<constant value="408:19-408:27"/>
<constant value="408:9-408:27"/>
<constant value="__matchSchemaTarget"/>
<constant value="connection::SchemaTarget"/>
<constant value="412:50-412:60"/>
<constant value="412:50-412:71"/>
<constant value="412:82-412:83"/>
<constant value="412:50-412:84"/>
<constant value="413:8-416:30"/>
<constant value="__applySchemaTarget"/>
<constant value="RelativeXPathQuery"/>
<constant value="TagName"/>
<constant value="415:31-415:32"/>
<constant value="415:31-415:51"/>
<constant value="415:9-415:51"/>
<constant value="416:20-416:21"/>
<constant value="416:20-416:29"/>
<constant value="416:9-416:29"/>
<constant value="__matchQueriesConnection"/>
<constant value="connection::QueriesConnection"/>
<constant value="420:55-420:65"/>
<constant value="420:55-420:76"/>
<constant value="420:87-420:88"/>
<constant value="420:55-420:89"/>
<constant value="421:8-423:30"/>
<constant value="__applyQueriesConnection"/>
<constant value="query"/>
<constant value="423:20-423:21"/>
<constant value="423:20-423:29"/>
<constant value="423:9-423:29"/>
<constant value="__matchQuery"/>
<constant value="connection::Query"/>
<constant value="427:43-427:53"/>
<constant value="427:43-427:64"/>
<constant value="427:75-427:76"/>
<constant value="427:43-427:77"/>
<constant value="428:8-438:38"/>
<constant value="__applyQuery"/>
<constant value="contextMode"/>
<constant value="430:23-430:24"/>
<constant value="430:23-430:35"/>
<constant value="430:9-430:35"/>
<constant value="431:15-431:16"/>
<constant value="431:15-431:19"/>
<constant value="431:9-431:19"/>
<constant value="432:20-432:21"/>
<constant value="432:20-432:29"/>
<constant value="432:9-432:29"/>
<constant value="433:18-433:19"/>
<constant value="433:18-433:25"/>
<constant value="433:9-433:25"/>
<constant value="434:21-434:22"/>
<constant value="434:21-434:31"/>
<constant value="434:9-434:31"/>
<constant value="435:25-435:26"/>
<constant value="435:25-435:39"/>
<constant value="435:9-435:39"/>
<constant value="436:23-436:24"/>
<constant value="436:23-436:35"/>
<constant value="436:9-436:35"/>
<constant value="437:18-437:19"/>
<constant value="437:18-437:25"/>
<constant value="437:9-437:25"/>
<constant value="438:24-438:25"/>
<constant value="438:24-438:37"/>
<constant value="438:9-438:37"/>
<constant value="__applyLdifFileConnection"/>
<constant value="LimitEntry"/>
<constant value="444:18-444:19"/>
<constant value="444:18-444:25"/>
<constant value="444:9-444:25"/>
<constant value="445:21-445:22"/>
<constant value="445:21-445:31"/>
<constant value="445:9-445:31"/>
<constant value="446:23-446:24"/>
<constant value="446:23-446:35"/>
<constant value="446:9-446:35"/>
<constant value="447:21-447:22"/>
<constant value="447:21-447:31"/>
<constant value="447:9-447:31"/>
<constant value="448:19-448:20"/>
<constant value="448:19-448:27"/>
<constant value="448:9-448:27"/>
<constant value="__applyFileExcelConnection"/>
<constant value="SheetName"/>
<constant value="sheetColumns"/>
<constant value="firstColumn"/>
<constant value="lastColumn"/>
<constant value="thousandSeparator"/>
<constant value="decimalSeparator"/>
<constant value="advancedSpearator"/>
<constant value="selectAllSheets"/>
<constant value="sheetList"/>
<constant value="454:22-454:23"/>
<constant value="454:22-454:33"/>
<constant value="454:9-454:33"/>
<constant value="455:25-455:26"/>
<constant value="455:25-455:39"/>
<constant value="455:9-455:39"/>
<constant value="456:24-456:25"/>
<constant value="456:24-456:37"/>
<constant value="456:9-456:37"/>
<constant value="457:23-457:24"/>
<constant value="457:23-457:35"/>
<constant value="457:9-457:35"/>
<constant value="458:30-458:31"/>
<constant value="458:30-458:49"/>
<constant value="458:9-458:49"/>
<constant value="459:29-459:30"/>
<constant value="459:29-459:47"/>
<constant value="459:9-459:47"/>
<constant value="460:30-460:31"/>
<constant value="460:30-460:49"/>
<constant value="460:9-460:49"/>
<constant value="461:28-461:29"/>
<constant value="461:28-461:45"/>
<constant value="461:9-461:45"/>
<constant value="462:22-462:23"/>
<constant value="462:22-462:33"/>
<constant value="462:9-462:33"/>
<constant value="__matchXmlXPathLoopDescriptor"/>
<constant value="connection::XmlXPathLoopDescriptor"/>
<constant value="466:60-466:70"/>
<constant value="466:60-466:81"/>
<constant value="466:92-466:93"/>
<constant value="466:60-466:94"/>
<constant value="467:8-471:42"/>
<constant value="__applyXmlXPathLoopDescriptor"/>
<constant value="LimitBoucle"/>
<constant value="AbsoluteXPathQuery"/>
<constant value="schemaTargets"/>
<constant value="469:24-469:25"/>
<constant value="469:24-469:37"/>
<constant value="469:9-469:37"/>
<constant value="470:31-470:32"/>
<constant value="470:31-470:51"/>
<constant value="470:9-470:51"/>
<constant value="471:26-471:27"/>
<constant value="471:26-471:41"/>
<constant value="471:9-471:41"/>
<constant value="__applyGenericSchemaConnection"/>
<constant value="mappingTypeUsed"/>
<constant value="mappingTypeId"/>
<constant value="477:28-477:29"/>
<constant value="477:28-477:45"/>
<constant value="477:9-477:45"/>
<constant value="478:26-478:27"/>
<constant value="478:26-478:41"/>
<constant value="478:9-478:41"/>
<constant value="__applyLDAPSchemaConnection"/>
<constant value="Protocol"/>
<constant value="Filter"/>
<constant value="Separator"/>
<constant value="UseAdvanced"/>
<constant value="StorePath"/>
<constant value="UseAuthen"/>
<constant value="BindPrincipal"/>
<constant value="BindPassword"/>
<constant value="EncryptionMethodName"/>
<constant value="SavePassword"/>
<constant value="Aliases"/>
<constant value="Referrals"/>
<constant value="CountLimit"/>
<constant value="TimeOutLimit"/>
<constant value="BaseDNs"/>
<constant value="GetBaseDNsFromRoot"/>
<constant value="ReturnAttributes"/>
<constant value="SelectedDN"/>
<constant value="484:17-484:18"/>
<constant value="484:17-484:23"/>
<constant value="484:9-484:23"/>
<constant value="485:17-485:18"/>
<constant value="485:17-485:23"/>
<constant value="485:9-485:23"/>
<constant value="486:21-486:22"/>
<constant value="486:21-486:31"/>
<constant value="486:9-486:31"/>
<constant value="487:19-487:20"/>
<constant value="487:19-487:27"/>
<constant value="487:9-487:27"/>
<constant value="488:22-488:23"/>
<constant value="488:22-488:33"/>
<constant value="488:9-488:33"/>
<constant value="489:24-489:25"/>
<constant value="489:24-489:37"/>
<constant value="489:9-489:37"/>
<constant value="490:22-490:23"/>
<constant value="490:22-490:33"/>
<constant value="490:9-490:33"/>
<constant value="491:21-491:22"/>
<constant value="491:21-491:31"/>
<constant value="491:9-491:31"/>
<constant value="492:22-492:23"/>
<constant value="492:22-492:33"/>
<constant value="492:9-492:33"/>
<constant value="493:26-493:27"/>
<constant value="493:26-493:41"/>
<constant value="493:9-493:41"/>
<constant value="494:25-494:26"/>
<constant value="494:25-494:39"/>
<constant value="494:9-494:39"/>
<constant value="495:23-495:24"/>
<constant value="495:23-495:35"/>
<constant value="495:9-495:35"/>
<constant value="496:33-496:34"/>
<constant value="496:33-496:55"/>
<constant value="496:9-496:55"/>
<constant value="497:18-497:19"/>
<constant value="497:18-497:25"/>
<constant value="497:9-497:25"/>
<constant value="498:25-498:26"/>
<constant value="498:25-498:39"/>
<constant value="498:9-498:39"/>
<constant value="499:20-499:21"/>
<constant value="499:20-499:29"/>
<constant value="499:9-499:29"/>
<constant value="500:22-500:23"/>
<constant value="500:22-500:33"/>
<constant value="500:9-500:33"/>
<constant value="501:23-501:24"/>
<constant value="501:23-501:35"/>
<constant value="501:9-501:35"/>
<constant value="502:25-502:26"/>
<constant value="502:25-502:39"/>
<constant value="502:9-502:39"/>
<constant value="503:20-503:21"/>
<constant value="503:20-503:29"/>
<constant value="503:9-503:29"/>
<constant value="504:31-504:32"/>
<constant value="504:31-504:51"/>
<constant value="504:9-504:51"/>
<constant value="505:29-505:30"/>
<constant value="505:29-505:47"/>
<constant value="505:9-505:47"/>
<constant value="506:23-506:24"/>
<constant value="506:23-506:35"/>
<constant value="506:9-506:35"/>
<constant value="__applyWSDLSchemaConnection"/>
<constant value="WSDL"/>
<constant value="needAuth"/>
<constant value="methodName"/>
<constant value="parameters"/>
<constant value="UserName"/>
<constant value="useProxy"/>
<constant value="proxyHost"/>
<constant value="proxyPort"/>
<constant value="proxyUser"/>
<constant value="proxyPassword"/>
<constant value="EndpointURI"/>
<constant value="timeOut"/>
<constant value="512:17-512:18"/>
<constant value="512:17-512:23"/>
<constant value="512:9-512:23"/>
<constant value="513:21-513:22"/>
<constant value="513:21-513:31"/>
<constant value="513:9-513:31"/>
<constant value="514:23-514:24"/>
<constant value="514:23-514:35"/>
<constant value="514:9-514:35"/>
<constant value="515:23-515:24"/>
<constant value="515:23-515:35"/>
<constant value="515:9-515:35"/>
<constant value="516:21-516:22"/>
<constant value="516:21-516:31"/>
<constant value="516:9-516:31"/>
<constant value="517:21-517:22"/>
<constant value="517:21-517:31"/>
<constant value="517:9-517:31"/>
<constant value="518:21-518:22"/>
<constant value="518:21-518:31"/>
<constant value="518:9-518:31"/>
<constant value="519:22-519:23"/>
<constant value="519:22-519:33"/>
<constant value="519:9-519:33"/>
<constant value="520:22-520:23"/>
<constant value="520:22-520:33"/>
<constant value="520:9-520:33"/>
<constant value="521:22-521:23"/>
<constant value="521:22-521:33"/>
<constant value="521:9-521:33"/>
<constant value="522:26-522:27"/>
<constant value="522:26-522:41"/>
<constant value="522:9-522:41"/>
<constant value="523:18-523:19"/>
<constant value="523:18-523:25"/>
<constant value="523:9-523:25"/>
<constant value="524:24-524:25"/>
<constant value="524:24-524:37"/>
<constant value="524:9-524:37"/>
<constant value="525:21-525:22"/>
<constant value="525:21-525:31"/>
<constant value="525:9-525:31"/>
<constant value="526:20-526:21"/>
<constant value="526:20-526:29"/>
<constant value="526:9-526:29"/>
<constant value="__applySalesforceSchemaConnection"/>
<constant value="webServiceUrl"/>
<constant value="userName"/>
<constant value="password"/>
<constant value="moduleName"/>
<constant value="queryCondition"/>
<constant value="useCustomModuleName"/>
<constant value="proxyUsername"/>
<constant value="batchSize"/>
<constant value="useHttpProxy"/>
<constant value="useAlphbet"/>
<constant value="532:26-532:27"/>
<constant value="532:26-532:41"/>
<constant value="532:9-532:41"/>
<constant value="533:21-533:22"/>
<constant value="533:21-533:31"/>
<constant value="533:9-533:31"/>
<constant value="534:21-534:22"/>
<constant value="534:21-534:31"/>
<constant value="534:9-534:31"/>
<constant value="535:23-535:24"/>
<constant value="535:23-535:35"/>
<constant value="535:9-535:35"/>
<constant value="536:27-536:28"/>
<constant value="536:27-536:43"/>
<constant value="536:9-536:43"/>
<constant value="537:32-537:33"/>
<constant value="537:32-537:53"/>
<constant value="537:9-537:53"/>
<constant value="538:21-538:22"/>
<constant value="538:21-538:31"/>
<constant value="538:9-538:31"/>
<constant value="539:22-539:23"/>
<constant value="539:22-539:33"/>
<constant value="539:9-539:33"/>
<constant value="540:22-540:23"/>
<constant value="540:22-540:33"/>
<constant value="540:9-540:33"/>
<constant value="541:26-541:27"/>
<constant value="541:26-541:41"/>
<constant value="541:9-541:41"/>
<constant value="542:26-542:27"/>
<constant value="542:26-542:41"/>
<constant value="542:9-542:41"/>
<constant value="543:22-543:23"/>
<constant value="543:22-543:33"/>
<constant value="543:9-543:33"/>
<constant value="544:25-544:26"/>
<constant value="544:25-544:39"/>
<constant value="544:9-544:39"/>
<constant value="545:23-545:24"/>
<constant value="545:23-545:35"/>
<constant value="545:9-545:35"/>
<constant value="546:20-546:21"/>
<constant value="546:20-546:29"/>
<constant value="546:9-546:29"/>
<constant value="__matchCDCConnection"/>
<constant value="connection::CDCConnection"/>
<constant value="550:51-550:61"/>
<constant value="550:51-550:72"/>
<constant value="550:83-550:84"/>
<constant value="550:51-550:85"/>
<constant value="551:8-553:32"/>
<constant value="__applyCDCConnection"/>
<constant value="cdcTypes"/>
<constant value="553:21-553:22"/>
<constant value="553:21-553:31"/>
<constant value="553:9-553:31"/>
<constant value="__matchCDCType"/>
<constant value="connection::CDCType"/>
<constant value="557:45-557:55"/>
<constant value="557:45-557:66"/>
<constant value="557:77-557:78"/>
<constant value="557:45-557:79"/>
<constant value="558:8-570:42"/>
<constant value="__applyCDCType"/>
<constant value="linkDB"/>
<constant value="journalName"/>
<constant value="subscribers"/>
<constant value="cdcConnection"/>
<constant value="560:23-560:24"/>
<constant value="560:23-560:35"/>
<constant value="560:9-560:35"/>
<constant value="561:15-561:16"/>
<constant value="561:15-561:19"/>
<constant value="561:9-561:19"/>
<constant value="562:20-562:21"/>
<constant value="562:20-562:29"/>
<constant value="562:9-562:29"/>
<constant value="563:18-563:19"/>
<constant value="563:18-563:25"/>
<constant value="563:9-563:25"/>
<constant value="564:21-564:22"/>
<constant value="564:21-564:31"/>
<constant value="564:9-564:31"/>
<constant value="565:25-565:26"/>
<constant value="565:25-565:39"/>
<constant value="565:9-565:39"/>
<constant value="566:23-566:24"/>
<constant value="566:23-566:35"/>
<constant value="566:9-566:35"/>
<constant value="567:19-567:20"/>
<constant value="567:19-567:27"/>
<constant value="567:9-567:27"/>
<constant value="568:24-568:25"/>
<constant value="568:24-568:37"/>
<constant value="568:9-568:37"/>
<constant value="569:24-569:25"/>
<constant value="569:24-569:37"/>
<constant value="569:9-569:37"/>
<constant value="570:26-570:27"/>
<constant value="570:26-570:41"/>
<constant value="570:9-570:41"/>
<constant value="__applySubscriberTable"/>
<constant value="system"/>
<constant value="576:19-576:20"/>
<constant value="576:19-576:27"/>
<constant value="576:9-576:27"/>
<constant value="577:20-577:21"/>
<constant value="577:20-577:29"/>
<constant value="577:9-577:29"/>
<constant value="__matchSAPTestInputParameterTable"/>
<constant value="connection::SAPTestInputParameterTable"/>
<constant value="581:64-581:74"/>
<constant value="581:64-581:85"/>
<constant value="581:96-581:97"/>
<constant value="581:64-581:98"/>
<constant value="582:8-591:30"/>
<constant value="__applySAPTestInputParameterTable"/>
<constant value="584:23-584:24"/>
<constant value="584:23-584:35"/>
<constant value="584:9-584:35"/>
<constant value="585:15-585:16"/>
<constant value="585:15-585:19"/>
<constant value="585:9-585:19"/>
<constant value="586:20-586:21"/>
<constant value="586:20-586:29"/>
<constant value="586:9-586:29"/>
<constant value="587:18-587:19"/>
<constant value="587:18-587:25"/>
<constant value="587:9-587:25"/>
<constant value="588:21-588:22"/>
<constant value="588:21-588:31"/>
<constant value="588:9-588:31"/>
<constant value="589:25-589:26"/>
<constant value="589:25-589:39"/>
<constant value="589:9-589:39"/>
<constant value="590:23-590:24"/>
<constant value="590:23-590:35"/>
<constant value="590:9-590:35"/>
<constant value="591:20-591:21"/>
<constant value="591:20-591:29"/>
<constant value="591:9-591:29"/>
<constant value="__applyConcept"/>
<constant value="LoopExpression"/>
<constant value="LoopLimit"/>
<constant value="conceptTargets"/>
<constant value="597:27-597:28"/>
<constant value="597:27-597:43"/>
<constant value="597:9-597:43"/>
<constant value="598:22-598:23"/>
<constant value="598:22-598:33"/>
<constant value="598:9-598:33"/>
<constant value="599:20-599:21"/>
<constant value="599:20-599:29"/>
<constant value="599:9-599:29"/>
<constant value="600:27-600:28"/>
<constant value="600:27-600:43"/>
<constant value="600:9-600:43"/>
<constant value="__matchConceptTarget"/>
<constant value="connection::ConceptTarget"/>
<constant value="604:51-604:61"/>
<constant value="604:51-604:72"/>
<constant value="604:83-604:84"/>
<constant value="604:51-604:85"/>
<constant value="605:8-608:60"/>
<constant value="__applyConceptTarget"/>
<constant value="targetName"/>
<constant value="RelativeLoopExpression"/>
<constant value="607:23-607:24"/>
<constant value="607:23-607:35"/>
<constant value="607:9-607:35"/>
<constant value="608:35-608:36"/>
<constant value="608:35-608:59"/>
<constant value="608:9-608:59"/>
<constant value="__applyHL7Connection"/>
<constant value="StartChar"/>
<constant value="EndChar"/>
<constant value="614:22-614:23"/>
<constant value="614:22-614:33"/>
<constant value="614:9-614:33"/>
<constant value="615:20-615:21"/>
<constant value="615:20-615:29"/>
<constant value="615:9-615:29"/>
</cp>
<field name="1" type="2"/>
<field name="3" type="4"/>
<field name="5" type="4"/>
<field name="6" type="4"/>
<operation name="7">
<context type="8"/>
<parameters>
</parameters>
<code>
<getasm/>
<push arg="9"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="11"/>
<call arg="12"/>
<dup/>
<push arg="13"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="14"/>
<call arg="12"/>
<call arg="15"/>
<set arg="3"/>
<getasm/>
<push arg="16"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="19"/>
<set arg="5"/>
<push arg="14"/>
<push arg="10"/>
<findme/>
<push arg="20"/>
<push arg="21"/>
<call arg="22"/>
<getasm/>
<pushi arg="23"/>
<set arg="6"/>
<getasm/>
<push arg="24"/>
<push arg="10"/>
<new/>
<set arg="1"/>
<getasm/>
<call arg="25"/>
<getasm/>
<call arg="26"/>
</code>
<linenumbertable>
<lne id="27" begin="17" end="19"/>
<lne id="28" begin="20" end="20"/>
<lne id="29" begin="17" end="21"/>
<lne id="30" begin="23" end="25"/>
<lne id="31" begin="30" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="0" name="32" begin="0" end="40"/>
</localvariabletable>
</operation>
<operation name="33">
<context type="8"/>
<parameters>
<parameter name="34" type="4"/>
</parameters>
<code>
<load arg="34"/>
<getasm/>
<get arg="3"/>
<call arg="35"/>
<if arg="36"/>
<getasm/>
<get arg="1"/>
<load arg="34"/>
<call arg="37"/>
<dup/>
<call arg="38"/>
<if arg="39"/>
<load arg="34"/>
<call arg="40"/>
<goto arg="41"/>
<pop/>
<load arg="34"/>
<goto arg="42"/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="34"/>
<iterate/>
<store arg="44"/>
<getasm/>
<load arg="44"/>
<call arg="45"/>
<call arg="46"/>
<enditerate/>
<call arg="47"/>
</code>
<linenumbertable>
</linenumbertable>
<localvariabletable>
<lve slot="2" name="48" begin="23" end="27"/>
<lve slot="0" name="32" begin="0" end="29"/>
<lve slot="1" name="49" begin="0" end="29"/>
</localvariabletable>
</operation>
<operation name="50">
<context type="8"/>
<parameters>
<parameter name="34" type="4"/>
<parameter name="44" type="51"/>
</parameters>
<code>
<getasm/>
<get arg="1"/>
<load arg="34"/>
<call arg="37"/>
<load arg="34"/>
<load arg="44"/>
<call arg="52"/>
</code>
<linenumbertable>
</linenumbertable>
<localvariabletable>
<lve slot="0" name="32" begin="0" end="6"/>
<lve slot="1" name="49" begin="0" end="6"/>
<lve slot="2" name="53" begin="0" end="6"/>
</localvariabletable>
</operation>
<operation name="54">
<context type="8"/>
<parameters>
</parameters>
<code>
<getasm/>
<call arg="55"/>
<getasm/>
<call arg="56"/>
<getasm/>
<call arg="57"/>
<getasm/>
<call arg="58"/>
<getasm/>
<call arg="59"/>
<getasm/>
<call arg="60"/>
<getasm/>
<call arg="61"/>
<getasm/>
<call arg="62"/>
<getasm/>
<call arg="63"/>
<getasm/>
<call arg="64"/>
<getasm/>
<call arg="65"/>
<getasm/>
<call arg="66"/>
<getasm/>
<call arg="67"/>
<getasm/>
<call arg="68"/>
<getasm/>
<call arg="69"/>
<getasm/>
<call arg="70"/>
<getasm/>
<call arg="71"/>
<getasm/>
<call arg="72"/>
<getasm/>
<call arg="73"/>
<getasm/>
<call arg="74"/>
</code>
<linenumbertable>
</linenumbertable>
<localvariabletable>
<lve slot="0" name="32" begin="0" end="39"/>
</localvariabletable>
</operation>
<operation name="75">
<context type="8"/>
<parameters>
</parameters>
<code>
<getasm/>
<get arg="1"/>
<push arg="76"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="78"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="79"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="80"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="81"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="82"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="83"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="84"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="85"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="86"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="87"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="88"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="89"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="90"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="91"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="92"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="93"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="94"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="95"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="96"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="97"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="98"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="99"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="100"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="101"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="102"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="103"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="104"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="105"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="106"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="107"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="108"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="109"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="110"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="111"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="112"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="113"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="114"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="115"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="116"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="117"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="118"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="119"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="120"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="121"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="122"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="123"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="124"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="125"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="126"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="127"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="128"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="129"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="130"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="131"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="132"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="133"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="134"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="135"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="136"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="137"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="138"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="139"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="140"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="141"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="142"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="143"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="144"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="145"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="146"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="147"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="148"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="149"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="150"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="151"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="152"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="153"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="154"/>
<enditerate/>
<getasm/>
<get arg="1"/>
<push arg="155"/>
<call arg="77"/>
<iterate/>
<store arg="34"/>
<getasm/>
<load arg="34"/>
<call arg="156"/>
<enditerate/>
</code>
<linenumbertable>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="48" begin="5" end="8"/>
<lve slot="1" name="48" begin="15" end="18"/>
<lve slot="1" name="48" begin="25" end="28"/>
<lve slot="1" name="48" begin="35" end="38"/>
<lve slot="1" name="48" begin="45" end="48"/>
<lve slot="1" name="48" begin="55" end="58"/>
<lve slot="1" name="48" begin="65" end="68"/>
<lve slot="1" name="48" begin="75" end="78"/>
<lve slot="1" name="48" begin="85" end="88"/>
<lve slot="1" name="48" begin="95" end="98"/>
<lve slot="1" name="48" begin="105" end="108"/>
<lve slot="1" name="48" begin="115" end="118"/>
<lve slot="1" name="48" begin="125" end="128"/>
<lve slot="1" name="48" begin="135" end="138"/>
<lve slot="1" name="48" begin="145" end="148"/>
<lve slot="1" name="48" begin="155" end="158"/>
<lve slot="1" name="48" begin="165" end="168"/>
<lve slot="1" name="48" begin="175" end="178"/>
<lve slot="1" name="48" begin="185" end="188"/>
<lve slot="1" name="48" begin="195" end="198"/>
<lve slot="1" name="48" begin="205" end="208"/>
<lve slot="1" name="48" begin="215" end="218"/>
<lve slot="1" name="48" begin="225" end="228"/>
<lve slot="1" name="48" begin="235" end="238"/>
<lve slot="1" name="48" begin="245" end="248"/>
<lve slot="1" name="48" begin="255" end="258"/>
<lve slot="1" name="48" begin="265" end="268"/>
<lve slot="1" name="48" begin="275" end="278"/>
<lve slot="1" name="48" begin="285" end="288"/>
<lve slot="1" name="48" begin="295" end="298"/>
<lve slot="1" name="48" begin="305" end="308"/>
<lve slot="1" name="48" begin="315" end="318"/>
<lve slot="1" name="48" begin="325" end="328"/>
<lve slot="1" name="48" begin="335" end="338"/>
<lve slot="1" name="48" begin="345" end="348"/>
<lve slot="1" name="48" begin="355" end="358"/>
<lve slot="1" name="48" begin="365" end="368"/>
<lve slot="1" name="48" begin="375" end="378"/>
<lve slot="1" name="48" begin="385" end="388"/>
<lve slot="1" name="48" begin="395" end="398"/>
<lve slot="0" name="32" begin="0" end="399"/>
</localvariabletable>
</operation>
<operation name="21">
<context type="4"/>
<parameters>
</parameters>
<code>
<getasm/>
<get arg="5"/>
<load arg="23"/>
<call arg="157"/>
</code>
<linenumbertable>
<lne id="158" begin="0" end="0"/>
<lne id="159" begin="0" end="1"/>
<lne id="160" begin="2" end="2"/>
<lne id="161" begin="0" end="3"/>
</linenumbertable>
<localvariabletable>
<lve slot="0" name="32" begin="0" end="3"/>
</localvariabletable>
</operation>
<operation name="162">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="163"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="76"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="163"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="175" begin="7" end="7"/>
<lne id="176" begin="7" end="8"/>
<lne id="177" begin="9" end="9"/>
<lne id="178" begin="7" end="10"/>
<lne id="179" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="180">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="191"/>
<call arg="45"/>
<set arg="191"/>
<pop/>
</code>
<linenumbertable>
<lne id="192" begin="11" end="11"/>
<lne id="193" begin="11" end="12"/>
<lne id="194" begin="9" end="14"/>
<lne id="195" begin="17" end="17"/>
<lne id="196" begin="17" end="18"/>
<lne id="197" begin="15" end="20"/>
<lne id="198" begin="23" end="23"/>
<lne id="199" begin="23" end="24"/>
<lne id="200" begin="21" end="26"/>
<lne id="201" begin="29" end="29"/>
<lne id="202" begin="29" end="30"/>
<lne id="203" begin="27" end="32"/>
<lne id="204" begin="35" end="35"/>
<lne id="205" begin="35" end="36"/>
<lne id="206" begin="33" end="38"/>
<lne id="207" begin="41" end="41"/>
<lne id="208" begin="41" end="42"/>
<lne id="209" begin="39" end="44"/>
<lne id="210" begin="47" end="47"/>
<lne id="211" begin="47" end="48"/>
<lne id="212" begin="45" end="50"/>
<lne id="213" begin="53" end="53"/>
<lne id="214" begin="53" end="54"/>
<lne id="215" begin="51" end="56"/>
<lne id="179" begin="8" end="57"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="57"/>
<lve slot="2" name="169" begin="3" end="57"/>
<lve slot="0" name="32" begin="0" end="57"/>
<lve slot="1" name="216" begin="0" end="57"/>
</localvariabletable>
</operation>
<operation name="217">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="218"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<load arg="34"/>
<push arg="218"/>
<push arg="17"/>
<findme/>
<call arg="219"/>
<if arg="220"/>
<pushf/>
<goto arg="221"/>
<load arg="34"/>
<get arg="20"/>
<call arg="165"/>
<if arg="222"/>
<load arg="34"/>
<push arg="218"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="223"/>
<load arg="34"/>
<push arg="218"/>
<push arg="17"/>
<findme/>
<call arg="219"/>
<if arg="39"/>
<pushf/>
<goto arg="41"/>
<load arg="34"/>
<get arg="20"/>
<call arg="165"/>
<if arg="223"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="79"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="218"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="224"/>
<push arg="225"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="222"/>
<load arg="34"/>
<push arg="226"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="227"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="107"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="226"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="224"/>
<push arg="225"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="222"/>
<load arg="34"/>
<push arg="228"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="229"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="121"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="228"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="224"/>
<push arg="225"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="222"/>
<load arg="34"/>
<push arg="230"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="231"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="129"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="230"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="224"/>
<push arg="225"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="222"/>
<load arg="34"/>
<push arg="232"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="233"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="135"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="232"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="224"/>
<push arg="225"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="222"/>
<load arg="34"/>
<push arg="234"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="235"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="137"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="234"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="224"/>
<push arg="225"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="222"/>
<load arg="34"/>
<push arg="236"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="237"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="139"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="236"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="224"/>
<push arg="225"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="222"/>
<load arg="34"/>
<push arg="238"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="222"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="141"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="238"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="224"/>
<push arg="225"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="222"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="239" begin="7" end="7"/>
<lne id="240" begin="8" end="10"/>
<lne id="241" begin="7" end="11"/>
<lne id="242" begin="13" end="13"/>
<lne id="243" begin="15" end="15"/>
<lne id="244" begin="15" end="16"/>
<lne id="245" begin="7" end="16"/>
<lne id="239" begin="26" end="26"/>
<lne id="240" begin="27" end="29"/>
<lne id="241" begin="26" end="30"/>
<lne id="242" begin="32" end="32"/>
<lne id="243" begin="34" end="34"/>
<lne id="244" begin="34" end="35"/>
<lne id="245" begin="26" end="35"/>
<lne id="246" begin="50" end="55"/>
<lne id="247" begin="56" end="61"/>
<lne id="248" begin="84" end="89"/>
<lne id="247" begin="90" end="95"/>
<lne id="249" begin="118" end="123"/>
<lne id="247" begin="124" end="129"/>
<lne id="250" begin="152" end="157"/>
<lne id="247" begin="158" end="163"/>
<lne id="251" begin="186" end="191"/>
<lne id="247" begin="192" end="197"/>
<lne id="252" begin="220" end="225"/>
<lne id="247" begin="226" end="231"/>
<lne id="253" begin="254" end="259"/>
<lne id="247" begin="260" end="265"/>
<lne id="254" begin="288" end="293"/>
<lne id="247" begin="294" end="299"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="302"/>
<lve slot="0" name="32" begin="0" end="303"/>
</localvariabletable>
</operation>
<operation name="255">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="224"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="265" begin="15" end="15"/>
<lne id="266" begin="15" end="16"/>
<lne id="267" begin="13" end="18"/>
<lne id="268" begin="21" end="21"/>
<lne id="269" begin="21" end="22"/>
<lne id="270" begin="19" end="24"/>
<lne id="271" begin="27" end="27"/>
<lne id="272" begin="27" end="28"/>
<lne id="273" begin="25" end="30"/>
<lne id="274" begin="33" end="33"/>
<lne id="275" begin="33" end="34"/>
<lne id="276" begin="31" end="36"/>
<lne id="277" begin="39" end="39"/>
<lne id="278" begin="39" end="40"/>
<lne id="279" begin="37" end="42"/>
<lne id="280" begin="45" end="45"/>
<lne id="281" begin="45" end="46"/>
<lne id="282" begin="43" end="48"/>
<lne id="283" begin="51" end="51"/>
<lne id="284" begin="51" end="52"/>
<lne id="285" begin="49" end="54"/>
<lne id="286" begin="57" end="57"/>
<lne id="287" begin="57" end="58"/>
<lne id="288" begin="55" end="60"/>
<lne id="289" begin="63" end="63"/>
<lne id="290" begin="63" end="64"/>
<lne id="291" begin="61" end="66"/>
<lne id="292" begin="69" end="69"/>
<lne id="293" begin="69" end="70"/>
<lne id="294" begin="67" end="72"/>
<lne id="295" begin="78" end="78"/>
<lne id="296" begin="75" end="79"/>
<lne id="297" begin="73" end="81"/>
<lne id="298" begin="84" end="84"/>
<lne id="299" begin="84" end="85"/>
<lne id="300" begin="82" end="87"/>
<lne id="246" begin="12" end="88"/>
<lne id="301" begin="92" end="92"/>
<lne id="302" begin="92" end="93"/>
<lne id="303" begin="90" end="95"/>
<lne id="247" begin="89" end="96"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="96"/>
<lve slot="4" name="224" begin="11" end="96"/>
<lve slot="2" name="169" begin="3" end="96"/>
<lve slot="0" name="32" begin="0" end="96"/>
<lve slot="1" name="216" begin="0" end="96"/>
</localvariabletable>
</operation>
<operation name="304">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="305"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<load arg="34"/>
<push arg="306"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="307"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="97"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="306"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="308"/>
<push arg="309"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="310"/>
<load arg="34"/>
<push arg="311"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="312"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="99"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="311"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="308"/>
<push arg="309"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="310"/>
<load arg="34"/>
<push arg="313"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="314"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="101"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="313"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="308"/>
<push arg="309"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="310"/>
<load arg="34"/>
<push arg="315"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="316"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="119"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="315"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="308"/>
<push arg="309"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="310"/>
<load arg="34"/>
<push arg="317"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="318"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="131"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="317"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="308"/>
<push arg="309"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="310"/>
<load arg="34"/>
<push arg="319"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="320"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="155"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="319"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="308"/>
<push arg="309"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="310"/>
<load arg="34"/>
<push arg="305"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="310"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="81"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="305"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="308"/>
<push arg="309"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="310"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="321" begin="26" end="31"/>
<lne id="322" begin="32" end="37"/>
<lne id="323" begin="60" end="65"/>
<lne id="322" begin="66" end="71"/>
<lne id="324" begin="94" end="99"/>
<lne id="322" begin="100" end="105"/>
<lne id="325" begin="128" end="133"/>
<lne id="322" begin="134" end="139"/>
<lne id="326" begin="162" end="167"/>
<lne id="322" begin="168" end="173"/>
<lne id="327" begin="196" end="201"/>
<lne id="322" begin="202" end="207"/>
<lne id="328" begin="230" end="235"/>
<lne id="322" begin="236" end="241"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="244"/>
<lve slot="0" name="32" begin="0" end="245"/>
</localvariabletable>
</operation>
<operation name="329">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="308"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="330"/>
<call arg="45"/>
<set arg="330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="331"/>
<call arg="45"/>
<set arg="331"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="332"/>
<call arg="45"/>
<set arg="332"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="333"/>
<call arg="45"/>
<set arg="333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="334"/>
<call arg="45"/>
<set arg="334"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="335"/>
<call arg="45"/>
<set arg="335"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="336"/>
<call arg="45"/>
<set arg="336"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="337"/>
<call arg="45"/>
<set arg="337"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="338"/>
<call arg="45"/>
<set arg="338"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="339"/>
<call arg="45"/>
<set arg="339"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="340"/>
<call arg="45"/>
<set arg="340"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="341"/>
<call arg="45"/>
<set arg="341"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="342"/>
<call arg="45"/>
<set arg="342"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="343"/>
<call arg="45"/>
<set arg="343"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="344"/>
<call arg="45"/>
<set arg="344"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="345"/>
<call arg="45"/>
<set arg="345"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="346"/>
<call arg="45"/>
<set arg="346"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="347"/>
<call arg="45"/>
<set arg="347"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="348"/>
<call arg="45"/>
<set arg="348"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="349"/>
<call arg="45"/>
<set arg="349"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="350" begin="15" end="15"/>
<lne id="351" begin="15" end="16"/>
<lne id="352" begin="13" end="18"/>
<lne id="353" begin="21" end="21"/>
<lne id="354" begin="21" end="22"/>
<lne id="355" begin="19" end="24"/>
<lne id="356" begin="27" end="27"/>
<lne id="357" begin="27" end="28"/>
<lne id="358" begin="25" end="30"/>
<lne id="359" begin="33" end="33"/>
<lne id="360" begin="33" end="34"/>
<lne id="361" begin="31" end="36"/>
<lne id="362" begin="39" end="39"/>
<lne id="363" begin="39" end="40"/>
<lne id="364" begin="37" end="42"/>
<lne id="365" begin="45" end="45"/>
<lne id="366" begin="45" end="46"/>
<lne id="367" begin="43" end="48"/>
<lne id="368" begin="51" end="51"/>
<lne id="369" begin="51" end="52"/>
<lne id="370" begin="49" end="54"/>
<lne id="371" begin="57" end="57"/>
<lne id="372" begin="57" end="58"/>
<lne id="373" begin="55" end="60"/>
<lne id="374" begin="63" end="63"/>
<lne id="375" begin="63" end="64"/>
<lne id="376" begin="61" end="66"/>
<lne id="377" begin="69" end="69"/>
<lne id="378" begin="69" end="70"/>
<lne id="379" begin="67" end="72"/>
<lne id="380" begin="78" end="78"/>
<lne id="381" begin="75" end="79"/>
<lne id="382" begin="73" end="81"/>
<lne id="383" begin="84" end="84"/>
<lne id="384" begin="84" end="85"/>
<lne id="385" begin="82" end="87"/>
<lne id="386" begin="90" end="90"/>
<lne id="387" begin="90" end="91"/>
<lne id="388" begin="88" end="93"/>
<lne id="389" begin="96" end="96"/>
<lne id="390" begin="96" end="97"/>
<lne id="391" begin="94" end="99"/>
<lne id="392" begin="102" end="102"/>
<lne id="393" begin="102" end="103"/>
<lne id="394" begin="100" end="105"/>
<lne id="395" begin="108" end="108"/>
<lne id="396" begin="108" end="109"/>
<lne id="397" begin="106" end="111"/>
<lne id="398" begin="114" end="114"/>
<lne id="399" begin="114" end="115"/>
<lne id="400" begin="112" end="117"/>
<lne id="401" begin="120" end="120"/>
<lne id="402" begin="120" end="121"/>
<lne id="403" begin="118" end="123"/>
<lne id="404" begin="126" end="126"/>
<lne id="405" begin="126" end="127"/>
<lne id="406" begin="124" end="129"/>
<lne id="407" begin="132" end="132"/>
<lne id="408" begin="132" end="133"/>
<lne id="409" begin="130" end="135"/>
<lne id="410" begin="138" end="138"/>
<lne id="411" begin="138" end="139"/>
<lne id="412" begin="136" end="141"/>
<lne id="413" begin="144" end="144"/>
<lne id="414" begin="144" end="145"/>
<lne id="415" begin="142" end="147"/>
<lne id="416" begin="150" end="150"/>
<lne id="417" begin="150" end="151"/>
<lne id="418" begin="148" end="153"/>
<lne id="419" begin="156" end="156"/>
<lne id="420" begin="156" end="157"/>
<lne id="421" begin="154" end="159"/>
<lne id="422" begin="162" end="162"/>
<lne id="423" begin="162" end="163"/>
<lne id="424" begin="160" end="165"/>
<lne id="425" begin="168" end="168"/>
<lne id="426" begin="168" end="169"/>
<lne id="427" begin="166" end="171"/>
<lne id="428" begin="174" end="174"/>
<lne id="429" begin="174" end="175"/>
<lne id="430" begin="172" end="177"/>
<lne id="431" begin="180" end="180"/>
<lne id="432" begin="180" end="181"/>
<lne id="433" begin="178" end="183"/>
<lne id="434" begin="186" end="186"/>
<lne id="435" begin="186" end="187"/>
<lne id="436" begin="184" end="189"/>
<lne id="437" begin="192" end="192"/>
<lne id="438" begin="192" end="193"/>
<lne id="439" begin="190" end="195"/>
<lne id="440" begin="198" end="198"/>
<lne id="441" begin="198" end="199"/>
<lne id="442" begin="196" end="201"/>
<lne id="443" begin="204" end="204"/>
<lne id="444" begin="204" end="205"/>
<lne id="445" begin="202" end="207"/>
<lne id="328" begin="12" end="208"/>
<lne id="446" begin="212" end="212"/>
<lne id="447" begin="212" end="213"/>
<lne id="448" begin="210" end="215"/>
<lne id="322" begin="209" end="216"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="216"/>
<lve slot="4" name="308" begin="11" end="216"/>
<lve slot="2" name="169" begin="3" end="216"/>
<lve slot="0" name="32" begin="0" end="216"/>
<lve slot="1" name="216" begin="0" end="216"/>
</localvariabletable>
</operation>
<operation name="449">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="450"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<load arg="34"/>
<push arg="450"/>
<push arg="17"/>
<findme/>
<call arg="451"/>
<if arg="39"/>
<pushf/>
<goto arg="452"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="453"/>
<load arg="34"/>
<push arg="450"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="453"/>
<load arg="34"/>
<push arg="450"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="312"/>
<load arg="34"/>
<get arg="454"/>
<get arg="455"/>
<push arg="456"/>
<call arg="457"/>
<load arg="34"/>
<get arg="454"/>
<get arg="455"/>
<push arg="458"/>
<call arg="457"/>
<call arg="459"/>
<call arg="165"/>
<if arg="312"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="87"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="460"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="461"/>
<push arg="462"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="314"/>
<load arg="34"/>
<push arg="450"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="314"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="85"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="450"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="461"/>
<push arg="462"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="314"/>
<goto arg="453"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="463" begin="7" end="7"/>
<lne id="464" begin="8" end="10"/>
<lne id="465" begin="7" end="11"/>
<lne id="466" begin="13" end="13"/>
<lne id="467" begin="15" end="15"/>
<lne id="468" begin="15" end="16"/>
<lne id="469" begin="17" end="17"/>
<lne id="470" begin="15" end="18"/>
<lne id="471" begin="7" end="18"/>
<lne id="472" begin="35" end="35"/>
<lne id="473" begin="35" end="36"/>
<lne id="474" begin="35" end="37"/>
<lne id="475" begin="38" end="38"/>
<lne id="476" begin="35" end="39"/>
<lne id="477" begin="40" end="40"/>
<lne id="478" begin="40" end="41"/>
<lne id="479" begin="40" end="42"/>
<lne id="480" begin="43" end="43"/>
<lne id="481" begin="40" end="44"/>
<lne id="482" begin="35" end="45"/>
<lne id="483" begin="60" end="65"/>
<lne id="484" begin="66" end="71"/>
<lne id="485" begin="94" end="99"/>
<lne id="484" begin="100" end="105"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="109"/>
<lve slot="0" name="32" begin="0" end="110"/>
</localvariabletable>
</operation>
<operation name="486">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="461"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="487"/>
<call arg="45"/>
<set arg="487"/>
<dup/>
<getasm/>
<load arg="256"/>
<call arg="45"/>
<set arg="488"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="489"/>
<call arg="45"/>
<set arg="489"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="490"/>
<call arg="45"/>
<set arg="490"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="491"/>
<call arg="45"/>
<set arg="491"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="492"/>
<call arg="45"/>
<set arg="492"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="493"/>
<call arg="45"/>
<set arg="493"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="494"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="495"/>
<call arg="45"/>
<set arg="495"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="496"/>
<call arg="45"/>
<set arg="496"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="497"/>
<call arg="45"/>
<set arg="498"/>
<pop/>
</code>
<linenumbertable>
<lne id="499" begin="15" end="15"/>
<lne id="500" begin="15" end="16"/>
<lne id="501" begin="13" end="18"/>
<lne id="502" begin="21" end="21"/>
<lne id="503" begin="21" end="22"/>
<lne id="504" begin="19" end="24"/>
<lne id="505" begin="27" end="27"/>
<lne id="506" begin="27" end="28"/>
<lne id="507" begin="25" end="30"/>
<lne id="508" begin="33" end="33"/>
<lne id="509" begin="33" end="34"/>
<lne id="510" begin="31" end="36"/>
<lne id="511" begin="39" end="39"/>
<lne id="512" begin="39" end="40"/>
<lne id="513" begin="37" end="42"/>
<lne id="514" begin="45" end="45"/>
<lne id="515" begin="45" end="46"/>
<lne id="516" begin="43" end="48"/>
<lne id="517" begin="51" end="51"/>
<lne id="518" begin="51" end="52"/>
<lne id="519" begin="49" end="54"/>
<lne id="520" begin="57" end="57"/>
<lne id="521" begin="57" end="58"/>
<lne id="522" begin="55" end="60"/>
<lne id="523" begin="63" end="63"/>
<lne id="524" begin="61" end="65"/>
<lne id="525" begin="68" end="68"/>
<lne id="526" begin="68" end="69"/>
<lne id="527" begin="66" end="71"/>
<lne id="528" begin="74" end="74"/>
<lne id="529" begin="74" end="75"/>
<lne id="530" begin="72" end="77"/>
<lne id="531" begin="80" end="80"/>
<lne id="532" begin="80" end="81"/>
<lne id="533" begin="78" end="83"/>
<lne id="534" begin="86" end="86"/>
<lne id="535" begin="86" end="87"/>
<lne id="536" begin="84" end="89"/>
<lne id="537" begin="92" end="92"/>
<lne id="538" begin="92" end="93"/>
<lne id="539" begin="90" end="95"/>
<lne id="540" begin="98" end="98"/>
<lne id="541" begin="98" end="99"/>
<lne id="542" begin="96" end="101"/>
<lne id="543" begin="104" end="104"/>
<lne id="544" begin="104" end="105"/>
<lne id="545" begin="102" end="107"/>
<lne id="546" begin="110" end="110"/>
<lne id="547" begin="110" end="111"/>
<lne id="548" begin="108" end="113"/>
<lne id="485" begin="12" end="114"/>
<lne id="549" begin="118" end="118"/>
<lne id="550" begin="118" end="119"/>
<lne id="551" begin="116" end="121"/>
<lne id="484" begin="115" end="122"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="122"/>
<lve slot="4" name="461" begin="11" end="122"/>
<lve slot="2" name="169" begin="3" end="122"/>
<lve slot="0" name="32" begin="0" end="122"/>
<lve slot="1" name="216" begin="0" end="122"/>
</localvariabletable>
</operation>
<operation name="552">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="461"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="487"/>
<call arg="45"/>
<set arg="487"/>
<dup/>
<getasm/>
<load arg="256"/>
<call arg="45"/>
<set arg="488"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="489"/>
<call arg="45"/>
<set arg="489"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="490"/>
<call arg="45"/>
<set arg="490"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="491"/>
<call arg="45"/>
<set arg="491"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="492"/>
<call arg="45"/>
<set arg="492"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="493"/>
<call arg="45"/>
<set arg="493"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="494"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="495"/>
<call arg="45"/>
<set arg="495"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="496"/>
<call arg="45"/>
<set arg="496"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="497"/>
<call arg="45"/>
<set arg="498"/>
<pop/>
</code>
<linenumbertable>
<lne id="499" begin="15" end="15"/>
<lne id="500" begin="15" end="16"/>
<lne id="501" begin="13" end="18"/>
<lne id="502" begin="21" end="21"/>
<lne id="503" begin="21" end="22"/>
<lne id="504" begin="19" end="24"/>
<lne id="505" begin="27" end="27"/>
<lne id="506" begin="27" end="28"/>
<lne id="507" begin="25" end="30"/>
<lne id="508" begin="33" end="33"/>
<lne id="509" begin="33" end="34"/>
<lne id="510" begin="31" end="36"/>
<lne id="511" begin="39" end="39"/>
<lne id="512" begin="39" end="40"/>
<lne id="513" begin="37" end="42"/>
<lne id="514" begin="45" end="45"/>
<lne id="515" begin="45" end="46"/>
<lne id="516" begin="43" end="48"/>
<lne id="517" begin="51" end="51"/>
<lne id="518" begin="51" end="52"/>
<lne id="519" begin="49" end="54"/>
<lne id="520" begin="57" end="57"/>
<lne id="521" begin="57" end="58"/>
<lne id="522" begin="55" end="60"/>
<lne id="523" begin="63" end="63"/>
<lne id="524" begin="61" end="65"/>
<lne id="525" begin="68" end="68"/>
<lne id="526" begin="68" end="69"/>
<lne id="527" begin="66" end="71"/>
<lne id="528" begin="74" end="74"/>
<lne id="529" begin="74" end="75"/>
<lne id="530" begin="72" end="77"/>
<lne id="531" begin="80" end="80"/>
<lne id="532" begin="80" end="81"/>
<lne id="533" begin="78" end="83"/>
<lne id="534" begin="86" end="86"/>
<lne id="535" begin="86" end="87"/>
<lne id="536" begin="84" end="89"/>
<lne id="537" begin="92" end="92"/>
<lne id="538" begin="92" end="93"/>
<lne id="539" begin="90" end="95"/>
<lne id="540" begin="98" end="98"/>
<lne id="541" begin="98" end="99"/>
<lne id="542" begin="96" end="101"/>
<lne id="543" begin="104" end="104"/>
<lne id="544" begin="104" end="105"/>
<lne id="545" begin="102" end="107"/>
<lne id="546" begin="110" end="110"/>
<lne id="547" begin="110" end="111"/>
<lne id="548" begin="108" end="113"/>
<lne id="483" begin="12" end="114"/>
<lne id="549" begin="118" end="118"/>
<lne id="550" begin="118" end="119"/>
<lne id="551" begin="116" end="121"/>
<lne id="484" begin="115" end="122"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="122"/>
<lve slot="4" name="461" begin="11" end="122"/>
<lve slot="2" name="169" begin="3" end="122"/>
<lve slot="0" name="32" begin="0" end="122"/>
<lve slot="1" name="216" begin="0" end="122"/>
</localvariabletable>
</operation>
<operation name="553">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="554"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<load arg="34"/>
<push arg="554"/>
<push arg="17"/>
<findme/>
<call arg="451"/>
<if arg="39"/>
<pushf/>
<goto arg="452"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="555"/>
<load arg="34"/>
<push arg="554"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="555"/>
<load arg="34"/>
<push arg="554"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="556"/>
<load arg="34"/>
<get arg="455"/>
<push arg="456"/>
<call arg="457"/>
<call arg="165"/>
<if arg="556"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="93"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="557"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="558"/>
<load arg="34"/>
<push arg="554"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="559"/>
<load arg="34"/>
<get arg="455"/>
<push arg="458"/>
<call arg="457"/>
<call arg="165"/>
<if arg="559"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="95"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="560"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="558"/>
<load arg="34"/>
<push arg="561"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="562"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="562"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="147"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="561"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="558"/>
<load arg="34"/>
<push arg="563"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="564"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="564"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="151"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="563"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="558"/>
<load arg="34"/>
<push arg="554"/>
<push arg="17"/>
<findme/>
<call arg="35"/>
<call arg="165"/>
<if arg="558"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="91"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="554"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<goto arg="558"/>
<goto arg="555"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="565" begin="7" end="7"/>
<lne id="566" begin="8" end="10"/>
<lne id="567" begin="7" end="11"/>
<lne id="568" begin="13" end="13"/>
<lne id="569" begin="15" end="15"/>
<lne id="570" begin="15" end="16"/>
<lne id="571" begin="17" end="17"/>
<lne id="572" begin="15" end="18"/>
<lne id="573" begin="7" end="18"/>
<lne id="574" begin="35" end="35"/>
<lne id="575" begin="35" end="36"/>
<lne id="576" begin="37" end="37"/>
<lne id="577" begin="35" end="38"/>
<lne id="578" begin="53" end="58"/>
<lne id="579" begin="69" end="69"/>
<lne id="580" begin="69" end="70"/>
<lne id="581" begin="71" end="71"/>
<lne id="582" begin="69" end="72"/>
<lne id="583" begin="87" end="92"/>
<lne id="584" begin="103" end="103"/>
<lne id="585" begin="103" end="104"/>
<lne id="586" begin="105" end="105"/>
<lne id="587" begin="103" end="106"/>
<lne id="588" begin="121" end="126"/>
<lne id="589" begin="137" end="137"/>
<lne id="590" begin="137" end="138"/>
<lne id="591" begin="139" end="139"/>
<lne id="592" begin="137" end="140"/>
<lne id="593" begin="155" end="160"/>
<lne id="594" begin="183" end="188"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="192"/>
<lve slot="0" name="32" begin="0" end="193"/>
</localvariabletable>
</operation>
<operation name="595">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="596"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="455"/>
<call arg="45"/>
<set arg="455"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="597"/>
<call arg="45"/>
<set arg="597"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="598"/>
<call arg="45"/>
<set arg="598"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="600"/>
<pop/>
</code>
<linenumbertable>
<lne id="601" begin="11" end="11"/>
<lne id="602" begin="11" end="12"/>
<lne id="603" begin="9" end="14"/>
<lne id="604" begin="17" end="17"/>
<lne id="605" begin="17" end="18"/>
<lne id="606" begin="15" end="20"/>
<lne id="607" begin="23" end="23"/>
<lne id="608" begin="23" end="24"/>
<lne id="609" begin="21" end="26"/>
<lne id="610" begin="29" end="29"/>
<lne id="611" begin="29" end="30"/>
<lne id="612" begin="27" end="32"/>
<lne id="613" begin="35" end="35"/>
<lne id="614" begin="35" end="36"/>
<lne id="615" begin="33" end="38"/>
<lne id="616" begin="41" end="41"/>
<lne id="617" begin="41" end="42"/>
<lne id="618" begin="39" end="44"/>
<lne id="619" begin="47" end="47"/>
<lne id="620" begin="47" end="48"/>
<lne id="621" begin="45" end="50"/>
<lne id="622" begin="53" end="53"/>
<lne id="623" begin="53" end="54"/>
<lne id="624" begin="51" end="56"/>
<lne id="625" begin="59" end="59"/>
<lne id="626" begin="59" end="60"/>
<lne id="627" begin="57" end="62"/>
<lne id="628" begin="65" end="65"/>
<lne id="629" begin="65" end="66"/>
<lne id="630" begin="63" end="68"/>
<lne id="631" begin="71" end="71"/>
<lne id="632" begin="71" end="72"/>
<lne id="633" begin="69" end="74"/>
<lne id="634" begin="77" end="77"/>
<lne id="635" begin="77" end="78"/>
<lne id="636" begin="75" end="80"/>
<lne id="594" begin="8" end="81"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="81"/>
<lve slot="2" name="169" begin="3" end="81"/>
<lve slot="0" name="32" begin="0" end="81"/>
<lve slot="1" name="216" begin="0" end="81"/>
</localvariabletable>
</operation>
<operation name="637">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="596"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="455"/>
<call arg="45"/>
<set arg="455"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="597"/>
<call arg="45"/>
<set arg="597"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="598"/>
<call arg="45"/>
<set arg="598"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="600"/>
<pop/>
</code>
<linenumbertable>
<lne id="601" begin="11" end="11"/>
<lne id="602" begin="11" end="12"/>
<lne id="603" begin="9" end="14"/>
<lne id="604" begin="17" end="17"/>
<lne id="605" begin="17" end="18"/>
<lne id="606" begin="15" end="20"/>
<lne id="607" begin="23" end="23"/>
<lne id="608" begin="23" end="24"/>
<lne id="609" begin="21" end="26"/>
<lne id="610" begin="29" end="29"/>
<lne id="611" begin="29" end="30"/>
<lne id="612" begin="27" end="32"/>
<lne id="613" begin="35" end="35"/>
<lne id="614" begin="35" end="36"/>
<lne id="615" begin="33" end="38"/>
<lne id="616" begin="41" end="41"/>
<lne id="617" begin="41" end="42"/>
<lne id="618" begin="39" end="44"/>
<lne id="619" begin="47" end="47"/>
<lne id="620" begin="47" end="48"/>
<lne id="621" begin="45" end="50"/>
<lne id="622" begin="53" end="53"/>
<lne id="623" begin="53" end="54"/>
<lne id="624" begin="51" end="56"/>
<lne id="625" begin="59" end="59"/>
<lne id="626" begin="59" end="60"/>
<lne id="627" begin="57" end="62"/>
<lne id="628" begin="65" end="65"/>
<lne id="629" begin="65" end="66"/>
<lne id="630" begin="63" end="68"/>
<lne id="631" begin="71" end="71"/>
<lne id="632" begin="71" end="72"/>
<lne id="633" begin="69" end="74"/>
<lne id="634" begin="77" end="77"/>
<lne id="635" begin="77" end="78"/>
<lne id="636" begin="75" end="80"/>
<lne id="578" begin="8" end="81"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="81"/>
<lve slot="2" name="169" begin="3" end="81"/>
<lve slot="0" name="32" begin="0" end="81"/>
<lve slot="1" name="216" begin="0" end="81"/>
</localvariabletable>
</operation>
<operation name="638">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="596"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="455"/>
<call arg="45"/>
<set arg="455"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="597"/>
<call arg="45"/>
<set arg="597"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="598"/>
<call arg="45"/>
<set arg="598"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="600"/>
<pop/>
</code>
<linenumbertable>
<lne id="601" begin="11" end="11"/>
<lne id="602" begin="11" end="12"/>
<lne id="603" begin="9" end="14"/>
<lne id="604" begin="17" end="17"/>
<lne id="605" begin="17" end="18"/>
<lne id="606" begin="15" end="20"/>
<lne id="607" begin="23" end="23"/>
<lne id="608" begin="23" end="24"/>
<lne id="609" begin="21" end="26"/>
<lne id="610" begin="29" end="29"/>
<lne id="611" begin="29" end="30"/>
<lne id="612" begin="27" end="32"/>
<lne id="613" begin="35" end="35"/>
<lne id="614" begin="35" end="36"/>
<lne id="615" begin="33" end="38"/>
<lne id="616" begin="41" end="41"/>
<lne id="617" begin="41" end="42"/>
<lne id="618" begin="39" end="44"/>
<lne id="619" begin="47" end="47"/>
<lne id="620" begin="47" end="48"/>
<lne id="621" begin="45" end="50"/>
<lne id="622" begin="53" end="53"/>
<lne id="623" begin="53" end="54"/>
<lne id="624" begin="51" end="56"/>
<lne id="625" begin="59" end="59"/>
<lne id="626" begin="59" end="60"/>
<lne id="627" begin="57" end="62"/>
<lne id="628" begin="65" end="65"/>
<lne id="629" begin="65" end="66"/>
<lne id="630" begin="63" end="68"/>
<lne id="631" begin="71" end="71"/>
<lne id="632" begin="71" end="72"/>
<lne id="633" begin="69" end="74"/>
<lne id="634" begin="77" end="77"/>
<lne id="635" begin="77" end="78"/>
<lne id="636" begin="75" end="80"/>
<lne id="583" begin="8" end="81"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="81"/>
<lve slot="2" name="169" begin="3" end="81"/>
<lve slot="0" name="32" begin="0" end="81"/>
<lve slot="1" name="216" begin="0" end="81"/>
</localvariabletable>
</operation>
<operation name="639">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="308"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="640"/>
<call arg="45"/>
<set arg="640"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="641"/>
<call arg="45"/>
<set arg="641"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="330"/>
<call arg="45"/>
<set arg="330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="331"/>
<call arg="45"/>
<set arg="331"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="332"/>
<call arg="45"/>
<set arg="332"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="333"/>
<call arg="45"/>
<set arg="333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="334"/>
<call arg="45"/>
<set arg="334"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="335"/>
<call arg="45"/>
<set arg="335"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="336"/>
<call arg="45"/>
<set arg="336"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="337"/>
<call arg="45"/>
<set arg="337"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="338"/>
<call arg="45"/>
<set arg="338"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="339"/>
<call arg="45"/>
<set arg="339"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="340"/>
<call arg="45"/>
<set arg="340"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="341"/>
<call arg="45"/>
<set arg="341"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="342"/>
<call arg="45"/>
<set arg="342"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="343"/>
<call arg="45"/>
<set arg="343"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="344"/>
<call arg="45"/>
<set arg="344"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="345"/>
<call arg="45"/>
<set arg="345"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="346"/>
<call arg="45"/>
<set arg="346"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="347"/>
<call arg="45"/>
<set arg="347"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="348"/>
<call arg="45"/>
<set arg="348"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="349"/>
<call arg="45"/>
<set arg="349"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="642" begin="15" end="15"/>
<lne id="643" begin="15" end="16"/>
<lne id="644" begin="13" end="18"/>
<lne id="645" begin="21" end="21"/>
<lne id="646" begin="21" end="22"/>
<lne id="647" begin="19" end="24"/>
<lne id="350" begin="27" end="27"/>
<lne id="351" begin="27" end="28"/>
<lne id="352" begin="25" end="30"/>
<lne id="353" begin="33" end="33"/>
<lne id="354" begin="33" end="34"/>
<lne id="355" begin="31" end="36"/>
<lne id="356" begin="39" end="39"/>
<lne id="357" begin="39" end="40"/>
<lne id="358" begin="37" end="42"/>
<lne id="359" begin="45" end="45"/>
<lne id="360" begin="45" end="46"/>
<lne id="361" begin="43" end="48"/>
<lne id="362" begin="51" end="51"/>
<lne id="363" begin="51" end="52"/>
<lne id="364" begin="49" end="54"/>
<lne id="365" begin="57" end="57"/>
<lne id="366" begin="57" end="58"/>
<lne id="367" begin="55" end="60"/>
<lne id="368" begin="63" end="63"/>
<lne id="369" begin="63" end="64"/>
<lne id="370" begin="61" end="66"/>
<lne id="371" begin="69" end="69"/>
<lne id="372" begin="69" end="70"/>
<lne id="373" begin="67" end="72"/>
<lne id="374" begin="75" end="75"/>
<lne id="375" begin="75" end="76"/>
<lne id="376" begin="73" end="78"/>
<lne id="377" begin="81" end="81"/>
<lne id="378" begin="81" end="82"/>
<lne id="379" begin="79" end="84"/>
<lne id="380" begin="90" end="90"/>
<lne id="381" begin="87" end="91"/>
<lne id="382" begin="85" end="93"/>
<lne id="383" begin="96" end="96"/>
<lne id="384" begin="96" end="97"/>
<lne id="385" begin="94" end="99"/>
<lne id="386" begin="102" end="102"/>
<lne id="387" begin="102" end="103"/>
<lne id="388" begin="100" end="105"/>
<lne id="389" begin="108" end="108"/>
<lne id="390" begin="108" end="109"/>
<lne id="391" begin="106" end="111"/>
<lne id="392" begin="114" end="114"/>
<lne id="393" begin="114" end="115"/>
<lne id="394" begin="112" end="117"/>
<lne id="395" begin="120" end="120"/>
<lne id="396" begin="120" end="121"/>
<lne id="397" begin="118" end="123"/>
<lne id="398" begin="126" end="126"/>
<lne id="399" begin="126" end="127"/>
<lne id="400" begin="124" end="129"/>
<lne id="401" begin="132" end="132"/>
<lne id="402" begin="132" end="133"/>
<lne id="403" begin="130" end="135"/>
<lne id="404" begin="138" end="138"/>
<lne id="405" begin="138" end="139"/>
<lne id="406" begin="136" end="141"/>
<lne id="407" begin="144" end="144"/>
<lne id="408" begin="144" end="145"/>
<lne id="409" begin="142" end="147"/>
<lne id="410" begin="150" end="150"/>
<lne id="411" begin="150" end="151"/>
<lne id="412" begin="148" end="153"/>
<lne id="413" begin="156" end="156"/>
<lne id="414" begin="156" end="157"/>
<lne id="415" begin="154" end="159"/>
<lne id="416" begin="162" end="162"/>
<lne id="417" begin="162" end="163"/>
<lne id="418" begin="160" end="165"/>
<lne id="419" begin="168" end="168"/>
<lne id="420" begin="168" end="169"/>
<lne id="421" begin="166" end="171"/>
<lne id="422" begin="174" end="174"/>
<lne id="423" begin="174" end="175"/>
<lne id="424" begin="172" end="177"/>
<lne id="425" begin="180" end="180"/>
<lne id="426" begin="180" end="181"/>
<lne id="427" begin="178" end="183"/>
<lne id="428" begin="186" end="186"/>
<lne id="429" begin="186" end="187"/>
<lne id="430" begin="184" end="189"/>
<lne id="431" begin="192" end="192"/>
<lne id="432" begin="192" end="193"/>
<lne id="433" begin="190" end="195"/>
<lne id="434" begin="198" end="198"/>
<lne id="435" begin="198" end="199"/>
<lne id="436" begin="196" end="201"/>
<lne id="437" begin="204" end="204"/>
<lne id="438" begin="204" end="205"/>
<lne id="439" begin="202" end="207"/>
<lne id="440" begin="210" end="210"/>
<lne id="441" begin="210" end="211"/>
<lne id="442" begin="208" end="213"/>
<lne id="443" begin="216" end="216"/>
<lne id="444" begin="216" end="217"/>
<lne id="445" begin="214" end="219"/>
<lne id="321" begin="12" end="220"/>
<lne id="446" begin="224" end="224"/>
<lne id="447" begin="224" end="225"/>
<lne id="448" begin="222" end="227"/>
<lne id="322" begin="221" end="228"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="228"/>
<lve slot="4" name="308" begin="11" end="228"/>
<lve slot="2" name="169" begin="3" end="228"/>
<lve slot="0" name="32" begin="0" end="228"/>
<lve slot="1" name="216" begin="0" end="228"/>
</localvariabletable>
</operation>
<operation name="648">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="308"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="330"/>
<call arg="45"/>
<set arg="330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="331"/>
<call arg="45"/>
<set arg="331"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="332"/>
<call arg="45"/>
<set arg="332"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="333"/>
<call arg="45"/>
<set arg="333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="334"/>
<call arg="45"/>
<set arg="334"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="335"/>
<call arg="45"/>
<set arg="335"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="336"/>
<call arg="45"/>
<set arg="336"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="337"/>
<call arg="45"/>
<set arg="337"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="338"/>
<call arg="45"/>
<set arg="338"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="339"/>
<call arg="45"/>
<set arg="339"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="340"/>
<call arg="45"/>
<set arg="340"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="341"/>
<call arg="45"/>
<set arg="341"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="342"/>
<call arg="45"/>
<set arg="342"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="343"/>
<call arg="45"/>
<set arg="343"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="344"/>
<call arg="45"/>
<set arg="344"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="345"/>
<call arg="45"/>
<set arg="345"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="346"/>
<call arg="45"/>
<set arg="346"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="347"/>
<call arg="45"/>
<set arg="347"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="348"/>
<call arg="45"/>
<set arg="348"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="349"/>
<call arg="45"/>
<set arg="349"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="350" begin="15" end="15"/>
<lne id="351" begin="15" end="16"/>
<lne id="352" begin="13" end="18"/>
<lne id="353" begin="21" end="21"/>
<lne id="354" begin="21" end="22"/>
<lne id="355" begin="19" end="24"/>
<lne id="356" begin="27" end="27"/>
<lne id="357" begin="27" end="28"/>
<lne id="358" begin="25" end="30"/>
<lne id="359" begin="33" end="33"/>
<lne id="360" begin="33" end="34"/>
<lne id="361" begin="31" end="36"/>
<lne id="362" begin="39" end="39"/>
<lne id="363" begin="39" end="40"/>
<lne id="364" begin="37" end="42"/>
<lne id="365" begin="45" end="45"/>
<lne id="366" begin="45" end="46"/>
<lne id="367" begin="43" end="48"/>
<lne id="368" begin="51" end="51"/>
<lne id="369" begin="51" end="52"/>
<lne id="370" begin="49" end="54"/>
<lne id="371" begin="57" end="57"/>
<lne id="372" begin="57" end="58"/>
<lne id="373" begin="55" end="60"/>
<lne id="374" begin="63" end="63"/>
<lne id="375" begin="63" end="64"/>
<lne id="376" begin="61" end="66"/>
<lne id="377" begin="69" end="69"/>
<lne id="378" begin="69" end="70"/>
<lne id="379" begin="67" end="72"/>
<lne id="380" begin="78" end="78"/>
<lne id="381" begin="75" end="79"/>
<lne id="382" begin="73" end="81"/>
<lne id="383" begin="84" end="84"/>
<lne id="384" begin="84" end="85"/>
<lne id="385" begin="82" end="87"/>
<lne id="386" begin="90" end="90"/>
<lne id="387" begin="90" end="91"/>
<lne id="388" begin="88" end="93"/>
<lne id="389" begin="96" end="96"/>
<lne id="390" begin="96" end="97"/>
<lne id="391" begin="94" end="99"/>
<lne id="392" begin="102" end="102"/>
<lne id="393" begin="102" end="103"/>
<lne id="394" begin="100" end="105"/>
<lne id="395" begin="108" end="108"/>
<lne id="396" begin="108" end="109"/>
<lne id="397" begin="106" end="111"/>
<lne id="398" begin="114" end="114"/>
<lne id="399" begin="114" end="115"/>
<lne id="400" begin="112" end="117"/>
<lne id="401" begin="120" end="120"/>
<lne id="402" begin="120" end="121"/>
<lne id="403" begin="118" end="123"/>
<lne id="404" begin="126" end="126"/>
<lne id="405" begin="126" end="127"/>
<lne id="406" begin="124" end="129"/>
<lne id="407" begin="132" end="132"/>
<lne id="408" begin="132" end="133"/>
<lne id="409" begin="130" end="135"/>
<lne id="410" begin="138" end="138"/>
<lne id="411" begin="138" end="139"/>
<lne id="412" begin="136" end="141"/>
<lne id="413" begin="144" end="144"/>
<lne id="414" begin="144" end="145"/>
<lne id="415" begin="142" end="147"/>
<lne id="416" begin="150" end="150"/>
<lne id="417" begin="150" end="151"/>
<lne id="418" begin="148" end="153"/>
<lne id="419" begin="156" end="156"/>
<lne id="420" begin="156" end="157"/>
<lne id="421" begin="154" end="159"/>
<lne id="422" begin="162" end="162"/>
<lne id="423" begin="162" end="163"/>
<lne id="424" begin="160" end="165"/>
<lne id="425" begin="168" end="168"/>
<lne id="426" begin="168" end="169"/>
<lne id="427" begin="166" end="171"/>
<lne id="428" begin="174" end="174"/>
<lne id="429" begin="174" end="175"/>
<lne id="430" begin="172" end="177"/>
<lne id="431" begin="180" end="180"/>
<lne id="432" begin="180" end="181"/>
<lne id="433" begin="178" end="183"/>
<lne id="434" begin="186" end="186"/>
<lne id="435" begin="186" end="187"/>
<lne id="436" begin="184" end="189"/>
<lne id="437" begin="192" end="192"/>
<lne id="438" begin="192" end="193"/>
<lne id="439" begin="190" end="195"/>
<lne id="440" begin="198" end="198"/>
<lne id="441" begin="198" end="199"/>
<lne id="442" begin="196" end="201"/>
<lne id="443" begin="204" end="204"/>
<lne id="444" begin="204" end="205"/>
<lne id="445" begin="202" end="207"/>
<lne id="323" begin="12" end="208"/>
<lne id="446" begin="212" end="212"/>
<lne id="447" begin="212" end="213"/>
<lne id="448" begin="210" end="215"/>
<lne id="322" begin="209" end="216"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="216"/>
<lve slot="4" name="308" begin="11" end="216"/>
<lve slot="2" name="169" begin="3" end="216"/>
<lve slot="0" name="32" begin="0" end="216"/>
<lve slot="1" name="216" begin="0" end="216"/>
</localvariabletable>
</operation>
<operation name="649">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="308"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="650"/>
<call arg="45"/>
<set arg="650"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="651"/>
<call arg="45"/>
<set arg="651"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="330"/>
<call arg="45"/>
<set arg="330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="331"/>
<call arg="45"/>
<set arg="331"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="332"/>
<call arg="45"/>
<set arg="332"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="333"/>
<call arg="45"/>
<set arg="333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="334"/>
<call arg="45"/>
<set arg="334"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="335"/>
<call arg="45"/>
<set arg="335"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="336"/>
<call arg="45"/>
<set arg="336"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="337"/>
<call arg="45"/>
<set arg="337"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="338"/>
<call arg="45"/>
<set arg="338"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="339"/>
<call arg="45"/>
<set arg="339"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="340"/>
<call arg="45"/>
<set arg="340"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="341"/>
<call arg="45"/>
<set arg="341"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="342"/>
<call arg="45"/>
<set arg="342"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="343"/>
<call arg="45"/>
<set arg="343"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="344"/>
<call arg="45"/>
<set arg="344"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="345"/>
<call arg="45"/>
<set arg="345"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="346"/>
<call arg="45"/>
<set arg="346"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="347"/>
<call arg="45"/>
<set arg="347"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="348"/>
<call arg="45"/>
<set arg="348"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="349"/>
<call arg="45"/>
<set arg="349"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="652" begin="15" end="15"/>
<lne id="653" begin="15" end="16"/>
<lne id="654" begin="13" end="18"/>
<lne id="655" begin="21" end="21"/>
<lne id="656" begin="21" end="22"/>
<lne id="657" begin="19" end="24"/>
<lne id="350" begin="27" end="27"/>
<lne id="351" begin="27" end="28"/>
<lne id="352" begin="25" end="30"/>
<lne id="353" begin="33" end="33"/>
<lne id="354" begin="33" end="34"/>
<lne id="355" begin="31" end="36"/>
<lne id="356" begin="39" end="39"/>
<lne id="357" begin="39" end="40"/>
<lne id="358" begin="37" end="42"/>
<lne id="359" begin="45" end="45"/>
<lne id="360" begin="45" end="46"/>
<lne id="361" begin="43" end="48"/>
<lne id="362" begin="51" end="51"/>
<lne id="363" begin="51" end="52"/>
<lne id="364" begin="49" end="54"/>
<lne id="365" begin="57" end="57"/>
<lne id="366" begin="57" end="58"/>
<lne id="367" begin="55" end="60"/>
<lne id="368" begin="63" end="63"/>
<lne id="369" begin="63" end="64"/>
<lne id="370" begin="61" end="66"/>
<lne id="371" begin="69" end="69"/>
<lne id="372" begin="69" end="70"/>
<lne id="373" begin="67" end="72"/>
<lne id="374" begin="75" end="75"/>
<lne id="375" begin="75" end="76"/>
<lne id="376" begin="73" end="78"/>
<lne id="377" begin="81" end="81"/>
<lne id="378" begin="81" end="82"/>
<lne id="379" begin="79" end="84"/>
<lne id="380" begin="90" end="90"/>
<lne id="381" begin="87" end="91"/>
<lne id="382" begin="85" end="93"/>
<lne id="383" begin="96" end="96"/>
<lne id="384" begin="96" end="97"/>
<lne id="385" begin="94" end="99"/>
<lne id="386" begin="102" end="102"/>
<lne id="387" begin="102" end="103"/>
<lne id="388" begin="100" end="105"/>
<lne id="389" begin="108" end="108"/>
<lne id="390" begin="108" end="109"/>
<lne id="391" begin="106" end="111"/>
<lne id="392" begin="114" end="114"/>
<lne id="393" begin="114" end="115"/>
<lne id="394" begin="112" end="117"/>
<lne id="395" begin="120" end="120"/>
<lne id="396" begin="120" end="121"/>
<lne id="397" begin="118" end="123"/>
<lne id="398" begin="126" end="126"/>
<lne id="399" begin="126" end="127"/>
<lne id="400" begin="124" end="129"/>
<lne id="401" begin="132" end="132"/>
<lne id="402" begin="132" end="133"/>
<lne id="403" begin="130" end="135"/>
<lne id="404" begin="138" end="138"/>
<lne id="405" begin="138" end="139"/>
<lne id="406" begin="136" end="141"/>
<lne id="407" begin="144" end="144"/>
<lne id="408" begin="144" end="145"/>
<lne id="409" begin="142" end="147"/>
<lne id="410" begin="150" end="150"/>
<lne id="411" begin="150" end="151"/>
<lne id="412" begin="148" end="153"/>
<lne id="413" begin="156" end="156"/>
<lne id="414" begin="156" end="157"/>
<lne id="415" begin="154" end="159"/>
<lne id="416" begin="162" end="162"/>
<lne id="417" begin="162" end="163"/>
<lne id="418" begin="160" end="165"/>
<lne id="419" begin="168" end="168"/>
<lne id="420" begin="168" end="169"/>
<lne id="421" begin="166" end="171"/>
<lne id="422" begin="174" end="174"/>
<lne id="423" begin="174" end="175"/>
<lne id="424" begin="172" end="177"/>
<lne id="425" begin="180" end="180"/>
<lne id="426" begin="180" end="181"/>
<lne id="427" begin="178" end="183"/>
<lne id="428" begin="186" end="186"/>
<lne id="429" begin="186" end="187"/>
<lne id="430" begin="184" end="189"/>
<lne id="431" begin="192" end="192"/>
<lne id="432" begin="192" end="193"/>
<lne id="433" begin="190" end="195"/>
<lne id="434" begin="198" end="198"/>
<lne id="435" begin="198" end="199"/>
<lne id="436" begin="196" end="201"/>
<lne id="437" begin="204" end="204"/>
<lne id="438" begin="204" end="205"/>
<lne id="439" begin="202" end="207"/>
<lne id="440" begin="210" end="210"/>
<lne id="441" begin="210" end="211"/>
<lne id="442" begin="208" end="213"/>
<lne id="443" begin="216" end="216"/>
<lne id="444" begin="216" end="217"/>
<lne id="445" begin="214" end="219"/>
<lne id="324" begin="12" end="220"/>
<lne id="446" begin="224" end="224"/>
<lne id="447" begin="224" end="225"/>
<lne id="448" begin="222" end="227"/>
<lne id="322" begin="221" end="228"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="228"/>
<lve slot="4" name="308" begin="11" end="228"/>
<lve slot="2" name="169" begin="3" end="228"/>
<lve slot="0" name="32" begin="0" end="228"/>
<lve slot="1" name="216" begin="0" end="228"/>
</localvariabletable>
</operation>
<operation name="658">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="659"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="103"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="659"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="660"/>
<push arg="661"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="662" begin="19" end="24"/>
<lne id="663" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="664">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="660"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="665"/>
<call arg="45"/>
<set arg="665"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="666"/>
<call arg="45"/>
<set arg="666"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="667"/>
<call arg="45"/>
<set arg="667"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="330"/>
<call arg="45"/>
<set arg="330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="668"/>
<call arg="45"/>
<set arg="668"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="669"/>
<call arg="45"/>
<set arg="669"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="670"/>
<call arg="45"/>
<set arg="670"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="671"/>
<call arg="45"/>
<set arg="671"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="672" begin="15" end="15"/>
<lne id="673" begin="15" end="16"/>
<lne id="674" begin="13" end="18"/>
<lne id="675" begin="21" end="21"/>
<lne id="676" begin="21" end="22"/>
<lne id="677" begin="19" end="24"/>
<lne id="678" begin="27" end="27"/>
<lne id="679" begin="27" end="28"/>
<lne id="680" begin="25" end="30"/>
<lne id="681" begin="33" end="33"/>
<lne id="682" begin="33" end="34"/>
<lne id="683" begin="31" end="36"/>
<lne id="684" begin="39" end="39"/>
<lne id="685" begin="39" end="40"/>
<lne id="686" begin="37" end="42"/>
<lne id="687" begin="45" end="45"/>
<lne id="688" begin="45" end="46"/>
<lne id="689" begin="43" end="48"/>
<lne id="690" begin="51" end="51"/>
<lne id="691" begin="51" end="52"/>
<lne id="692" begin="49" end="54"/>
<lne id="693" begin="57" end="57"/>
<lne id="694" begin="57" end="58"/>
<lne id="695" begin="55" end="60"/>
<lne id="696" begin="63" end="63"/>
<lne id="697" begin="63" end="64"/>
<lne id="698" begin="61" end="66"/>
<lne id="699" begin="69" end="69"/>
<lne id="700" begin="69" end="70"/>
<lne id="701" begin="67" end="72"/>
<lne id="702" begin="78" end="78"/>
<lne id="703" begin="75" end="79"/>
<lne id="704" begin="73" end="81"/>
<lne id="705" begin="84" end="84"/>
<lne id="706" begin="84" end="85"/>
<lne id="707" begin="82" end="87"/>
<lne id="708" begin="90" end="90"/>
<lne id="709" begin="90" end="91"/>
<lne id="710" begin="88" end="93"/>
<lne id="711" begin="96" end="96"/>
<lne id="712" begin="96" end="97"/>
<lne id="713" begin="94" end="99"/>
<lne id="714" begin="102" end="102"/>
<lne id="715" begin="102" end="103"/>
<lne id="716" begin="100" end="105"/>
<lne id="717" begin="108" end="108"/>
<lne id="718" begin="108" end="109"/>
<lne id="719" begin="106" end="111"/>
<lne id="720" begin="114" end="114"/>
<lne id="721" begin="114" end="115"/>
<lne id="722" begin="112" end="117"/>
<lne id="723" begin="120" end="120"/>
<lne id="724" begin="120" end="121"/>
<lne id="725" begin="118" end="123"/>
<lne id="726" begin="126" end="126"/>
<lne id="727" begin="126" end="127"/>
<lne id="728" begin="124" end="129"/>
<lne id="729" begin="132" end="132"/>
<lne id="730" begin="132" end="133"/>
<lne id="731" begin="130" end="135"/>
<lne id="662" begin="12" end="136"/>
<lne id="732" begin="140" end="140"/>
<lne id="733" begin="140" end="141"/>
<lne id="734" begin="138" end="143"/>
<lne id="663" begin="137" end="144"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="144"/>
<lve slot="4" name="660" begin="11" end="144"/>
<lve slot="2" name="169" begin="3" end="144"/>
<lve slot="0" name="32" begin="0" end="144"/>
<lve slot="1" name="216" begin="0" end="144"/>
</localvariabletable>
</operation>
<operation name="735">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="736"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="105"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="736"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="737"/>
<push arg="738"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="739" begin="19" end="24"/>
<lne id="740" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="741">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="737"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="742"/>
<call arg="45"/>
<set arg="742"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="743"/>
<call arg="45"/>
<set arg="743"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="744"/>
<call arg="45"/>
<set arg="744"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="745"/>
<call arg="45"/>
<set arg="745"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="746"/>
<call arg="45"/>
<set arg="746"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="667"/>
<call arg="45"/>
<set arg="667"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="665"/>
<call arg="45"/>
<set arg="665"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="666"/>
<call arg="45"/>
<set arg="666"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="747"/>
<call arg="45"/>
<set arg="747"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="748"/>
<call arg="45"/>
<set arg="748"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="749"/>
<call arg="45"/>
<set arg="749"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="750"/>
<call arg="45"/>
<set arg="750"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="751"/>
<call arg="45"/>
<set arg="751"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="752"/>
<call arg="45"/>
<set arg="752"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="753"/>
<call arg="45"/>
<set arg="753"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="754"/>
<call arg="45"/>
<set arg="754"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="755"/>
<call arg="45"/>
<set arg="755"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="756"/>
<call arg="45"/>
<set arg="756"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="757"/>
<call arg="45"/>
<set arg="757"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="758"/>
<call arg="45"/>
<set arg="758"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="759"/>
<call arg="45"/>
<set arg="759"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="760"/>
<call arg="45"/>
<set arg="760"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="761"/>
<call arg="45"/>
<set arg="761"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="762"/>
<call arg="45"/>
<set arg="762"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="763"/>
<call arg="45"/>
<set arg="764"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="763"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="765" begin="15" end="15"/>
<lne id="766" begin="15" end="16"/>
<lne id="767" begin="13" end="18"/>
<lne id="768" begin="21" end="21"/>
<lne id="769" begin="21" end="22"/>
<lne id="770" begin="19" end="24"/>
<lne id="771" begin="27" end="27"/>
<lne id="772" begin="27" end="28"/>
<lne id="773" begin="25" end="30"/>
<lne id="774" begin="33" end="33"/>
<lne id="775" begin="33" end="34"/>
<lne id="776" begin="31" end="36"/>
<lne id="777" begin="39" end="39"/>
<lne id="778" begin="39" end="40"/>
<lne id="779" begin="37" end="42"/>
<lne id="780" begin="45" end="45"/>
<lne id="781" begin="45" end="46"/>
<lne id="782" begin="43" end="48"/>
<lne id="783" begin="51" end="51"/>
<lne id="784" begin="51" end="52"/>
<lne id="785" begin="49" end="54"/>
<lne id="786" begin="57" end="57"/>
<lne id="787" begin="57" end="58"/>
<lne id="788" begin="55" end="60"/>
<lne id="789" begin="63" end="63"/>
<lne id="790" begin="63" end="64"/>
<lne id="791" begin="61" end="66"/>
<lne id="792" begin="69" end="69"/>
<lne id="793" begin="69" end="70"/>
<lne id="794" begin="67" end="72"/>
<lne id="795" begin="78" end="78"/>
<lne id="796" begin="75" end="79"/>
<lne id="797" begin="73" end="81"/>
<lne id="798" begin="84" end="84"/>
<lne id="799" begin="84" end="85"/>
<lne id="800" begin="82" end="87"/>
<lne id="801" begin="90" end="90"/>
<lne id="802" begin="90" end="91"/>
<lne id="803" begin="88" end="93"/>
<lne id="804" begin="96" end="96"/>
<lne id="805" begin="96" end="97"/>
<lne id="806" begin="94" end="99"/>
<lne id="807" begin="102" end="102"/>
<lne id="808" begin="102" end="103"/>
<lne id="809" begin="100" end="105"/>
<lne id="810" begin="108" end="108"/>
<lne id="811" begin="108" end="109"/>
<lne id="812" begin="106" end="111"/>
<lne id="813" begin="114" end="114"/>
<lne id="814" begin="114" end="115"/>
<lne id="815" begin="112" end="117"/>
<lne id="816" begin="120" end="120"/>
<lne id="817" begin="120" end="121"/>
<lne id="818" begin="118" end="123"/>
<lne id="819" begin="126" end="126"/>
<lne id="820" begin="126" end="127"/>
<lne id="821" begin="124" end="129"/>
<lne id="822" begin="132" end="132"/>
<lne id="823" begin="132" end="133"/>
<lne id="824" begin="130" end="135"/>
<lne id="825" begin="138" end="138"/>
<lne id="826" begin="138" end="139"/>
<lne id="827" begin="136" end="141"/>
<lne id="828" begin="144" end="144"/>
<lne id="829" begin="144" end="145"/>
<lne id="830" begin="142" end="147"/>
<lne id="831" begin="150" end="150"/>
<lne id="832" begin="150" end="151"/>
<lne id="833" begin="148" end="153"/>
<lne id="834" begin="156" end="156"/>
<lne id="835" begin="156" end="157"/>
<lne id="836" begin="154" end="159"/>
<lne id="837" begin="162" end="162"/>
<lne id="838" begin="162" end="163"/>
<lne id="839" begin="160" end="165"/>
<lne id="840" begin="168" end="168"/>
<lne id="841" begin="168" end="169"/>
<lne id="842" begin="166" end="171"/>
<lne id="843" begin="174" end="174"/>
<lne id="844" begin="174" end="175"/>
<lne id="845" begin="172" end="177"/>
<lne id="846" begin="180" end="180"/>
<lne id="847" begin="180" end="181"/>
<lne id="848" begin="178" end="183"/>
<lne id="849" begin="186" end="186"/>
<lne id="850" begin="186" end="187"/>
<lne id="851" begin="184" end="189"/>
<lne id="852" begin="192" end="192"/>
<lne id="853" begin="192" end="193"/>
<lne id="854" begin="190" end="195"/>
<lne id="855" begin="198" end="198"/>
<lne id="856" begin="198" end="199"/>
<lne id="857" begin="196" end="201"/>
<lne id="858" begin="204" end="204"/>
<lne id="859" begin="204" end="205"/>
<lne id="860" begin="202" end="207"/>
<lne id="861" begin="210" end="210"/>
<lne id="862" begin="210" end="211"/>
<lne id="863" begin="208" end="213"/>
<lne id="864" begin="216" end="216"/>
<lne id="865" begin="216" end="217"/>
<lne id="866" begin="214" end="219"/>
<lne id="867" begin="222" end="222"/>
<lne id="868" begin="222" end="223"/>
<lne id="869" begin="220" end="225"/>
<lne id="870" begin="228" end="228"/>
<lne id="871" begin="228" end="229"/>
<lne id="872" begin="226" end="231"/>
<lne id="873" begin="234" end="234"/>
<lne id="874" begin="234" end="235"/>
<lne id="875" begin="232" end="237"/>
<lne id="739" begin="12" end="238"/>
<lne id="876" begin="242" end="242"/>
<lne id="877" begin="242" end="243"/>
<lne id="878" begin="240" end="245"/>
<lne id="879" begin="248" end="248"/>
<lne id="880" begin="248" end="249"/>
<lne id="881" begin="246" end="251"/>
<lne id="740" begin="239" end="252"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="252"/>
<lve slot="4" name="737" begin="11" end="252"/>
<lve slot="2" name="169" begin="3" end="252"/>
<lve slot="0" name="32" begin="0" end="252"/>
<lve slot="1" name="216" begin="0" end="252"/>
</localvariabletable>
</operation>
<operation name="882">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="224"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="883"/>
<call arg="45"/>
<set arg="883"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="665"/>
<call arg="45"/>
<set arg="665"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="666"/>
<call arg="45"/>
<set arg="666"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="884"/>
<call arg="45"/>
<set arg="884"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="885"/>
<call arg="45"/>
<set arg="885"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="886"/>
<call arg="45"/>
<set arg="886"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="887"/>
<call arg="45"/>
<set arg="887"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="888"/>
<call arg="45"/>
<set arg="888"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="889" begin="15" end="15"/>
<lne id="890" begin="15" end="16"/>
<lne id="891" begin="13" end="18"/>
<lne id="892" begin="21" end="21"/>
<lne id="893" begin="21" end="22"/>
<lne id="894" begin="19" end="24"/>
<lne id="895" begin="27" end="27"/>
<lne id="896" begin="27" end="28"/>
<lne id="897" begin="25" end="30"/>
<lne id="898" begin="33" end="33"/>
<lne id="899" begin="33" end="34"/>
<lne id="900" begin="31" end="36"/>
<lne id="901" begin="39" end="39"/>
<lne id="902" begin="39" end="40"/>
<lne id="903" begin="37" end="42"/>
<lne id="904" begin="45" end="45"/>
<lne id="905" begin="45" end="46"/>
<lne id="906" begin="43" end="48"/>
<lne id="907" begin="51" end="51"/>
<lne id="908" begin="51" end="52"/>
<lne id="909" begin="49" end="54"/>
<lne id="910" begin="57" end="57"/>
<lne id="911" begin="57" end="58"/>
<lne id="912" begin="55" end="60"/>
<lne id="265" begin="63" end="63"/>
<lne id="266" begin="63" end="64"/>
<lne id="267" begin="61" end="66"/>
<lne id="268" begin="69" end="69"/>
<lne id="269" begin="69" end="70"/>
<lne id="270" begin="67" end="72"/>
<lne id="271" begin="75" end="75"/>
<lne id="272" begin="75" end="76"/>
<lne id="273" begin="73" end="78"/>
<lne id="274" begin="81" end="81"/>
<lne id="275" begin="81" end="82"/>
<lne id="276" begin="79" end="84"/>
<lne id="277" begin="87" end="87"/>
<lne id="278" begin="87" end="88"/>
<lne id="279" begin="85" end="90"/>
<lne id="280" begin="93" end="93"/>
<lne id="281" begin="93" end="94"/>
<lne id="282" begin="91" end="96"/>
<lne id="283" begin="99" end="99"/>
<lne id="284" begin="99" end="100"/>
<lne id="285" begin="97" end="102"/>
<lne id="286" begin="105" end="105"/>
<lne id="287" begin="105" end="106"/>
<lne id="288" begin="103" end="108"/>
<lne id="289" begin="111" end="111"/>
<lne id="290" begin="111" end="112"/>
<lne id="291" begin="109" end="114"/>
<lne id="292" begin="117" end="117"/>
<lne id="293" begin="117" end="118"/>
<lne id="294" begin="115" end="120"/>
<lne id="295" begin="126" end="126"/>
<lne id="296" begin="123" end="127"/>
<lne id="297" begin="121" end="129"/>
<lne id="298" begin="132" end="132"/>
<lne id="299" begin="132" end="133"/>
<lne id="300" begin="130" end="135"/>
<lne id="248" begin="12" end="136"/>
<lne id="301" begin="140" end="140"/>
<lne id="302" begin="140" end="141"/>
<lne id="303" begin="138" end="143"/>
<lne id="247" begin="137" end="144"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="144"/>
<lve slot="4" name="224" begin="11" end="144"/>
<lve slot="2" name="169" begin="3" end="144"/>
<lve slot="0" name="32" begin="0" end="144"/>
<lve slot="1" name="216" begin="0" end="144"/>
</localvariabletable>
</operation>
<operation name="913">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="914"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="915"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="109"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="914"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="916"/>
<push arg="917"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="918" begin="7" end="7"/>
<lne id="919" begin="7" end="8"/>
<lne id="920" begin="9" end="9"/>
<lne id="921" begin="7" end="10"/>
<lne id="922" begin="25" end="30"/>
<lne id="923" begin="31" end="36"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="38"/>
<lve slot="0" name="32" begin="0" end="39"/>
</localvariabletable>
</operation>
<operation name="924">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="916"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="925"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="926"/>
<call arg="45"/>
<set arg="926"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="927"/>
<call arg="45"/>
<set arg="927"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="928"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="929"/>
<call arg="45"/>
<set arg="929"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="930"/>
<call arg="45"/>
<set arg="930"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="91"/>
<call arg="45"/>
<set arg="91"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="263"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="931"/>
<call arg="45"/>
<set arg="931"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="932"/>
<call arg="45"/>
<set arg="498"/>
<pop/>
</code>
<linenumbertable>
<lne id="933" begin="15" end="15"/>
<lne id="934" begin="15" end="16"/>
<lne id="935" begin="13" end="18"/>
<lne id="936" begin="21" end="21"/>
<lne id="937" begin="21" end="22"/>
<lne id="938" begin="19" end="24"/>
<lne id="939" begin="27" end="27"/>
<lne id="940" begin="27" end="28"/>
<lne id="941" begin="25" end="30"/>
<lne id="942" begin="33" end="33"/>
<lne id="943" begin="33" end="34"/>
<lne id="944" begin="31" end="36"/>
<lne id="945" begin="39" end="39"/>
<lne id="946" begin="39" end="40"/>
<lne id="947" begin="37" end="42"/>
<lne id="948" begin="45" end="45"/>
<lne id="949" begin="45" end="46"/>
<lne id="950" begin="43" end="48"/>
<lne id="951" begin="51" end="51"/>
<lne id="952" begin="51" end="52"/>
<lne id="953" begin="49" end="54"/>
<lne id="954" begin="57" end="57"/>
<lne id="955" begin="57" end="58"/>
<lne id="956" begin="55" end="60"/>
<lne id="957" begin="63" end="63"/>
<lne id="958" begin="63" end="64"/>
<lne id="959" begin="61" end="66"/>
<lne id="960" begin="69" end="69"/>
<lne id="961" begin="69" end="70"/>
<lne id="962" begin="67" end="72"/>
<lne id="963" begin="78" end="78"/>
<lne id="964" begin="75" end="79"/>
<lne id="965" begin="73" end="81"/>
<lne id="966" begin="84" end="84"/>
<lne id="967" begin="84" end="85"/>
<lne id="968" begin="82" end="87"/>
<lne id="969" begin="90" end="90"/>
<lne id="970" begin="90" end="91"/>
<lne id="971" begin="88" end="93"/>
<lne id="972" begin="96" end="96"/>
<lne id="973" begin="96" end="97"/>
<lne id="974" begin="94" end="99"/>
<lne id="975" begin="102" end="102"/>
<lne id="976" begin="102" end="103"/>
<lne id="977" begin="100" end="105"/>
<lne id="978" begin="108" end="108"/>
<lne id="979" begin="108" end="109"/>
<lne id="980" begin="106" end="111"/>
<lne id="922" begin="12" end="112"/>
<lne id="981" begin="116" end="116"/>
<lne id="982" begin="116" end="117"/>
<lne id="983" begin="114" end="119"/>
<lne id="923" begin="113" end="120"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="120"/>
<lve slot="4" name="916" begin="11" end="120"/>
<lve slot="2" name="169" begin="3" end="120"/>
<lve slot="0" name="32" begin="0" end="120"/>
<lve slot="1" name="216" begin="0" end="120"/>
</localvariabletable>
</operation>
<operation name="984">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="985"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="915"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="111"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="985"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<dup/>
<push arg="916"/>
<push arg="917"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="986" begin="7" end="7"/>
<lne id="987" begin="7" end="8"/>
<lne id="988" begin="9" end="9"/>
<lne id="989" begin="7" end="10"/>
<lne id="990" begin="25" end="30"/>
<lne id="991" begin="31" end="36"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="38"/>
<lve slot="0" name="32" begin="0" end="39"/>
</localvariabletable>
</operation>
<operation name="992">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="916"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="925"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="993"/>
<call arg="45"/>
<set arg="993"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="994"/>
<call arg="45"/>
<set arg="994"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="995"/>
<call arg="45"/>
<set arg="995"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="996"/>
<call arg="45"/>
<set arg="996"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="928"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="997"/>
<call arg="45"/>
<set arg="997"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="998"/>
<call arg="45"/>
<set arg="498"/>
<pop/>
</code>
<linenumbertable>
<lne id="999" begin="15" end="15"/>
<lne id="1000" begin="15" end="16"/>
<lne id="1001" begin="13" end="18"/>
<lne id="1002" begin="21" end="21"/>
<lne id="1003" begin="21" end="22"/>
<lne id="1004" begin="19" end="24"/>
<lne id="1005" begin="27" end="27"/>
<lne id="1006" begin="27" end="28"/>
<lne id="1007" begin="25" end="30"/>
<lne id="1008" begin="33" end="33"/>
<lne id="1009" begin="33" end="34"/>
<lne id="1010" begin="31" end="36"/>
<lne id="1011" begin="39" end="39"/>
<lne id="1012" begin="39" end="40"/>
<lne id="1013" begin="37" end="42"/>
<lne id="1014" begin="45" end="45"/>
<lne id="1015" begin="45" end="46"/>
<lne id="1016" begin="43" end="48"/>
<lne id="1017" begin="51" end="51"/>
<lne id="1018" begin="51" end="52"/>
<lne id="1019" begin="49" end="54"/>
<lne id="1020" begin="57" end="57"/>
<lne id="1021" begin="57" end="58"/>
<lne id="1022" begin="55" end="60"/>
<lne id="1023" begin="63" end="63"/>
<lne id="1024" begin="63" end="64"/>
<lne id="1025" begin="61" end="66"/>
<lne id="1026" begin="69" end="69"/>
<lne id="1027" begin="69" end="70"/>
<lne id="1028" begin="67" end="72"/>
<lne id="1029" begin="75" end="75"/>
<lne id="1030" begin="75" end="76"/>
<lne id="1031" begin="73" end="78"/>
<lne id="1032" begin="81" end="81"/>
<lne id="1033" begin="81" end="82"/>
<lne id="1034" begin="79" end="84"/>
<lne id="1035" begin="90" end="90"/>
<lne id="1036" begin="87" end="91"/>
<lne id="1037" begin="85" end="93"/>
<lne id="1038" begin="96" end="96"/>
<lne id="1039" begin="96" end="97"/>
<lne id="1040" begin="94" end="99"/>
<lne id="990" begin="12" end="100"/>
<lne id="1041" begin="104" end="104"/>
<lne id="1042" begin="104" end="105"/>
<lne id="1043" begin="102" end="107"/>
<lne id="991" begin="101" end="108"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="108"/>
<lve slot="4" name="916" begin="11" end="108"/>
<lve slot="2" name="169" begin="3" end="108"/>
<lve slot="0" name="32" begin="0" end="108"/>
<lve slot="1" name="216" begin="0" end="108"/>
</localvariabletable>
</operation>
<operation name="1044">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1045"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<load arg="34"/>
<push arg="1045"/>
<push arg="17"/>
<findme/>
<call arg="219"/>
<if arg="39"/>
<pushf/>
<goto arg="452"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="307"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="113"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1045"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1046" begin="7" end="7"/>
<lne id="1047" begin="8" end="10"/>
<lne id="1048" begin="7" end="11"/>
<lne id="1049" begin="13" end="13"/>
<lne id="1050" begin="15" end="15"/>
<lne id="1051" begin="15" end="16"/>
<lne id="1052" begin="17" end="17"/>
<lne id="1053" begin="15" end="18"/>
<lne id="1054" begin="7" end="18"/>
<lne id="1055" begin="33" end="38"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="40"/>
<lve slot="0" name="32" begin="0" end="41"/>
</localvariabletable>
</operation>
<operation name="1056">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="599"/>
<pop/>
</code>
<linenumbertable>
<lne id="1057" begin="11" end="11"/>
<lne id="1058" begin="11" end="12"/>
<lne id="1059" begin="9" end="14"/>
<lne id="1060" begin="17" end="17"/>
<lne id="1061" begin="17" end="18"/>
<lne id="1062" begin="15" end="20"/>
<lne id="1063" begin="23" end="23"/>
<lne id="1064" begin="23" end="24"/>
<lne id="1065" begin="21" end="26"/>
<lne id="1066" begin="29" end="29"/>
<lne id="1067" begin="29" end="30"/>
<lne id="1068" begin="27" end="32"/>
<lne id="1069" begin="35" end="35"/>
<lne id="1070" begin="35" end="36"/>
<lne id="1071" begin="33" end="38"/>
<lne id="1072" begin="41" end="41"/>
<lne id="1073" begin="41" end="42"/>
<lne id="1074" begin="39" end="44"/>
<lne id="1075" begin="47" end="47"/>
<lne id="1076" begin="47" end="48"/>
<lne id="1077" begin="45" end="50"/>
<lne id="1078" begin="53" end="53"/>
<lne id="1079" begin="53" end="54"/>
<lne id="1080" begin="51" end="56"/>
<lne id="1055" begin="8" end="57"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="57"/>
<lve slot="2" name="169" begin="3" end="57"/>
<lve slot="0" name="32" begin="0" end="57"/>
<lve slot="1" name="216" begin="0" end="57"/>
</localvariabletable>
</operation>
<operation name="1081">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1082"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="115"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1082"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1083" begin="7" end="7"/>
<lne id="1084" begin="7" end="8"/>
<lne id="1085" begin="9" end="9"/>
<lne id="1086" begin="7" end="10"/>
<lne id="1087" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1088">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="599"/>
<pop/>
</code>
<linenumbertable>
<lne id="1089" begin="11" end="11"/>
<lne id="1090" begin="11" end="12"/>
<lne id="1091" begin="9" end="14"/>
<lne id="1092" begin="17" end="17"/>
<lne id="1093" begin="17" end="18"/>
<lne id="1094" begin="15" end="20"/>
<lne id="1095" begin="23" end="23"/>
<lne id="1096" begin="23" end="24"/>
<lne id="1097" begin="21" end="26"/>
<lne id="1098" begin="29" end="29"/>
<lne id="1099" begin="29" end="30"/>
<lne id="1100" begin="27" end="32"/>
<lne id="1101" begin="35" end="35"/>
<lne id="1102" begin="35" end="36"/>
<lne id="1103" begin="33" end="38"/>
<lne id="1104" begin="41" end="41"/>
<lne id="1105" begin="41" end="42"/>
<lne id="1106" begin="39" end="44"/>
<lne id="1107" begin="47" end="47"/>
<lne id="1108" begin="47" end="48"/>
<lne id="1109" begin="45" end="50"/>
<lne id="1110" begin="53" end="53"/>
<lne id="1111" begin="53" end="54"/>
<lne id="1112" begin="51" end="56"/>
<lne id="1087" begin="8" end="57"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="57"/>
<lve slot="2" name="169" begin="3" end="57"/>
<lve slot="0" name="32" begin="0" end="57"/>
<lve slot="1" name="216" begin="0" end="57"/>
</localvariabletable>
</operation>
<operation name="1113">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1114"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="117"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1114"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1115" begin="7" end="7"/>
<lne id="1116" begin="7" end="8"/>
<lne id="1117" begin="9" end="9"/>
<lne id="1118" begin="7" end="10"/>
<lne id="1119" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1120">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="599"/>
<pop/>
</code>
<linenumbertable>
<lne id="1121" begin="11" end="11"/>
<lne id="1122" begin="11" end="12"/>
<lne id="1123" begin="9" end="14"/>
<lne id="1124" begin="17" end="17"/>
<lne id="1125" begin="17" end="18"/>
<lne id="1126" begin="15" end="20"/>
<lne id="1127" begin="23" end="23"/>
<lne id="1128" begin="23" end="24"/>
<lne id="1129" begin="21" end="26"/>
<lne id="1130" begin="29" end="29"/>
<lne id="1131" begin="29" end="30"/>
<lne id="1132" begin="27" end="32"/>
<lne id="1133" begin="35" end="35"/>
<lne id="1134" begin="35" end="36"/>
<lne id="1135" begin="33" end="38"/>
<lne id="1136" begin="41" end="41"/>
<lne id="1137" begin="41" end="42"/>
<lne id="1138" begin="39" end="44"/>
<lne id="1139" begin="47" end="47"/>
<lne id="1140" begin="47" end="48"/>
<lne id="1141" begin="45" end="50"/>
<lne id="1142" begin="53" end="53"/>
<lne id="1143" begin="53" end="54"/>
<lne id="1144" begin="51" end="56"/>
<lne id="1119" begin="8" end="57"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="57"/>
<lve slot="2" name="169" begin="3" end="57"/>
<lve slot="0" name="32" begin="0" end="57"/>
<lve slot="1" name="216" begin="0" end="57"/>
</localvariabletable>
</operation>
<operation name="1145">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="308"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="640"/>
<call arg="45"/>
<set arg="640"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="330"/>
<call arg="45"/>
<set arg="330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="331"/>
<call arg="45"/>
<set arg="331"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="332"/>
<call arg="45"/>
<set arg="332"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="333"/>
<call arg="45"/>
<set arg="333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="334"/>
<call arg="45"/>
<set arg="334"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="335"/>
<call arg="45"/>
<set arg="335"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="336"/>
<call arg="45"/>
<set arg="336"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="337"/>
<call arg="45"/>
<set arg="337"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="338"/>
<call arg="45"/>
<set arg="338"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="339"/>
<call arg="45"/>
<set arg="339"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="340"/>
<call arg="45"/>
<set arg="340"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="341"/>
<call arg="45"/>
<set arg="341"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="342"/>
<call arg="45"/>
<set arg="342"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="343"/>
<call arg="45"/>
<set arg="343"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="344"/>
<call arg="45"/>
<set arg="344"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="345"/>
<call arg="45"/>
<set arg="345"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="346"/>
<call arg="45"/>
<set arg="346"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="347"/>
<call arg="45"/>
<set arg="347"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="348"/>
<call arg="45"/>
<set arg="348"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="349"/>
<call arg="45"/>
<set arg="349"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="1146" begin="15" end="15"/>
<lne id="1147" begin="15" end="16"/>
<lne id="1148" begin="13" end="18"/>
<lne id="350" begin="21" end="21"/>
<lne id="351" begin="21" end="22"/>
<lne id="352" begin="19" end="24"/>
<lne id="353" begin="27" end="27"/>
<lne id="354" begin="27" end="28"/>
<lne id="355" begin="25" end="30"/>
<lne id="356" begin="33" end="33"/>
<lne id="357" begin="33" end="34"/>
<lne id="358" begin="31" end="36"/>
<lne id="359" begin="39" end="39"/>
<lne id="360" begin="39" end="40"/>
<lne id="361" begin="37" end="42"/>
<lne id="362" begin="45" end="45"/>
<lne id="363" begin="45" end="46"/>
<lne id="364" begin="43" end="48"/>
<lne id="365" begin="51" end="51"/>
<lne id="366" begin="51" end="52"/>
<lne id="367" begin="49" end="54"/>
<lne id="368" begin="57" end="57"/>
<lne id="369" begin="57" end="58"/>
<lne id="370" begin="55" end="60"/>
<lne id="371" begin="63" end="63"/>
<lne id="372" begin="63" end="64"/>
<lne id="373" begin="61" end="66"/>
<lne id="374" begin="69" end="69"/>
<lne id="375" begin="69" end="70"/>
<lne id="376" begin="67" end="72"/>
<lne id="377" begin="75" end="75"/>
<lne id="378" begin="75" end="76"/>
<lne id="379" begin="73" end="78"/>
<lne id="380" begin="84" end="84"/>
<lne id="381" begin="81" end="85"/>
<lne id="382" begin="79" end="87"/>
<lne id="383" begin="90" end="90"/>
<lne id="384" begin="90" end="91"/>
<lne id="385" begin="88" end="93"/>
<lne id="386" begin="96" end="96"/>
<lne id="387" begin="96" end="97"/>
<lne id="388" begin="94" end="99"/>
<lne id="389" begin="102" end="102"/>
<lne id="390" begin="102" end="103"/>
<lne id="391" begin="100" end="105"/>
<lne id="392" begin="108" end="108"/>
<lne id="393" begin="108" end="109"/>
<lne id="394" begin="106" end="111"/>
<lne id="395" begin="114" end="114"/>
<lne id="396" begin="114" end="115"/>
<lne id="397" begin="112" end="117"/>
<lne id="398" begin="120" end="120"/>
<lne id="399" begin="120" end="121"/>
<lne id="400" begin="118" end="123"/>
<lne id="401" begin="126" end="126"/>
<lne id="402" begin="126" end="127"/>
<lne id="403" begin="124" end="129"/>
<lne id="404" begin="132" end="132"/>
<lne id="405" begin="132" end="133"/>
<lne id="406" begin="130" end="135"/>
<lne id="407" begin="138" end="138"/>
<lne id="408" begin="138" end="139"/>
<lne id="409" begin="136" end="141"/>
<lne id="410" begin="144" end="144"/>
<lne id="411" begin="144" end="145"/>
<lne id="412" begin="142" end="147"/>
<lne id="413" begin="150" end="150"/>
<lne id="414" begin="150" end="151"/>
<lne id="415" begin="148" end="153"/>
<lne id="416" begin="156" end="156"/>
<lne id="417" begin="156" end="157"/>
<lne id="418" begin="154" end="159"/>
<lne id="419" begin="162" end="162"/>
<lne id="420" begin="162" end="163"/>
<lne id="421" begin="160" end="165"/>
<lne id="422" begin="168" end="168"/>
<lne id="423" begin="168" end="169"/>
<lne id="424" begin="166" end="171"/>
<lne id="425" begin="174" end="174"/>
<lne id="426" begin="174" end="175"/>
<lne id="427" begin="172" end="177"/>
<lne id="428" begin="180" end="180"/>
<lne id="429" begin="180" end="181"/>
<lne id="430" begin="178" end="183"/>
<lne id="431" begin="186" end="186"/>
<lne id="432" begin="186" end="187"/>
<lne id="433" begin="184" end="189"/>
<lne id="434" begin="192" end="192"/>
<lne id="435" begin="192" end="193"/>
<lne id="436" begin="190" end="195"/>
<lne id="437" begin="198" end="198"/>
<lne id="438" begin="198" end="199"/>
<lne id="439" begin="196" end="201"/>
<lne id="440" begin="204" end="204"/>
<lne id="441" begin="204" end="205"/>
<lne id="442" begin="202" end="207"/>
<lne id="443" begin="210" end="210"/>
<lne id="444" begin="210" end="211"/>
<lne id="445" begin="208" end="213"/>
<lne id="325" begin="12" end="214"/>
<lne id="446" begin="218" end="218"/>
<lne id="447" begin="218" end="219"/>
<lne id="448" begin="216" end="221"/>
<lne id="322" begin="215" end="222"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="222"/>
<lve slot="4" name="308" begin="11" end="222"/>
<lve slot="2" name="169" begin="3" end="222"/>
<lve slot="0" name="32" begin="0" end="222"/>
<lve slot="1" name="216" begin="0" end="222"/>
</localvariabletable>
</operation>
<operation name="1149">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="224"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1150"/>
<call arg="45"/>
<set arg="1150"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1151"/>
<call arg="45"/>
<set arg="1151"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1152"/>
<call arg="45"/>
<set arg="1152"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1153"/>
<call arg="45"/>
<set arg="1153"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="333"/>
<call arg="45"/>
<set arg="333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1154"/>
<call arg="45"/>
<set arg="1154"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="1155" begin="15" end="15"/>
<lne id="1156" begin="15" end="16"/>
<lne id="1157" begin="13" end="18"/>
<lne id="1158" begin="21" end="21"/>
<lne id="1159" begin="21" end="22"/>
<lne id="1160" begin="19" end="24"/>
<lne id="1161" begin="27" end="27"/>
<lne id="1162" begin="27" end="28"/>
<lne id="1163" begin="25" end="30"/>
<lne id="1164" begin="33" end="33"/>
<lne id="1165" begin="33" end="34"/>
<lne id="1166" begin="31" end="36"/>
<lne id="1167" begin="39" end="39"/>
<lne id="1168" begin="39" end="40"/>
<lne id="1169" begin="37" end="42"/>
<lne id="1170" begin="45" end="45"/>
<lne id="1171" begin="45" end="46"/>
<lne id="1172" begin="43" end="48"/>
<lne id="265" begin="51" end="51"/>
<lne id="266" begin="51" end="52"/>
<lne id="267" begin="49" end="54"/>
<lne id="268" begin="57" end="57"/>
<lne id="269" begin="57" end="58"/>
<lne id="270" begin="55" end="60"/>
<lne id="271" begin="63" end="63"/>
<lne id="272" begin="63" end="64"/>
<lne id="273" begin="61" end="66"/>
<lne id="274" begin="69" end="69"/>
<lne id="275" begin="69" end="70"/>
<lne id="276" begin="67" end="72"/>
<lne id="277" begin="75" end="75"/>
<lne id="278" begin="75" end="76"/>
<lne id="279" begin="73" end="78"/>
<lne id="280" begin="81" end="81"/>
<lne id="281" begin="81" end="82"/>
<lne id="282" begin="79" end="84"/>
<lne id="283" begin="87" end="87"/>
<lne id="284" begin="87" end="88"/>
<lne id="285" begin="85" end="90"/>
<lne id="286" begin="93" end="93"/>
<lne id="287" begin="93" end="94"/>
<lne id="288" begin="91" end="96"/>
<lne id="289" begin="99" end="99"/>
<lne id="290" begin="99" end="100"/>
<lne id="291" begin="97" end="102"/>
<lne id="292" begin="105" end="105"/>
<lne id="293" begin="105" end="106"/>
<lne id="294" begin="103" end="108"/>
<lne id="295" begin="114" end="114"/>
<lne id="296" begin="111" end="115"/>
<lne id="297" begin="109" end="117"/>
<lne id="298" begin="120" end="120"/>
<lne id="299" begin="120" end="121"/>
<lne id="300" begin="118" end="123"/>
<lne id="249" begin="12" end="124"/>
<lne id="301" begin="128" end="128"/>
<lne id="302" begin="128" end="129"/>
<lne id="303" begin="126" end="131"/>
<lne id="247" begin="125" end="132"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="132"/>
<lve slot="4" name="224" begin="11" end="132"/>
<lve slot="2" name="169" begin="3" end="132"/>
<lve slot="0" name="32" begin="0" end="132"/>
<lve slot="1" name="216" begin="0" end="132"/>
</localvariabletable>
</operation>
<operation name="1173">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1174"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="123"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1174"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1175" begin="7" end="7"/>
<lne id="1176" begin="7" end="8"/>
<lne id="1177" begin="9" end="9"/>
<lne id="1178" begin="7" end="10"/>
<lne id="1179" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1180">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1181"/>
<call arg="45"/>
<set arg="1181"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1182"/>
<call arg="45"/>
<set arg="1182"/>
<pop/>
</code>
<linenumbertable>
<lne id="1183" begin="11" end="11"/>
<lne id="1184" begin="11" end="12"/>
<lne id="1185" begin="9" end="14"/>
<lne id="1186" begin="17" end="17"/>
<lne id="1187" begin="17" end="18"/>
<lne id="1188" begin="15" end="20"/>
<lne id="1179" begin="8" end="21"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="21"/>
<lve slot="2" name="169" begin="3" end="21"/>
<lve slot="0" name="32" begin="0" end="21"/>
<lve slot="1" name="216" begin="0" end="21"/>
</localvariabletable>
</operation>
<operation name="1189">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1190"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="125"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1190"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1191" begin="7" end="7"/>
<lne id="1192" begin="7" end="8"/>
<lne id="1193" begin="9" end="9"/>
<lne id="1194" begin="7" end="10"/>
<lne id="1195" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1196">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1197"/>
<call arg="45"/>
<set arg="1197"/>
<pop/>
</code>
<linenumbertable>
<lne id="1198" begin="11" end="11"/>
<lne id="1199" begin="11" end="12"/>
<lne id="1200" begin="9" end="14"/>
<lne id="1195" begin="8" end="15"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="15"/>
<lve slot="2" name="169" begin="3" end="15"/>
<lve slot="0" name="32" begin="0" end="15"/>
<lve slot="1" name="216" begin="0" end="15"/>
</localvariabletable>
</operation>
<operation name="1201">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1202"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="127"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1202"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1203" begin="7" end="7"/>
<lne id="1204" begin="7" end="8"/>
<lne id="1205" begin="9" end="9"/>
<lne id="1206" begin="7" end="10"/>
<lne id="1207" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1208">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="49"/>
<call arg="45"/>
<set arg="49"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1209"/>
<call arg="45"/>
<set arg="1209"/>
<pop/>
</code>
<linenumbertable>
<lne id="1210" begin="11" end="11"/>
<lne id="1211" begin="11" end="12"/>
<lne id="1212" begin="9" end="14"/>
<lne id="1213" begin="17" end="17"/>
<lne id="1214" begin="17" end="18"/>
<lne id="1215" begin="15" end="20"/>
<lne id="1216" begin="23" end="23"/>
<lne id="1217" begin="23" end="24"/>
<lne id="1218" begin="21" end="26"/>
<lne id="1219" begin="29" end="29"/>
<lne id="1220" begin="29" end="30"/>
<lne id="1221" begin="27" end="32"/>
<lne id="1222" begin="35" end="35"/>
<lne id="1223" begin="35" end="36"/>
<lne id="1224" begin="33" end="38"/>
<lne id="1225" begin="41" end="41"/>
<lne id="1226" begin="41" end="42"/>
<lne id="1227" begin="39" end="44"/>
<lne id="1228" begin="47" end="47"/>
<lne id="1229" begin="47" end="48"/>
<lne id="1230" begin="45" end="50"/>
<lne id="1231" begin="53" end="53"/>
<lne id="1232" begin="53" end="54"/>
<lne id="1233" begin="51" end="56"/>
<lne id="1234" begin="59" end="59"/>
<lne id="1235" begin="59" end="60"/>
<lne id="1236" begin="57" end="62"/>
<lne id="1207" begin="8" end="63"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="63"/>
<lve slot="2" name="169" begin="3" end="63"/>
<lve slot="0" name="32" begin="0" end="63"/>
<lve slot="1" name="216" begin="0" end="63"/>
</localvariabletable>
</operation>
<operation name="1237">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="224"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="49"/>
<call arg="45"/>
<set arg="49"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="331"/>
<call arg="45"/>
<set arg="331"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1238"/>
<call arg="45"/>
<set arg="1238"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="342"/>
<call arg="45"/>
<set arg="342"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="330"/>
<call arg="45"/>
<set arg="330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="1239" begin="15" end="15"/>
<lne id="1240" begin="15" end="16"/>
<lne id="1241" begin="13" end="18"/>
<lne id="1242" begin="21" end="21"/>
<lne id="1243" begin="21" end="22"/>
<lne id="1244" begin="19" end="24"/>
<lne id="1245" begin="27" end="27"/>
<lne id="1246" begin="27" end="28"/>
<lne id="1247" begin="25" end="30"/>
<lne id="1248" begin="33" end="33"/>
<lne id="1249" begin="33" end="34"/>
<lne id="1250" begin="31" end="36"/>
<lne id="1251" begin="39" end="39"/>
<lne id="1252" begin="39" end="40"/>
<lne id="1253" begin="37" end="42"/>
<lne id="265" begin="45" end="45"/>
<lne id="266" begin="45" end="46"/>
<lne id="267" begin="43" end="48"/>
<lne id="268" begin="51" end="51"/>
<lne id="269" begin="51" end="52"/>
<lne id="270" begin="49" end="54"/>
<lne id="271" begin="57" end="57"/>
<lne id="272" begin="57" end="58"/>
<lne id="273" begin="55" end="60"/>
<lne id="274" begin="63" end="63"/>
<lne id="275" begin="63" end="64"/>
<lne id="276" begin="61" end="66"/>
<lne id="277" begin="69" end="69"/>
<lne id="278" begin="69" end="70"/>
<lne id="279" begin="67" end="72"/>
<lne id="280" begin="75" end="75"/>
<lne id="281" begin="75" end="76"/>
<lne id="282" begin="73" end="78"/>
<lne id="283" begin="81" end="81"/>
<lne id="284" begin="81" end="82"/>
<lne id="285" begin="79" end="84"/>
<lne id="286" begin="87" end="87"/>
<lne id="287" begin="87" end="88"/>
<lne id="288" begin="85" end="90"/>
<lne id="289" begin="93" end="93"/>
<lne id="290" begin="93" end="94"/>
<lne id="291" begin="91" end="96"/>
<lne id="292" begin="99" end="99"/>
<lne id="293" begin="99" end="100"/>
<lne id="294" begin="97" end="102"/>
<lne id="295" begin="108" end="108"/>
<lne id="296" begin="105" end="109"/>
<lne id="297" begin="103" end="111"/>
<lne id="298" begin="114" end="114"/>
<lne id="299" begin="114" end="115"/>
<lne id="300" begin="112" end="117"/>
<lne id="250" begin="12" end="118"/>
<lne id="301" begin="122" end="122"/>
<lne id="302" begin="122" end="123"/>
<lne id="303" begin="120" end="125"/>
<lne id="247" begin="119" end="126"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="126"/>
<lve slot="4" name="224" begin="11" end="126"/>
<lve slot="2" name="169" begin="3" end="126"/>
<lve slot="0" name="32" begin="0" end="126"/>
<lve slot="1" name="216" begin="0" end="126"/>
</localvariabletable>
</operation>
<operation name="1254">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="308"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1255"/>
<call arg="45"/>
<set arg="1255"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1256"/>
<call arg="45"/>
<set arg="1256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1257"/>
<call arg="45"/>
<set arg="1257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1258"/>
<call arg="45"/>
<set arg="1258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1259"/>
<call arg="45"/>
<set arg="1259"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1260"/>
<call arg="45"/>
<set arg="1260"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1261"/>
<call arg="45"/>
<set arg="1261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1262"/>
<call arg="45"/>
<set arg="1262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1263"/>
<call arg="45"/>
<set arg="1263"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="330"/>
<call arg="45"/>
<set arg="330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="331"/>
<call arg="45"/>
<set arg="331"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="332"/>
<call arg="45"/>
<set arg="332"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="333"/>
<call arg="45"/>
<set arg="333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="334"/>
<call arg="45"/>
<set arg="334"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="335"/>
<call arg="45"/>
<set arg="335"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="336"/>
<call arg="45"/>
<set arg="336"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="337"/>
<call arg="45"/>
<set arg="337"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="338"/>
<call arg="45"/>
<set arg="338"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="339"/>
<call arg="45"/>
<set arg="339"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="340"/>
<call arg="45"/>
<set arg="340"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="341"/>
<call arg="45"/>
<set arg="341"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="342"/>
<call arg="45"/>
<set arg="342"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="343"/>
<call arg="45"/>
<set arg="343"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="344"/>
<call arg="45"/>
<set arg="344"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="345"/>
<call arg="45"/>
<set arg="345"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="346"/>
<call arg="45"/>
<set arg="346"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="347"/>
<call arg="45"/>
<set arg="347"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="348"/>
<call arg="45"/>
<set arg="348"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="349"/>
<call arg="45"/>
<set arg="349"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="1264" begin="15" end="15"/>
<lne id="1265" begin="15" end="16"/>
<lne id="1266" begin="13" end="18"/>
<lne id="1267" begin="21" end="21"/>
<lne id="1268" begin="21" end="22"/>
<lne id="1269" begin="19" end="24"/>
<lne id="1270" begin="27" end="27"/>
<lne id="1271" begin="27" end="28"/>
<lne id="1272" begin="25" end="30"/>
<lne id="1273" begin="33" end="33"/>
<lne id="1274" begin="33" end="34"/>
<lne id="1275" begin="31" end="36"/>
<lne id="1276" begin="39" end="39"/>
<lne id="1277" begin="39" end="40"/>
<lne id="1278" begin="37" end="42"/>
<lne id="1279" begin="45" end="45"/>
<lne id="1280" begin="45" end="46"/>
<lne id="1281" begin="43" end="48"/>
<lne id="1282" begin="51" end="51"/>
<lne id="1283" begin="51" end="52"/>
<lne id="1284" begin="49" end="54"/>
<lne id="1285" begin="57" end="57"/>
<lne id="1286" begin="57" end="58"/>
<lne id="1287" begin="55" end="60"/>
<lne id="1288" begin="63" end="63"/>
<lne id="1289" begin="63" end="64"/>
<lne id="1290" begin="61" end="66"/>
<lne id="350" begin="69" end="69"/>
<lne id="351" begin="69" end="70"/>
<lne id="352" begin="67" end="72"/>
<lne id="353" begin="75" end="75"/>
<lne id="354" begin="75" end="76"/>
<lne id="355" begin="73" end="78"/>
<lne id="356" begin="81" end="81"/>
<lne id="357" begin="81" end="82"/>
<lne id="358" begin="79" end="84"/>
<lne id="359" begin="87" end="87"/>
<lne id="360" begin="87" end="88"/>
<lne id="361" begin="85" end="90"/>
<lne id="362" begin="93" end="93"/>
<lne id="363" begin="93" end="94"/>
<lne id="364" begin="91" end="96"/>
<lne id="365" begin="99" end="99"/>
<lne id="366" begin="99" end="100"/>
<lne id="367" begin="97" end="102"/>
<lne id="368" begin="105" end="105"/>
<lne id="369" begin="105" end="106"/>
<lne id="370" begin="103" end="108"/>
<lne id="371" begin="111" end="111"/>
<lne id="372" begin="111" end="112"/>
<lne id="373" begin="109" end="114"/>
<lne id="374" begin="117" end="117"/>
<lne id="375" begin="117" end="118"/>
<lne id="376" begin="115" end="120"/>
<lne id="377" begin="123" end="123"/>
<lne id="378" begin="123" end="124"/>
<lne id="379" begin="121" end="126"/>
<lne id="380" begin="132" end="132"/>
<lne id="381" begin="129" end="133"/>
<lne id="382" begin="127" end="135"/>
<lne id="383" begin="138" end="138"/>
<lne id="384" begin="138" end="139"/>
<lne id="385" begin="136" end="141"/>
<lne id="386" begin="144" end="144"/>
<lne id="387" begin="144" end="145"/>
<lne id="388" begin="142" end="147"/>
<lne id="389" begin="150" end="150"/>
<lne id="390" begin="150" end="151"/>
<lne id="391" begin="148" end="153"/>
<lne id="392" begin="156" end="156"/>
<lne id="393" begin="156" end="157"/>
<lne id="394" begin="154" end="159"/>
<lne id="395" begin="162" end="162"/>
<lne id="396" begin="162" end="163"/>
<lne id="397" begin="160" end="165"/>
<lne id="398" begin="168" end="168"/>
<lne id="399" begin="168" end="169"/>
<lne id="400" begin="166" end="171"/>
<lne id="401" begin="174" end="174"/>
<lne id="402" begin="174" end="175"/>
<lne id="403" begin="172" end="177"/>
<lne id="404" begin="180" end="180"/>
<lne id="405" begin="180" end="181"/>
<lne id="406" begin="178" end="183"/>
<lne id="407" begin="186" end="186"/>
<lne id="408" begin="186" end="187"/>
<lne id="409" begin="184" end="189"/>
<lne id="410" begin="192" end="192"/>
<lne id="411" begin="192" end="193"/>
<lne id="412" begin="190" end="195"/>
<lne id="413" begin="198" end="198"/>
<lne id="414" begin="198" end="199"/>
<lne id="415" begin="196" end="201"/>
<lne id="416" begin="204" end="204"/>
<lne id="417" begin="204" end="205"/>
<lne id="418" begin="202" end="207"/>
<lne id="419" begin="210" end="210"/>
<lne id="420" begin="210" end="211"/>
<lne id="421" begin="208" end="213"/>
<lne id="422" begin="216" end="216"/>
<lne id="423" begin="216" end="217"/>
<lne id="424" begin="214" end="219"/>
<lne id="425" begin="222" end="222"/>
<lne id="426" begin="222" end="223"/>
<lne id="427" begin="220" end="225"/>
<lne id="428" begin="228" end="228"/>
<lne id="429" begin="228" end="229"/>
<lne id="430" begin="226" end="231"/>
<lne id="431" begin="234" end="234"/>
<lne id="432" begin="234" end="235"/>
<lne id="433" begin="232" end="237"/>
<lne id="434" begin="240" end="240"/>
<lne id="435" begin="240" end="241"/>
<lne id="436" begin="238" end="243"/>
<lne id="437" begin="246" end="246"/>
<lne id="438" begin="246" end="247"/>
<lne id="439" begin="244" end="249"/>
<lne id="440" begin="252" end="252"/>
<lne id="441" begin="252" end="253"/>
<lne id="442" begin="250" end="255"/>
<lne id="443" begin="258" end="258"/>
<lne id="444" begin="258" end="259"/>
<lne id="445" begin="256" end="261"/>
<lne id="326" begin="12" end="262"/>
<lne id="446" begin="266" end="266"/>
<lne id="447" begin="266" end="267"/>
<lne id="448" begin="264" end="269"/>
<lne id="322" begin="263" end="270"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="270"/>
<lve slot="4" name="308" begin="11" end="270"/>
<lve slot="2" name="169" begin="3" end="270"/>
<lve slot="0" name="32" begin="0" end="270"/>
<lve slot="1" name="216" begin="0" end="270"/>
</localvariabletable>
</operation>
<operation name="1291">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1292"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="133"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1292"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1293" begin="7" end="7"/>
<lne id="1294" begin="7" end="8"/>
<lne id="1295" begin="9" end="9"/>
<lne id="1296" begin="7" end="10"/>
<lne id="1297" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1298">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1299"/>
<call arg="45"/>
<set arg="1299"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1300"/>
<call arg="45"/>
<set arg="1300"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1301"/>
<call arg="45"/>
<set arg="1301"/>
<pop/>
</code>
<linenumbertable>
<lne id="1302" begin="11" end="11"/>
<lne id="1303" begin="11" end="12"/>
<lne id="1304" begin="9" end="14"/>
<lne id="1305" begin="17" end="17"/>
<lne id="1306" begin="17" end="18"/>
<lne id="1307" begin="15" end="20"/>
<lne id="1308" begin="23" end="23"/>
<lne id="1309" begin="23" end="24"/>
<lne id="1310" begin="21" end="26"/>
<lne id="1297" begin="8" end="27"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="27"/>
<lve slot="2" name="169" begin="3" end="27"/>
<lve slot="0" name="32" begin="0" end="27"/>
<lve slot="1" name="216" begin="0" end="27"/>
</localvariabletable>
</operation>
<operation name="1311">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="224"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1312"/>
<call arg="45"/>
<set arg="1312"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1313"/>
<call arg="45"/>
<set arg="1313"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="1314" begin="15" end="15"/>
<lne id="1315" begin="15" end="16"/>
<lne id="1316" begin="13" end="18"/>
<lne id="1317" begin="21" end="21"/>
<lne id="1318" begin="21" end="22"/>
<lne id="1319" begin="19" end="24"/>
<lne id="265" begin="27" end="27"/>
<lne id="266" begin="27" end="28"/>
<lne id="267" begin="25" end="30"/>
<lne id="268" begin="33" end="33"/>
<lne id="269" begin="33" end="34"/>
<lne id="270" begin="31" end="36"/>
<lne id="271" begin="39" end="39"/>
<lne id="272" begin="39" end="40"/>
<lne id="273" begin="37" end="42"/>
<lne id="274" begin="45" end="45"/>
<lne id="275" begin="45" end="46"/>
<lne id="276" begin="43" end="48"/>
<lne id="277" begin="51" end="51"/>
<lne id="278" begin="51" end="52"/>
<lne id="279" begin="49" end="54"/>
<lne id="280" begin="57" end="57"/>
<lne id="281" begin="57" end="58"/>
<lne id="282" begin="55" end="60"/>
<lne id="283" begin="63" end="63"/>
<lne id="284" begin="63" end="64"/>
<lne id="285" begin="61" end="66"/>
<lne id="286" begin="69" end="69"/>
<lne id="287" begin="69" end="70"/>
<lne id="288" begin="67" end="72"/>
<lne id="289" begin="75" end="75"/>
<lne id="290" begin="75" end="76"/>
<lne id="291" begin="73" end="78"/>
<lne id="292" begin="81" end="81"/>
<lne id="293" begin="81" end="82"/>
<lne id="294" begin="79" end="84"/>
<lne id="295" begin="90" end="90"/>
<lne id="296" begin="87" end="91"/>
<lne id="297" begin="85" end="93"/>
<lne id="298" begin="96" end="96"/>
<lne id="299" begin="96" end="97"/>
<lne id="300" begin="94" end="99"/>
<lne id="251" begin="12" end="100"/>
<lne id="301" begin="104" end="104"/>
<lne id="302" begin="104" end="105"/>
<lne id="303" begin="102" end="107"/>
<lne id="247" begin="101" end="108"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="108"/>
<lve slot="4" name="224" begin="11" end="108"/>
<lve slot="2" name="169" begin="3" end="108"/>
<lve slot="0" name="32" begin="0" end="108"/>
<lve slot="1" name="216" begin="0" end="108"/>
</localvariabletable>
</operation>
<operation name="1320">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="224"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="883"/>
<call arg="45"/>
<set arg="883"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="667"/>
<call arg="45"/>
<set arg="667"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1321"/>
<call arg="45"/>
<set arg="1321"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1322"/>
<call arg="45"/>
<set arg="1322"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1323"/>
<call arg="45"/>
<set arg="1323"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1324"/>
<call arg="45"/>
<set arg="1324"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1325"/>
<call arg="45"/>
<set arg="1325"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="342"/>
<call arg="45"/>
<set arg="342"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1326"/>
<call arg="45"/>
<set arg="1326"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1327"/>
<call arg="45"/>
<set arg="1327"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1328"/>
<call arg="45"/>
<set arg="1328"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="343"/>
<call arg="45"/>
<set arg="343"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1329"/>
<call arg="45"/>
<set arg="1329"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="997"/>
<call arg="45"/>
<set arg="997"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1330"/>
<call arg="45"/>
<set arg="1330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1331"/>
<call arg="45"/>
<set arg="1331"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1332"/>
<call arg="45"/>
<set arg="1332"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1333"/>
<call arg="45"/>
<set arg="1333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1334"/>
<call arg="45"/>
<set arg="1334"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1335"/>
<call arg="45"/>
<set arg="1335"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1336"/>
<call arg="45"/>
<set arg="1336"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1337"/>
<call arg="45"/>
<set arg="1337"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1338"/>
<call arg="45"/>
<set arg="1338"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="1339" begin="15" end="15"/>
<lne id="1340" begin="15" end="16"/>
<lne id="1341" begin="13" end="18"/>
<lne id="1342" begin="21" end="21"/>
<lne id="1343" begin="21" end="22"/>
<lne id="1344" begin="19" end="24"/>
<lne id="1345" begin="27" end="27"/>
<lne id="1346" begin="27" end="28"/>
<lne id="1347" begin="25" end="30"/>
<lne id="1348" begin="33" end="33"/>
<lne id="1349" begin="33" end="34"/>
<lne id="1350" begin="31" end="36"/>
<lne id="1351" begin="39" end="39"/>
<lne id="1352" begin="39" end="40"/>
<lne id="1353" begin="37" end="42"/>
<lne id="1354" begin="45" end="45"/>
<lne id="1355" begin="45" end="46"/>
<lne id="1356" begin="43" end="48"/>
<lne id="1357" begin="51" end="51"/>
<lne id="1358" begin="51" end="52"/>
<lne id="1359" begin="49" end="54"/>
<lne id="1360" begin="57" end="57"/>
<lne id="1361" begin="57" end="58"/>
<lne id="1362" begin="55" end="60"/>
<lne id="1363" begin="63" end="63"/>
<lne id="1364" begin="63" end="64"/>
<lne id="1365" begin="61" end="66"/>
<lne id="1366" begin="69" end="69"/>
<lne id="1367" begin="69" end="70"/>
<lne id="1368" begin="67" end="72"/>
<lne id="1369" begin="75" end="75"/>
<lne id="1370" begin="75" end="76"/>
<lne id="1371" begin="73" end="78"/>
<lne id="1372" begin="81" end="81"/>
<lne id="1373" begin="81" end="82"/>
<lne id="1374" begin="79" end="84"/>
<lne id="1375" begin="87" end="87"/>
<lne id="1376" begin="87" end="88"/>
<lne id="1377" begin="85" end="90"/>
<lne id="1378" begin="93" end="93"/>
<lne id="1379" begin="93" end="94"/>
<lne id="1380" begin="91" end="96"/>
<lne id="1381" begin="99" end="99"/>
<lne id="1382" begin="99" end="100"/>
<lne id="1383" begin="97" end="102"/>
<lne id="1384" begin="105" end="105"/>
<lne id="1385" begin="105" end="106"/>
<lne id="1386" begin="103" end="108"/>
<lne id="1387" begin="111" end="111"/>
<lne id="1388" begin="111" end="112"/>
<lne id="1389" begin="109" end="114"/>
<lne id="1390" begin="117" end="117"/>
<lne id="1391" begin="117" end="118"/>
<lne id="1392" begin="115" end="120"/>
<lne id="1393" begin="123" end="123"/>
<lne id="1394" begin="123" end="124"/>
<lne id="1395" begin="121" end="126"/>
<lne id="1396" begin="129" end="129"/>
<lne id="1397" begin="129" end="130"/>
<lne id="1398" begin="127" end="132"/>
<lne id="1399" begin="135" end="135"/>
<lne id="1400" begin="135" end="136"/>
<lne id="1401" begin="133" end="138"/>
<lne id="1402" begin="141" end="141"/>
<lne id="1403" begin="141" end="142"/>
<lne id="1404" begin="139" end="144"/>
<lne id="1405" begin="147" end="147"/>
<lne id="1406" begin="147" end="148"/>
<lne id="1407" begin="145" end="150"/>
<lne id="265" begin="153" end="153"/>
<lne id="266" begin="153" end="154"/>
<lne id="267" begin="151" end="156"/>
<lne id="268" begin="159" end="159"/>
<lne id="269" begin="159" end="160"/>
<lne id="270" begin="157" end="162"/>
<lne id="271" begin="165" end="165"/>
<lne id="272" begin="165" end="166"/>
<lne id="273" begin="163" end="168"/>
<lne id="274" begin="171" end="171"/>
<lne id="275" begin="171" end="172"/>
<lne id="276" begin="169" end="174"/>
<lne id="277" begin="177" end="177"/>
<lne id="278" begin="177" end="178"/>
<lne id="279" begin="175" end="180"/>
<lne id="280" begin="183" end="183"/>
<lne id="281" begin="183" end="184"/>
<lne id="282" begin="181" end="186"/>
<lne id="283" begin="189" end="189"/>
<lne id="284" begin="189" end="190"/>
<lne id="285" begin="187" end="192"/>
<lne id="286" begin="195" end="195"/>
<lne id="287" begin="195" end="196"/>
<lne id="288" begin="193" end="198"/>
<lne id="289" begin="201" end="201"/>
<lne id="290" begin="201" end="202"/>
<lne id="291" begin="199" end="204"/>
<lne id="292" begin="207" end="207"/>
<lne id="293" begin="207" end="208"/>
<lne id="294" begin="205" end="210"/>
<lne id="295" begin="216" end="216"/>
<lne id="296" begin="213" end="217"/>
<lne id="297" begin="211" end="219"/>
<lne id="298" begin="222" end="222"/>
<lne id="299" begin="222" end="223"/>
<lne id="300" begin="220" end="225"/>
<lne id="252" begin="12" end="226"/>
<lne id="301" begin="230" end="230"/>
<lne id="302" begin="230" end="231"/>
<lne id="303" begin="228" end="233"/>
<lne id="247" begin="227" end="234"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="234"/>
<lve slot="4" name="224" begin="11" end="234"/>
<lve slot="2" name="169" begin="3" end="234"/>
<lve slot="0" name="32" begin="0" end="234"/>
<lve slot="1" name="216" begin="0" end="234"/>
</localvariabletable>
</operation>
<operation name="1408">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="224"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1409"/>
<call arg="45"/>
<set arg="1409"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1410"/>
<call arg="45"/>
<set arg="1410"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1411"/>
<call arg="45"/>
<set arg="1411"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1412"/>
<call arg="45"/>
<set arg="1412"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1413"/>
<call arg="45"/>
<set arg="1413"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="666"/>
<call arg="45"/>
<set arg="666"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1414"/>
<call arg="45"/>
<set arg="1414"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1415"/>
<call arg="45"/>
<set arg="1415"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1416"/>
<call arg="45"/>
<set arg="1416"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1417"/>
<call arg="45"/>
<set arg="1417"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1418"/>
<call arg="45"/>
<set arg="1418"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="997"/>
<call arg="45"/>
<set arg="997"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1419"/>
<call arg="45"/>
<set arg="1419"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="333"/>
<call arg="45"/>
<set arg="333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1420"/>
<call arg="45"/>
<set arg="1420"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="1421" begin="15" end="15"/>
<lne id="1422" begin="15" end="16"/>
<lne id="1423" begin="13" end="18"/>
<lne id="1424" begin="21" end="21"/>
<lne id="1425" begin="21" end="22"/>
<lne id="1426" begin="19" end="24"/>
<lne id="1427" begin="27" end="27"/>
<lne id="1428" begin="27" end="28"/>
<lne id="1429" begin="25" end="30"/>
<lne id="1430" begin="33" end="33"/>
<lne id="1431" begin="33" end="34"/>
<lne id="1432" begin="31" end="36"/>
<lne id="1433" begin="39" end="39"/>
<lne id="1434" begin="39" end="40"/>
<lne id="1435" begin="37" end="42"/>
<lne id="1436" begin="45" end="45"/>
<lne id="1437" begin="45" end="46"/>
<lne id="1438" begin="43" end="48"/>
<lne id="1439" begin="51" end="51"/>
<lne id="1440" begin="51" end="52"/>
<lne id="1441" begin="49" end="54"/>
<lne id="1442" begin="57" end="57"/>
<lne id="1443" begin="57" end="58"/>
<lne id="1444" begin="55" end="60"/>
<lne id="1445" begin="63" end="63"/>
<lne id="1446" begin="63" end="64"/>
<lne id="1447" begin="61" end="66"/>
<lne id="1448" begin="69" end="69"/>
<lne id="1449" begin="69" end="70"/>
<lne id="1450" begin="67" end="72"/>
<lne id="1451" begin="75" end="75"/>
<lne id="1452" begin="75" end="76"/>
<lne id="1453" begin="73" end="78"/>
<lne id="1454" begin="81" end="81"/>
<lne id="1455" begin="81" end="82"/>
<lne id="1456" begin="79" end="84"/>
<lne id="1457" begin="87" end="87"/>
<lne id="1458" begin="87" end="88"/>
<lne id="1459" begin="85" end="90"/>
<lne id="1460" begin="93" end="93"/>
<lne id="1461" begin="93" end="94"/>
<lne id="1462" begin="91" end="96"/>
<lne id="1463" begin="99" end="99"/>
<lne id="1464" begin="99" end="100"/>
<lne id="1465" begin="97" end="102"/>
<lne id="265" begin="105" end="105"/>
<lne id="266" begin="105" end="106"/>
<lne id="267" begin="103" end="108"/>
<lne id="268" begin="111" end="111"/>
<lne id="269" begin="111" end="112"/>
<lne id="270" begin="109" end="114"/>
<lne id="271" begin="117" end="117"/>
<lne id="272" begin="117" end="118"/>
<lne id="273" begin="115" end="120"/>
<lne id="274" begin="123" end="123"/>
<lne id="275" begin="123" end="124"/>
<lne id="276" begin="121" end="126"/>
<lne id="277" begin="129" end="129"/>
<lne id="278" begin="129" end="130"/>
<lne id="279" begin="127" end="132"/>
<lne id="280" begin="135" end="135"/>
<lne id="281" begin="135" end="136"/>
<lne id="282" begin="133" end="138"/>
<lne id="283" begin="141" end="141"/>
<lne id="284" begin="141" end="142"/>
<lne id="285" begin="139" end="144"/>
<lne id="286" begin="147" end="147"/>
<lne id="287" begin="147" end="148"/>
<lne id="288" begin="145" end="150"/>
<lne id="289" begin="153" end="153"/>
<lne id="290" begin="153" end="154"/>
<lne id="291" begin="151" end="156"/>
<lne id="292" begin="159" end="159"/>
<lne id="293" begin="159" end="160"/>
<lne id="294" begin="157" end="162"/>
<lne id="295" begin="168" end="168"/>
<lne id="296" begin="165" end="169"/>
<lne id="297" begin="163" end="171"/>
<lne id="298" begin="174" end="174"/>
<lne id="299" begin="174" end="175"/>
<lne id="300" begin="172" end="177"/>
<lne id="253" begin="12" end="178"/>
<lne id="301" begin="182" end="182"/>
<lne id="302" begin="182" end="183"/>
<lne id="303" begin="180" end="185"/>
<lne id="247" begin="179" end="186"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="186"/>
<lve slot="4" name="224" begin="11" end="186"/>
<lve slot="2" name="169" begin="3" end="186"/>
<lve slot="0" name="32" begin="0" end="186"/>
<lve slot="1" name="216" begin="0" end="186"/>
</localvariabletable>
</operation>
<operation name="1466">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="224"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1467"/>
<call arg="45"/>
<set arg="1467"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1468"/>
<call arg="45"/>
<set arg="1468"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1469"/>
<call arg="45"/>
<set arg="1469"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1470"/>
<call arg="45"/>
<set arg="1470"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1471"/>
<call arg="45"/>
<set arg="1471"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1472"/>
<call arg="45"/>
<set arg="1472"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1414"/>
<call arg="45"/>
<set arg="1414"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1415"/>
<call arg="45"/>
<set arg="1415"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1416"/>
<call arg="45"/>
<set arg="1416"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1473"/>
<call arg="45"/>
<set arg="1473"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1418"/>
<call arg="45"/>
<set arg="1418"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1474"/>
<call arg="45"/>
<set arg="1474"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1475"/>
<call arg="45"/>
<set arg="1475"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1476"/>
<call arg="45"/>
<set arg="1476"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1420"/>
<call arg="45"/>
<set arg="1420"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="1477" begin="15" end="15"/>
<lne id="1478" begin="15" end="16"/>
<lne id="1479" begin="13" end="18"/>
<lne id="1480" begin="21" end="21"/>
<lne id="1481" begin="21" end="22"/>
<lne id="1482" begin="19" end="24"/>
<lne id="1483" begin="27" end="27"/>
<lne id="1484" begin="27" end="28"/>
<lne id="1485" begin="25" end="30"/>
<lne id="1486" begin="33" end="33"/>
<lne id="1487" begin="33" end="34"/>
<lne id="1488" begin="31" end="36"/>
<lne id="1489" begin="39" end="39"/>
<lne id="1490" begin="39" end="40"/>
<lne id="1491" begin="37" end="42"/>
<lne id="1492" begin="45" end="45"/>
<lne id="1493" begin="45" end="46"/>
<lne id="1494" begin="43" end="48"/>
<lne id="1495" begin="51" end="51"/>
<lne id="1496" begin="51" end="52"/>
<lne id="1497" begin="49" end="54"/>
<lne id="1498" begin="57" end="57"/>
<lne id="1499" begin="57" end="58"/>
<lne id="1500" begin="55" end="60"/>
<lne id="1501" begin="63" end="63"/>
<lne id="1502" begin="63" end="64"/>
<lne id="1503" begin="61" end="66"/>
<lne id="1504" begin="69" end="69"/>
<lne id="1505" begin="69" end="70"/>
<lne id="1506" begin="67" end="72"/>
<lne id="1507" begin="75" end="75"/>
<lne id="1508" begin="75" end="76"/>
<lne id="1509" begin="73" end="78"/>
<lne id="1510" begin="81" end="81"/>
<lne id="1511" begin="81" end="82"/>
<lne id="1512" begin="79" end="84"/>
<lne id="1513" begin="87" end="87"/>
<lne id="1514" begin="87" end="88"/>
<lne id="1515" begin="85" end="90"/>
<lne id="1516" begin="93" end="93"/>
<lne id="1517" begin="93" end="94"/>
<lne id="1518" begin="91" end="96"/>
<lne id="1519" begin="99" end="99"/>
<lne id="1520" begin="99" end="100"/>
<lne id="1521" begin="97" end="102"/>
<lne id="265" begin="105" end="105"/>
<lne id="266" begin="105" end="106"/>
<lne id="267" begin="103" end="108"/>
<lne id="268" begin="111" end="111"/>
<lne id="269" begin="111" end="112"/>
<lne id="270" begin="109" end="114"/>
<lne id="271" begin="117" end="117"/>
<lne id="272" begin="117" end="118"/>
<lne id="273" begin="115" end="120"/>
<lne id="274" begin="123" end="123"/>
<lne id="275" begin="123" end="124"/>
<lne id="276" begin="121" end="126"/>
<lne id="277" begin="129" end="129"/>
<lne id="278" begin="129" end="130"/>
<lne id="279" begin="127" end="132"/>
<lne id="280" begin="135" end="135"/>
<lne id="281" begin="135" end="136"/>
<lne id="282" begin="133" end="138"/>
<lne id="283" begin="141" end="141"/>
<lne id="284" begin="141" end="142"/>
<lne id="285" begin="139" end="144"/>
<lne id="286" begin="147" end="147"/>
<lne id="287" begin="147" end="148"/>
<lne id="288" begin="145" end="150"/>
<lne id="289" begin="153" end="153"/>
<lne id="290" begin="153" end="154"/>
<lne id="291" begin="151" end="156"/>
<lne id="292" begin="159" end="159"/>
<lne id="293" begin="159" end="160"/>
<lne id="294" begin="157" end="162"/>
<lne id="295" begin="168" end="168"/>
<lne id="296" begin="165" end="169"/>
<lne id="297" begin="163" end="171"/>
<lne id="298" begin="174" end="174"/>
<lne id="299" begin="174" end="175"/>
<lne id="300" begin="172" end="177"/>
<lne id="254" begin="12" end="178"/>
<lne id="301" begin="182" end="182"/>
<lne id="302" begin="182" end="183"/>
<lne id="303" begin="180" end="185"/>
<lne id="247" begin="179" end="186"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="186"/>
<lve slot="4" name="224" begin="11" end="186"/>
<lve slot="2" name="169" begin="3" end="186"/>
<lve slot="0" name="32" begin="0" end="186"/>
<lve slot="1" name="216" begin="0" end="186"/>
</localvariabletable>
</operation>
<operation name="1522">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1523"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="143"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1523"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1524" begin="7" end="7"/>
<lne id="1525" begin="7" end="8"/>
<lne id="1526" begin="9" end="9"/>
<lne id="1527" begin="7" end="10"/>
<lne id="1528" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1529">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1530"/>
<call arg="45"/>
<set arg="1530"/>
<pop/>
</code>
<linenumbertable>
<lne id="1531" begin="11" end="11"/>
<lne id="1532" begin="11" end="12"/>
<lne id="1533" begin="9" end="14"/>
<lne id="1528" begin="8" end="15"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="15"/>
<lve slot="2" name="169" begin="3" end="15"/>
<lve slot="0" name="32" begin="0" end="15"/>
<lve slot="1" name="216" begin="0" end="15"/>
</localvariabletable>
</operation>
<operation name="1534">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1535"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="145"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1535"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1536" begin="7" end="7"/>
<lne id="1537" begin="7" end="8"/>
<lne id="1538" begin="9" end="9"/>
<lne id="1539" begin="7" end="10"/>
<lne id="1540" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1541">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1542"/>
<call arg="45"/>
<set arg="1542"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1543"/>
<call arg="45"/>
<set arg="1543"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1544"/>
<call arg="45"/>
<set arg="1544"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1545"/>
<call arg="45"/>
<set arg="1545"/>
<pop/>
</code>
<linenumbertable>
<lne id="1546" begin="11" end="11"/>
<lne id="1547" begin="11" end="12"/>
<lne id="1548" begin="9" end="14"/>
<lne id="1549" begin="17" end="17"/>
<lne id="1550" begin="17" end="18"/>
<lne id="1551" begin="15" end="20"/>
<lne id="1552" begin="23" end="23"/>
<lne id="1553" begin="23" end="24"/>
<lne id="1554" begin="21" end="26"/>
<lne id="1555" begin="29" end="29"/>
<lne id="1556" begin="29" end="30"/>
<lne id="1557" begin="27" end="32"/>
<lne id="1558" begin="35" end="35"/>
<lne id="1559" begin="35" end="36"/>
<lne id="1560" begin="33" end="38"/>
<lne id="1561" begin="41" end="41"/>
<lne id="1562" begin="41" end="42"/>
<lne id="1563" begin="39" end="44"/>
<lne id="1564" begin="47" end="47"/>
<lne id="1565" begin="47" end="48"/>
<lne id="1566" begin="45" end="50"/>
<lne id="1567" begin="53" end="53"/>
<lne id="1568" begin="53" end="54"/>
<lne id="1569" begin="51" end="56"/>
<lne id="1570" begin="59" end="59"/>
<lne id="1571" begin="59" end="60"/>
<lne id="1572" begin="57" end="62"/>
<lne id="1573" begin="65" end="65"/>
<lne id="1574" begin="65" end="66"/>
<lne id="1575" begin="63" end="68"/>
<lne id="1576" begin="71" end="71"/>
<lne id="1577" begin="71" end="72"/>
<lne id="1578" begin="69" end="74"/>
<lne id="1540" begin="8" end="75"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="75"/>
<lve slot="2" name="169" begin="3" end="75"/>
<lve slot="0" name="32" begin="0" end="75"/>
<lve slot="1" name="216" begin="0" end="75"/>
</localvariabletable>
</operation>
<operation name="1579">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1580"/>
<call arg="45"/>
<set arg="1580"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="599"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="596"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="455"/>
<call arg="45"/>
<set arg="455"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="597"/>
<call arg="45"/>
<set arg="597"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="598"/>
<call arg="45"/>
<set arg="598"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="600"/>
<pop/>
</code>
<linenumbertable>
<lne id="1581" begin="11" end="11"/>
<lne id="1582" begin="11" end="12"/>
<lne id="1583" begin="9" end="14"/>
<lne id="1584" begin="17" end="17"/>
<lne id="1585" begin="17" end="18"/>
<lne id="1586" begin="15" end="20"/>
<lne id="601" begin="23" end="23"/>
<lne id="602" begin="23" end="24"/>
<lne id="603" begin="21" end="26"/>
<lne id="604" begin="29" end="29"/>
<lne id="605" begin="29" end="30"/>
<lne id="606" begin="27" end="32"/>
<lne id="607" begin="35" end="35"/>
<lne id="608" begin="35" end="36"/>
<lne id="609" begin="33" end="38"/>
<lne id="610" begin="41" end="41"/>
<lne id="611" begin="41" end="42"/>
<lne id="612" begin="39" end="44"/>
<lne id="613" begin="47" end="47"/>
<lne id="614" begin="47" end="48"/>
<lne id="615" begin="45" end="50"/>
<lne id="616" begin="53" end="53"/>
<lne id="617" begin="53" end="54"/>
<lne id="618" begin="51" end="56"/>
<lne id="619" begin="59" end="59"/>
<lne id="620" begin="59" end="60"/>
<lne id="621" begin="57" end="62"/>
<lne id="622" begin="65" end="65"/>
<lne id="623" begin="65" end="66"/>
<lne id="624" begin="63" end="68"/>
<lne id="625" begin="71" end="71"/>
<lne id="626" begin="71" end="72"/>
<lne id="627" begin="69" end="74"/>
<lne id="628" begin="77" end="77"/>
<lne id="629" begin="77" end="78"/>
<lne id="630" begin="75" end="80"/>
<lne id="631" begin="83" end="83"/>
<lne id="632" begin="83" end="84"/>
<lne id="633" begin="81" end="86"/>
<lne id="634" begin="89" end="89"/>
<lne id="635" begin="89" end="90"/>
<lne id="636" begin="87" end="92"/>
<lne id="588" begin="8" end="93"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="93"/>
<lve slot="2" name="169" begin="3" end="93"/>
<lve slot="0" name="32" begin="0" end="93"/>
<lve slot="1" name="216" begin="0" end="93"/>
</localvariabletable>
</operation>
<operation name="1587">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1588"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="149"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1588"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1589" begin="7" end="7"/>
<lne id="1590" begin="7" end="8"/>
<lne id="1591" begin="9" end="9"/>
<lne id="1592" begin="7" end="10"/>
<lne id="1593" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1594">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="599"/>
<pop/>
</code>
<linenumbertable>
<lne id="1595" begin="11" end="11"/>
<lne id="1596" begin="11" end="12"/>
<lne id="1597" begin="9" end="14"/>
<lne id="1598" begin="17" end="17"/>
<lne id="1599" begin="17" end="18"/>
<lne id="1600" begin="15" end="20"/>
<lne id="1601" begin="23" end="23"/>
<lne id="1602" begin="23" end="24"/>
<lne id="1603" begin="21" end="26"/>
<lne id="1604" begin="29" end="29"/>
<lne id="1605" begin="29" end="30"/>
<lne id="1606" begin="27" end="32"/>
<lne id="1607" begin="35" end="35"/>
<lne id="1608" begin="35" end="36"/>
<lne id="1609" begin="33" end="38"/>
<lne id="1610" begin="41" end="41"/>
<lne id="1611" begin="41" end="42"/>
<lne id="1612" begin="39" end="44"/>
<lne id="1613" begin="47" end="47"/>
<lne id="1614" begin="47" end="48"/>
<lne id="1615" begin="45" end="50"/>
<lne id="1616" begin="53" end="53"/>
<lne id="1617" begin="53" end="54"/>
<lne id="1618" begin="51" end="56"/>
<lne id="1593" begin="8" end="57"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="57"/>
<lve slot="2" name="169" begin="3" end="57"/>
<lve slot="0" name="32" begin="0" end="57"/>
<lve slot="1" name="216" begin="0" end="57"/>
</localvariabletable>
</operation>
<operation name="1619">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1620"/>
<call arg="45"/>
<set arg="1620"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1621"/>
<call arg="45"/>
<set arg="1621"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="599"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1622"/>
<call arg="45"/>
<set arg="1622"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="596"/>
<call arg="45"/>
<set arg="53"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="455"/>
<call arg="45"/>
<set arg="455"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="597"/>
<call arg="45"/>
<set arg="597"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="598"/>
<call arg="45"/>
<set arg="598"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="599"/>
<call arg="45"/>
<set arg="600"/>
<pop/>
</code>
<linenumbertable>
<lne id="1623" begin="11" end="11"/>
<lne id="1624" begin="11" end="12"/>
<lne id="1625" begin="9" end="14"/>
<lne id="1626" begin="17" end="17"/>
<lne id="1627" begin="17" end="18"/>
<lne id="1628" begin="15" end="20"/>
<lne id="1629" begin="23" end="23"/>
<lne id="1630" begin="23" end="24"/>
<lne id="1631" begin="21" end="26"/>
<lne id="1632" begin="29" end="29"/>
<lne id="1633" begin="29" end="30"/>
<lne id="1634" begin="27" end="32"/>
<lne id="601" begin="35" end="35"/>
<lne id="602" begin="35" end="36"/>
<lne id="603" begin="33" end="38"/>
<lne id="604" begin="41" end="41"/>
<lne id="605" begin="41" end="42"/>
<lne id="606" begin="39" end="44"/>
<lne id="607" begin="47" end="47"/>
<lne id="608" begin="47" end="48"/>
<lne id="609" begin="45" end="50"/>
<lne id="610" begin="53" end="53"/>
<lne id="611" begin="53" end="54"/>
<lne id="612" begin="51" end="56"/>
<lne id="613" begin="59" end="59"/>
<lne id="614" begin="59" end="60"/>
<lne id="615" begin="57" end="62"/>
<lne id="616" begin="65" end="65"/>
<lne id="617" begin="65" end="66"/>
<lne id="618" begin="63" end="68"/>
<lne id="619" begin="71" end="71"/>
<lne id="620" begin="71" end="72"/>
<lne id="621" begin="69" end="74"/>
<lne id="622" begin="77" end="77"/>
<lne id="623" begin="77" end="78"/>
<lne id="624" begin="75" end="80"/>
<lne id="625" begin="83" end="83"/>
<lne id="626" begin="83" end="84"/>
<lne id="627" begin="81" end="86"/>
<lne id="628" begin="89" end="89"/>
<lne id="629" begin="89" end="90"/>
<lne id="630" begin="87" end="92"/>
<lne id="631" begin="95" end="95"/>
<lne id="632" begin="95" end="96"/>
<lne id="633" begin="93" end="98"/>
<lne id="634" begin="101" end="101"/>
<lne id="635" begin="101" end="102"/>
<lne id="636" begin="99" end="104"/>
<lne id="593" begin="8" end="105"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="105"/>
<lve slot="2" name="169" begin="3" end="105"/>
<lve slot="0" name="32" begin="0" end="105"/>
<lve slot="1" name="216" begin="0" end="105"/>
</localvariabletable>
</operation>
<operation name="1635">
<context type="8"/>
<parameters>
</parameters>
<code>
<push arg="1636"/>
<push arg="17"/>
<findme/>
<push arg="18"/>
<call arg="164"/>
<iterate/>
<store arg="34"/>
<getasm/>
<get arg="5"/>
<load arg="34"/>
<call arg="157"/>
<call arg="165"/>
<if arg="166"/>
<getasm/>
<get arg="1"/>
<push arg="167"/>
<push arg="10"/>
<new/>
<dup/>
<push arg="153"/>
<call arg="168"/>
<dup/>
<push arg="169"/>
<load arg="34"/>
<call arg="170"/>
<dup/>
<push arg="171"/>
<push arg="1636"/>
<push arg="172"/>
<new/>
<call arg="173"/>
<pusht/>
<call arg="174"/>
<enditerate/>
</code>
<linenumbertable>
<lne id="1637" begin="7" end="7"/>
<lne id="1638" begin="7" end="8"/>
<lne id="1639" begin="9" end="9"/>
<lne id="1640" begin="7" end="10"/>
<lne id="1641" begin="25" end="30"/>
</linenumbertable>
<localvariabletable>
<lve slot="1" name="169" begin="6" end="32"/>
<lve slot="0" name="32" begin="0" end="33"/>
</localvariabletable>
</operation>
<operation name="1642">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1643"/>
<call arg="45"/>
<set arg="1643"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1644"/>
<call arg="45"/>
<set arg="1644"/>
<pop/>
</code>
<linenumbertable>
<lne id="1645" begin="11" end="11"/>
<lne id="1646" begin="11" end="12"/>
<lne id="1647" begin="9" end="14"/>
<lne id="1648" begin="17" end="17"/>
<lne id="1649" begin="17" end="18"/>
<lne id="1650" begin="15" end="20"/>
<lne id="1641" begin="8" end="21"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="21"/>
<lve slot="2" name="169" begin="3" end="21"/>
<lve slot="0" name="32" begin="0" end="21"/>
<lve slot="1" name="216" begin="0" end="21"/>
</localvariabletable>
</operation>
<operation name="1651">
<context type="8"/>
<parameters>
<parameter name="34" type="181"/>
</parameters>
<code>
<load arg="34"/>
<push arg="169"/>
<call arg="182"/>
<store arg="44"/>
<load arg="34"/>
<push arg="171"/>
<call arg="183"/>
<store arg="184"/>
<load arg="34"/>
<push arg="308"/>
<call arg="183"/>
<store arg="256"/>
<load arg="184"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1652"/>
<call arg="45"/>
<set arg="1652"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="1653"/>
<call arg="45"/>
<set arg="1653"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="185"/>
<call arg="45"/>
<set arg="185"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="6"/>
<call arg="45"/>
<set arg="6"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="186"/>
<call arg="45"/>
<set arg="186"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="187"/>
<call arg="45"/>
<set arg="187"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="188"/>
<call arg="45"/>
<set arg="188"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="189"/>
<call arg="45"/>
<set arg="189"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="190"/>
<call arg="45"/>
<set arg="190"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="257"/>
<call arg="45"/>
<set arg="257"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="258"/>
<call arg="45"/>
<set arg="258"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="259"/>
<call arg="45"/>
<set arg="259"/>
<dup/>
<getasm/>
<push arg="43"/>
<push arg="10"/>
<new/>
<load arg="256"/>
<call arg="260"/>
<call arg="45"/>
<set arg="261"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="262"/>
<call arg="45"/>
<set arg="262"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="330"/>
<call arg="45"/>
<set arg="330"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="331"/>
<call arg="45"/>
<set arg="331"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="332"/>
<call arg="45"/>
<set arg="332"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="333"/>
<call arg="45"/>
<set arg="333"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="334"/>
<call arg="45"/>
<set arg="334"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="335"/>
<call arg="45"/>
<set arg="335"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="336"/>
<call arg="45"/>
<set arg="336"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="337"/>
<call arg="45"/>
<set arg="337"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="338"/>
<call arg="45"/>
<set arg="338"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="339"/>
<call arg="45"/>
<set arg="339"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="340"/>
<call arg="45"/>
<set arg="340"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="341"/>
<call arg="45"/>
<set arg="341"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="342"/>
<call arg="45"/>
<set arg="342"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="343"/>
<call arg="45"/>
<set arg="343"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="344"/>
<call arg="45"/>
<set arg="344"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="345"/>
<call arg="45"/>
<set arg="345"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="346"/>
<call arg="45"/>
<set arg="346"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="347"/>
<call arg="45"/>
<set arg="347"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="348"/>
<call arg="45"/>
<set arg="348"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="349"/>
<call arg="45"/>
<set arg="349"/>
<pop/>
<load arg="256"/>
<dup/>
<getasm/>
<load arg="44"/>
<get arg="263"/>
<call arg="45"/>
<set arg="264"/>
<pop/>
</code>
<linenumbertable>
<lne id="1654" begin="15" end="15"/>
<lne id="1655" begin="15" end="16"/>
<lne id="1656" begin="13" end="18"/>
<lne id="1657" begin="21" end="21"/>
<lne id="1658" begin="21" end="22"/>
<lne id="1659" begin="19" end="24"/>
<lne id="350" begin="27" end="27"/>
<lne id="351" begin="27" end="28"/>
<lne id="352" begin="25" end="30"/>
<lne id="353" begin="33" end="33"/>
<lne id="354" begin="33" end="34"/>
<lne id="355" begin="31" end="36"/>
<lne id="356" begin="39" end="39"/>
<lne id="357" begin="39" end="40"/>
<lne id="358" begin="37" end="42"/>
<lne id="359" begin="45" end="45"/>
<lne id="360" begin="45" end="46"/>
<lne id="361" begin="43" end="48"/>
<lne id="362" begin="51" end="51"/>
<lne id="363" begin="51" end="52"/>
<lne id="364" begin="49" end="54"/>
<lne id="365" begin="57" end="57"/>
<lne id="366" begin="57" end="58"/>
<lne id="367" begin="55" end="60"/>
<lne id="368" begin="63" end="63"/>
<lne id="369" begin="63" end="64"/>
<lne id="370" begin="61" end="66"/>
<lne id="371" begin="69" end="69"/>
<lne id="372" begin="69" end="70"/>
<lne id="373" begin="67" end="72"/>
<lne id="374" begin="75" end="75"/>
<lne id="375" begin="75" end="76"/>
<lne id="376" begin="73" end="78"/>
<lne id="377" begin="81" end="81"/>
<lne id="378" begin="81" end="82"/>
<lne id="379" begin="79" end="84"/>
<lne id="380" begin="90" end="90"/>
<lne id="381" begin="87" end="91"/>
<lne id="382" begin="85" end="93"/>
<lne id="383" begin="96" end="96"/>
<lne id="384" begin="96" end="97"/>
<lne id="385" begin="94" end="99"/>
<lne id="386" begin="102" end="102"/>
<lne id="387" begin="102" end="103"/>
<lne id="388" begin="100" end="105"/>
<lne id="389" begin="108" end="108"/>
<lne id="390" begin="108" end="109"/>
<lne id="391" begin="106" end="111"/>
<lne id="392" begin="114" end="114"/>
<lne id="393" begin="114" end="115"/>
<lne id="394" begin="112" end="117"/>
<lne id="395" begin="120" end="120"/>
<lne id="396" begin="120" end="121"/>
<lne id="397" begin="118" end="123"/>
<lne id="398" begin="126" end="126"/>
<lne id="399" begin="126" end="127"/>
<lne id="400" begin="124" end="129"/>
<lne id="401" begin="132" end="132"/>
<lne id="402" begin="132" end="133"/>
<lne id="403" begin="130" end="135"/>
<lne id="404" begin="138" end="138"/>
<lne id="405" begin="138" end="139"/>
<lne id="406" begin="136" end="141"/>
<lne id="407" begin="144" end="144"/>
<lne id="408" begin="144" end="145"/>
<lne id="409" begin="142" end="147"/>
<lne id="410" begin="150" end="150"/>
<lne id="411" begin="150" end="151"/>
<lne id="412" begin="148" end="153"/>
<lne id="413" begin="156" end="156"/>
<lne id="414" begin="156" end="157"/>
<lne id="415" begin="154" end="159"/>
<lne id="416" begin="162" end="162"/>
<lne id="417" begin="162" end="163"/>
<lne id="418" begin="160" end="165"/>
<lne id="419" begin="168" end="168"/>
<lne id="420" begin="168" end="169"/>
<lne id="421" begin="166" end="171"/>
<lne id="422" begin="174" end="174"/>
<lne id="423" begin="174" end="175"/>
<lne id="424" begin="172" end="177"/>
<lne id="425" begin="180" end="180"/>
<lne id="426" begin="180" end="181"/>
<lne id="427" begin="178" end="183"/>
<lne id="428" begin="186" end="186"/>
<lne id="429" begin="186" end="187"/>
<lne id="430" begin="184" end="189"/>
<lne id="431" begin="192" end="192"/>
<lne id="432" begin="192" end="193"/>
<lne id="433" begin="190" end="195"/>
<lne id="434" begin="198" end="198"/>
<lne id="435" begin="198" end="199"/>
<lne id="436" begin="196" end="201"/>
<lne id="437" begin="204" end="204"/>
<lne id="438" begin="204" end="205"/>
<lne id="439" begin="202" end="207"/>
<lne id="440" begin="210" end="210"/>
<lne id="441" begin="210" end="211"/>
<lne id="442" begin="208" end="213"/>
<lne id="443" begin="216" end="216"/>
<lne id="444" begin="216" end="217"/>
<lne id="445" begin="214" end="219"/>
<lne id="327" begin="12" end="220"/>
<lne id="446" begin="224" end="224"/>
<lne id="447" begin="224" end="225"/>
<lne id="448" begin="222" end="227"/>
<lne id="322" begin="221" end="228"/>
</linenumbertable>
<localvariabletable>
<lve slot="3" name="171" begin="7" end="228"/>
<lve slot="4" name="308" begin="11" end="228"/>
<lve slot="2" name="169" begin="3" end="228"/>
<lve slot="0" name="32" begin="0" end="228"/>
<lve slot="1" name="216" begin="0" end="228"/>
</localvariabletable>
</operation>
</asm>
|
programs/oeis/055/A055034.asm | neoneye/loda | 22 | 92006 | <reponame>neoneye/loda
; A055034: a(1) = 1, a(n) = phi(2*n)/2 for n>1.
; 1,1,1,2,2,2,3,4,3,4,5,4,6,6,4,8,8,6,9,8,6,10,11,8,10,12,9,12,14,8,15,16,10,16,12,12,18,18,12,16,20,12,21,20,12,22,23,16,21,20,16,24,26,18,20,24,18,28,29,16,30,30,18,32,24,20,33,32,22,24,35,24,36,36,20,36,30,24,39,32,27,40,41,24,32,42,28,40,44,24,36,44,30,46,36,32,48,42,30,40
mul $0,2
add $0,1
seq $0,10 ; Euler totient function phi(n): count numbers <= n and prime to n.
dif $0,2
|
test/Succeed/Issue3870.agda | cruhland/agda | 1,989 | 6742 | module _ where
open import Agda.Primitive
open import Agda.Builtin.Equality
data Wrap {a} (A : Set a) : Set a where
wrap : A → Wrap A
data Unit (A : Set) : Set where
unit : Unit A
record Functor {a b} (F : Set a → Set b) : Set (lsuc (a ⊔ b)) where
field
fmap : ∀ {A B} → (A → B) → F A → F B
open Functor ⦃ ... ⦄
instance
FunWrap : ∀ {a} → Functor {a} Wrap
FunWrap .fmap f (wrap x) = wrap (f x)
FunUnit : Functor Unit
FunUnit .fmap f unit = unit
_=$=_ : ∀ {a b} {A B : Set a} {F : Set a → Set b} {{_ : Functor F}} {x y : F A}
(f : A → B) → x ≡ y → fmap f x ≡ fmap f y
f =$= refl = refl
postulate A : Set
wrap-refl : (x : A) → wrap x ≡ wrap x
wrap-refl x = refl
prf : (x : Wrap A) → wrap x ≡ wrap x
prf (wrap x) = wrap =$= wrap-refl x
-- Incomplete pattern matching when applying FunUnit
-- (Internal error at Reduce.Fast:1347)
|
tests/tk-ttklabelframe-test_data-tests.ads | thindil/tashy2 | 2 | 30464 | <reponame>thindil/tashy2
package Tk.TtkLabelFrame.Test_Data.Tests is
end Tk.TtkLabelFrame.Test_Data.Tests;
|
libsrc/_DEVELOPMENT/arch/sms/PSGlib/z80/asm_PSGlib_SilenceChannels.asm | jpoikela/z88dk | 38 | 247397 | <gh_stars>10-100
; **************************************************
; PSGlib - C programming library for the SEGA PSG
; ( part of devkitSMS - github.com/sverx/devkitSMS )
; **************************************************
INCLUDE "PSGlib_private.inc"
SECTION code_clib
SECTION code_PSGlib
PUBLIC asm_PSGlib_SilenceChannels
EXTERN asm_sms_psg_silence
defc asm_PSGlib_SilenceChannels = asm_sms_psg_silence
; void PSGSilenceChannels (void)
; silence all the PSG channels
;
; uses : f, bc, hl
|
stage2.asm | RoGuBa/ASMTRIS | 2 | 241344 | <reponame>RoGuBa/ASMTRIS
%include "stage2info.inc"
[bits 16]
[org STAGE2_RUN_OFS] ;interrupt vector table offset
%include "asmtris.asm"
jmp $
|
interrupts/joy_interrupt/main.asm | AntonioND/gbc-hw-tests | 6 | 174896 | <gh_stars>1-10
INCLUDE "hardware.inc"
INCLUDE "header.inc"
SECTION "Main",HOME
;--------------------------------------------------------------------------
;- Main() -
;--------------------------------------------------------------------------
Main:
ld a,$84
ld [$FFFE],a
;--------------------------------
ld a,$80
ld [rNR52],a
ld a,$FF
ld [rNR51],a
ld a,$77
ld [rNR50],a
;--------------------------------
ld a,0
ld [rIF],a
ld a,IEF_HILO
ld [rIE],a
;--------------------------------
ld a,$C0
ld [rNR11],a
ld a,$E0
ld [rNR12],a
ld a,$00
ld [rNR13],a
ld a,$87
ld [rNR14],a
;--------------------------------
ld a,$00
ld [rP1],a
ei
.end:
halt
jr .end
|
src/asis/a4g-defaults.adb | My-Colaborations/dynamo | 15 | 21564 | ------------------------------------------------------------------------------
-- --
-- ASIS-for-GNAT IMPLEMENTATION COMPONENTS --
-- --
-- A 4 G . D E F A U L T S --
-- --
-- Copyright (C) 1995-2010, Free Software Foundation, Inc. --
-- --
-- ASIS-for-GNAT is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 2, or (at your option) any later --
-- version. ASIS-for-GNAT is distributed in the hope that it will be use- --
-- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- --
-- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General --
-- Public License for more details. You should have received a copy of the --
-- GNU General Public License distributed with ASIS-for-GNAT; see file --
-- COPYING. If not, write to the Free Software Foundation, 51 Franklin --
-- Street, Fifth Floor, Boston, MA 02110-1301, USA. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the --
-- Software Engineering Laboratory of the Swiss Federal Institute of --
-- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the --
-- Scientific Research Computer Center of Moscow State University (SRCC --
-- MSU), Russia, with funding partially provided by grants from the Swiss --
-- National Science Foundation and the Swiss Academy of Engineering --
-- Sciences. ASIS-for-GNAT is now maintained by AdaCore --
-- (http://www.adacore.com). --
-- --
------------------------------------------------------------------------------
with Unchecked_Deallocation;
with A4G.A_Osint; use A4G.A_Osint;
with A4G.U_Conv; use A4G.U_Conv;
with Output; use Output;
package body A4G.Defaults is
procedure Free_String is new Unchecked_Deallocation
(String, String_Access);
procedure Add_Src_Search_Dir (Dir : String);
-- Add Dir at the end of the default source file search path.
procedure Add_Lib_Search_Dir (Dir : String);
-- Add Dir at the end of the default library (=object+ALI) file search
-- path.
------------------------
-- Add_Lib_Search_Dir --
------------------------
procedure Add_Lib_Search_Dir (Dir : String) is
begin
ASIS_Lib_Search_Directories.Increment_Last;
ASIS_Lib_Search_Directories.Table (ASIS_Lib_Search_Directories.Last) :=
new String'(Normalize_Directory_Name (Dir));
end Add_Lib_Search_Dir;
------------------------
-- Add_Src_Search_Dir --
------------------------
procedure Add_Src_Search_Dir (Dir : String) is
begin
ASIS_Src_Search_Directories.Increment_Last;
ASIS_Src_Search_Directories.Table (ASIS_Src_Search_Directories.Last) :=
new String'(Normalize_Directory_Name (Dir));
end Add_Src_Search_Dir;
--------------
-- Finalize --
--------------
procedure Finalize is
begin
-- finalise ASIS_Src_Search_Directories:
for I in First_Dir_Id .. ASIS_Src_Search_Directories.Last loop
Free_String (ASIS_Src_Search_Directories.Table (I));
end loop;
-- finalize ASIS_Lib_Search_Directories:
for I in First_Dir_Id .. ASIS_Lib_Search_Directories.Last loop
Free_String (ASIS_Lib_Search_Directories.Table (I));
end loop;
-- finalize ASIS_Tree_Search_Directories
for I in First_Dir_Id .. ASIS_Tree_Search_Directories.Last loop
Free_String (ASIS_Tree_Search_Directories.Table (I));
end loop;
end Finalize;
----------------
-- Initialize --
----------------
procedure Initialize is
Search_Path : String_Access;
begin
-- just in case:
Finalize;
ASIS_Src_Search_Directories.Init;
ASIS_Lib_Search_Directories.Init;
ASIS_Tree_Search_Directories.Init;
-- stroring the defaults for: the code is stolen from Osint
-- (body, rev. 1.147) and then adjusted
for Dir_kind in Search_Dir_Kinds loop
case Dir_kind is
when Source =>
Search_Path := Getenv ("ADA_INCLUDE_PATH");
when Object =>
Search_Path := Getenv ("ADA_OBJECTS_PATH");
when Tree =>
-- There is no environment variable for separate
-- tree path at the moment;
exit;
end case;
if Search_Path'Length > 0 then
declare
Lower_Bound : Positive := 1;
Upper_Bound : Positive;
begin
loop
while Lower_Bound <= Search_Path'Last
and then Search_Path.all (Lower_Bound) =
ASIS_Path_Separator
loop
Lower_Bound := Lower_Bound + 1;
end loop;
exit when Lower_Bound > Search_Path'Last;
Upper_Bound := Lower_Bound;
while Upper_Bound <= Search_Path'Last
and then Search_Path.all (Upper_Bound) /=
ASIS_Path_Separator
loop
Upper_Bound := Upper_Bound + 1;
end loop;
case Dir_kind is
when Source =>
Add_Src_Search_Dir
(Search_Path.all (Lower_Bound .. Upper_Bound - 1));
when Object =>
Add_Lib_Search_Dir
(Search_Path.all (Lower_Bound .. Upper_Bound - 1));
when Tree =>
exit; -- non implemented yet;
end case;
Lower_Bound := Upper_Bound + 1;
end loop;
end;
end if;
end loop;
-- ??? TEMPORARY SOLUTION: the default objects search path
-- is also used as the default tree path
for J in First_Dir_Id .. ASIS_Lib_Search_Directories.Last loop
ASIS_Tree_Search_Directories.Increment_Last;
ASIS_Tree_Search_Directories.Table
(ASIS_Tree_Search_Directories.Last) :=
new String'(ASIS_Lib_Search_Directories.Table (J).all);
end loop;
Free (Search_Path);
end Initialize;
-------------------------
-- Locate_Default_File --
-------------------------
function Locate_Default_File
(File_Name : String_Access;
Dir_Kind : Search_Dir_Kinds)
return String_Access
is
function Is_Here_In_Src (File_Name : String_Access; Dir : Dir_Id)
return Boolean;
function Is_Here_In_Lib (File_Name : String_Access; Dir : Dir_Id)
return Boolean;
-- funtion Is_Here_In_Tree (File_Name : String_Access; Dir : Dir_Id)
-- return Boolean;
function Is_Here_In_Src (File_Name : String_Access; Dir : Dir_Id)
return Boolean
is
begin
return Is_Regular_File (ASIS_Src_Search_Directories.Table (Dir).all
& To_String (File_Name));
end Is_Here_In_Src;
function Is_Here_In_Lib (File_Name : String_Access; Dir : Dir_Id)
return Boolean
is
begin
return Is_Regular_File (ASIS_Lib_Search_Directories.Table (Dir).all
& To_String (File_Name));
end Is_Here_In_Lib;
begin
case Dir_Kind is
when Source =>
for Dir in First_Dir_Id .. ASIS_Src_Search_Directories.Last loop
if Is_Here_In_Src (File_Name, Dir) then
return new String'
(ASIS_Src_Search_Directories.Table (Dir).all
& File_Name.all);
end if;
end loop;
when Object =>
for Dir in First_Dir_Id .. ASIS_Lib_Search_Directories.Last loop
if Is_Here_In_Lib (File_Name, Dir) then
return new String'
(ASIS_Lib_Search_Directories.Table (Dir).all
& File_Name.all);
end if;
end loop;
when Tree =>
null; -- non implemented yet;
end case;
return null;
end Locate_Default_File;
------------------------
-- Print_Lib_Defaults --
------------------------
procedure Print_Lib_Defaults is
begin
if ASIS_Lib_Search_Directories.Last < First_Dir_Id then
Write_Str (" No default library files search path");
Write_Eol;
else
for Dir in First_Dir_Id .. ASIS_Lib_Search_Directories.Last loop
Write_Str (" " & ASIS_Lib_Search_Directories.Table (Dir).all);
Write_Eol;
end loop;
end if;
end Print_Lib_Defaults;
---------------------------
-- Print_Source_Defaults --
---------------------------
procedure Print_Source_Defaults is
begin
if ASIS_Src_Search_Directories.Last < First_Dir_Id then
Write_Str (" No default source search path");
Write_Eol;
else
for Dir in First_Dir_Id .. ASIS_Src_Search_Directories.Last loop
Write_Str (" " & ASIS_Src_Search_Directories.Table (Dir).all);
Write_Eol;
end loop;
end if;
end Print_Source_Defaults;
-------------------------
-- Print_Tree_Defaults --
-------------------------
procedure Print_Tree_Defaults is
begin
if ASIS_Tree_Search_Directories.Last < First_Dir_Id then
Write_Str (" No default tree files search path");
Write_Eol;
else
for Dir in First_Dir_Id .. ASIS_Tree_Search_Directories.Last loop
Write_Str (" " & ASIS_Tree_Search_Directories.Table (Dir).all);
Write_Eol;
end loop;
end if;
end Print_Tree_Defaults;
end A4G.Defaults;
|
src/data/lib/prim/Agda/Builtin/Nat.agda | redfish64/autonomic-agda | 0 | 5693 |
module Agda.Builtin.Nat where
open import Agda.Builtin.Bool
data Nat : Set where
zero : Nat
suc : (n : Nat) → Nat
{-# BUILTIN NATURAL Nat #-}
infix 4 _==_ _<_
infixl 6 _+_ _-_
infixl 7 _*_
_+_ : Nat → Nat → Nat
zero + m = m
suc n + m = suc (n + m)
{-# BUILTIN NATPLUS _+_ #-}
_-_ : Nat → Nat → Nat
n - zero = n
zero - suc m = zero
suc n - suc m = n - m
{-# BUILTIN NATMINUS _-_ #-}
_*_ : Nat → Nat → Nat
zero * m = zero
suc n * m = m + n * m
{-# BUILTIN NATTIMES _*_ #-}
_==_ : Nat → Nat → Bool
zero == zero = true
suc n == suc m = n == m
_ == _ = false
{-# BUILTIN NATEQUALS _==_ #-}
_<_ : Nat → Nat → Bool
_ < zero = false
zero < suc _ = true
suc n < suc m = n < m
{-# BUILTIN NATLESS _<_ #-}
div-helper : Nat → Nat → Nat → Nat → Nat
div-helper k m zero j = k
div-helper k m (suc n) zero = div-helper (suc k) m n m
div-helper k m (suc n) (suc j) = div-helper k m n j
{-# BUILTIN NATDIVSUCAUX div-helper #-}
mod-helper : Nat → Nat → Nat → Nat → Nat
mod-helper k m zero j = k
mod-helper k m (suc n) zero = mod-helper 0 m n m
mod-helper k m (suc n) (suc j) = mod-helper (suc k) m n j
{-# BUILTIN NATMODSUCAUX mod-helper #-}
|
3-mid/opengl/private/gl/applet/test/linkage/launch_gl_linkage_test.adb | charlie5/lace | 20 | 4165 | <reponame>charlie5/lace
with
GL.safe,
GL.lean,
GL.desk,
interfaces.C,
System;
procedure launch_GL_linkage_Test
--
-- This test is only intended to check that all GL functions link correctly.
-- It is not meant to be run.
--
-- todo: Add missing calls for each profile.
is
use GL;
begin
-- Make a call to each core function
--
declare
Result : GLenum;
Status : GLboolean;
begin
glActiveTexture (0);
glBindTexture (0, 0);
glBlendFunc (0, 0);
glClear (0);
glClearColor (0.0, 0.0, 0.0, 0.0);
glClearDepthf (0.0);
glClearStencil (0);
glColorMask (0, 0, 0, 0);
glCullFace (0);
glDepthFunc (0);
glDepthMask (0);
glDepthRangef (0.0, 0.0);
glDisable (0);
glDrawArrays (0, 0, 0);
glEnable (0);
glFinish;
glFlush;
glFrontFace (0);
Result := glGetError;
glHint (0, 0);
Status := glIsEnabled (0);
glLineWidth (0.0);
glPixelStorei (0, 0);
glPolygonOffset (0.0, 0.0);
glScissor (0, 0, 0, 0);
glStencilFunc (0, 0, 0);
glStencilMask (0);
glStencilOp (0, 0, 0);
glTexParameteri (0, 0, 0);
glViewport (0, 0, 0, 0);
end;
-- Make a call to each 'Safe' function
--
declare
use safe;
Result : access GLubyte;
begin
Result := glGetString (0);
glDrawElements (0, 0, 0, null);
glGenTextures (0, null);
glGetBooleanv (0, null);
glGetFloatv (0, null);
glGetIntegerv (0, null);
glGetTexParameteriv (0, 0, null);
glReadPixels (0, 0, 0, 0, 0, 0, null);
glTexImage2D (0, 0, 0, 0, 0, 0, 0, 0, null);
glTexSubImage2D (0, 0, 0, 0, 0, 0, 0, 0, null);
end;
-- Make a call to each 'Lean' function
--
declare
use lean, System;
a_GLenum : GLenum;
a_GLuint : GLuint;
a_GLboolean : GLboolean;
a_C_int : interfaces.C.int;
GLubyte_access : access GLubyte;
begin
glAttachShader (0, 0);
glBindAttribLocation (0, 0, null);
glBindBuffer (0, 0);
glBindFramebuffer (0, 0);
glBindRenderbuffer (0, 0);
glBlendColor (0.0, 0.0, 0.0, 0.0);
glBlendEquation (0);
glBlendEquationSeparate (0, 0);
glBlendFuncSeparate (0, 0, 0, 0);
glBufferData (0, 0, null, 0);
glBufferSubData (0, 0, 0, null);
a_GLenum := glCheckFramebufferStatus (0);
glCompileShader (0);
glCompressedTexImage2D (0, 0, 0, 0, 0, 0, 0, null);
glCompressedTexSubImage2D (0, 0, 0, 0, 0, 0, 0, 0, null);
glCopyTexImage2D (0, 0, 0, 0, 0, 0, 0, 0);
glCopyTexSubImage2D (0, 0, 0, 0, 0, 0, 0, 0);
a_GLuint := glCreateProgram;
a_GLuint := glCreateShader (0);
glDeleteBuffers (0, null);
glDeleteFramebuffers (0, null);
glDeleteProgram (0);
glDeleteRenderbuffers (0, null);
glDeleteShader (0);
glDeleteTextures (0, null);
glDetachShader (0, 0);
glDisableVertexAttribArray(0);
glDrawElements (0, 0, 0, null);
glEnableVertexAttribArray (0);
glFramebufferRenderbuffer (0, 0, 0, 0);
glFramebufferTexture2D (0, 0, 0, 0, 0);
glGenBuffers (0, null);
glGenFramebuffers (0, null);
glGenRenderbuffers (0, null);
glGenTextures (0, null);
glGenerateMipmap (0);
glGetActiveAttrib (0, 0, 0, null, null, null, null);
glGetActiveUniform (0, 0, 0, null, null, null, null);
glGetAttachedShaders (0, 0, null, null);
a_C_int := glGetAttribLocation (0, null);
glGetBooleanv (0, null);
glGetBufferParameteriv (0, 0, null);
glGetFloatv (0, null);
glGetFramebufferAttachmentParameteriv
(0, 0, 0, null);
glGetIntegerv (0, null);
glGetProgramiv (0, 0, null);
glGetProgramInfoLog (0, 0, null, null);
glGetRenderbufferParameteriv
(0, 0, null);
glGetShaderiv (0, 0, null);
glGetShaderInfoLog (0, 0, null, null);
glGetShaderPrecisionFormat(0, 0, null, null);
glGetShaderSource (0, 0, null, null);
GLubyte_access := glGetString(0);
glGetTexParameterfv (0, 0, null_Address);
glGetTexParameteriv (0, 0, null);
glGetUniformfv (0, 0, null_Address);
glGetUniformiv (0, 0, null);
a_C_int := glGetUniformLocation (0, null);
glGetVertexAttribfv (0, 0, null_Address);
glGetVertexAttribiv (0, 0, null);
glGetVertexAttribPointerv (0, 0, null);
a_GLboolean := glIsBuffer (0);
a_GLboolean := glIsFramebuffer (0);
a_GLboolean := glIsProgram (0);
a_GLboolean := glIsRenderbuffer(0);
a_GLboolean := glIsShader (0);
a_GLboolean := glIsTexture (0);
glLinkProgram (0);
glReadPixels (0, 0, 0, 0, 0, 0, null);
glReleaseShaderCompiler;
glRenderbufferStorage (0, 0, 0, 0);
glSampleCoverage (0.0, 0);
glShaderBinary (0, null, 0, null, 0);
glShaderSource (0, 0, null, null);
glStencilFuncSeparate (0, 0, 0, 0);
glStencilMaskSeparate (0, 0);
glStencilOpSeparate (0, 0, 0, 0);
glTexImage2D (0, 0, 0, 0, 0, 0, 0, 0, null);
glTexParameterf (0, 0, 0.0);
glTexParameterfv (0, 0, null_Address);
glTexParameteriv (0, 0, null);
glTexSubImage2D (0, 0, 0, 0, 0, 0, 0, 0, null);
glUniform1f (0, 0.0);
glUniform1fv (0, 0, null_Address);
glUniform1i (0, 0);
glUniform1iv (0, 0, null);
glUniform2f (0, 0.0, 0.0);
glUniform2fv (0, 0, null_Address);
glUniform2i (0, 0, 0);
glUniform2iv (0, 0, null);
glUniform3f (0, 0.0, 0.0, 0.0);
glUniform3fv (0, 0, null_Address);
glUniform3i (0, 0, 0, 0);
glUniform3iv (0, 0, null);
glUniform4f (0, 0.0, 0.0, 0.0, 0.0);
glUniform4fv (0, 0, null_Address);
glUniform4i (0, 0, 0, 0, 0);
glUniform4iv (0, 0, null);
glUniformMatrix2fv (0, 0, 0, null_Address);
glUniformMatrix3fv (0, 0, 0, null_Address);
glUniformMatrix4fv (0, 0, 0, null_Address);
glUseProgram (0);
glValidateProgram (0);
glVertexAttrib1f (0, 0.0);
glVertexAttrib1fv (0, null_Address);
glVertexAttrib2f (0, 0.0, 0.0);
glVertexAttrib2fv (0, null_Address);
glVertexAttrib3f (0, 0.0, 0.0, 0.0);
glVertexAttrib3fv (0, null_Address);
glVertexAttrib4f (0, 0.0, 0.0, 0.0, 0.0);
glVertexAttrib4fv (0, null_Address);
glVertexAttribPointer (0, 0, 0, 0, 0, null);
end;
-- Make a call to each 'desk' function
--
declare
use desk;
a_GLboolean : GLboolean;
begin
glActiveTexture (0);
glBindTexture (0, 0);
glBlendColor (0.0, 0.0, 0.0, 0.0);
glBlendEquation (0);
glBlendEquationSeparate (0, 0);
glBlendFunc (0, 0);
glClearStencil (0);
glClearDepth (0.0);
glColorMask (0, 0, 0, 0);
glCompressedTexImage2D (0, 0, 0, 0, 0, 0, 0, null);
glCompressedTexSubImage2D (0, 0, 0, 0, 0, 0, 0, 0, null);
glCopyTexImage2D (0, 0, 0, 0, 0, 0, 0, 0);
glCopyTexSubImage2D (0, 0, 0, 0, 0, 0, 0, 0);
glDeleteTextures (0, null);
glDepthMask (0);
glDisable (0);
glDrawArrays (0, 0, 0);
glGetBooleanv (0, null);
glGetFloatv (0, null);
glGetIntegerv (0, null);
glGetTexParameterfv (0, 0, null);
glGetTexParameteriv (0, 0, null);
a_GLboolean := glIsTexture(0);
glLineWidth (0.0);
glPixelStorei (0, 0);
glPolygonOffset (0.0, 0.0);
glReadPixels (0, 0, 0, 0, 0, 0, null);
glSampleCoverage (0.0, 0);
glStencilMask (0);
glStencilOp (0, 0, 0);
glTexImage2D (0, 0, 0, 0, 0, 0, 0, 0, null);
glTexParameterf (0, 0, 0.0);
glTexParameterfv (0, 0, null);
glTexParameteri (0, 0, 0);
glTexParameteriv (0, 0, null);
glTexSubImage2D (0, 0, 0, 0, 0, 0, 0, 0, null);
end;
end launch_GL_linkage_Test;
|
test/Succeed/Issue619.agda | cruhland/agda | 1,989 | 15415 | <filename>test/Succeed/Issue619.agda
open import Common.Reflection
open import Common.Prelude hiding (_<$>_)
open import Common.Equality
_<$>_ : ∀ {A B : Set} → (A → B) → Maybe A → Maybe B
f <$> just x = just (f x)
f <$> nothing = nothing
_==_ = primQNameEquality
-- This is awkward!
awkwardUnquoteBool : Term → Maybe Bool
awkwardUnquoteBool (con c []) =
if c == quote true then just true
else if c == quote false then just false
else nothing
awkwardUnquoteBool v = nothing
testAwkward : just false ≡ awkwardUnquoteBool (quoteTerm false)
testAwkward = refl
-- This is nicer!
pattern `false = con (quote false) []
pattern `true = con (quote true) []
unquoteBool : Term → Maybe Bool
unquoteBool `false = just false
unquoteBool `true = just true
unquoteBool _ = nothing
test : just true ≡ unquoteBool (quoteTerm true)
test = refl
|
other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/kart/risc.lzh/risc/join/c-select-e.asm | prismotizm/gigaleak | 0 | 163347 | <gh_stars>0
Name: c-select-e.asm
Type: file
Size: 42177
Last-Modified: '1992-11-18T01:48:27Z'
SHA-1: 0EC96E98E998C9D2644453092D88B004BE4803E2
Description: null
|
oeis/091/A091701.asm | neoneye/loda-programs | 11 | 24949 | ; A091701: Row sums of triangle A091700.
; Submitted by <NAME>
; 1,3,14,63,287,1306,5945,27061,123180,560707,2552301,11617904,52883925,240724103,1095760078,4987826867,22704255571,103348258626,470434387405,2141385987489,9747446339348,44369726286423,201968037801353
lpb $0
sub $0,1
sub $2,1
add $3,1
add $1,$3
add $2,$1
add $4,1
add $4,$2
mov $5,$4
mov $4,$2
mov $2,$3
add $4,$3
add $5,$4
mov $3,$5
lpe
mov $0,$3
add $0,1
|
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_598.asm | ljhsiun2/medusa | 9 | 105456 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r14
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0xf2a8, %rdx
cmp $37617, %r12
movb (%rdx), %r11b
nop
nop
nop
and %rbx, %rbx
lea addresses_UC_ht+0x1d028, %r10
dec %rdx
vmovups (%r10), %ymm7
vextracti128 $1, %ymm7, %xmm7
vpextrq $0, %xmm7, %rax
nop
nop
nop
dec %r12
lea addresses_WT_ht+0x1b168, %r12
nop
nop
nop
sub %rdx, %rdx
movb (%r12), %al
nop
nop
nop
inc %rax
lea addresses_normal_ht+0xdba8, %r11
nop
nop
nop
and %r14, %r14
movw $0x6162, (%r11)
nop
nop
nop
nop
add %r11, %r11
lea addresses_D_ht+0x18ea8, %r14
nop
nop
xor $19348, %rbx
vmovups (%r14), %ymm4
vextracti128 $0, %ymm4, %xmm4
vpextrq $0, %xmm4, %r12
nop
nop
xor $18115, %r10
lea addresses_D_ht+0x16040, %rsi
lea addresses_WC_ht+0x14168, %rdi
nop
cmp %r14, %r14
mov $116, %rcx
rep movsq
nop
nop
nop
cmp %r14, %r14
lea addresses_D_ht+0x5d98, %rdi
nop
nop
nop
nop
and $46681, %rbx
movw $0x6162, (%rdi)
nop
nop
nop
nop
nop
dec %r11
lea addresses_D_ht+0x1b9a8, %r10
nop
nop
cmp %rcx, %rcx
movb (%r10), %r11b
nop
nop
nop
nop
inc %rbx
lea addresses_D_ht+0x2c68, %rax
nop
sub %r10, %r10
movw $0x6162, (%rax)
nop
nop
nop
xor $36024, %r12
lea addresses_A_ht+0x14fa8, %rdi
nop
nop
sub $61320, %rdx
mov $0x6162636465666768, %r10
movq %r10, (%rdi)
nop
nop
nop
nop
nop
add %rbx, %rbx
lea addresses_A_ht+0x183a8, %rsi
nop
nop
nop
nop
nop
sub $31923, %r12
mov $0x6162636465666768, %rdi
movq %rdi, (%rsi)
nop
xor $32687, %rcx
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbx
pop %rax
pop %r14
pop %r12
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r14
push %r8
push %r9
push %rbx
// Faulty Load
lea addresses_WC+0x17a8, %rbx
add $52847, %r14
mov (%rbx), %r9
lea oracles, %r14
and $0xff, %r9
shlq $12, %r9
mov (%r14,%r9,1), %r9
pop %rbx
pop %r9
pop %r8
pop %r14
pop %r12
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 8, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 7, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WT_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_D_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 8, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_D_ht', 'congruent': 3, 'same': True}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 3, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_D_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 6, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 8, 'AVXalign': True, 'NT': False, 'congruent': 9, 'same': False}}
{'38': 21829}
38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38
*/
|
Semirings/Lemmas.agda | Smaug123/agdaproofs | 4 | 749 | <gh_stars>1-10
{-# OPTIONS --safe --warning=error --without-K #-}
open import LogicalFormulae
open import Semirings.Definition
module Semirings.Lemmas {a : _} {A : Set a} {Zero One : A} {_+_ _*_ : A → A → A} (S : Semiring Zero One _+_ _*_) where
open Semiring S
doubleIsAddTwo : (a : A) → (a + a) ≡ (One + One) * a
doubleIsAddTwo a = transitivity (equalityCommutative (+WellDefined (productOneLeft a) (productOneLeft a))) (equalityCommutative (+DistributesOver*' One One a))
|
testsuite/ubivm/output/writeln_varios_tipos.asm | alexgarzao/UOP | 0 | 101057 | <reponame>alexgarzao/UOP
.constant_pool
.const 0 string [start]
.const 1 string [constructor]
.const 2 string [ABCDEFGHIJKLMNOPQRSTUVWXYZ]
.const 3 int [1]
.const 4 string [io.writeln]
.const 5 string [12345 true false 10.0 20.9876]
.const 6 int [12345]
.const 7 bool [true]
.const 8 bool [false]
.const 9 real [10.000000]
.const 10 real [20.987600]
.end
.entity start
.valid_context_when (always)
.method constructor
ldconst 2 --> [ABCDEFGHIJKLMNOPQRSTUVWXYZ]
ldconst 3 --> [1]
lcall 4 --> [io.writeln]
ldconst 5 --> [12345 true false 10.0 20.9876]
ldconst 3 --> [1]
lcall 4 --> [io.writeln]
ldconst 6 --> [12345]
ldconst 3 --> [1]
lcall 4 --> [io.writeln]
ldconst 7 --> [true]
ldconst 3 --> [1]
lcall 4 --> [io.writeln]
ldconst 8 --> [false]
ldconst 3 --> [1]
lcall 4 --> [io.writeln]
ldconst 9 --> [10.000000]
ldconst 3 --> [1]
lcall 4 --> [io.writeln]
ldconst 10 --> [20.987600]
ldconst 3 --> [1]
lcall 4 --> [io.writeln]
exit
.end
.end
|
oeis/265/A265804.asm | neoneye/loda-programs | 11 | 1845 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A265804: Coefficient of x^2 in minimal polynomial of the continued fraction [1^n,5,1,1,1,...], where 1^n means n ones.
; Submitted by <NAME>
; 1,19,29,95,229,619,1601,4211,11005,28831,75461,197579,517249,1354195,3545309,9281759,24299941,63618091,166554305,436044851,1141580221,2988695839,7824507269,20484825995,53629970689,140405086099,367585287581,962350776671
mov $3,6
mov $4,2
lpb $0
sub $0,1
add $1,1
mov $2,$1
add $4,$1
add $3,$4
mov $1,$3
mov $3,$2
sub $2,1
add $4,$2
lpe
mov $0,$1
mul $0,2
add $0,1
|
45/runtime/rt/read.asm | minblock/msdos | 0 | 81210 | <reponame>minblock/msdos
TITLE READ - Read and Restore statements
PAGE 56,132
;***
; READ - Read and Restore statements
;
; Copyright <C> 1986, Microsoft Corporation
;
;Purpose:
;
;******************************************************************************
INCLUDE switch.inc ;Rutime switch file
INCLUDE rmacros.inc ;General runtime macros
;Code segments
useSeg <INIT_CODE> ;Initialization
useSeg DK_TEXT
useSeg MT_TEXT
useSeg ST_TEXT
useSeg NH_TEXT
useSeg ER_TEXT
useSeg <XIB> ; XIB and XIE must bracket XI!
useSeg <XI> ;initializer segment
useSeg <XIE>
;Data segments
useSeg _DATA
useSeg _BSS
INCLUDE seg.inc ;Segment definitions
INCLUDE addr.inc ;Frame and module specific data definitions
INCLUDE baslibma.inc ; get SKIP macro
INCLUDE idmac.inc ; debug macros
INCLUDE rtps.inc
INCLUDE pointers.inc
INITIALIZER B$xRDINI ;put B$xRDINI in initializer list.
SUBTTL location constant definitions
page
InpDefault EQU 0FFH
TTY EQU 0H
SUBTTL data definitions
page
sBegin _DATA
externW b$pGetValDefault ; conditional vector for default read
; routine B$READVAL
externW B$AC
externW b$cCSubs ; flag indicating compiler in execution
sEnd ;_DATA
sBegin _BSS
externB b$VTYP ;defined in GLOBAL.INC
externW b$GetOneVal ;function to get next input element
sEnd ;_BSS
SUBTTL code segment externals
page
externFP B$IRDPTR ; return pointer to DATA
externFP B$IRDPTRUPD ; update pointer to DATA
sBegin MT_TEXT
externNP B$FIN
externNP B$GETCH
sEnd ;MT_TEXT
sBegin ST_TEXT
externFP B$ASSN
sEnd
sBegin ER_TEXT
externNP B$ERR_OD
externNP B$ERR_SN
sEnd ;ER_TEXT
sBegin NH_TEXT
externNP B$GETMODCODE ;Get module specific code
sEnd ;NH_TEXT
assumes CS,INIT_CODE
sBegin INIT_CODE
;***
;B$xRDINI - Initialize default input vector
;PLM B$xRDINI()
;
;Purpose:
; Added with revision [18].
; Initialize default input vector for READ statement.
;
;Entry:
; None.
;
;Exit:
; b$pGetValDefault - contains near pointer to B$READVAL
; b$GetOneVal - contains near pointer to B$READVAL
;Uses:
; None.
;
;Exceptions:
; None.
;****
cProc B$xRDINI,<FAR>
cBegin
MOV AX,DK_TEXTOFFSET B$READVAL ;get address of default routine
MOV b$pGetValDefault,AX ;store it in default vector
MOV b$GetOneVal,AX ;and in actual use vector
cEnd
sEnd INIT_CODE
assumes CS,DK_TEXT
sBegin DK_TEXT
SUBTTL B$RSTA -- restore pointer to the begining of the DATA list
PAGE
;***
;B$RSTA -- restore pointer to the begining of the DATA list
;void B$RSTA (void)
;
;Purpose:
; Restore the pointer to the begining of the DATA list.
;
;Entry:
; none
;
;Exit:
; [AX] = offset of first byte of DATA in the module
; [BX] = offset of the module specific data area
; data pointer in module_data location (OFD_DATA) is set to the begining of the
; data list. restore flag in module_data location (OFD_RESTORE) is set.
;
;Uses:
; per convention
;
;*******************************************************************************
cProc B$RSTA,<PUBLIC,FAR,FORCEFRAME>
cBegin
MOV AL,OF_DAT
cCall B$GETMODCODE ;[3] get module data base
PUSH AX ; save pointer to module data
MOV AL,OF_DS
cCall B$GETMODCODE ; on return, AX=*data
POP BX ; get back pointer to module_data
MOV [BX].OFD_DATA,AX ;save current data statement pointer
MOV [BX].OFD_RESTORE,1 ;note the restore was done
cEnd ;exit to caller
SUBTTL RESTORE interface -- RESTORE <line #>
page
;***
;B$RSTB -- restore DATA list to a specific line number
;void B$RSTB(I2 lineNum)
;
;Purpose:
; Reset data pointer to a specific line #.
;Entry:
; Parameter is in stack.
; U2 LineNum
;Exit:
; data pointer in module_data location (OFD_DATA) is set to the
; specified line number.
; restore flag in module_data location (OFD_RESTORE) is set.
;Uses:
; none
;Exceptions:
; none
;*******************************************************************************
cProc B$RSTB,<PUBLIC,FAR>,<DI,ES>
ParmW LineNum ;U2 line number
cBegin
cCall B$RSTA ; [AX] = ptr to first data, [BX] = mod data
XCHG DI,AX ; [DI] = ptr to first data
DEC DI
DEC DI ;Point to first line number address
PUSH DS
POP ES ; make sure ES=DS
XOR AX,AX ;AX=0
MOV DX,LineNum ;get line #
JMP SHORT RSTB_10
RSTB_5:
XCHG AX,DX ;AX=0, DX=line #
MOV CX,-1 ;Allow maximum search range
REPNE SCASB ;Scan for zero, which is EOL
RSTB_10:
XCHG AX,DX ;AX=line #, DX=0
SCASW ;compare requested address with this address
JA RSTB_5 ; If this line is as big, use it
MOV [BX].OFD_DATA,DI ;save new pointer
cEnd ;exit to the caller
SUBTTL READ interfaces -- B$RD<type>
page
;***
;B$RD<type> -- assign a value into the variable
;void B$RD<type> (<type> far *pDest, [I2 cbDest])
;
; Where,
; <type> = I2: Two byte integer
; I4: Four byte integer
; R4: Single precision real
; R8: Double precision real
; SD: String descriptor
; FS: Fixed length string
;
;Purpose:
; Get the input value and assign it to the variable. These routines
; are shared by READ and INPUT [#] statements.
;
; The functionality of these assignment routines, B$RD<type>, may be
; roughly split into two parts -- namely, getting one value and then
; assigning it to the variable. General speaking, the second part of
; the assignment routines DOESN'T discriminate among the statements
; which share its use. However, the first part of the assignment
; routines MUST discriminate among the statements which share its use.
;
; In order to achieve this, the first part of the assignment routines
; uses an indirect call, CALL [b$GetOneVal], to get one value.
; [b$GetOneVal] is default to the address of B$ReadVal, which gets one
; value for READ stmt, or may contain either the address of TTYInpVal
; for TTY input or the address of DskInpVal for disk (device) input.
;
; B$RD<type> only sets the type, [b$VTYP], and then jump to a common
; routine, CommRead, to perform most works there. The stack frame is
; not set in B$RD<type>; instead, it is set in CommRead.
;
; B$InpReset should be called to reset the flag and variables in
; the routine B$LNIN and B$PEOS.
;
;Entry:
; pDest = far pointer to the destination for the data
; cbDest = for SD and FS only, a byte count of the length of the fixed
; length string, or zero indicating an SD.
;
; [b$GetOneVal] = OFFSET B$ReadVal if READ stmt
; [b$GetOneVal] = OFFSET TTYInpVal if INPUT from TTY
; [b$GetOneVal] = OFFSET DskInpVal if INPUT from disk (device)
;Exit:
; Via CommRead. When call CommRead, BL has the type
;Uses:
; per convention
;Exceptions:
; if b$FInput = InpDefault (for READ stmt)
; B$ERR_OD -- out of DATA
; B$ERR_SN -- syntax error
; if b$FInput = InpDsk (for disk (device) input)
; B$ERR_RPE -- read pass end
; B$ERR_OV -- overflow
;*******************************************************************************
cProc B$RDI2,<PUBLIC,FAR>
cBegin nogen ;no code generated
MOV BL,VT_I2 ; set type
SKIP 2 ; skip next two bytes
cEnd nogen
cProc B$RDI4,<PUBLIC,FAR>
cBegin nogen ;no code generated
MOV BL,VT_I4 ; set type
SKIP 2 ; skip next two bytes
cEnd nogen
cProc B$RDR4,<PUBLIC,FAR>
cBegin nogen ;no code generated
MOV BL,VT_R4 ; set type
SKIP 2 ; skip next two bytes
cEnd nogen
cProc B$RDR8,<PUBLIC,FAR>
cBegin nogen ;no code generated
MOV BL,VT_R8 ; set type
SKIP 2 ; skip next two bytes
cEnd nogen
cProc B$RDSD,<PUBLIC,FAR>
cBegin nogen ;no code generated
MOV BL,VT_SD ; set type
cEnd nogen
SUBTTL common assign routine
page
;***
;CommRead -- Common assign routine for input & read
;
;Purpose:
; Assign the value into the variable. This is the common assigning
; routine for READ, and INPUT [#] statements. This routine first
; gets the value via indirect call to [b$GetOneVal], and then
; assign it to the destination, which is passed in stack.
;Entry:
; Parameter is in stack.
; item far *pDest; where item is I2, I4, R4, R8 or SD
;
; [BL] = type
; [b$FInput] = input flag
; [b$GetOneVal] = offset of get one value routine for READ, InpTTY,
; or InpDsk
;Exit:
; variable is assigned
;Uses:
; none
;Exceptions:
; if b$FInput = InpDefault (for READ stmt)
; B$ERR_OD -- out of DATA
; B$ERR_SN -- syntax error
; if b$FInput = InpDsk (for disk (device) input)
; B$ERR_RPE -- read pass end
; B$ERR_OV -- overflow
;*******************************************************************************
cProc CommRead,<PUBLIC,FAR>,<SI,DI,ES>
ParmD pDest ; far *item of destination
cBegin
MOV [b$VTYP],BL ;save type
PUSH BX ; save for later
PUSH DS
POP ES ; make sure ES=DS
CALL [b$GetOneVal] ; on return SI = *item
POP CX ; [CL] = valtype again
SHR CL,1 ;is string ? (NOTE: CL=1,2,4 or 9 now)
JB AssignStr ;Brif yes
GETPTR ,ES,DI,pDest,,<SIZE,LOAD> ; ES:DI has the destination
AND CX,7H ; [CX] = word count of move
REP MOVSW ;store in destination
cEnd ;pop registers and exit to caller
cProc AssignStr,FAR,<SI,DI,ES>
parmD pDest ; far pointer to destination
parmW cbDest ; length thereof
cBegin nogen ; arelread set up in commread
XOR AX,AX
cCall B$ASSN,<DS,[SI],AX,seg_pDest,off_pDest,cbDest>
cEnd
SUBTTL READ supporting routine -- B$ReadVal
page
;***
;B$ReadVal -- read one value for READ statement
;
;Purpose:
; Read one value from DATA list for READ statement.
;
; This routine first gets the pointer to the module_data, which stores
; the information for RESTORE flag, pointer to DATA list, etc. It then
; gets the pointer to the begining of the DATA list, and reset it to
; the begining of the DATA list if RESTORE has been requested.
;
; Next this routine gets one value by calling B$GETCH & B$FIN. B$GETCH
; purges the leading white spaces from the DATA list, and then B$FIN
; converts it to the value desired. B$FIN needs [b$VTYP] being set and
; SI pointing to the source character stream.
;
; Finally, this routine moves the pointer of the DATA list to the next
; item.
;Entry:
; [b$VTYP] = type
;Exit:
; [SI] = *value
; OFD_DATA in module_data location is updated
;Uses:
; none
;Exceptions:
; B$ERR_OD -- out of data
; others will handled by B$RUNERR
;*******************************************************************************
cProc B$ReadVal,<PUBLIC,NEAR>,<DI,ES>
localV buf,100 ; local buffer for stuff
cBegin
;
; WARNING: we set DS to a NON-DGROUP value for the operations below. This is
; so that we can use B$GETCH unmodified. NOTE however, that this breaks the
; KANJI version of GETCH, which we'll have to fix someday.
;
; In reality, DS is set to a non-DGROUP value, ONLY if we are in the
; interpreter, and we are trying to read a string. All other cases are forced
; DGROUP, either by virtue of the compilers data being there, or ther
; interpreters numeric data being placed in the local space allocated above.
;
DbAssertRel SP,A,b$pendchk,DK_TEXT,<Insufficient stack space in B$ReadVal>
PUSH DS ; save DGROUP
LEA BX,buf ; give get address routine temp space
cCall GETADDR ; [DS:SI] = [ES:SI] = DATA source pointer
;NOTE: DS != DGROUP !!
POP BX ; [BX] = DGROUP
PUSH BX ; ...on stack
PUSH SI ; Save starting pointer
CALL B$GETCH ;Skip over blanks
MOV DS,BX ; DS = DGROUP (before error checking)
CMP [b$cCSubs],0 ; See if we were interpreting
JZ moreDATA ; Jump if interpreting
DEC AL ;end of data list?
JZ ERCOD ;out of DATA
moreDATA: ; not out of DATA
DEC SI ;Re-read first character
PUSH ES ; save segment of source
CALL B$FIN ;Get data item (DS:SI points, ES:SI if string)
;AL = next byte of string
POP DS ; [DS] = source segment
POP BX ; [BX] = starting pointer
SUB BX,SI ; [BX] = negative difference
NEG BX ; [BX] = number of bytes eaten
POP DS ; restore DS
CMP AL,"," ;More values on this line?
JZ ReadEnd
OR AL,AL ;Better be EOL (zero) if no more values
JNZ ERCSN ;Syntax error
ReadEnd:
cCall PUTADDR ; store ending address
MOV SI,OFFSET DGROUP:B$AC
;result in SI
TEST [b$VTYP],8 ;is 8-byte value ?
JZ ReadValExit ;Brif not
SUB SI,4 ;offset of B$DAC
ReadValExit:
cEnd ;pop di, exit to caller
ERCOD: JMP B$ERR_OD ;Out of Data
ERCSN: JMP B$ERR_SN ;Syntax error in DATA
;***
; GETADDR - get address of next available DATA item
;
;Purpose:
; Determines what environment we're in, and gets the address of the next
; available DATA item.
;
;Entry:
; [BX] = offset of local storage to copy FAR numbers to. EI_QB only.
;
;Exit:
; [DS:SI] = [ES:SI] = far address of value.
; [DI] = Compilers module data area offset. (If compiler)
;
;Uses:
;
;Preserves: (optional)
;
;Exceptions:
;
;******************************************************************************
cProc GETADDR,NEAR
cBegin
CMP [b$cCSubs],0 ; See if we were interpreting
JZ GETADDR_50 ; Jump if interpreting
MOV AL,OF_DAT ; offset of data
cCall B$GETMODCODE ; on return base of module_data is in AX
XCHG AX,DI ; module_data area pointer
CMP [DI].OFD_RESTORE,0 ;have we ever restored?
JNZ GETADDR_5
cCall B$RSTA ; set the pointer to the begining of data
GETADDR_5:
MOV SI,[DI].OFD_DATA ;Get pointer to next data item
JMP SHORT GETADDR_90
GETADDR_50:
PUSH DS ; save dgroup
PUSH BX ; [BX] is address of temp buffer
cCall B$IRDPTR ; [DS:SI] = pointer to data
POP DI
POP ES ; [ES:DI] = address of temp buffer
.erre ID_SSEQDS ; temp buffer is on stack
CMP SS:[b$VTYP],VT_SD ; is this a string?
JZ GETADDR_90 ; Then skip the local copy
PUSH DI
MOV CX,50
REP MOVSW ; copy to buffer
PUSH ES
POP DS ; [DS] = DGROUP
POP SI ; [DS:SI] = pointer to local buffer
GETADDR_90:
PUSH DS
POP ES
cEnd
;***
; PUTADDR - Save updated READ pointer
;
;Purpose:
; Updates the appropriate READ data pointer.
;
;Entry:
; [AL] = 0 if EOL, else end of item.
; [BX] = number of bytes eaten (Interpreter only)
; [DI] = Compilers module data area offset
; [SI] = DATA offset to be stored (Compiler only)
;
;Exit:
; none
;
;Uses:
; Might adjust SI.
;
;******************************************************************************
cProc PUTADDR,NEAR
cBegin
CMP [b$cCSubs],0 ; See if we were interpreting
JZ PUTADDR_50 ; Jump if interpreting
OR AL,AL ; End of line?
JNZ PUTADDR_5 ; jump if not
INC SI ;Skip over line number
INC SI
PUTADDR_5:
MOV [DI].OFD_DATA,SI ;Save pointer
JMP SHORT PUTADDR_90
PUTADDR_50:
cCall B$IRDPTRUPD ; update read pointer
PUTADDR_90:
cEnd
sEnd ;DK_TEXT
END
|
Appl/Startup/BStartup/bsWelcome.asm | steakknife/pcgeos | 504 | 241967 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: bsWelcome.asm
AUTHOR: <NAME>, Jul 15, 1993
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Description
---- ---- -----------
stevey 7/15/93 Initial revision
DESCRIPTION:
$Id: bsWelcome.asm,v 1.1 97/04/04 16:52:58 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
WelcomeCode segment resource
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
WelcomeStartSelect
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Make ourselves go away!
CALLED BY: MSG_META_START_SELECT
PASS: *ds:si = WelcomeContentClass object
ds:di = WelcomeContentClass instance data
RETURN: ax = MouseReturnFlags
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
stevey 7/15/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
WelcomeStartSelect method dynamic WelcomeContentClass,
MSG_META_START_SELECT,
MSG_META_KBD_CHAR
uses cx, dx, bp
.enter
;
; Get the block our view is in (this is the same block
; as the main dialog). Tell ourselves to disappear.
;
mov ax, MSG_GEN_GUP_INTERACTION_COMMAND
mov bx, ds:[di].VCNI_view.handle
mov si, offset WelcomeDialog
mov cx, IC_DISMISS
mov di, mask MF_FORCE_QUEUE
call ObjMessage
;
; If the pen has already been calibrated, the INI file
; will have the entry penCalibrated = TRUE under [system].
; If this is the case, don't do calibration or date/time
; screens.
;
call BSCheckCalibration
jc calibrate
;
; Don't calibrate -- just bail.
;
call QuitStartupCommon
jmp done
calibrate:
;
; Put up calibration screen.
;
mov ax, MSG_BS_PRIMARY_DO_CALIBRATION
mov bx, handle MyBSPrimary
mov si, offset MyBSPrimary
mov di, mask MF_FORCE_QUEUE
call ObjMessage
done:
mov ax, mask MRF_PROCESSED
.leave
ret
WelcomeStartSelect endm
WelcomeEndSelect method dynamic WelcomeContentClass,
MSG_META_END_SELECT,
MSG_META_PTR
ret
WelcomeEndSelect endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
WelcomeVisDraw
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Draw the picture (if any) and welcome string.
CALLED BY: MSG_VIS_DRAW
PASS: *ds:si = WelcomeContentClass object
ds:di = WelcomeContentClass instance data
^hbp = gstate to draw through
RETURN: nothing
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
stevey 7/15/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
WelcomeVisDraw method dynamic WelcomeContentClass, MSG_VIS_DRAW
uses ax, cx, dx, bp
.enter
;
; Draw the hello-there string.
;
mov di, bp ; gstate
mov bp, TRUE
mov bx, WELCOME_STRING_TOP
mov si, offset WelcomeString
call DrawCenteredString
;
; Draw the touch-me string. Touch me, touch me.
;
mov bx, TOUCH_SCREEN_STRING_TOP
mov si, offset TouchAnywhereString
call DrawCenteredString
.leave
ret
WelcomeVisDraw endm
WelcomeCode ends
|
x86_64/startup-x86_64.asm | planet-s/bootloader | 0 | 165199 | <gh_stars>0
trampoline:
.ready: dq 0
.cpu_id: dq 0
.page_table: dq 0
.stack_start: dq 0
.stack_end: dq 0
.code: dq 0
times 512 - ($ - trampoline) db 0
startup_ap:
cli
xor ax, ax
mov ds, ax
mov es, ax
mov ss, ax
; initialize stack
mov sp, 0x7C00
call initialize.fpu
call initialize.sse
;cr3 holds pointer to PML4
mov edi, 0x70000
mov cr3, edi
;enable FXSAVE/FXRSTOR, Page Global, Page Address Extension, and Page Size Extension
mov eax, cr4
or eax, 1 << 9 | 1 << 7 | 1 << 5 | 1 << 4
mov cr4, eax
; load protected mode GDT
lgdt [gdtr]
mov ecx, 0xC0000080 ; Read from the EFER MSR.
rdmsr
or eax, 1 << 11 | 1 << 8 ; Set the Long-Mode-Enable and NXE bit.
wrmsr
;enabling paging and protection simultaneously
mov ebx, cr0
or ebx, 1 << 31 | 1 << 16 | 1 ;Bit 31: Paging, Bit 16: write protect kernel, Bit 0: Protected Mode
mov cr0, ebx
; far jump to enable Long Mode and load CS with 64 bit segment
jmp gdt.kernel_code:long_mode_ap
%include "startup-common.asm"
startup_arch:
cli
; setting up Page Tables
; Identity Mapping first GB
mov ax, 0x7000
mov es, ax
xor edi, edi
xor eax, eax
mov ecx, 6 * 4096 / 4 ;PML4, PDP, 4 PD / moves 4 Bytes at once
cld
rep stosd
xor edi, edi
;Link first PML4 and second to last PML4 to PDP
mov DWORD [es:edi], 0x71000 | 1 << 1 | 1
mov DWORD [es:edi + 510*8], 0x71000 | 1 << 1 | 1
add edi, 0x1000
;Link last PML4 to PML4
mov DWORD [es:edi - 8], 0x70000 | 1 << 1 | 1
;Link first four PDP to PD
mov DWORD [es:edi], 0x72000 | 1 << 1 | 1
mov DWORD [es:edi + 8], 0x73000 | 1 << 1 | 1
mov DWORD [es:edi + 16], 0x74000 | 1 << 1 | 1
mov DWORD [es:edi + 24], 0x75000 | 1 << 1 | 1
add edi, 0x1000
;Link all PD's (512 per PDP, 2MB each)y
mov ebx, 1 << 7 | 1 << 1 | 1
mov ecx, 4*512
.setpd:
mov [es:edi], ebx
add ebx, 0x200000
add edi, 8
loop .setpd
xor ax, ax
mov es, ax
;cr3 holds pointer to PML4
mov edi, 0x70000
mov cr3, edi
;enable FXSAVE/FXRSTOR, Page Global, Page Address Extension, and Page Size Extension
mov eax, cr4
or eax, 1 << 9 | 1 << 7 | 1 << 5 | 1 << 4
mov cr4, eax
; load protected mode GDT
lgdt [gdtr]
mov ecx, 0xC0000080 ; Read from the EFER MSR.
rdmsr
or eax, 1 << 11 | 1 << 8 ; Set the Long-Mode-Enable and NXE bit.
wrmsr
;enabling paging and protection simultaneously
mov ebx, cr0
or ebx, 1 << 31 | 1 << 16 | 1 ;Bit 31: Paging, Bit 16: write protect kernel, Bit 0: Protected Mode
mov cr0, ebx
; far jump to enable Long Mode and load CS with 64 bit segment
jmp gdt.kernel_code:long_mode
USE64
long_mode:
; load all the other segments with 64 bit data segments
mov rax, gdt.kernel_data
mov ds, rax
mov es, rax
mov fs, rax
mov gs, rax
mov ss, rax
; stack_base
mov rsi, 0xFFFFFF0000080000
mov [args.stack_base], rsi
; stack_size
mov rcx, 0x1F000
mov [args.stack_size], rcx
; set stack pointer
mov rsp, rsi
add rsp, rcx
; copy env to stack
%ifdef KERNEL
mov rsi, 0
mov rcx, 0
%else
mov rsi, redoxfs.env
mov rcx, redoxfs.env.end - redoxfs.env
%endif
mov [args.env_size], rcx
.copy_env:
cmp rcx, 0
je .no_env
dec rcx
mov al, [rsi + rcx]
dec rsp
mov [rsp], al
jmp .copy_env
.no_env:
mov [args.env_base], rsp
; align stack
and rsp, 0xFFFFFFFFFFFFFFF0
; set args
mov rdi, args
; entry point
mov rax, [args.kernel_base]
call [rax + 0x18]
.halt:
cli
hlt
jmp .halt
long_mode_ap:
mov rax, gdt.kernel_data
mov ds, rax
mov es, rax
mov fs, rax
mov gs, rax
mov ss, rax
mov rcx, [trampoline.stack_end]
lea rsp, [rcx - 256]
mov rdi, trampoline.cpu_id
mov rax, [trampoline.code]
mov qword [trampoline.ready], 1
jmp rax
gdtr:
dw gdt.end + 1 ; size
dq gdt ; offset
gdt:
.null equ $ - gdt
dq 0
.kernel_code equ $ - gdt
istruc GDTEntry
at GDTEntry.limitl, dw 0
at GDTEntry.basel, dw 0
at GDTEntry.basem, db 0
at GDTEntry.attribute, db attrib.present | attrib.user | attrib.code
at GDTEntry.flags__limith, db flags.long_mode
at GDTEntry.baseh, db 0
iend
.kernel_data equ $ - gdt
istruc GDTEntry
at GDTEntry.limitl, dw 0
at GDTEntry.basel, dw 0
at GDTEntry.basem, db 0
; AMD System Programming Manual states that the writeable bit is ignored in long mode, but ss can not be set to this descriptor without it
at GDTEntry.attribute, db attrib.present | attrib.user | attrib.writable
at GDTEntry.flags__limith, db 0
at GDTEntry.baseh, db 0
iend
.end equ $ - gdt
|
oeis/145/A145135.asm | neoneye/loda-programs | 11 | 26833 | ; A145135: Expansion of x/((1 - x - x^4)*(1 - x)^6).
; Submitted by <NAME>
; 0,1,7,28,84,211,470,960,1836,3334,5806,9769,15973,25495,39869,61266,92743,138587,204790,299705,434952,626669,897239,1277674,1810906,2556330,3596075,5043660,7055942,9849608,13723939,19092231,26525165,36810670,51036551,70704539,97887712,135447780,187334999,259002136,357975856,494645395,683351148,943887223,1303575383,1800127662,2485597570,3431833853,4738008196,6541005543,9029765623,12465078237,17206906249,23752098898,32786446637,45256531260,62468899021,86226947066,119019864705,164283424812
lpb $0
mov $2,$0
sub $0,1
seq $2,145134 ; Expansion of x/((1 - x - x^4)*(1 - x)^5).
add $3,$2
lpe
mov $0,$3
|
test/Fail/Issue3404.agda | bennn/agda | 0 | 12264 | <filename>test/Fail/Issue3404.agda
-- Andreas, 2018-11-23, issue #3404, regression in Agda 2.5.4
--
-- The positivity checker judged postulates in mutual blocks
-- as constants, since it found no uses of its arguments.
--
-- The natural cure is to not unleash the positivity checker
-- onto things that do not have a definition, such as postulates.
open import Agda.Builtin.Nat
open import Agda.Builtin.Equality
cong : ∀{A B : Set} (f : A → B) {x y : A} (eq : x ≡ y) → f x ≡ f y
cong f refl = refl
trans : {A : Set} {a b c : A} → a ≡ b → b ≡ c → a ≡ c
trans refl refl = refl
module UnsolvedMeta where
postulate A : Set
mutual postulate B : A → Set -- Problem WAS: B is judged constant
postulate f : (a : A) → B a
g : (a : A) → B a
g a = f _ -- WAS: yellow
-- Should solve.
-- False golfing:
module Word64 where
{-# BUILTIN WORD64 Word64 #-}
primitive primWord64ToNat : Word64 → Nat
mutual primitive primWord64FromNat : Nat → Word64
-- Before fix of #3404, positivity checker judged
-- a primitive in a mutual block as constant.
fromNatConst : ∀ x y → primWord64FromNat x ≡ primWord64FromNat y
fromNatConst x y = refl
-- Should fail with error like:
--
-- x != y of type Nat
-- when checking that the expression refl has type
-- primWord64FromNat x ≡ primWord64FromNat y
0≡1 : 0 ≡ 1
0≡1 = cong primWord64ToNat (fromNatConst 0 1)
-- <NAME>'s original example:
mutual
postulate
2^ : Nat → Nat -- If this function is deemed constant,
2^0 : 1 ≡ 2^ 0 -- then these equalities can be composed.
2^1 : 2^ 1 ≡ 2
bad : 1 ≡ 2
bad = trans 2^0 2^1
-- Should fail with error like:
--
-- 1 != 0 of type Nat
-- when checking that the expression 2^1 has type 2^ 0 ≡ 2
|
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt44.adb | best08618/asylo | 7 | 18560 | -- { dg-do compile }
-- { dg-options "-O" }
package body Opt44 is
procedure Addsub (X, Y : Sarray; R : out Sarray; N : Integer) is
begin
for I in Sarray'Range loop
pragma Loop_Optimize (Ivdep);
pragma Loop_Optimize (Vector);
if N > 0 then
R(I) := X(I) + Y(I);
else
R(I) := X(I) - Y(I);
end if;
end loop;
end;
end Opt44;
|
alloy4fun_models/trainstlt/models/4/33DPcw2SeKyFTgsT8.als | Kaixi26/org.alloytools.alloy | 0 | 920 | open main
pred id33DPcw2SeKyFTgsT8_prop5 {
all t:Train| {
always (t.pos in Exit implies eventually no t.pos')
always (t.pos in (Track-Exit) implies t.pos' in t.pos.prox)
}
}
pred __repair { id33DPcw2SeKyFTgsT8_prop5 }
check __repair { id33DPcw2SeKyFTgsT8_prop5 <=> prop5o } |
alloy4fun_models/trashltl/models/9/SuxoPuTMM4a3aDwiQ.als | Kaixi26/org.alloytools.alloy | 0 | 4019 | <filename>alloy4fun_models/trashltl/models/9/SuxoPuTMM4a3aDwiQ.als<gh_stars>0
open main
pred idSuxoPuTMM4a3aDwiQ_prop10 {
always all f:File | once f in Protected implies always f in Protected
}
pred __repair { idSuxoPuTMM4a3aDwiQ_prop10 }
check __repair { idSuxoPuTMM4a3aDwiQ_prop10 <=> prop10o } |
proteus/tests/TwoPhaseFlow/petsc.options.asm | acatwithacomputer/proteus | 0 | 161679 | <reponame>acatwithacomputer/proteus
-rans2p_ksp_type gmres -rans2p_pc_type asm -rans2p_pc_asm_type basic -rans2p_ksp_max_it 2000
-log_summary
-clsvof_ksp_type fgmres -clsvof_pc_type hypre -clsvof_pc_hypre_type boomeramg -clsvof_ksp_max_it 2000
-phi_ksp_type fgmres -phi_pc_type hypre -phi_pc_hypre_type boomeramg -phi_ksp_max_it 2000
-pressure_ksp_type fgmres -pressure_pc_type hypre -pressure_pc_hypre_type boomeramg -pressure_ksp_gmres_restart 300 -pressure_ksp_knoll -pressure_ksp_max_it 2000
-pinit_ksp_type fgmres -pinit_pc_type hypre -pinit_pc_hypre_type boomeramg -pinit_ksp_gmres_restart 300 -pinit_ksp_knoll -pinit_ksp_max_it 2000
####
#-rans3p_ksp_type fgmres -rans3p_pc_type hypre -rans3p_pc_hypre_type boomeramg -rans3p_ksp_max_it 2000
#-rans3p_ksp_type fgmres -rans3p_pc_type hypre -rans3p_pc_hypre_type pilut -rans3p_ksp_max_it 2000
#-rans3p_ksp_type fgmres -rans3p_pc_type asm -rans3p_pc_asm_type basic -rans3p_ksp_max_it 2000
#-rans3p_ksp_type fgmres -rans3p_pc_type jacobi -rans3p_ksp_max_it 2000
#-rans3p_ksp_type bicg -rans3p_ksp_max_it 2000
-rans3p_ksp_type fgmres -rans3p_pc_type asm -rans3p_pc_asm_type basic -rans3p_ksp_max_it 2000
-rans3p_ksp_gmres_modifiedgramschmidt -rans3p_ksp_gmres_restart 300 -rans3p_sub_ksp_type preonly -rans3p_sub_pc_factor_mat_solver_package superlu -rans3p_ksp_knoll -rans3p_sub_pc_type lu
|
TotalRecognisers/LeftRecursion/MatchingParentheses.agda | nad/parser-combinators | 1 | 7753 | <filename>TotalRecognisers/LeftRecursion/MatchingParentheses.agda
------------------------------------------------------------------------
-- Parsing of matching parentheses, along with a correctness proof
------------------------------------------------------------------------
-- A solution to an exercise set by <NAME>.
module TotalRecognisers.LeftRecursion.MatchingParentheses where
open import Algebra
open import Codata.Musical.Notation
open import Data.Bool
open import Data.List
open import Data.List.Properties
open import Data.Product
open import Function.Equivalence
open import Relation.Binary hiding (_⇔_)
open import Relation.Binary.PropositionalEquality as P using (_≡_)
open import Relation.Nullary
open import Relation.Nullary.Decidable as Decidable
private
module ListMonoid {A : Set} = Monoid (++-monoid A)
import TotalRecognisers.LeftRecursion as LR
import TotalRecognisers.LeftRecursion.Lib as Lib
-- Parentheses.
data Paren : Set where
⟦ ⟧ : Paren
-- Strings of matching parentheses.
data Matching : List Paren → Set where
nil : Matching []
app : ∀ {xs ys}
(p₁ : Matching xs) (p₂ : Matching ys) → Matching (xs ++ ys)
par : ∀ {xs} (p : Matching xs) → Matching ([ ⟦ ] ++ xs ++ [ ⟧ ])
-- Our goal: decide Matching.
Goal : Set
Goal = ∀ xs → Dec (Matching xs)
-- Equality of parentheses is decidable.
_≟-Paren_ : Decidable (_≡_ {A = Paren})
⟦ ≟-Paren ⟦ = yes P.refl
⟦ ≟-Paren ⟧ = no λ()
⟧ ≟-Paren ⟦ = no λ()
⟧ ≟-Paren ⟧ = yes P.refl
open LR Paren hiding (_∷_)
private
open module Tok = Lib.Tok Paren _≟-Paren_ using (tok)
-- A (left and right recursive) grammar for matching parentheses. Note
-- the use of nonempty; without the two occurrences of nonempty the
-- grammar would not be well-formed.
matching : P _
matching =
empty
∣ ♯ nonempty matching · ♯ nonempty matching
∣ ♯ (tok ⟦ · ♯ matching) · ♯ tok ⟧
-- We can decide membership of matching.
decide-matching : ∀ xs → Dec (xs ∈ matching)
decide-matching xs = xs ∈? matching
-- Membership of matching is equivalent to satisfaction of Matching.
∈m⇔M : ∀ {xs} → (xs ∈ matching) ⇔ Matching xs
∈m⇔M = equivalence to from
where
to : ∀ {xs} → xs ∈ matching → Matching xs
to (∣-left (∣-left empty)) = nil
to (∣-left (∣-right (nonempty p₁ · nonempty p₂))) = app (to p₁) (to p₂)
to (∣-right (⟦∈ · p · ⟧∈))
rewrite Tok.sound ⟦∈ | Tok.sound ⟧∈ = par (to p)
from : ∀ {xs} → Matching xs → xs ∈ matching
from nil = ∣-left (∣-left empty)
from (app {xs = []} p₁ p₂) = from p₂
from (app {xs = x ∷ xs} {ys = []} p₁ p₂) rewrite proj₂ ListMonoid.identity xs = from p₁
from (app {xs = _ ∷ _} {ys = _ ∷ _} p₁ p₂) = ∣-left (∣-right {n₁ = true} (nonempty (from p₁) · nonempty (from p₂)))
from (par p) = ∣-right {n₁ = true} (Tok.complete · from p · Tok.complete)
-- And thus we reach our goal.
goal : Goal
goal xs = Decidable.map ∈m⇔M (decide-matching xs)
-- Some examples.
ex₁ : Dec (Matching [])
ex₁ = goal _ -- = yes nil
ex₂ : Dec (Matching (⟦ ∷ ⟧ ∷ []))
ex₂ = goal _ -- = yes (par nil)
ex₃ : Dec (Matching (⟦ ∷ ⟧ ∷ ⟦ ∷ ⟧ ∷ []))
ex₃ = goal _ -- = yes (app (par nil) (par nil))
ex₄ : Dec (Matching (⟦ ∷ ⟧ ∷ ⟦ ∷ []))
ex₄ = goal _ -- = no (λ x → …)
|
test/Fail/Issue3420-Identity.agda | KDr2/agda | 0 | 14394 | {-# OPTIONS --cubical-compatible #-}
open import Agda.Primitive
data _≡_ {a} {A : Set a} (x : A) : A → Set where
refl : x ≡ x
|
models/hol/sygus/hackers_del/hd_20.als | johnwickerson/alloystar | 2 | 3113 | <reponame>johnwickerson/alloystar
/**
* NOTE: make sure to set "Options -> Prevent overflows" to "No"
*
* next higher unsigned number with same number of 1 bits
*/
module hd_20
open hd[hd20]
one sig Lit2 extends IntLit {}
fact {
IntLit<:val = Lit->2
}
--------------------------------------------------------------------------------
-- Helpers
--------------------------------------------------------------------------------
fun hd20[x: Int]: Int {
bvor[bvadd[x, bvand[bvneg[x], x]], bvdiv[bvshr[bvxor[x, bvand[bvneg[x], x]], 2], bvand[bvneg[x], x]]]
}
--------------------------------------------------------------------------------
-- Commands
--------------------------------------------------------------------------------
-- (https://github.com/rishabhs/sygus-comp14/blob/master/benchmarks/hackers_del/hd-19-d0-prog.sl)
run synthIntNodeI for 0 but 4 Int, 4 IntVarVal,
exactly 1 BvAnd, exactly 1 BvXor, exactly 1 BvOr, exactly 1 BvAdd, exactly 1 BvShr, exactly 1 BvNeg, exactly 1 BvDiv
// others TOO SLOW
|
Transynther/x86/_processed/NONE/_ht_zr_/i7-8650U_0xd2.log_6176_1778.asm | ljhsiun2/medusa | 9 | 167430 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r14
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1bdf4, %r14
clflush (%r14)
nop
nop
nop
nop
cmp %rcx, %rcx
movw $0x6162, (%r14)
nop
cmp $21520, %r9
lea addresses_WT_ht+0x1c672, %rbx
nop
nop
nop
nop
nop
mfence
movb $0x61, (%rbx)
nop
nop
nop
sub %rcx, %rcx
lea addresses_WT_ht+0x1aefa, %rbp
nop
nop
nop
nop
sub $29284, %r11
movw $0x6162, (%rbp)
nop
nop
nop
sub %r14, %r14
lea addresses_A_ht+0x1a3be, %rsi
lea addresses_UC_ht+0xf0b4, %rdi
nop
nop
and $21651, %r9
mov $126, %rcx
rep movsb
nop
nop
nop
nop
nop
add $57298, %rcx
lea addresses_UC_ht+0x1cab4, %rcx
nop
xor $6985, %rbx
mov (%rcx), %rbp
nop
nop
nop
cmp $56526, %rcx
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %r9
pop %r14
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r14
push %rbp
push %rbx
push %rdx
// Faulty Load
lea addresses_WC+0x1ccb4, %r14
nop
nop
nop
nop
nop
cmp %rdx, %rdx
movups (%r14), %xmm6
vpextrq $1, %xmm6, %r13
lea oracles, %r14
and $0xff, %r13
shlq $12, %r13
mov (%r14,%r13,1), %r13
pop %rdx
pop %rbx
pop %rbp
pop %r14
pop %r13
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': True}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 1, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 0, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 10, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 8, 'AVXalign': False, 'NT': True, 'congruent': 9, 'same': False}}
{'45': 6105, '00': 71}
45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 00 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45 45
*/
|
oeis/270/A270302.asm | neoneye/loda-programs | 11 | 9434 | ; A270302: Numbers which are representable as a sum of seventeen but no fewer consecutive nonnegative integers.
; Submitted by <NAME>
; 272,544,1088,2176,4352,4624,5168,6256,7888,8432,8704,9248,10064,10336,11152,11696,12512,12784,14416,15776,16048,16592,16864,17408,18224,18496,19312,19856,20128,20672,21488,22304,22576,23392,24208,25024,25568,26384,27472
mov $2,1
lpb $0
lpb $3
add $2,1
mov $4,$1
mul $1,13
gcd $4,$2
cmp $4,1
cmp $4,0
sub $3,$4
lpe
sub $0,1
mov $1,1155
add $2,1
add $3,22
lpe
mov $0,$2
mul $0,272
|
programs/oeis/040/A040440.asm | karttu/loda | 1 | 179916 | ; A040440: Continued fraction for sqrt(462).
; 21,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42,2,42
sub $0,1
mod $0,2
mul $0,11
add $0,2
mul $0,7
pow $0,2
mov $1,$0
div $1,204
add $1,2
|
lambda/vec.agda | Lapin0t/lambda | 0 | 11473 | module lambda.vec where
open import Data.Nat
open import Data.Fin hiding (_+_)
infixr 40 _▸_
data vec (T : Set) : ℕ → Set where
ε : vec T 0
_▸_ : ∀ {n} → vec T n → T → vec T (suc n)
lookup : ∀ {n} → {T : Set} → Fin n → vec T n → T
lookup zero (Γ ▸ x) = x
lookup (suc i) (Γ ▸ x) = lookup i Γ
|
programs/oeis/016/A016857.asm | neoneye/loda | 22 | 162761 | <reponame>neoneye/loda
; A016857: a(n) = (5n)^9.
; 0,1953125,1000000000,38443359375,512000000000,3814697265625,19683000000000,78815638671875,262144000000000,756680642578125,1953125000000000,4605366583984375,10077696000000000,20711912837890625
pow $0,9
mul $0,1953125
|
ASS4/avg_of_float_arr (q4).asm | rahulkumawat1/NASM | 0 | 5764 | section .text
global main
extern scanf
extern printf
print:
push ebp
mov ebp, esp
sub esp, 8
fst qword[ebp-8]
push format2
call printf
mov esp, ebp
pop ebp
ret
read:
push ebp
mov ebp, esp
sub esp, 8
lea eax, [esp]
push eax
push format1
call scanf
fld qword[ebp-8]
mov esp, ebp
pop ebp
ret
readnat:push ebp
mov ebp, esp
sub esp , 2
lea eax , [ebp-2]
push eax
push format3
call scanf
mov ax, word[ebp-2]
mov word[num], ax
mov esp, ebp
pop ebp
ret
main:
mov eax, 4
mov ebx, 1
mov ecx, msg1
mov edx, len1
int 80h
call readnat
mov ax, word[num]
mov word[num2], ax
fldz
reading:
call read
fadd ST1
dec word[num]
cmp word[num], 0
jne reading
fidiv word[num2]
call print
exit:
mov eax, 1
mov ebx, 0
int 80h
section .data
format1: db "%lf",0
format2: db "The average is : %lf",10
format3: db "%d", 0
msg1: db "Enter the number of floating numbers : "
len1: equ $-msg1
section .bss
num: resw 1
num2: resw 1
|
firmware/coreboot/3rdparty/blobs/cpu/amd/geode_lx/gplvsa_ii/vsm_lib/sysinfo.asm | fabiojna02/OpenCellular | 1 | 168445 | <gh_stars>1-10
;
; Copyright (c) 2006-2008 Advanced Micro Devices,Inc. ("AMD").
;
; This library is free software; you can redistribute it and/or modify
; it under the terms of the GNU Lesser General Public License as
; published by the Free Software Foundation; either version 2.1 of the
; License, or (at your option) any later version.
;
; This code is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
; Lesser General Public License for more details.
;
; You should have received a copy of the GNU Lesser General
; Public License along with this library; if not, write to the
; Free Software Foundation, Inc., 59 Temple Place, Suite 330,
; Boston, MA 02111-1307 USA
;
;* Function: *
;* Implementation of the macros: *
;* SYS_GET_SYSTEM_INFO *
;* SYS_LOGICAL_TO_PHYSICAL
include sysmgr.inc
include vsa2.inc
.model tiny,c
.586p
.CODE
;***********************************************************************
; Gets hardware information
;***********************************************************************
sys_get_system_info proc pascal uses si \
buffer: PTR
; Get a ptr to the System Manager's hardware information structure
xor bx, bx
mov esi, (VSM_Header PTR [bx]).SysStuff.SysMgr_Ptr
movzx eax, fs:(InfoStuff PTR [esi]).HardwareInfo
add esi, eax
sub esi, SPECIAL_LOC
mov bx, [buffer]
; Fetch the data
mov cx, sizeof(Hardware)/2
cld
Copy: lodsw fs:[esi]
mov [bx], ax
add bx, 2
loop Copy
ret
sys_get_system_info endp
;***********************************************************************
; Converts a logical offset to a physical address
;***********************************************************************
sys_logical_to_physical proc pascal \
Address: PTR
movzx eax, [Address]
xor bx, bx
add eax, (VSM_Header PTR [bx]).SysStuff.State._CS.base
mov edx, eax
shr edx, 16
ret
sys_logical_to_physical endp
END
|
Driver/Net/NW/nwDir.asm | steakknife/pcgeos | 504 | 7334 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC/GEOS
MODULE: Novell NetWare Driver
FILE: nwDir.asm
AUTHOR: <NAME>, Dec 29, 1992
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 12/29/92 Initial revision
DESCRIPTION:
Code for directory related netware stuff.
$Id: nwDir.asm,v 1.1 97/04/18 11:48:45 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
NetWareGetVolumeName
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Return the volume name given the volume number.
Volume name will be null-terminated.
CALLED BY: Net Library
PASS: ds:si - buffer of size >= NETWARE_VOLUME_NAME_SIZE+1
dl - volume number (0 to 31)
RETURN: al - NetWareReturnCode (0 = successful)
carry set on error
DESTROYED: ?
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
* May want to change to add length of name as a return value
and not null-terminate. Need to investigate API for other
network drivers.
REVISION HISTORY:
Name Date Description
---- ---- -----------
CL 12/29/92 Initial version
dloft 1/1/93 Changed to null-terminate vol. name.
dloft 2/13/93 Fixed to handle errors from NetWareCallFunctionRR
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
NetWareResidentCode segment resource
NetWareGetVolumeName proc near
call NetWareGetVolumeNameInternal
ret
NetWareGetVolumeName endp
NetWareResidentCode ends
NetWareCommonCode segment resource
NetWareGetVolumeNameInternal proc far
uses bx, cx, dx, ds, si, bp, es, di
.enter
EC < mov ax, ds >
EC < call ECCheckSegment >
push ds, si ;buffer from caller
mov bx, size NReqBuf_GetVolumeName
mov cx, size NRepBuf_GetVolumeName
call NetWareAllocRRBuffers
push es, di ;reply buffer
mov {byte} es:[si].NREQBUF_GVN_volumeNumber, dl
mov ax, NFC_GET_VOLUME_NAME
call NetWareCallFunctionRR
jc handleError
;
; copy from reply buffer to buffer passed by user
;
pop ds, si ;reply buffer
add si, NREPBUF_GVN_name
clr cx
mov cl, es:[di].NREPBUF_GVN_nameLength
pop es, di ;volume name buffer
rep movsb
mov {byte} es:[di], 0 ; null-terminate
;
; free buffers allocated by NetWareAllocRRBuffers
;
segmov es, ds
mov al, 0
done:
call NetWareFreeRRBuffers
.leave
ret
handleError:
pop ds, si
pop ds, di ; es = reply buffer
stc
jmp done
NetWareGetVolumeNameInternal endp
NetWareCommonCode ends
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
NetWareGetDriveCurrentPath
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Returns the current directory (full path) for a given
drive.
CALLED BY: Net Library
PASS: ds:si - buffer of size >= DOS_STD_PATH_LENGTH
dl - drive letter
RETURN: al - NetWareReturnCode (0 = successful)
DESTROYED:
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
eric 4/20/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
NetWareResidentCode segment resource
NetWareGetDriveCurrentPath proc near
call NetWareGetDriveCurrentPathInternal
ret
NetWareGetDriveCurrentPath endp
NetWareResidentCode ends
NetWareCommonCode segment resource
NetWareGetDriveCurrentPathInternal proc far
pathBuffer local fptr
uses bx,cx,dx,ds,si,es,di
.enter
EC < mov ax, ds >
EC < call ECCheckSegment >
movdw pathBuffer, dssi
sub dl, 'A'
clr dh
mov ax, NFC_GET_DIRECTORY_HANDLE
call NetWareCallFunction
tst al
jz error ;invalid drive
; al = dirHandle
mov bx, size NReqBuf_GetDirectoryPath
mov cx, size NRepBuf_GetDirectoryPath
call NetWareAllocRRBuffers ;returns ^hbx = block (locked)
push bx
;es:si = request buffer, es:di = reply buffer
mov es:[si].NREQBUF_GDP_subFunc, 1
mov es:[si].NREQBUF_GDP_dirHandle, al
segmov ds, es
mov ax, NFC_GET_DIRECTORY_PATH
call NetWareCallFunction
tst al
jnz error
;es:di = reply buffer
clr cx
mov cl, es:[di].NREPBUF_GDP_pathLength
segmov ds, es
mov si, di ;now ds:si = reply buffer
add si, NREPBUF_GDP_path ;now ds:si = NREPBUF_GDP_path
;copy the string from the reply buffer to the user-provided buffer
les di, pathBuffer
rep movsb
;null-terminate the user-provided buffer
clr al
stosb
pop bx
call MemFree
exit:
.leave
ret
error:
jmp exit
NetWareGetDriveCurrentPathInternal endp
NetWareCommonCode ends
|
programs/oeis/131/A131060.asm | karttu/loda | 1 | 164328 | <gh_stars>1-10
; A131060: 3*A007318 - 2*A000012 as infinite lower triangular matrices.
; 1,1,1,1,4,1,1,7,7,1,1,10,16,10,1,1,13,28,28,13,1,1,16,43,58,43,16,1,1,19,61,103,103,61,19,1,1,22,82,166,208,166,82,22,1,1,25,106,250,376,376,250,106,25,1,1,28,133,358,628,754,628,358,133,28,1,1,31,163,493,988,1384,1384,988,493,163,31,1,1,34,196,658,1483,2374,2770,2374,1483,658,196,34,1,1,37,232,856,2143,3859,5146,5146,3859,2143,856,232,37,1,1,40,271,1090,3001,6004,9007,10294,9007,6004,3001,1090,271,40,1,1,43,313,1363,4093,9007,15013,19303,19303,15013,9007,4093,1363,313,43,1,1,46,358,1678,5458,13102,24022,34318,38608,34318,24022,13102,5458,1678,358,46,1,1,49,406,2038,7138,18562,37126,58342,72928,72928,58342,37126,18562,7138,2038,406,49,1,1,52,457,2446,9178,25702,55690,95470,131272,145858,131272,95470,55690,25702,9178,2446,457,52,1,1,55,511,2905,11626,34882,81394,151162,226744,277132,277132,226744,151162,81394,34882,11626,2905,511,55,1,1,58,568,3418,14533,46510,116278,232558,377908,503878,554266,503878,377908,232558,116278,46510,14533,3418,568,58,1,1,61,628,3988,17953,61045,162790,348838,610468,881788,1058146,1058146,881788,610468,348838,162790,61045,17953,3988
cal $0,206735 ; Triangle T(n,k), read by rows, given by (0, 2, -1/2, 1/2, 0, 0, 0, 0, 0, 0, 0, ...) DELTA (1, 0, -1/2, 1/2, 0, 0, 0, 0, 0, 0, 0, ...) where DELTA is the operator defined in A084938.
trn $0,1
mov $1,$0
mul $1,3
add $1,1
|
4.0.x/CountdownTimer/Powerup_IncreaseWater.asm | chronosv2/NESMaker_Public_Code_Repository | 6 | 174857 |
CLC
AddValue #$03, myWater, #$03, #$00
LDA myWater+2
CMP MyWater100
BCS +CheckTens
JMP +End
+CheckTens:
LDA myWater+1
CMP MyWater10
BCS +CheckOnes
JMP +End
+CheckOnes:
LDA myWater
CMP MyWater1
BCS +SetMax
JMP +End
+SetMax:
LDA MyWater100
STA myWater+2
LDA MyWater10
STA myWater+1
LDA MyWater1
STA myWater
+End:
;;;;;;;;;;;;; UPDATE HUD
LDA #$03 ;; amount of places
STA hudElementTilesToLoad
LDA DrawHudBytes
ORA #HUD_myWater
STA DrawHudBytes
PlaySound #SFX_GET_COIN |
programs/oeis/267/A267778.asm | neoneye/loda | 22 | 240215 | ; A267778: Triangle read by rows giving successive states of cellular automaton generated by "Rule 211" initiated with a single ON (black) cell.
; 1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1
add $0,2
mov $1,1
mov $2,3
mov $3,$0
lpb $0
sub $0,$2
add $1,$2
add $2,2
lpe
bin $1,$3
add $1,1
mod $1,2
mov $0,$1
|
src/API/protypo-api-engine_values-array_wrappers.ads | fintatarta/protypo | 0 | 27761 | with Protypo.Api.Engine_Values.Engine_Value_Array_Wrappers;
with Protypo.Api.Engine_Values.Engine_Value_Vectors;
with Protypo.Api.Engine_Values.Handlers;
--
-- ## What is this?
--
-- This is a generic package that allows you to export to the template
-- an "array of something".
--
-- The wrapper implements the `Ambivalent_Interface` that allows for both
-- indexed and record-like access. More precisely, it exports the following
-- access methods
--
-- * _indexed_ access to access a specific element of the array
-- * _first_, _last_ and _length_ analoguos to the corresponding Ada
-- attributes for arrays.
-- * _range_ and _iterate_ iterators to run over the array content.
-- _range_ iterates over the set of indexes, _iterate_ over the array
-- elements
--
-- The programmer must provide
-- * the type of the element
-- * the type of the array
-- * a function to convert an element to an `Engine_Value`
--
generic
type Element_Type is private;
type Array_Type is
array (Engine_Value_Array_Wrappers.Array_Wrapper_Index range <>) of Element_Type;
with function Create (X : Element_Type) return Engine_Value is <>;
package Protypo.Api.Engine_Values.Array_Wrappers is
subtype Index_Type is Engine_Value_Array_Wrappers.Array_Wrapper_Index;
type Array_Wrapper is new Handlers.Ambivalent_Interface with private;
type Array_Wrapper_Access is access Array_Wrapper;
function Make_Wrapper (Init : Array_Type)
return Handlers.Ambivalent_Interface_Access;
function Create (Value : Array_Type) return Ambivalent_Value;
-- Syntactic sugar equivalent to Create(Make_Wrapper(Value))
procedure Set (Container : in out Array_Wrapper;
Index : Index_Type;
Value : Element_Type);
procedure Append (Container : in out Array_Wrapper;
Value : Element_Type);
function Get (X : Array_Wrapper;
Index : Engine_Value_Vectors.Vector)
return Handler_Value;
function Get (X : Array_Wrapper;
Field : ID)
return Handler_Value;
function Is_Field (X : Array_Wrapper; Field : Id) return Boolean;
private
type Array_Wrapper is
new Handlers.Ambivalent_Interface
with
record
A : Engine_Value_Array_Wrappers.Array_Wrapper_Access;
end record;
function Get (X : Array_Wrapper;
Index : Engine_Value_Vectors.Vector)
return Handler_Value
is (X.A.Get (Index));
function Get (X : Array_Wrapper;
Field : ID)
return Handler_Value
is (X.A.Get (Field));
function Is_Field (X : Array_Wrapper; Field : Id) return Boolean
is (X.A.Is_Field (Field));
function Create (Value : Array_Type) return Ambivalent_Value
is (Handlers.Create (Make_Wrapper (Value)));
end Protypo.Api.Engine_Values.Array_Wrappers;
|
Transynther/x86/_processed/AVXALIGN/_st_/i3-7100_9_0x84_notsx.log_21829_1139.asm | ljhsiun2/medusa | 9 | 175361 | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r15
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x17d1, %rbx
nop
nop
nop
nop
xor $43206, %rdi
movl $0x61626364, (%rbx)
nop
nop
nop
nop
sub $25746, %r12
lea addresses_UC_ht+0x16ddb, %rsi
lea addresses_WT_ht+0x1c239, %rdi
add $42823, %r13
mov $15, %rcx
rep movsb
nop
nop
nop
sub %rcx, %rcx
lea addresses_normal_ht+0xfb63, %rsi
clflush (%rsi)
dec %r12
and $0xffffffffffffffc0, %rsi
movntdqa (%rsi), %xmm7
vpextrq $0, %xmm7, %rbx
nop
nop
nop
nop
sub %rbx, %rbx
lea addresses_WC_ht+0x1c083, %rsi
lea addresses_normal_ht+0x9a03, %rdi
dec %r15
mov $108, %rcx
rep movsq
nop
nop
nop
nop
add %rsi, %rsi
lea addresses_UC_ht+0x15613, %rsi
lea addresses_normal_ht+0x533, %rdi
inc %r12
mov $32, %rcx
rep movsq
nop
add %rcx, %rcx
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r15
pop %r13
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
// Load
lea addresses_A+0x3a03, %r9
nop
nop
nop
mfence
movb (%r9), %r15b
and %rsi, %rsi
// Load
lea addresses_D+0x11243, %r11
nop
nop
nop
nop
mfence
mov (%r11), %rsi
sub $41115, %rbx
// REPMOV
lea addresses_normal+0x1ab03, %rsi
lea addresses_normal+0x9173, %rdi
clflush (%rdi)
nop
nop
nop
nop
nop
add $43849, %r11
mov $95, %rcx
rep movsq
nop
nop
nop
nop
mfence
// Load
lea addresses_normal+0x16f03, %r9
nop
nop
nop
nop
add %rdi, %rdi
mov (%r9), %r10d
nop
nop
nop
cmp %rcx, %rcx
// Store
lea addresses_UC+0x1fc3, %r10
cmp $28225, %r9
mov $0x5152535455565758, %rsi
movq %rsi, %xmm1
vmovups %ymm1, (%r10)
nop
nop
xor $24133, %r11
// Faulty Load
lea addresses_PSE+0x10a03, %rsi
nop
nop
add %r11, %r11
mov (%rsi), %r9w
lea oracles, %rdi
and $0xff, %r9
shlq $12, %r9
mov (%rdi,%r9,1), %r9
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r9
pop %r15
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_PSE', 'same': False, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_A', 'same': False, 'size': 1, 'congruent': 11, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_D', 'same': False, 'size': 8, 'congruent': 5, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_normal', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_normal', 'congruent': 4, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_normal', 'same': False, 'size': 4, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_UC', 'same': False, 'size': 32, 'congruent': 6, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
[Faulty Load]
{'src': {'type': 'addresses_PSE', 'same': True, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'dst': {'type': 'addresses_A_ht', 'same': True, 'size': 4, 'congruent': 1, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_UC_ht', 'congruent': 2, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_normal_ht', 'same': False, 'size': 16, 'congruent': 4, 'NT': True, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WC_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 10, 'same': True}, 'OP': 'REPM'}
{'src': {'type': 'addresses_UC_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM'}
{'33': 21829}
33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33
*/
|
libsrc/_DEVELOPMENT/arch/ts2068/misc/c/sdcc_ix/tshc_cls_wc_pix_callee.asm | jpoikela/z88dk | 640 | 98216 | ; void tshc_cls_wc_pix(struct r_Rect8 *r, uchar pix)
SECTION code_clib
SECTION code_arch
PUBLIC _tshc_cls_wc_pix_callee
PUBLIC l0_tshc_cls_wc_pix_callee
EXTERN asm_tshc_cls_wc_pix
_tshc_cls_wc_pix_callee:
pop hl
pop de
dec sp
ex (sp),hl
ld l,h
l0_tshc_cls_wc_pix_callee:
push de
ex (sp),ix
call asm_tshc_cls_wc_pix
pop ix
ret
|
src/servlet-core-configs.adb | My-Colaborations/ada-servlet | 6 | 17965 | -----------------------------------------------------------------------
-- servlet-core-configs -- Read servlet configuration files
-- Copyright (C) 2018 <NAME>
-- Written by <NAME> (<EMAIL>)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Servlet.Core.Mappers;
with Util.Serialize.IO.XML;
with Util.Serialize.Mappers;
with EL.Contexts.Default;
package body Servlet.Core.Configs is
-- ------------------------------
-- Read the configuration file associated with the servlet container.
-- ------------------------------
procedure Read_Configuration (App : in out Servlet_Registry'Class;
File : in String) is
Reader : Util.Serialize.IO.XML.Parser;
Mapper : Util.Serialize.Mappers.Processing;
Context : aliased EL.Contexts.Default.Default_Context;
-- Setup the <b>Reader</b> to parse and build the configuration for managed beans,
-- navigation rules, servlet rules. Each package instantiation creates a local variable
-- used while parsing the XML file.
package Config is
new Mappers.Reader_Config (Mapper, App'Unchecked_Access, Context'Unchecked_Access);
pragma Warnings (Off, Config);
begin
-- Read the configuration file and record managed beans, navigation rules.
Reader.Parse (File, Mapper);
end Read_Configuration;
end Servlet.Core.Configs;
|
programs/oeis/070/A070383.asm | neoneye/loda | 22 | 244428 | <filename>programs/oeis/070/A070383.asm
; A070383: a(n) = 5^n mod 36.
; 1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17,13,29,1,5,25,17
mov $1,1
mov $2,$0
lpb $2
mul $1,5
mod $1,36
sub $2,1
lpe
mov $0,$1
|
source/textio/a-ssitio.ads | ytomino/drake | 33 | 29271 | pragma License (Unrestricted);
with Ada.Text_IO;
package Ada.Short_Short_Integer_Text_IO is
new Text_IO.Integer_IO (Short_Short_Integer);
|
sdk-6.5.16/tools/led/example/sdk56636.asm | copslock/broadcom_cpri | 0 | 11190 | ;
;
;
; This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file.
;
; Copyright 2007-2019 Broadcom Inc. All rights reserved.
;
;
; This is the default program for the (25 GE + 6 XE/HG port) BCM56636 SDKs.
; To start it, use the following commands from BCM:
;
; led load sdk56636.hex
; led auto on
; led start
;
; The is 1 LEDs per XE port.
;
; There is one bit per 10 gigabit Ethernet LED with the following colors:
; ONE Black
; ZERO Green
;
; Each chip drives only its own LEDs and needs to write them in the order:
; A05/L05,L06/A06,A01/L01,L02/A02,A03/L03,L04/A04
;
; Link up/down info cannot be derived from LINKEN or LINKUP, as the LED
; processor does not always have access to link status. This program
; assumes link status is kept current in bit 0 of RAM byte (0xA0 + portnum).
; Generally, a program running on the main CPU must update these
; locations on link change; see linkscan callback in
; $SDK/src/appl/diag/ledproc.c.
;
; Current implementation:
;
; L01/A01 reflects port 1 link status:
; Black: no link
; Green: Link/Activity
;
;
MAX_XE_PORT EQU 31
NUM_PORT EQU 8
; Device ports
;xe4( 42)
;xe0( 26)
;xe1( 27)
;xe2( 28)
;xe3( 29)
;xe5( 50)
PORT_XE4 EQU 42
PORT_XE5 EQU 50
PORT_XE0 EQU 26
PORT_XE1 EQU 27
PORT_XE2 EQU 28
PORT_XE3 EQU 29
; The TX/RX activity lights will be extended for ACT_EXT_TICKS
; so they will be more visible.
TICKS EQU 1
SECOND_TICKS EQU (30*TICKS)
ACT_EXT_TICKS EQU (SECOND_TICKS/3)
TXRX_ALT_TICKS EQU (SECOND_TICKS/6)
;
; Main Update Routine
;
; This routine is called once per tick.
;
update:
ld a, PORT_XE4
port a
call link_activity ; Off if no link
ld a, PORT_XE5
port a
call link_activity ; Off if no link
ld a, PORT_XE0
port a
call link_activity ; Off if no link
ld a, PORT_XE1
port a
call link_activity ; Off if no link
ld a, PORT_XE2
port a
call link_activity ; Off if no link
ld a, PORT_XE3
port a
call link_activity ; Off if no link
; Update various timers
inc (TXRX_ALT_COUNT)
send NUM_PORT * 1
;
; link_activity
;
; This routine calculates the activity LED for the current port.
; It extends the activity lights using timers (new activity overrides
; and resets the timers).
;
; Inputs: (PORT_NUM)
; Outputs: one bit sent to LED stream
;
link_activity:
;jmp led_green ;DEBUG ONLY
call get_link
jnc led_black
port a
pushst RX
pushst TX
tor
pop
jnc led_green ; Always green Link up, No Activity
;jmp led_green ;DEBUG ONLY
ld b, (TXRX_ALT_COUNT)
and b, TXRX_ALT_TICKS
jnz led_green
jmp led_black
link_status:
;jmp led_black ;DEBUG ONLY
call get_link
jnc led_black
jmp led_green
;
; get_link
;
; This routine finds the link status LED for a port.
; Link info is in bit 0 of the byte read from PORTDATA[port]
;
; Inputs: Port number in a
; Outputs: Carry flag set if link is up, clear if link is down.
; Destroys: a, b
;
get_link:
ld b,PORTDATA
add b,a
ld b,(b)
tst b,0
ret
;
; led_black, led_green
;
; Inputs: None
; Outputs: one bit to the LED stream indicating color
; Destroys: None
;
led_black:
pushst ONE
pack
ret
led_green:
pushst ZERO
pack
ret
;
; Variables (SDK software initializes LED memory from 0xa0-0xff to 0)
;
TXRX_ALT_COUNT equ 0xe0
PORT_NUM equ 0xe1
;
; Port data, which must be updated continually by main CPU's
; linkscan task. See $SDK/src/appl/diag/ledproc.c for examples.
; In this program, bit 0 is assumed to contain the link up/down status.
;
;Offset 0x1e00 - 0x80
;LED scan chain assembly area
;Offset 0x1e80 - 0xa0
PORTDATA equ 0xa0 ; Size 48 + 1 + 4 bytes
;
; Symbolic names for the bits of the port status fields
;
RX equ 0x0 ; received packet
TX equ 0x1 ; transmitted packet
COLL equ 0x2 ; collision indicator
SPEED_C equ 0x3 ; 100 Mbps
SPEED_M equ 0x4 ; 1000 Mbps
DUPLEX equ 0x5 ; half/full duplex
FLOW equ 0x6 ; flow control capable
LINKUP equ 0x7 ; link down/up status
LINKEN equ 0x8 ; link disabled/enabled status
ZERO equ 0xE ; always 0
ONE equ 0xF ; always 1
|
programs/oeis/120/A120149.asm | neoneye/loda | 22 | 243049 | ; A120149: a(1)=2; a(n)=floor((7+sum(a(1) to a(n-1)))/3).
; 2,3,4,5,7,9,12,16,21,28,38,50,67,89,119,159,212,282,376,502,669,892,1189,1586,2114,2819,3759,5012,6682,8910,11880,15840,21120,28160,37546,50062,66749,88999,118665,158220,210960,281280,375040,500053,666738
mov $1,2
mov $2,1
lpb $0
sub $0,1
mov $1,$2
add $1,8
div $1,3
add $2,$1
lpe
mov $0,$1
|
Task/Knapsack-problem-0-1/Ada/knapsack-problem-0-1.ada | LaudateCorpus1/RosettaCodeData | 1 | 18042 | <reponame>LaudateCorpus1/RosettaCodeData
with Ada.Text_IO;
with Ada.Strings.Unbounded;
procedure Knapsack_01 is
package US renames Ada.Strings.Unbounded;
type Item is record
Name : US.Unbounded_String;
Weight : Positive;
Value : Positive;
Taken : Boolean;
end record;
type Item_Array is array (Positive range <>) of Item;
function Total_Weight (Items : Item_Array; Untaken : Boolean := False) return Natural is
Sum : Natural := 0;
begin
for I in Items'Range loop
if Untaken or else Items (I).Taken then
Sum := Sum + Items (I).Weight;
end if;
end loop;
return Sum;
end Total_Weight;
function Total_Value (Items : Item_Array; Untaken : Boolean := False) return Natural is
Sum : Natural := 0;
begin
for I in Items'Range loop
if Untaken or else Items (I).Taken then
Sum := Sum + Items (I).Value;
end if;
end loop;
return Sum;
end Total_Value;
function Max (Left, Right : Natural) return Natural is
begin
if Right > Left then
return Right;
else
return Left;
end if;
end Max;
procedure Solve_Knapsack_01 (Items : in out Item_Array;
Weight_Limit : Positive := 400) is
type W_Array is array (0..Items'Length, 0..Weight_Limit) of Natural;
W : W_Array := (others => (others => 0));
begin
-- fill W
for I in Items'Range loop
for J in 1 .. Weight_Limit loop
if Items (I).Weight > J then
W (I, J) := W (I - 1, J);
else
W (I, J) := Max (W (I - 1, J),
W (I - 1, J - Items (I).Weight) + Items (I).Value);
end if;
end loop;
end loop;
declare
Rest : Natural := Weight_Limit;
begin
for I in reverse Items'Range loop
if W (I, Rest) /= W (I - 1, Rest) then
Items (I).Taken := True;
Rest := Rest - Items (I).Weight;
end if;
end loop;
end;
end Solve_Knapsack_01;
All_Items : Item_Array :=
( (US.To_Unbounded_String ("map"), 9, 150, False),
(US.To_Unbounded_String ("compass"), 13, 35, False),
(US.To_Unbounded_String ("water"), 153, 200, False),
(US.To_Unbounded_String ("sandwich"), 50, 160, False),
(US.To_Unbounded_String ("glucose"), 15, 60, False),
(US.To_Unbounded_String ("tin"), 68, 45, False),
(US.To_Unbounded_String ("banana"), 27, 60, False),
(US.To_Unbounded_String ("apple"), 39, 40, False),
(US.To_Unbounded_String ("cheese"), 23, 30, False),
(US.To_Unbounded_String ("beer"), 52, 10, False),
(US.To_Unbounded_String ("suntan cream"), 11, 70, False),
(US.To_Unbounded_String ("camera"), 32, 30, False),
(US.To_Unbounded_String ("t-shirt"), 24, 15, False),
(US.To_Unbounded_String ("trousers"), 48, 10, False),
(US.To_Unbounded_String ("umbrella"), 73, 40, False),
(US.To_Unbounded_String ("waterproof trousers"), 42, 70, False),
(US.To_Unbounded_String ("waterproof overclothes"), 43, 75, False),
(US.To_Unbounded_String ("note-case"), 22, 80, False),
(US.To_Unbounded_String ("sunglasses"), 7, 20, False),
(US.To_Unbounded_String ("towel"), 18, 12, False),
(US.To_Unbounded_String ("socks"), 4, 50, False),
(US.To_Unbounded_String ("book"), 30, 10, False) );
begin
Solve_Knapsack_01 (All_Items, 400);
Ada.Text_IO.Put_Line ("Total Weight: " & Natural'Image (Total_Weight (All_Items)));
Ada.Text_IO.Put_Line ("Total Value: " & Natural'Image (Total_Value (All_Items)));
Ada.Text_IO.Put_Line ("Items:");
for I in All_Items'Range loop
if All_Items (I).Taken then
Ada.Text_IO.Put_Line (" " & US.To_String (All_Items (I).Name));
end if;
end loop;
end Knapsack_01;
|
src/util/icon/asm_gotofn.asm | olifink/qspread | 0 | 3921 | section sprite
xdef mes_gotofn
xref mes_zero
mes_gotofn
dc.w $0100,$0000
dc.w 20,16,0,0
dc.l mcs_gotofn-*
dc.l mes_zero-*
dc.l sp_func-*
mcs_gotofn
dc.w $5B00,$8808
dc.w $8080,$0000
dc.w $9200,$8D0D
dc.w $8080,$0000
dc.w $9B00,$8F0F
dc.w $8080,$0000
dc.w $9200,$8F0F
dc.w $8080,$0000
dc.w $5300,$8F0F
dc.w $8080,$0000
dc.w $0000,$3F3F
dc.w $E0E0,$0000
dc.w $0000,$1F1F
dc.w $C0C0,$0000
dc.w $0000,$0F0F
dc.w $8080,$0000
dc.w $0000,$0707
dc.w $0000,$0000
dc.w $0000,$0202
dc.w $0000,$0000
dc.w $0000,$0000
dc.w $0000,$0000
dc.w $0E0E,$A9A9
dc.w $2020,$0000
dc.w $0808,$ADAD
dc.w $5050,$0000
dc.w $0C0C,$ABAB
dc.w $4040,$0000
dc.w $0808,$A9A9
dc.w $5050,$0000
dc.w $0808,$4949
dc.w $2020,$0000
*
sp_func
incbin 'win1_util_icon_gotofn_spr'
end
|
P6/data_P6_2/MDTest66.asm | alxzzhou/BUAA_CO_2020 | 1 | 98989 | <gh_stars>1-10
ori $ra,$ra,0xf
mfhi $1
srav $1,$1,$2
mult $3,$4
mfhi $5
mflo $1
addu $3,$5,$3
mthi $1
ori $1,$1,21493
addiu $6,$4,-17899
addu $1,$2,$5
addiu $4,$5,-30583
multu $0,$5
addu $1,$4,$4
mult $5,$4
div $4,$ra
addu $4,$2,$3
multu $1,$4
ori $6,$1,12581
ori $3,$1,26933
multu $4,$2
lb $5,16($0)
addu $1,$4,$1
mult $5,$0
sb $1,11($0)
mtlo $5
mthi $5
lb $6,15($0)
ori $3,$4,34258
sb $2,15($0)
mthi $5
mflo $1
mthi $2
sll $4,$6,1
lui $4,3317
multu $4,$1
mtlo $4
addu $1,$0,$3
divu $3,$ra
multu $1,$1
mflo $5
sb $2,14($0)
lb $1,14($0)
sll $0,$2,30
mfhi $0
divu $1,$ra
sll $5,$6,12
div $4,$ra
mtlo $6
mtlo $4
multu $4,$4
mthi $4
ori $5,$5,59515
lui $5,2716
mfhi $4
addu $4,$2,$3
sb $6,14($0)
lb $6,10($0)
sll $5,$5,12
lui $3,23555
mult $5,$4
ori $5,$5,11462
mfhi $4
divu $6,$ra
srav $3,$4,$3
div $2,$ra
sb $4,13($0)
multu $1,$2
sll $1,$2,26
div $4,$ra
divu $2,$ra
multu $6,$6
lb $5,9($0)
mult $6,$2
srav $1,$0,$0
addu $2,$2,$3
addu $6,$2,$3
ori $0,$2,34864
ori $5,$2,55282
div $1,$ra
sb $4,2($0)
mflo $5
addu $4,$2,$4
lui $4,41333
srav $5,$5,$1
addu $0,$0,$4
addiu $5,$4,7047
mult $4,$2
mult $6,$1
ori $4,$1,19732
ori $1,$4,63757
sb $0,15($0)
mthi $2
mtlo $4
ori $6,$5,45416
divu $5,$ra
div $4,$ra
srav $5,$6,$6
ori $1,$1,592
mtlo $3
divu $5,$ra
sb $4,6($0)
mult $2,$2
lui $1,58875
mult $4,$4
mthi $1
multu $5,$1
mult $0,$0
srav $2,$2,$5
div $4,$ra
sb $0,12($0)
sb $5,3($0)
multu $1,$4
div $1,$ra
sll $2,$2,11
addu $2,$2,$0
divu $6,$ra
mthi $5
mfhi $4
lb $5,5($0)
lb $3,7($0)
mult $3,$0
mfhi $6
divu $2,$ra
sb $6,13($0)
mthi $5
lui $1,59556
addiu $4,$5,29561
mult $4,$2
mthi $4
divu $1,$ra
addiu $5,$5,32203
mflo $2
mtlo $4
mflo $4
mult $4,$2
addu $5,$5,$5
mtlo $4
ori $2,$2,16710
sll $5,$0,2
mtlo $0
addu $1,$6,$1
sll $5,$2,3
srav $5,$4,$3
mtlo $4
mult $5,$4
mfhi $4
mthi $2
mult $4,$4
mthi $6
multu $2,$2
ori $3,$2,11043
multu $5,$1
mfhi $4
mult $3,$1
div $5,$ra
srav $5,$0,$0
lb $5,6($0)
multu $0,$0
addiu $4,$4,2665
multu $1,$1
divu $3,$ra
srav $2,$2,$4
mtlo $5
mfhi $4
mult $1,$1
mthi $1
sll $4,$4,14
lui $1,55598
mtlo $0
addu $1,$3,$3
addiu $5,$5,2466
divu $4,$ra
mthi $3
sb $5,3($0)
mfhi $3
multu $5,$2
ori $6,$1,26685
mthi $1
addu $3,$3,$3
mult $3,$6
mult $1,$4
div $2,$ra
addu $5,$3,$3
lui $5,59443
ori $6,$5,27323
lb $4,9($0)
lb $1,9($0)
mthi $0
addu $6,$5,$3
mflo $2
mtlo $0
lb $1,12($0)
lb $6,8($0)
mult $0,$0
multu $4,$4
mtlo $0
mult $0,$2
mthi $4
ori $1,$0,11389
mflo $1
addiu $4,$1,1192
mfhi $5
divu $5,$ra
mfhi $5
sll $4,$5,13
mflo $5
addiu $6,$4,17904
addu $4,$4,$4
mthi $1
sll $6,$5,20
lui $5,39271
sll $5,$5,19
multu $2,$2
sb $5,0($0)
lb $4,15($0)
srav $4,$1,$4
divu $5,$ra
addu $2,$5,$2
lb $5,4($0)
mthi $4
mult $1,$2
mthi $2
divu $4,$ra
mflo $5
divu $6,$ra
addu $3,$3,$3
srav $0,$5,$2
lui $4,15405
mtlo $4
lui $4,55636
sll $4,$4,18
divu $0,$ra
mult $6,$3
div $4,$ra
mult $2,$2
div $5,$ra
divu $0,$ra
ori $1,$0,37926
sll $1,$0,16
multu $1,$0
div $5,$ra
mflo $4
srav $5,$2,$2
addiu $4,$1,19344
ori $1,$1,41778
lui $1,33044
mfhi $2
mtlo $5
divu $6,$ra
divu $4,$ra
srav $1,$4,$1
lb $3,10($0)
mtlo $0
srav $5,$2,$2
mfhi $5
addiu $4,$1,4239
sll $3,$0,31
mfhi $4
mult $2,$2
mult $4,$1
addiu $0,$1,-13115
mtlo $5
lb $1,14($0)
mtlo $4
sb $6,16($0)
lb $5,4($0)
lui $1,48365
addu $3,$0,$3
lb $3,15($0)
mfhi $4
multu $0,$0
addu $3,$2,$3
addu $2,$2,$2
ori $4,$1,9226
multu $0,$2
div $2,$ra
ori $6,$6,17833
addiu $4,$4,-11664
mfhi $4
sb $5,2($0)
mflo $4
addu $5,$2,$3
mflo $2
sll $5,$5,11
sb $0,7($0)
mfhi $2
sb $4,6($0)
addu $4,$5,$4
multu $5,$5
mtlo $4
mthi $1
ori $2,$2,65442
mthi $5
sb $1,14($0)
lui $4,4720
lui $1,53214
addu $4,$4,$4
addu $0,$4,$0
mflo $6
lb $5,13($0)
lb $4,3($0)
lui $6,53726
divu $5,$ra
mtlo $4
ori $0,$0,52624
ori $6,$6,19399
ori $5,$0,51680
sb $5,4($0)
lui $1,8085
addu $3,$3,$3
mflo $3
ori $4,$5,27162
divu $0,$ra
ori $0,$5,26138
sll $5,$1,19
lui $6,22889
addiu $4,$2,-24102
ori $5,$5,51548
sll $4,$4,15
mfhi $3
sb $5,14($0)
srav $0,$4,$4
lb $4,10($0)
multu $5,$1
mflo $4
mflo $4
multu $6,$6
mfhi $4
mthi $5
sll $4,$4,0
lui $4,57087
mtlo $5
div $5,$ra
mtlo $1
lui $5,26785
multu $0,$3
mflo $1
divu $1,$ra
sll $1,$0,22
addiu $4,$1,5532
sll $1,$6,3
mfhi $4
mtlo $4
lb $4,15($0)
sb $5,11($0)
ori $4,$1,8183
mflo $1
addiu $1,$2,-24515
ori $1,$1,8851
lui $0,49732
multu $5,$6
sb $5,14($0)
lui $5,21150
lb $5,10($0)
multu $4,$4
mult $6,$4
sll $1,$1,14
div $1,$ra
srav $2,$5,$2
sb $2,8($0)
addiu $1,$1,-1594
lui $0,51236
lui $5,47600
div $4,$ra
ori $1,$1,15627
divu $2,$ra
mtlo $5
lb $1,1($0)
addiu $4,$1,7165
mtlo $4
sll $5,$4,23
addiu $5,$2,-15401
mtlo $6
sb $3,4($0)
addiu $2,$5,25578
divu $2,$ra
addu $1,$4,$4
multu $4,$1
addu $4,$2,$5
multu $0,$4
mfhi $6
divu $5,$ra
mthi $2
divu $3,$ra
mult $5,$5
mfhi $4
ori $6,$2,36366
addu $5,$6,$2
sb $4,6($0)
lui $4,2674
mfhi $4
mflo $5
lb $4,8($0)
ori $5,$5,23485
sb $6,0($0)
lb $4,12($0)
srav $1,$1,$3
srav $5,$1,$1
multu $1,$6
div $0,$ra
sb $4,11($0)
divu $0,$ra
ori $4,$5,38009
multu $1,$4
mflo $3
addu $3,$3,$3
addu $2,$4,$2
divu $4,$ra
mthi $4
srav $1,$2,$4
mthi $4
multu $6,$5
lb $5,9($0)
lb $4,9($0)
mflo $4
addu $3,$2,$3
sll $2,$0,21
mthi $4
divu $4,$ra
lb $2,5($0)
mthi $2
lb $5,13($0)
addu $6,$2,$6
mthi $1
mfhi $5
lui $4,368
mflo $4
mult $5,$1
ori $2,$2,44739
mtlo $2
addu $6,$2,$5
srav $5,$4,$5
mtlo $1
ori $4,$5,17970
sb $4,2($0)
mtlo $1
mflo $4
lb $6,8($0)
addu $4,$5,$4
multu $1,$5
mult $0,$0
mflo $5
multu $5,$5
mflo $1
ori $6,$6,33299
mtlo $0
addiu $4,$0,31496
mflo $1
multu $4,$4
mult $0,$5
mult $4,$5
multu $5,$5
ori $4,$2,40973
divu $5,$ra
sb $5,6($0)
multu $5,$1
sb $4,5($0)
ori $4,$4,61652
div $1,$ra
addu $5,$1,$1
srav $2,$2,$5
lb $6,4($0)
div $1,$ra
div $5,$ra
ori $4,$4,55809
divu $6,$ra
mfhi $1
div $3,$ra
div $5,$ra
mflo $4
sb $2,15($0)
sb $1,3($0)
mtlo $5
sll $1,$2,15
addiu $1,$2,14211
lb $2,11($0)
multu $4,$4
mtlo $5
mtlo $5
addiu $4,$0,9903
lui $2,17584
ori $1,$4,6359
srav $4,$1,$3
mult $4,$4
lui $5,44034
lui $1,49465
sb $3,5($0)
mtlo $6
div $1,$ra
mtlo $0
mult $6,$5
srav $0,$2,$2
multu $0,$5
mfhi $1
mult $4,$4
mtlo $6
mult $4,$4
mflo $6
sb $1,0($0)
mthi $4
mult $2,$2
mtlo $4
mtlo $3
multu $1,$2
srav $2,$2,$2
addiu $6,$6,7904
addu $2,$2,$2
ori $5,$5,15180
mthi $5
mflo $4
multu $4,$5
ori $0,$0,15761
addiu $0,$4,3180
div $5,$ra
sll $5,$1,0
lb $1,14($0)
mfhi $0
addu $4,$4,$5
mthi $1
sll $0,$2,13
mthi $4
addu $6,$4,$1
sll $3,$4,21
mthi $4
mult $4,$2
lui $6,39549
multu $6,$4
mfhi $5
sll $1,$2,31
mflo $5
lui $3,43298
divu $1,$ra
lb $4,5($0)
srav $4,$4,$5
mult $4,$4
divu $2,$ra
addu $2,$2,$3
multu $4,$0
divu $5,$ra
sb $1,8($0)
div $6,$ra
ori $4,$6,20502
addu $4,$2,$4
mflo $3
addu $1,$2,$2
lb $5,5($0)
mflo $3
ori $2,$2,835
multu $6,$1
multu $4,$4
mult $4,$1
divu $6,$ra
mult $2,$5
multu $4,$2
multu $5,$1
addu $3,$4,$3
addu $4,$2,$1
mthi $4
mtlo $4
lui $5,34759
mthi $3
srav $6,$4,$4
lb $5,5($0)
lui $0,57366
lb $4,7($0)
multu $1,$6
sll $4,$2,28
multu $1,$4
mthi $1
mfhi $3
sll $1,$1,3
lb $6,6($0)
lui $2,48888
mfhi $0
sb $6,2($0)
sb $5,7($0)
divu $4,$ra
lb $3,15($0)
ori $4,$0,31578
addu $6,$1,$4
addiu $4,$4,-31261
addiu $1,$4,-12227
mthi $5
sb $5,7($0)
lui $3,36575
addu $1,$3,$3
ori $4,$4,35249
mult $5,$4
sb $1,8($0)
addu $0,$4,$5
lui $0,46453
div $4,$ra
sll $0,$5,5
sll $1,$2,21
sll $4,$4,15
addu $5,$5,$5
sb $4,1($0)
multu $0,$0
lui $2,23516
mtlo $0
mthi $1
mfhi $4
srav $2,$4,$2
divu $1,$ra
sb $2,14($0)
addiu $4,$0,-20254
mflo $5
sb $4,12($0)
div $2,$ra
mfhi $4
lb $4,12($0)
mtlo $5
mflo $2
lui $3,33365
mfhi $2
addu $1,$4,$4
mult $4,$4
sll $6,$2,30
ori $2,$2,58734
mtlo $6
multu $0,$2
mthi $4
div $5,$ra
mthi $1
ori $4,$2,61301
lui $6,4533
sll $5,$2,30
lui $4,31183
ori $0,$2,37398
addu $4,$4,$4
addiu $4,$1,30400
addu $0,$5,$5
sb $4,2($0)
addiu $5,$1,-29005
addu $0,$2,$2
mfhi $5
mflo $1
srav $4,$2,$4
addu $3,$3,$3
lb $3,16($0)
mult $0,$4
sb $4,4($0)
srav $4,$5,$5
ori $2,$2,17931
lui $4,64729
mult $4,$4
addiu $1,$1,-2163
mfhi $4
mult $4,$0
srav $3,$4,$3
srav $4,$4,$2
mthi $1
sll $4,$4,11
srav $4,$4,$1
addiu $5,$3,3385
sll $4,$4,27
sb $4,13($0)
mfhi $2
div $4,$ra
sb $4,6($0)
div $1,$ra
ori $5,$5,10297
mtlo $3
mfhi $4
mtlo $3
ori $5,$5,32075
lb $4,12($0)
mflo $1
divu $2,$ra
divu $0,$ra
mtlo $3
lui $5,35906
divu $5,$ra
mthi $1
addiu $4,$4,-4827
addu $5,$0,$5
addiu $0,$1,-24397
mfhi $1
div $3,$ra
addu $0,$1,$4
lui $1,59255
ori $4,$3,854
divu $4,$ra
sb $2,16($0)
lb $6,2($0)
mthi $4
mfhi $5
div $1,$ra
addiu $5,$2,6135
mfhi $1
lui $6,8539
ori $4,$5,16543
mtlo $5
mult $4,$2
sb $4,8($0)
sll $5,$2,20
addiu $4,$2,12819
srav $4,$4,$4
mthi $6
srav $3,$3,$3
mthi $3
addiu $4,$4,23219
mthi $5
mflo $6
div $3,$ra
sb $5,5($0)
mthi $4
mult $2,$2
ori $4,$2,43929
div $1,$ra
addu $0,$2,$2
mflo $3
mflo $3
mflo $4
lb $1,0($0)
mult $5,$5
lb $5,16($0)
ori $3,$3,55173
divu $0,$ra
mthi $2
ori $1,$5,23357
lui $1,7611
mthi $4
sb $6,2($0)
sb $4,15($0)
mthi $1
srav $5,$1,$4
div $0,$ra
div $4,$ra
addu $6,$6,$1
mtlo $4
div $4,$ra
ori $2,$2,1938
sll $4,$6,29
lui $6,64035
addu $3,$5,$3
multu $5,$6
lui $2,48281
lui $4,63455
multu $5,$5
srav $1,$2,$6
srav $3,$3,$3
lui $2,22870
ori $2,$4,35723
multu $2,$2
mult $0,$2
sb $4,8($0)
divu $4,$ra
sll $5,$5,5
sb $4,10($0)
ori $4,$2,31671
sll $4,$1,2
lui $6,31621
sll $4,$2,25
divu $1,$ra
divu $4,$ra
sll $4,$6,4
addu $4,$1,$1
addu $4,$4,$3
divu $1,$ra
srav $4,$1,$4
lb $4,4($0)
addu $1,$4,$3
sll $3,$3,20
ori $1,$6,48338
addu $6,$6,$6
ori $6,$5,894
addiu $4,$6,17239
sll $1,$4,7
ori $0,$4,4903
mthi $5
mfhi $2
srav $5,$0,$4
srav $2,$2,$5
sb $6,6($0)
addiu $3,$3,23607
mult $6,$2
sb $4,0($0)
div $1,$ra
addu $4,$4,$1
sll $1,$6,6
divu $5,$ra
ori $4,$5,22974
divu $2,$ra
addu $4,$1,$4
div $4,$ra
addu $5,$4,$2
sll $5,$1,24
sb $4,14($0)
div $3,$ra
ori $6,$2,48707
mfhi $6
mfhi $4
sll $4,$5,8
addu $6,$6,$6
addiu $5,$6,31768
mult $0,$3
sll $5,$5,7
lb $4,9($0)
ori $1,$1,32053
lui $1,28212
sll $4,$4,15
mtlo $4
mult $4,$4
mflo $6
mfhi $4
ori $2,$4,15894
multu $5,$5
lui $5,28043
srav $4,$3,$3
divu $3,$ra
mthi $4
addu $1,$1,$1
multu $4,$3
lui $1,44648
addu $1,$4,$4
mtlo $2
divu $3,$ra
srav $5,$5,$4
mtlo $1
mfhi $1
lui $5,24012
mflo $5
mflo $5
ori $1,$5,32067
mult $4,$5
ori $0,$5,28071
addiu $6,$6,4960
div $4,$ra
mthi $4
mult $1,$1
sll $0,$2,19
addu $3,$3,$3
sll $4,$5,4
sb $1,12($0)
ori $1,$1,32844
multu $3,$3
lb $1,0($0)
addu $6,$2,$3
div $4,$ra
lb $4,2($0)
mflo $1
srav $1,$1,$1
lui $1,44711
mflo $5
divu $4,$ra
divu $2,$ra
sb $0,10($0)
mult $5,$4
lui $3,61917
lb $4,16($0)
sb $4,3($0)
srav $1,$1,$6
mfhi $4
multu $4,$2
sll $6,$6,28
ori $6,$6,2634
mfhi $2
ori $0,$6,55390
mfhi $4
ori $5,$5,52718
sll $4,$3,5
lb $5,15($0)
mtlo $4
mflo $1
ori $0,$2,30949
sb $4,12($0)
div $4,$ra
div $5,$ra
addiu $4,$2,-14457
divu $4,$ra
lui $4,37636
addiu $6,$2,17042
addu $4,$4,$3
divu $1,$ra
sll $4,$5,22
mfhi $1
div $2,$ra
srav $4,$0,$4
div $1,$ra
mult $4,$4
addu $4,$6,$2
mthi $3
srav $4,$2,$4
multu $2,$2
mfhi $1
div $4,$ra
lb $3,3($0)
|
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c5/c55b06b.ada | best08618/asylo | 7 | 15473 | <filename>gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c5/c55b06b.ada
-- C55B06B.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- CHECK THAT LOOPS MAY BE SPECIFIED FOR DERIVED BOOLEAN AND
-- DERIVED DERIVED BOOLEAN.
-- DAT 3/26/81
-- SPS 3/2/83
WITH REPORT; USE REPORT;
PROCEDURE C55B06B IS
TYPE E IS (FALSE, TRUE);
TYPE B1 IS NEW BOOLEAN;
TYPE B2 IS NEW B1;
TYPE B3 IS NEW E;
ONE : INTEGER := IDENT_INT (1);
COUNT : INTEGER := 0;
OLD_COUNT : INTEGER := 0;
PROCEDURE Q IS
BEGIN
COUNT := COUNT + 1;
END Q;
BEGIN
TEST ("C55B06B", "LOOPS OVER DERIVED BOOLEAN");
FOR I IN BOOLEAN LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 1");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN BOOLEAN RANGE FALSE .. TRUE LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 2");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN BOOLEAN'(FALSE) .. TRUE LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 3");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN E LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 4");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN E RANGE FALSE .. TRUE LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 5");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN FALSE .. E'(TRUE) LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 6");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN B1 LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 7");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN B1 RANGE FALSE .. TRUE LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 8");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN FALSE .. B1'(TRUE) LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 9");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN B2 LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 10");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN B2 RANGE FALSE .. TRUE LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 11");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN B2'(FALSE) .. TRUE LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 12");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN B3 LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 13");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN B3 RANGE FALSE .. TRUE LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 14");
ELSE
OLD_COUNT := COUNT;
END IF;
FOR I IN FALSE .. B3'(TRUE) LOOP
Q;
END LOOP;
IF OLD_COUNT + IDENT_INT (2) /= COUNT THEN
FAILED ("LOOP 15");
ELSE
OLD_COUNT := COUNT;
END IF;
RESULT;
END C55B06B;
|
testbed/ise.asm | findhamza/Compilers | 0 | 164723 | %include "IOSR.asm"
global _start
section .data
yes DW 1
no DW 0
two DW 2
lit2 DW 2
section .bss
quotient RESW 1
number RESW 1
temp0 RESW 1
temp1 RESW 1
temp2 RESW 1
section .txt
_start:
call PrintString
call GetAnInteger
mov ax, [ReadInt]
mov [number], ax
mov dx, 0
mov ax, [number]
div word [two]
mov [temp0], ax
mov ax, [temp0]
mov [quotient], ax
mov ax, [quotient]
mul word [lit2]
mov [temp0], ax
mov ax, [temp0]
mov [quotient], ax
mov ax, [quotient]
cmp ax, [number]
je L0
jne L1
L0:
mov ax, [yes]
call ConvertIntegerToString
mov eax, 4
mov ebx, 1
mov ecx, Result
mov edx, ResultEnd
int 80h
jmp L2
L1: nop
mov ax, [no]
call ConvertIntegerToString
mov eax, 4
mov ebx, 1
mov ecx, Result
mov edx, ResultEnd
int 80h
L2: nop
call fini
|
programs/oeis/025/A025765.asm | neoneye/loda | 22 | 14265 | ; A025765: Expansion of 1/((1-x)(1-x^2)(1-x^9)).
; 1,1,2,2,3,3,4,4,5,6,7,8,9,10,11,12,13,14,16,17,19,20,22,23,25,26,28,30,32,34,36,38,40,42,44,46,49,51,54,56,59,61,64,66,69,72,75,78,81,84,87,90,93,96,100,103,107,110
add $0,7
lpb $0
sub $0,1
mov $1,$0
mov $0,1
pow $1,2
add $1,3
mov $2,1
mov $4,7
mov $5,7
lpe
add $1,6
mov $3,$0
div $5,$4
sub $4,$2
div $1,$4
div $1,6
mul $3,5
add $5,$3
add $1,$5
sub $1,6
mov $0,$1
|
oeis/179/A179665.asm | neoneye/loda-programs | 11 | 178493 | <gh_stars>10-100
; A179665: a(n) = prime(n)^9.
; Submitted by <NAME>
; 512,19683,1953125,40353607,2357947691,10604499373,118587876497,322687697779,1801152661463,14507145975869,26439622160671,129961739795077,327381934393961,502592611936843,1119130473102767,3299763591802133,8662995818654939,11694146092834141,27206534396294947,45848500718449031,58871586708267913,119851595982618319,186940255267540403,350356403707485209,760231058654565217,1093685272684360901,1304773183829244583,1838459212420154507,2171893279442309389,3004041937984268273,8594754748609397887
mul $0,2
max $0,1
seq $0,173919 ; Numbers that are prime or one less than a prime.
pow $0,9
|
PRG/levels/Giant/W8HTrap2.asm | narfman0/smb3_pp1 | 0 | 21636 | <reponame>narfman0/smb3_pp1
; Original address was $BCDE
; Podoboo hand trap
.word W8H_PrizeL ; Alternate level layout
.word W8H_PrizeO ; Alternate object layout
.byte LEVEL1_SIZE_04 | LEVEL1_YSTART_170
.byte LEVEL2_BGPAL_03 | LEVEL2_OBJPAL_09 | LEVEL2_XSTART_18
.byte LEVEL3_TILESET_11 | LEVEL3_VSCROLL_LOCKED | LEVEL3_PIPENOTEXIT
.byte LEVEL4_BGBANK_INDEX(11) | LEVEL4_INITACT_NOTHING
.byte LEVEL5_BGM_UNDERGROUND | LEVEL5_TIME_200
.byte $79, $00, $71, $3F, $59, $00, $B1, $09, $57, $04, $B1, $05, $55, $06, $B1, $03
.byte $54, $0A, $42, $31, $0D, $81, $32, $0F, $80, $56, $10, $41, $54, $14, $42, $56
.byte $1B, $42, $33, $10, $81, $31, $14, $82, $31, $18, $81, $32, $1A, $80, $56, $20
.byte $41, $54, $27, $42, $53, $2E, $42, $33, $20, $80, $31, $27, $82, $30, $2D, $84
.byte $40, $3C, $B9, $03, $4A, $3F, $BC, $00, $57, $36, $B3, $09, $32, $33, $80, $33
.byte $34, $80, $2A, $3D, $C8, $E3, $51, $10, $FF
|
test/asset/agda-stdlib-1.0/Data/Sum/Properties.agda | omega12345/agda-mode | 0 | 15239 | ------------------------------------------------------------------------
-- The Agda standard library
--
-- Properties of sums (disjoint unions)
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
module Data.Sum.Properties where
open import Data.Sum
open import Function
open import Relation.Binary using (Decidable)
open import Relation.Binary.PropositionalEquality
open import Relation.Nullary using (yes; no)
module _ {a b} {A : Set a} {B : Set b} where
inj₁-injective : ∀ {x y} → (A ⊎ B ∋ inj₁ x) ≡ inj₁ y → x ≡ y
inj₁-injective refl = refl
inj₂-injective : ∀ {x y} → (A ⊎ B ∋ inj₂ x) ≡ inj₂ y → x ≡ y
inj₂-injective refl = refl
≡-dec : Decidable _≡_ → Decidable _≡_ → Decidable {A = A ⊎ B} _≡_
≡-dec dec₁ dec₂ (inj₁ x) (inj₁ y) with dec₁ x y
... | yes refl = yes refl
... | no x≢y = no (x≢y ∘ inj₁-injective)
≡-dec dec₁ dec₂ (inj₁ x) (inj₂ y) = no λ()
≡-dec dec₁ dec₂ (inj₂ x) (inj₁ y) = no λ()
≡-dec dec₁ dec₂ (inj₂ x) (inj₂ y) with dec₂ x y
... | yes refl = yes refl
... | no x≢y = no (x≢y ∘ inj₂-injective)
swap-involutive : swap {A = A} {B} ∘ swap ≗ id
swap-involutive = [ (λ _ → refl) , (λ _ → refl) ]
|
tests/crew-test_data-tests.adb | thindil/steamsky | 80 | 5655 | <filename>tests/crew-test_data-tests.adb
-- This package has been generated automatically by GNATtest.
-- You are allowed to add your code to the bodies of test routines.
-- Such changes will be kept during further regeneration of this file.
-- All code placed outside of test routine bodies will be lost. The
-- code intended to set up and tear down the test environment should be
-- placed into Crew.Test_Data.
with AUnit.Assertions; use AUnit.Assertions;
with System.Assertions;
-- begin read only
-- id:2.2/00/
--
-- This section can be used to add with clauses if necessary.
--
-- end read only
with Config; use Config;
with Ships; use Ships;
-- begin read only
-- end read only
package body Crew.Test_Data.Tests is
-- begin read only
-- id:2.2/01/
--
-- This section can be used to add global variables and other elements.
--
-- end read only
-- begin read only
-- end read only
-- begin read only
procedure Wrap_Test_GainExp_685058_5db064
(Amount: Natural; SkillNumber, CrewIndex: Positive) is
begin
begin
pragma Assert(SkillNumber <= Skills_Amount);
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"req_sloc(crew.ads:0):Test_GainExp test requirement violated");
end;
GNATtest_Generated.GNATtest_Standard.Crew.GainExp
(Amount, SkillNumber, CrewIndex);
begin
pragma Assert(True);
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"ens_sloc(crew.ads:0:):Test_GainExp test commitment violated");
end;
end Wrap_Test_GainExp_685058_5db064;
-- end read only
-- begin read only
procedure Test_GainExp_test_gainexp(Gnattest_T: in out Test);
procedure Test_GainExp_685058_5db064(Gnattest_T: in out Test) renames
Test_GainExp_test_gainexp;
-- id:2.2/685058e06b47ff9b/GainExp/1/0/test_gainexp/
procedure Test_GainExp_test_gainexp(Gnattest_T: in out Test) is
procedure GainExp
(Amount: Natural; SkillNumber, CrewIndex: Positive) renames
Wrap_Test_GainExp_685058_5db064;
-- end read only
pragma Unreferenced(Gnattest_T);
begin
GainExp(1, 4, 1);
Assert
(Player_Ship.Crew(1).Skills(1).Experience = 8,
"Failed to gain experience in skill.");
-- begin read only
end Test_GainExp_test_gainexp;
-- end read only
-- begin read only
function Wrap_Test_GenerateMemberName_b4591b_b29bd9
(Gender: Character; FactionIndex: Unbounded_String)
return Unbounded_String is
begin
begin
pragma Assert
(Gender in 'M' | 'F' and FactionIndex /= Null_Unbounded_String);
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"req_sloc(crew.ads:0):Test_GenerateMemberName test requirement violated");
end;
declare
Test_GenerateMemberName_b4591b_b29bd9_Result: constant Unbounded_String :=
GNATtest_Generated.GNATtest_Standard.Crew.GenerateMemberName
(Gender, FactionIndex);
begin
begin
pragma Assert(True);
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"ens_sloc(crew.ads:0:):Test_GenerateMemberName test commitment violated");
end;
return Test_GenerateMemberName_b4591b_b29bd9_Result;
end;
end Wrap_Test_GenerateMemberName_b4591b_b29bd9;
-- end read only
-- begin read only
procedure Test_GenerateMemberName_test_generatemembername
(Gnattest_T: in out Test);
procedure Test_GenerateMemberName_b4591b_b29bd9
(Gnattest_T: in out Test) renames
Test_GenerateMemberName_test_generatemembername;
-- id:2.2/b4591b69c6a992ff/GenerateMemberName/1/0/test_generatemembername/
procedure Test_GenerateMemberName_test_generatemembername
(Gnattest_T: in out Test) is
function GenerateMemberName
(Gender: Character; FactionIndex: Unbounded_String)
return Unbounded_String renames
Wrap_Test_GenerateMemberName_b4591b_b29bd9;
-- end read only
pragma Unreferenced(Gnattest_T);
begin
Assert
(GenerateMemberName('M', To_Unbounded_String("POLEIS")) /=
Null_Unbounded_String,
"Failed to generate male name for poleis faction.");
-- begin read only
end Test_GenerateMemberName_test_generatemembername;
-- end read only
-- begin read only
function Wrap_Test_FindCabin_c60907_006804
(MemberIndex: Positive) return Natural is
begin
declare
Test_FindCabin_c60907_006804_Result: constant Natural :=
GNATtest_Generated.GNATtest_Standard.Crew.FindCabin(MemberIndex);
begin
return Test_FindCabin_c60907_006804_Result;
end;
end Wrap_Test_FindCabin_c60907_006804;
-- end read only
-- begin read only
procedure Test_FindCabin_test_findcabin(Gnattest_T: in out Test);
procedure Test_FindCabin_c60907_006804(Gnattest_T: in out Test) renames
Test_FindCabin_test_findcabin;
-- id:2.2/c60907de3ec73748/FindCabin/1/0/test_findcabin/
procedure Test_FindCabin_test_findcabin(Gnattest_T: in out Test) is
function FindCabin(MemberIndex: Positive) return Natural renames
Wrap_Test_FindCabin_c60907_006804;
-- end read only
pragma Unreferenced(Gnattest_T);
begin
Assert
(FindCabin(1) > 0, "Failed to find cabin for existing crew member.");
Assert
(FindCabin(100) = 0,
"Failed to not find cabin for non existing crew member.");
-- begin read only
end Test_FindCabin_test_findcabin;
-- end read only
-- begin read only
procedure Wrap_Test_UpdateCrew_123b55_011eae
(Minutes: Positive; TiredPoints: Natural; InCombat: Boolean := False) is
begin
GNATtest_Generated.GNATtest_Standard.Crew.UpdateCrew
(Minutes, TiredPoints, InCombat);
end Wrap_Test_UpdateCrew_123b55_011eae;
-- end read only
-- begin read only
procedure Test_UpdateCrew_test_updatecrew(Gnattest_T: in out Test);
procedure Test_UpdateCrew_123b55_011eae(Gnattest_T: in out Test) renames
Test_UpdateCrew_test_updatecrew;
-- id:2.2/123b55a332c8ae22/UpdateCrew/1/0/test_updatecrew/
procedure Test_UpdateCrew_test_updatecrew(Gnattest_T: in out Test) is
procedure UpdateCrew
(Minutes: Positive; TiredPoints: Natural;
InCombat: Boolean := False) renames
Wrap_Test_UpdateCrew_123b55_011eae;
-- end read only
pragma Unreferenced(Gnattest_T);
begin
UpdateCrew(1, 1);
Player_Ship.Crew(1).Health := 0;
UpdateCrew(1, 1);
New_Game_Settings.Player_Faction := To_Unbounded_String("POLEIS");
New_Game_Settings.Player_Career := To_Unbounded_String("general");
New_Game_Settings.Starting_Base := To_Unbounded_String("1");
New_Game;
Assert(True, "This tests can only crash.");
-- begin read only
end Test_UpdateCrew_test_updatecrew;
-- end read only
-- begin read only
procedure Wrap_Test_WaitForRest_237f93_b046aa is
begin
GNATtest_Generated.GNATtest_Standard.Crew.WaitForRest;
end Wrap_Test_WaitForRest_237f93_b046aa;
-- end read only
-- begin read only
procedure Test_WaitForRest_test_waitforrest(Gnattest_T: in out Test);
procedure Test_WaitForRest_237f93_b046aa(Gnattest_T: in out Test) renames
Test_WaitForRest_test_waitforrest;
-- id:2.2/237f93172c11704d/WaitForRest/1/0/test_waitforrest/
procedure Test_WaitForRest_test_waitforrest(Gnattest_T: in out Test) is
procedure WaitForRest renames Wrap_Test_WaitForRest_237f93_b046aa;
-- end read only
pragma Unreferenced(Gnattest_T);
begin
WaitForRest;
Assert(True, "This test can only crash.");
-- begin read only
end Test_WaitForRest_test_waitforrest;
-- end read only
-- begin read only
function Wrap_Test_GetSkillLevelName_b5615e_35c4c0
(SkillLevel: Skill_Range) return String is
begin
begin
pragma Assert(True);
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"req_sloc(crew.ads:0):Test_GetSkillLevelName test requirement violated");
end;
declare
Test_GetSkillLevelName_b5615e_35c4c0_Result: constant String :=
GNATtest_Generated.GNATtest_Standard.Crew.GetSkillLevelName
(SkillLevel);
begin
begin
pragma Assert(True);
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"ens_sloc(crew.ads:0:):Test_GetSkillLevelName test commitment violated");
end;
return Test_GetSkillLevelName_b5615e_35c4c0_Result;
end;
end Wrap_Test_GetSkillLevelName_b5615e_35c4c0;
-- end read only
-- begin read only
procedure Test_GetSkillLevelName_test_getskilllevelname
(Gnattest_T: in out Test);
procedure Test_GetSkillLevelName_b5615e_35c4c0
(Gnattest_T: in out Test) renames
Test_GetSkillLevelName_test_getskilllevelname;
-- id:2.2/b5615ec8a22d7d74/GetSkillLevelName/1/0/test_getskilllevelname/
procedure Test_GetSkillLevelName_test_getskilllevelname
(Gnattest_T: in out Test) is
function GetSkillLevelName(SkillLevel: Skill_Range) return String renames
Wrap_Test_GetSkillLevelName_b5615e_35c4c0;
-- end read only
pragma Unreferenced(Gnattest_T);
begin
Game_Settings.Show_Numbers := False;
Assert
(GetSkillLevelName(9) = "Beginner",
"Failed to get skill level name for level 9");
Assert
(GetSkillLevelName(54) = "Respected",
"Failed to get skill level name for level 54");
Assert
(GetSkillLevelName(92) = "Legendary",
"Failed to get skill level name for level 92");
Game_Settings.Show_Numbers := True;
Assert
(GetSkillLevelName(9) = " 9",
"Failed to get skill level name for level 9 (numeric)");
Assert
(GetSkillLevelName(54) = " 54",
"Failed to get skill level name for level 54 (numeric)");
Assert
(GetSkillLevelName(92) = " 92",
"Failed to get skill level name for level 92 (numeric)");
-- begin read only
end Test_GetSkillLevelName_test_getskilllevelname;
-- end read only
-- begin read only
function Wrap_Test_GetAttributeLevelName_ac08df_7fd836
(AttributeLevel: Positive) return String is
begin
begin
pragma Assert((AttributeLevel <= 50));
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"req_sloc(crew.ads:0):Test_GetAttributeLevelName test requirement violated");
end;
declare
Test_GetAttributeLevelName_ac08df_7fd836_Result: constant String :=
GNATtest_Generated.GNATtest_Standard.Crew.GetAttributeLevelName
(AttributeLevel);
begin
begin
pragma Assert(True);
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"ens_sloc(crew.ads:0:):Test_GetAttributeLevelName test commitment violated");
end;
return Test_GetAttributeLevelName_ac08df_7fd836_Result;
end;
end Wrap_Test_GetAttributeLevelName_ac08df_7fd836;
-- end read only
-- begin read only
procedure Test_GetAttributeLevelName_test_getattributelevelname
(Gnattest_T: in out Test);
procedure Test_GetAttributeLevelName_ac08df_7fd836
(Gnattest_T: in out Test) renames
Test_GetAttributeLevelName_test_getattributelevelname;
-- id:2.2/ac08dfe313a43d73/GetAttributeLevelName/1/0/test_getattributelevelname/
procedure Test_GetAttributeLevelName_test_getattributelevelname
(Gnattest_T: in out Test) is
function GetAttributeLevelName
(AttributeLevel: Positive) return String renames
Wrap_Test_GetAttributeLevelName_ac08df_7fd836;
-- end read only
pragma Unreferenced(Gnattest_T);
begin
Game_Settings.Show_Numbers := False;
Assert
(GetAttributeLevelName(3) = "Very low",
"Failed to get attribute level name for level 3");
Assert
(GetAttributeLevelName(12) = "Below average",
"Failed to get attribute level name for level 12");
Assert
(GetAttributeLevelName(48) = "Very high",
"Failed to get attribute level name for level 48");
Game_Settings.Show_Numbers := True;
Assert
(GetAttributeLevelName(3) = " 3",
"Failed to get attribute level name for level 3 (numeric)");
Assert
(GetAttributeLevelName(12) = " 12",
"Failed to get attribute level name for level 12 (numeric)");
Assert
(GetAttributeLevelName(48) = " 48",
"Failed to get attribute level name for level 48 (numeric)");
-- begin read only
end Test_GetAttributeLevelName_test_getattributelevelname;
-- end read only
-- begin read only
procedure Wrap_Test_DailyPayment_62db86_0bfd06 is
begin
GNATtest_Generated.GNATtest_Standard.Crew.DailyPayment;
end Wrap_Test_DailyPayment_62db86_0bfd06;
-- end read only
-- begin read only
procedure Test_DailyPayment_test_dailypayment(Gnattest_T: in out Test);
procedure Test_DailyPayment_62db86_0bfd06(Gnattest_T: in out Test) renames
Test_DailyPayment_test_dailypayment;
-- id:2.2/62db86393c55b47a/DailyPayment/1/0/test_dailypayment/
procedure Test_DailyPayment_test_dailypayment(Gnattest_T: in out Test) is
procedure DailyPayment renames Wrap_Test_DailyPayment_62db86_0bfd06;
-- end read only
pragma Unreferenced(Gnattest_T);
begin
DailyPayment;
Assert(True, "This test can only crash.");
-- begin read only
end Test_DailyPayment_test_dailypayment;
-- end read only
-- begin read only
function Wrap_Test_GetTrainingToolQuality_32b7f3_512b79
(MemberIndex, SkillIndex: Positive) return Positive is
begin
begin
pragma Assert(SkillIndex <= Skills_Amount);
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"req_sloc(crew.ads:0):Test_GetTrainingToolQuality test requirement violated");
end;
declare
Test_GetTrainingToolQuality_32b7f3_512b79_Result: constant Positive :=
GNATtest_Generated.GNATtest_Standard.Crew.GetTrainingToolQuality
(MemberIndex, SkillIndex);
begin
begin
pragma Assert(True);
null;
exception
when System.Assertions.Assert_Failure =>
AUnit.Assertions.Assert
(False,
"ens_sloc(crew.ads:0:):Test_GetTrainingToolQuality test commitment violated");
end;
return Test_GetTrainingToolQuality_32b7f3_512b79_Result;
end;
end Wrap_Test_GetTrainingToolQuality_32b7f3_512b79;
-- end read only
-- begin read only
procedure Test_GetTrainingToolQuality_test_gettrainingtoolquality
(Gnattest_T: in out Test);
procedure Test_GetTrainingToolQuality_32b7f3_512b79
(Gnattest_T: in out Test) renames
Test_GetTrainingToolQuality_test_gettrainingtoolquality;
-- id:2.2/32b7f32221fae8a9/GetTrainingToolQuality/1/0/test_gettrainingtoolquality/
procedure Test_GetTrainingToolQuality_test_gettrainingtoolquality
(Gnattest_T: in out Test) is
function GetTrainingToolQuality
(MemberIndex, SkillIndex: Positive) return Positive renames
Wrap_Test_GetTrainingToolQuality_32b7f3_512b79;
-- end read only
pragma Unreferenced(Gnattest_T);
begin
AUnit.Assertions.Assert
(GetTrainingToolQuality(1, 1) = 100,
"Failed to get minimun quality of training tool.");
-- begin read only
end Test_GetTrainingToolQuality_test_gettrainingtoolquality;
-- end read only
-- begin read only
-- id:2.2/02/
--
-- This section can be used to add elaboration code for the global state.
--
begin
-- end read only
null;
-- begin read only
-- end read only
end Crew.Test_Data.Tests;
|
data/maps/outdoor_sprites.asm | AtmaBuster/pokecrystal16-493-plus | 1 | 163270 | <filename>data/maps/outdoor_sprites.asm
; Valid sprite IDs for each map group.
; Maps with environment ROUTE or TOWN can only use these sprites.
OutdoorSprites:
; entries correspond to map groups
dw CableClubGroupSprites
dw TwinleafGroupSprites
dw SandgemGroupSprites
dw JubilifeGroupSprites
dw OreburghGroupSprites
dw LakeGroupSprites
CableClubGroupSprites:
; (no outdoor maps)
; 0 of max 9 walking sprites
db 0 ; end
TwinleafGroupSprites: ; TwinleafTown, Route201
SandgemGroupSprites: ; SandgemTown, Route202
JubilifeGroupSprites: ; JubilifeCity, Route203
db SPRITE_POKEFAN_M
db SPRITE_TEACHER
db SPRITE_SILVER
db SPRITE_OAK
db SPRITE_KRIS
; 5 of max 9 walking sprites
db SPRITE_FAMICOM
db 0 ; end
OreburghGroupSprites: ; OreburghCity
; 0 of max 9 walking sprites
db 0 ; end
LakeGroupSprites: ; LakeVerityLow, LakeVerityHigh
; 0 of max 9 walking sprites
db 0 ; end
|
7segDisplay-Count.asm | metinaydar/16F84A | 0 | 80188 | <filename>7segDisplay-Count.asm
;7segDisplay-Count.ASM--- 01.02.2005
; PORTB YE BAGLI 7 SEGMENT DISPLAYIN KSS=3*M*N ESITLIGI ILE YAKLASIK HESAPLANAN
;DEGERDE MIKRO SANIYE BIRIMINDEN GECIKME ILE HEX TABANDAKI SAYILARIN GOSTERIMINDE
;CEVRIM TABLOSU KULLANARAK PORTA YA BAGLI BUTONLARA BASILDIKCA SAYIYI DEGISTIREN PRG.
;
; NOT : PORTA NIN 0. BITI YANI RA0 (-) PULL UP YAPILMALI >> ARTIS
; NOT : PORTA NIN 1. BITI YANI RA0 (-) PULL UP YAPILMALI >> EKSILME
LIST P=16F84A
INCLUDE "P16F84A.INC"
__CONFIG _CP_OFF &_WDT_OFF &_PWRTE_OFF &_XT_OSC
SAYAC1 EQU h'0C' ;SAYAC1 FILE REGISTERININ RAM ADRESI
SAYAC2 EQU h'0D' ;SAYAC2 FILE REGISTERININ RAM ADRESI
DEGER EQU h'0E' ;DEGER FILE REGISTERININ RAM ADRESI
CLRF PORTB ;PORTB ye bagli LED leri sondur
BSF STATUS, RP0 ;BANK1 e gec
CLRF TRISB ;PORTB nin tum uclarini cikis yap
MOVLW h'FF' ;PORTA YA ATAMAK ICIN W YA FF ATA
MOVWF TRISA ;PORTA NIN TUM PINLERINI GIRIS YAP
BCF STATUS, RP0 ;BANK0 a gec
MOVLW h'0' ;ILK ONCE 0. ELEMAN
MOVWF DEGER ; CAGIRILACAK
CALL GOSTER
TEKRAR
BTFSC PORTA, 0 ;PORTA 0. BIT CLEAR ISE SONRAKI KOMUTU ATLA
CALL ARTIS ;
BTFSC PORTA, 1 ;PORTA 1. BIT CLEAR ISE SONRAKI KOMUTU ATLA
CALL EKSILME ;
GOTO TEKRAR ;
ARTIS
INCF DEGER, F ; DEGER = DEGER + 1
CALL MASKELE
CALL GOSTER
RETURN
EKSILME
DECF DEGER, F ; DEGER = DEGER - 1
CALL MASKELE
CALL GOSTER
RETURN
GOSTER
MOVF DEGER, W ;DEGER REG. W YA ATA
CALL TABLO ;W. ELEMANI CAGIR
MOVWF PORTB ;CAGRILAN ELEMANI GOSTER
CALL BEKLEME ; BUTONA BASILI TUTMA SURESINI BELIRLER
RETURN
MASKELE
MOVLW b'00001111' ;MASKELEME ICIN W YA h'0F' ATA
ANDWF DEGER, F ;DEGER REG. MASKELE, h'0F' GECMESINI ENGELLE
RETURN
TABLO
ADDWF PCL, F ; W REGISTERI ICINDEKI DEGERLE PROGRAM COUNTER LOW
;ICINDEKI DEGERI TOPLA, PCL YE ATA
;( PROGRAM AKISI YONLENMIS OLACAK )
RETLW h'3F' ;RETURN WITH LITERAL IN W REG. '0'
RETLW h'06' ; '1'
RETLW h'5B' ; '2
RETLW h'4F' ; '3'
RETLW h'66' ; '4'
RETLW h'6D' ; '5'
RETLW h'7D' ; '6'
RETLW h'07' ; '7'
RETLW h'7F' ; '8'
RETLW h'6F' ; '9'
RETLW h'77' ; 'A'
RETLW h'7C' ; 'B'
RETLW h'39' ; 'C'
RETLW h'5E' ; 'D'
RETLW h'79' ; 'E'
RETLW h'71' ; 'F'
BEKLEME
MOVLW h'EF' ;SAYAC1 ( M ) ICERIGINI
MOVWF SAYAC1 ;239 YAP
DONGU1
MOVLW h'FF' ;SAYAC1 ( M ) ICERIGINI
MOVWF SAYAC2 ;255 YAP
DONGU2
DECFSZ SAYAC2, F ;SAYAC2 NIN DEGERINI 1 AZALT, SONUCU YINE SAYAC2
GOTO DONGU2 ;ICINDE SAKLI TUT VE "0" ISE 1 KOMUT ATLA
DECFSZ SAYAC1, F ;SAYAC1 IN DEGERINI 1 AZALT, SONUCU YINE SAYAC1
GOTO DONGU1 ;ICINDE SAKLI TUT VE "0" ISE 1 KOMUT ATLA
RETURN
END
|
alloy4fun_models/trashltl/models/17/RPSktEY2bKy6C8cBr.als | Kaixi26/org.alloytools.alloy | 0 | 392 | <reponame>Kaixi26/org.alloytools.alloy
open main
pred idRPSktEY2bKy6C8cBr_prop18 {
always all p: Protected | eventually p not in Protected implies p in Trash
}
pred __repair { idRPSktEY2bKy6C8cBr_prop18 }
check __repair { idRPSktEY2bKy6C8cBr_prop18 <=> prop18o } |
libsrc/_DEVELOPMENT/l/sccz80/crt0_long/l_long_div_u.asm | meesokim/z88dk | 0 | 368 | ;
; Small C+ Long Library Functions
;
; Divide 2 32 bit numbers
;
; Hopefully this routine does work!
;
; I think the use of ix is unavoidable in this case..unless you know
; otherwise!
;
; This is for unsigned quantities..separate routine for signed..
;
; Replaced use of ix with bcbc'
SECTION code_l_sccz80
PUBLIC l_long_div_u
EXTERN l_divu_32_32x32
l_long_div_u:
; dehl = divisor
; stack = dividend, ret
exx
pop bc
pop hl
pop de
push bc
jp l_divu_32_32x32 - 1
|
drivers/storage/port/scsi/miniport/mylex/dac2w2k/io/i386/mdac_nt.asm | npocmaka/Windows-Server-2003 | 17 | 8151 | ifdef 0
/**************************************************************************
/* COPYRIGHT (C) Mylex Corporation 1992-1998 *
/* *
/* This software is furnished under a license and may be used and copied *
/* only in accordance with the terms and conditions of such license and *
/* with inclusion of the above copyright notice. This software or any *
/* other copies thereof may not be provided or otherwise made available *
/* to any other person. No title to, nor ownership of the software is *
/* hereby transferred. *
/* *
/* The information in this software is subject to change without notices *
/* and should not be construed as a commitment by Mylex Corporation *
/* *
/**************************************************************************/
.globl u08bits_in_mdac
u08bits_in_mdac:
movl 4(%esp), %edx
xorl %eax, %eax
inb (%dx)
ret
.globl u16bits_in_mdac
u16bits_in_mdac:
movl 4(%esp), %edx
xorl %eax, %eax
inw (%dx)
ret
.globl u32bits_in_mdac
u32bits_in_mdac:
movl 4(%esp), %edx
inl (%dx)
ret
.globl u08bits_out_mdac
u08bits_out_mdac:
movl 4(%esp), %edx
movl 8(%esp), %eax
outb (%dx)
ret
.globl u16bits_out_mdac
u16bits_out_mdac:
movl 4(%esp), %edx
movl 8(%esp), %eax
outw (%dx)
ret
.globl u32bits_out_mdac
u32bits_out_mdac:
movl 4(%esp), %edx
movl 8(%esp), %eax
outl (%dx)
ret
endif
; ---------------------------------------------------------------------------
;
;
; ---------------------------------------------------------------------------
.386P
.model FLAT, C
.xlist
include callconv.inc
.list
.DATA
EXTERNDEF mdac_datarel_cpu_family:DWORD
EXTERNDEF mdac_datarel_cpu_model:DWORD
EXTERNDEF mdac_datarel_cpu_stepping:DWORD
EXTERNDEF mdac_simple_waitlock_cnt:DWORD
EXTERNDEF mdac_simple_waitloop_cnt:DWORD
EXTERNDEF mdac_flushdatap:DWORD
.CODE
_TEXT SEGMENT DWORD PUBLIC 'CODE'
ASSUME DS:FLAT, ES:FLAT, SS:NOTHING, FS:NOTHING, GS:NOTHING
cPublicProc MdacInt3
; int 3
ret
stdENDP MdacInt3
ifndef SCSIPORT_COMPLIANT
cPublicProc mdac_simple_unlock, 1, arg1:DWORD
ifdef 0
movl 4(%esp), %eax
lock
xorl %eax, (%eax)
ret
else
ifdef MLX_WIN9X
else
mov eax, mdac_flushdatap ; get non cacheable memory address
mov eax, [eax] ; access will flush pending writes
mov eax, arg1 ; get the lock address
mov [eax], 00h ; unlock the lock
; mov eax, arg1
; lock xor [eax], eax
endif
stdRET mdac_simple_unlock
stdENDP mdac_simple_unlock
endif
cPublicProc mdac_simple_trylock, 1, arg1:DWORD
ifdef 0
movl 4(%esp), %eax
xchgl %eax, (%eax)
ret
else
mov eax, arg1
xchg eax, [eax]
stdRET mdac_simple_trylock
stdENDP mdac_simple_trylock
endif
cPublicProc mdac_simple_lock, 1, arg1:DWORD
ifdef 0
movl 4(%esp), %eax
xchg %eax, (%eax)
orl %eax, %eax
jnz mdac_simple_waitlock
ret
else
ifdef MLX_WIN9X
xor eax, eax
stdRET mdac_simple_lock
else
mdac_simple_lock_bbb:
mov eax, arg1
xchg eax, [eax]
or eax, eax
jnz mdac_simple_waitlock
stdRET mdac_simple_lock
mdac_simple_waitlock:
inc mdac_simple_waitlock_cnt ; just keep track
mov eax, arg1
xor ecx, ecx
xor edx, edx
mdac_simple_waitlock1:
inc edx
cmp [eax], ecx
jne mdac_simple_waitlock1 ; try again
add mdac_simple_waitloop_cnt, edx ; just keep track count
jmp mdac_simple_lock_bbb ; lock is available
endif
stdENDP mdac_simple_lock
endif
endif ; if !SCSIPORT_COMPLIANT
ifdef 0
.set PITCTR2_PORT,0x42 /* counter 2 port */
.set PITCTL_PORT,0x43 /* PIT control port */
.set PITAUX_PORT,0x61 /* PIT auxiliary port */
.set PIT_C2,0x80
.set PITAUX_GATE2,0x01 /* aux port, PIT gate 2 input */
else
PITCTR2_PORT equ 42h ; counter 2 port
PITCTL_PORT equ 43h ; PIT control port
PITAUX_PORT equ 61h ; PIT auxiliary port
PIT_C2 equ 80h
PITAUX_GATE2 equ 01h ; aux port, PIT gate 2 input
endif
cPublicProc mdac_enable_hwclock
ifdef 0
pushfl
cli
movl $PITCTL_PORT, %edx
movb $0xB4, %al
outb (%dx)
movl $PITCTR2_PORT, %edx
movb $0xFF, %al
outb (%dx)
outb (%dx)
movl $PITAUX_PORT, %edx
inb (%dx)
orb $PITAUX_GATE2, %al /* auxiliary port, PIT gate 2 input */
outb (%dx) /* enable the PIT2 counter */
popfl
ret
else
pushfd
cli
mov edx, PITCTL_PORT
mov al, 0B4h
out dx, al
mov edx, PITCTR2_PORT
mov al, 0FFh
out dx, al
out dx, al
mov edx, PITAUX_PORT
in al, dx
or al, PITAUX_GATE2 ; auxiliary port, PIT gate 2 input
out dx, al
popfd
stdRET mdac_enable_hwclock
stdENDP mdac_enable_hwclock
endif
cPublicProc mdac_read_hwclock
ifdef 0
pushfl
cli
movl $PITCTL_PORT, %edx
movb $PIT_C2, %al
outb (%dx)
movl $PITCTR2_PORT, %edx
xorl %eax, %eax
inb (%dx)
movb %al, %cl
inb (%dx)
movb %al, %ah
movb %cl, %al
popfl
ret
else
pushfd
cli
mov edx, PITCTL_PORT
mov al, PIT_C2
out dx, al
mov edx, PITCTR2_PORT
xor eax, eax
in al, dx
mov cl, al
in al, dx
mov ah, al
mov al, cl
popfd
stdRET mdac_read_hwclock
stdENDP mdac_read_hwclock ; read the hardware clock
endif
; halt the cpu, this useful in measing performance information
cPublicProc mdac_datarel_halt_cpu
sti
hlt
stdRET mdac_datarel_halt_cpu
stdENDP mdac_datarel_halt_cpu
cPublicProc mdac_disable_intr_CPU
ifdef 0
pushfl
cli
popl %eax
ret
else
pushfd
cli
pop eax
stdRET mdac_disable_intr_CPU
stdENDP mdac_disable_intr_CPU
endif
; enable the cpu interrupt and return the old flag
cPublicProc mdac_enable_intr_CPU
pushfd
sti
pop eax
ret
stdENDP mdac_enable_intr_CPU
cPublicProc mdac_restore_intr_CPU, 1, arg1:DWORD
ifdef 0
movl 4(%esp), %eax
pushl %eax
popfl
ret
else
mov eax, arg1
push eax
popfd
stdRET mdac_restore_intr_CPU
stdENDP mdac_restore_intr_CPU
endif
; This function writes a model specific register of Pentium family processor.
; Where reg is the model specific register number to write, val0 is the
; data value bits 31..0 and val1 is the data value bits 63..32.
; mdac_writemsr(reg,val0,val1)
cPublicProc mdac_writemsr, 3
ifdef 0
movl 4(%esp), %ecx
movl 8(%esp), %eax
movl 12(%esp), %edx
.byte 0x0F, 0x30 /* wrmsr */
ret
else
mov ecx, [esp+4]
mov eax, [esp+8]
mov edx, [esp+12]
db 0Fh
db 30h ; wrmsr
stdRET mdac_writemsr
stdENDP mdac_writemsr
endif
; function reads a model specific register of Pentium family processor.
; reg is the model specific register number to read and valp is
; address where the 64 bit value from the register is written.
; (reg,valp)
cPublicProc mdac_readmsr, 2
ifdef 0
movl 4(%esp), %ecx
.byte 0x0F, 0x32 /* rdmsr */
movl 8(%esp), %ecx
movl %eax, (%ecx)
movl %edx, 4(%ecx)
ret
else
mov ecx, [esp+4]
db 0Fh
db 32h ; rdmsr
mov ecx, [esp+8]
mov [ecx], eax
mov [ecx+4], edx
stdRET mdac_readmsr
stdENDP mdac_readmsr
endif
; This function reads the time stamp counter of the Pentium family processor.
; The valp is the address where the 64 bit value read is stored.
; mdac_readtsc(valp)
cPublicProc mdac_readtsc, 1, arg1:DWORD
ifdef 0
movl 4(%esp), %ecx
.byte 0x0F, 0x31 /* rdtsc */
movl %eax, (%ecx)
movl %edx, 4(%ecx)
ret
else
mov ecx, arg1
db 0Fh
db 31h ; rdtsc
mov [ecx], eax
mov [ecx+4], edx
stdRET mdac_readtsc
stdENDP mdac_readtsc
endif
; This routine determines the cpuid of the current processor
EFL_AC equ 40000h ; alignment check (1->check)
EFL_ID equ 200000h ; cpuid opcode (flippable->supported)
cPublicProc mdac_check_cputype
ifdef 0
pushl %ebx / save %ebx
pushl %esi / save %esi
pushl %edi / save %edi
pushfl / save FLAGS
pushfl / push FLAGS value on stack
popl %eax / get FLAGS into AX
movl %eax, %ecx / save copy of FLAGS
xorl $EFL_AC, %eax / flip AC bit for new FLAGS
pushl %eax / push new value on stack
popfl / attempt setting FLAGS.AC
pushfl / push resulting FLAGS on stack
popl %eax / get that into AX
cmpl %eax, %ecx / succeeded in flipping AC?
je mdac_datarel_cpuis_i386 / AX is same as CX for i386 CPU
movl %ecx, %eax / get original FLAGS again
xorl $EFL_ID, %eax / flip ID bit for new FLAGS
pushl %eax / push new value on stack
popfl / attempt setting FLAGS.ID
pushfl / push resulting FLAGS on stack
popl %eax / get that into AX
cmpl %eax, %ecx / succeeded in flipping ID?
je mdac_datarel_cpuis_i486 / AX is same as CX for i486 CPU
movl $1, %eax / set first cpuid parameter
.byte 0x0F, 0xA2 /* cpuid */ / get CPU family-model-stepping
movl %eax, %ebx / extract stepping id
andl $0xF, %ebx / from bits [3..0]
movl %ebx, mdac_datarel_cpu_stepping
movl %eax, %ebx / extract model
shrl $4, %ebx / from bits [7..4]
andl $0xF, %ebx
movl %ebx, mdac_datarel_cpu_model
movl %eax, %ebx / extract family
shrl $8, %ebx / from bits [11..8]
andl $0xF, %ebx
movl %ebx, mdac_datarel_cpu_family
mdac_datarel_cpu_identified:
popfl / restore original FLAGS
popl %edi
popl %esi
popl %ebx
ret
mdac_datarel_cpuis_i486:
movl $4, mdac_datarel_cpu_family
jmp mdac_datarel_cpu_identified
mdac_datarel_cpuis_i386:
movl $3, mdac_datarel_cpu_family
jmp mdac_datarel_cpu_identified
else
push ebx ; save %ebx
push esi ; save %esi
push edi ; save %edi
pushfd ; save FLAGS
pushfd ; push FLAGS value on stack
pop eax ; get FLAGS into AX
mov ecx, eax ; save copy of FLAGS
xor eax, EFL_AC ; flip AC bit for new FLAGS
push eax ; push new value on stack
popfd ; attempt setting FLAGS.AC
pushfd ; push resulting FLAGS on stack
pop eax ; get that into AX
cmp eax, ecx ; succeeded in flipping AC?
je mdac_datarel_cpuis_i386 ; AX is same as CX for i386 CPU
mov ecx, eax ; get original FLAGS again
xor eax, EFL_ID ; flip ID bit for new FLAGS
push eax ; push new value on stack
popfd ; attempt setting FLAGS.ID
pushfd ; push resulting FLAGS on stack
pop eax ; get that into AX
cmp eax, ecx ; succeeded in flipping ID?
je mdac_datarel_cpuis_i486 ; AX is same as CX for i486 CPU
mov eax, 1 ; set first cpuid parameter
db 0Fh
db 0A2h ; cpuid ; ; get CPU family-model-stepping
mov ebx, eax ; extract stepping id
and ebx, 0Fh ; from bits [3..0]
mov mdac_datarel_cpu_stepping, ebx
mov ebx, eax ; extract model
shr ebx, 4 ; from bits [7..4]
and ebx, 0Fh
mov mdac_datarel_cpu_model, ebx
mov ebx, eax ; extract family
shr ebx, 8 ; from bits [11..8]
and ebx, 0Fh
mov mdac_datarel_cpu_family, ebx
mdac_datarel_cpu_identified:
popfd ; restore original FLAGS
pop edi
pop esi
pop ebx
ret
mdac_datarel_cpuis_i486:
mov mdac_datarel_cpu_family, 4
jmp mdac_datarel_cpu_identified
mdac_datarel_cpuis_i386:
mov mdac_datarel_cpu_family, 3
jmp mdac_datarel_cpu_identified
stdENDP mdac_check_cputype
endif
if 0
/* compare only multiples of 4 bytes data */
/* u32bits mdac_datarel_fastcmd4(src, dst, count)
.globl mdac_datarel_fastcmp4
mdac_datarel_fastcmp4:
movl 4(%esp), %edx / save source in edx
movl 8(%esp), %eax / save destination in eax
movl 12(%esp), %ecx / get the data transfer length
pushl %esi / save esi register
pushl %edi / save edi register
movl %eax, %edi / get destination memory address
movl %edx, %esi / get source memory address
shrl $2, %ecx
rep
scmpl / first move 4 bytes long
jne mdac_datarel_fastcmp_l1 / 2 instructions for jne and 2 for xorl
xorl %eax, %eax / eax was non zero because it contained address
mdac_datarel_fastcmp_l1:
popl %edi / restore edi register
popl %esi / restore esi register
ret
/* mdac_datarel_fillpat(dp, curpat, patinc, patlen) */
/* u32bits MLXFAR *dp, curpat, patinc, patlen; */
/* { */
/* for (; patlen; curpat += patinc, dp++, patlen--) */
/* *dp = curpat; */
/* } */
.globl mdac_datarel_fillpat
mdac_datarel_fillpat:
push %esi
movl 8(%esp), %esi /* get memory address */
movl 12(%esp), %eax /* get current pattern */
movl 16(%esp), %edx /* get pattern increment */
movl 20(%esp), %ecx /* get number of pattern to be filled */
mdac_datarel_fillpat_l1:
mov %eax, (%esi)
add %edx, %eax
add $4, %esi
loop mdac_datarel_fillpat_l1
pop %esi
ret
else
; compare only multiples of 4 bytes data */
; u32bits mdac_datarel_fastcmd4(src, dst, count)
cPublicProc mdac_datarel_fastcmp4, 3
mov edx, 4[esp] ; save source in edx
mov eax, 8[esp] ; save destination in eax
mov ecx, 12[esp] ; get the data transfer length
push esi ; save esi register
push edi ; save edi register
mov edi, eax ; get destination memory address
mov esi, edx ; get source memory address
shr ecx, 2
repe cmpsd
jne mdac_datarel_fastcmp_l1 ; 2 instructions for jne and 2 for xorl
xor eax, eax ; eax was non zero because it contained address
mdac_datarel_fastcmp_l1:
pop edi ; restore edi register
pop esi ; restore esi register
ret
stdENDP mdac_datarel_fastcmp4
;/* mdac_datarel_fillpat(dp, curpat, patinc, patlen) */
;/* u32bits MLXFAR *dp, curpat, patinc, patlen; */
;/* { */
;/* for (; patlen; curpat += patinc, dp++, patlen--) */
;/* *dp = curpat; */
;/* } */
cPublicProc mdac_datarel_fillpat, 4
push esi
mov esi, 8[esp] ;/* get memory address */
mov eax, 12[esp] ;/* get current pattern */
mov edx, 16[esp] ;/* get pattern increment */
mov ecx, 20[esp] ;/* get number of pattern to be filled */
mdac_datarel_fillpat_l1:
mov [esi], eax
add eax, edx
add esi, 4
loop mdac_datarel_fillpat_l1
pop esi
ret
stdENDP mdac_datarel_fillpat
endif
_TEXT ends
end
|
benchmark/misc/InstanceArgs.agda | cagix/agda | 1,989 | 16557 | module InstanceArgs where
data UnitMonoid : Set where
u : UnitMonoid
p : UnitMonoid → UnitMonoid → UnitMonoid
record Plus (A : Set) : Set where
infixl 6 _+_
field
_+_ : A → A → A
open Plus {{...}}
instance
plus-unitMonoid : Plus UnitMonoid
plus-unitMonoid = record { _+_ = p }
bigValue : UnitMonoid
bigValue =
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u +
u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u + u
|
Task/XML-Output/Ada/xml-output-2.ada | LaudateCorpus1/RosettaCodeData | 1 | 6887 | <gh_stars>1-10
with Ada.Wide_Wide_Text_IO;
with League.Strings;
with XML.SAX.Attributes;
with XML.SAX.Pretty_Writers;
procedure Main is
function "+"
(Item : Wide_Wide_String) return League.Strings.Universal_String
renames League.Strings.To_Universal_String;
type Remarks is record
Name : League.Strings.Universal_String;
Remark : League.Strings.Universal_String;
end record;
type Remarks_Array is array (Positive range <>) of Remarks;
------------
-- Output --
------------
procedure Output (Remarks : Remarks_Array) is
Writer : XML.SAX.Pretty_Writers.SAX_Pretty_Writer;
Attributes : XML.SAX.Attributes.SAX_Attributes;
begin
Writer.Set_Offset (2);
Writer.Start_Document;
Writer.Start_Element (Qualified_Name => +"CharacterRemarks");
for J in Remarks'Range loop
Attributes.Clear;
Attributes.Set_Value (+"name", Remarks (J).Name);
Writer.Start_Element
(Qualified_Name => +"Character", Attributes => Attributes);
Writer.Characters (Remarks (J).Remark);
Writer.End_Element (Qualified_Name => +"Character");
end loop;
Writer.End_Element (Qualified_Name => +"CharacterRemarks");
Writer.End_Document;
Ada.Wide_Wide_Text_IO.Put_Line (Writer.Text.To_Wide_Wide_String);
end Output;
begin
Output
(((+"April", +"Bubbly: I'm > Tam and <= Emily"),
(+"<NAME>", +"Burns: ""When chapman billies leave the street ..."""),
(+"Emily", +"Short & shrift")));
end Main;
|
Lens/Operators.agda | oisdk/agda-playground | 6 | 3489 | <reponame>oisdk/agda-playground<gh_stars>1-10
{-# OPTIONS --safe --cubical #-}
module Lens.Operators where
open import Prelude
open import Lens.Definition
infixl 4 getter setter
getter : Lens A B → A → B
getter l xs = get (fst l xs)
syntax getter l xs = xs [ l ]
setter : Lens A B → A → B → A
setter l xs = set (fst l xs)
syntax setter l xs x = xs [ l ]≔ x
|
engine/pikachu_movement.asm | adhi-thirumala/EvoYellow | 16 | 84345 | ApplyPikachuMovementData_::
ld a, b
ld [wPikachuMovementScriptBank], a
ld a, l
ld [wPikachuMovementScriptAddress], a
ld a, h
ld [wPikachuMovementScriptAddress + 1], a
call .SwapSpriteStateData
.loop
call LoadPikachuMovementCommandData
jr nc, .done
call ExecutePikachuMovementCommand
jr .loop
.done
call .SwapSpriteStateData
call DelayFrame
ret
.SwapSpriteStateData:
ld a, [wUpdateSpritesEnabled]
push af
ld a, $ff
ld [wUpdateSpritesEnabled], a
push hl
push de
push bc
ld hl, wPlayerSpriteStateData1
ld de, wPikachuSpriteStateData1
ld c, $10
call .SwapBytes
ld hl, wPlayerSpriteStateData2
ld de, wPikachuSpriteStateData2
ld c, $10
call .SwapBytes
pop bc
pop de
pop hl
pop af
ld [wUpdateSpritesEnabled], a
ret
.SwapBytes:
ld b, [hl]
ld a, [de]
ld [hli], a
ld a, b
ld [de], a
inc de
dec c
jr nz, .SwapBytes
ret
LoadPikachuMovementCommandData:
call GetPikachuMovementScriptByte
cp $3f
ret z
ld c, a
ld b, 0
ld hl, PikachuMovementDatabase
add hl, bc
add hl, bc
add hl, bc
add hl, bc
ld a, [hli]
ld [wCurPikaMovementFunc1], a
ld a, [hli]
cp $80
jr nz, .no_param
call GetPikachuMovementScriptByte
.no_param
ld [wCurPikaMovementParam1], a
ld a, [hli]
ld [wCurPikaMovementFunc2], a
ld a, [hli]
cp $80
jr nz, .no_param2
call GetPikachuMovementScriptByte
.no_param2
ld [wCurPikaMovementParam2], a
xor a
ld [wd451], a
scf
ret
ExecutePikachuMovementCommand:
xor a
ld [wPikachuMovementFlags], a
ld [wPikachuStepTimer], a
ld [wPikachuStepSubtimer], a
ld a, [wPlayerGrassPriority]
push af
.loop
ld bc, wPlayerSpriteStateData1 ; Currently holds Pikachu's sprite state data
ld a, [wCurPikaMovementFunc1]
ld hl, PikaMovementFunc1Jumptable
call .JumpTable
ld a, [wCurPikaMovementFunc2]
ld hl, PikaMovementFunc2Jumptable
call .JumpTable
call GetCoordsForPikachuShadow
call AnimatePikachuShadow
call DelayFrame
call DelayFrame
ld hl, wPikachuMovementFlags
bit 7, [hl]
jr z, .loop
pop af
ld [wPlayerGrassPriority], a
scf
ret
.JumpTable:
ld e, a
ld d, 0
add hl, de
add hl, de
ld a, [hli]
ld h, [hl]
ld l, a
jp [hl]
GetCoordsForPikachuShadow:
ld hl, wPlayerSpriteImageIdx - wPlayerSpriteStateData1
add hl, bc
ld a, [wCurPikaMovementSpriteImageIdx]
ld [hl], a
ld a, [wPikaSpriteY]
ld d, a
ld a, [wPikachuMovementYOffset]
add d
ld hl, wPlayerYPixels - wPlayerSpriteStateData1
add hl, bc
ld [hl], a
ld a, [wPikaSpriteX]
ld d, a
ld a, [wPikachuMovementXOffset]
add d
ld hl, wPlayerXPixels - wPlayerSpriteStateData1
add hl, bc
ld [hl], a
ld hl, wPikachuMovementFlags
bit 6, [hl]
ret z
ld hl, wPlayerGrassPriority - wPlayerSpriteStateData1
add hl, bc
ld [hl], 0
ret
AnimatePikachuShadow:
ld hl, wPikachuMovementFlags
bit 6, [hl]
res 6, [hl]
ld hl, wd736
res 6, [hl]
ret z
set 6, [hl]
call LoadPikachuShadowOAMData
ret
PikachuMovementDatabase:
db $01, 1 - 1, $00, 1 - 1 ; $00 start
db $03, $80, $01, 1 - 1 ; $01
db $04, $80, $01, 1 - 1 ; $02
db $05, $80, $01, 1 - 1 ; $03
db $06, $80, $01, 1 - 1 ; $04
db $07, $80, $01, 1 - 1 ; $05
db $08, $80, $01, 1 - 1 ; $06
db $09, $80, $01, 1 - 1 ; $07
db $0a, $80, $01, 1 - 1 ; $08
db $03, $80, $06, 1 - 1 ; $09
db $04, $80, $06, 1 - 1 ; $0a
db $05, $80, $06, 1 - 1 ; $0b
db $06, $80, $06, 1 - 1 ; $0c
db $07, $80, $06, 1 - 1 ; $0d
db $08, $80, $06, 1 - 1 ; $0e
db $09, $80, $06, 1 - 1 ; $0f
db $0a, $80, $06, 1 - 1 ; $10
db $03, $80, $03, $80 ; $11
db $04, $80, $03, $80 ; $12
db $05, $80, $03, $80 ; $13
db $06, $80, $03, $80 ; $14
db $07, $80, $03, $80 ; $15
db $08, $80, $03, $80 ; $16
db $09, $80, $03, $80 ; $17
db $0a, $80, $03, $80 ; $18
db $03, $80, $07, $80 ; $19
db $04, $80, $07, $80 ; $1a
db $05, $80, $07, $80 ; $1b
db $06, $80, $07, $80 ; $1c
db $0b, (1 << 5) | 8 - 1, $02, 1 - 1 ; $1d step down
db $0c, (1 << 5) | 8 - 1, $02, 1 - 1 ; $1e step up
db $0d, (1 << 5) | 8 - 1, $02, 1 - 1 ; $1f step left
db $0e, (1 << 5) | 8 - 1, $02, 1 - 1 ; $20 step right
db $0f, (1 << 5) | 8 - 1, $02, 1 - 1 ; $21 step down left
db $10, (1 << 5) | 8 - 1, $02, 1 - 1 ; $22 step down right
db $11, (1 << 5) | 8 - 1, $02, 1 - 1 ; $23 step up left
db $12, (1 << 5) | 8 - 1, $02, 1 - 1 ; $24 step up right
db $0b, 16 - 1, $02, 1 - 1 ; $25 slide down
db $0c, 16 - 1, $02, 1 - 1 ; $26 slide up
db $0d, 16 - 1, $02, 1 - 1 ; $27 slide left
db $0e, 16 - 1, $02, 1 - 1 ; $28 slide right
db $0f, 16 - 1, $02, 1 - 1 ; $29 slide down left
db $10, 16 - 1, $02, 1 - 1 ; $2a slide down right
db $11, 16 - 1, $02, 1 - 1 ; $2b slide up left
db $12, 16 - 1, $02, 1 - 1 ; $2c slide up right
db $0b, 16 - 1, $08, (1 << 4) | 8 - 1 ; $2d hop down
db $0c, 16 - 1, $08, (1 << 4) | 8 - 1 ; $2e hop up
db $0d, 16 - 1, $08, (1 << 4) | 8 - 1 ; $2f hop left
db $0e, 16 - 1, $08, (1 << 4) | 8 - 1 ; $30 hop right
db $0f, 16 - 1, $08, (1 << 4) | 8 - 1 ; $31 hop down left
db $10, 16 - 1, $08, (1 << 4) | 8 - 1 ; $32 hop down right
db $11, 16 - 1, $08, (1 << 4) | 8 - 1 ; $33 hop up left
db $12, 16 - 1, $08, (1 << 4) | 8 - 1 ; $34 hop up right
db $13, 16 - 1, $06, 1 - 1 ; $35 look down
db $14, 16 - 1, $06, 1 - 1 ; $36 look up
db $15, 16 - 1, $06, 1 - 1 ; $37 look left
db $16, 16 - 1, $06, 1 - 1 ; $38 look right
db $02, $80, $04, 1 - 1 ; $39
db $02, $80, $05, 1 - 1 ; $3a
db $02, $80, $03, $80 ; $3b
db $02, $80, $07, $80 ; $3c
db $02, $80, $09, $80 ; $3d
db $02, $80, $06, 1 - 1 ; $3e
PikaMovementFunc1Jumptable:
dw PikaMovementFunc1_EndCommand_ ; 00
dw PikaMovementFunc1_LoadPikachuCurrentPosition ; 01
dw PikaMovementFunc1_DelayFrames ; 02
dw PikaMovementFunc1_WalkInCurrentFacingDirection ; 03
dw PikaMovementFunc1_WalkInOppositeFacingDirection ; 04
dw PikaMovementFunc1_StepTurningCounterclockwise ; 05
dw PikaMovementFunc1_StepTurningClockwise ; 06
dw PikaMovementFunc1_StepForwardLeft ; 07
dw PikaMovementFunc1_StepForwardRight ; 08
dw PikaMovementFunc1_StepBackwardLeft ; 09
dw PikaMovementFunc1_StepBackwardRight ; 0a
dw PikaMovementFunc1_MoveDown ; 0b
dw PikaMovementFunc1_MoveUp ; 0c
dw PikaMovementFunc1_MoveLeft ; 0d
dw PikaMovementFunc1_MoveRight ; 0e
dw PikaMovementFunc1_MoveDownLeft ; 0f
dw PikaMovementFunc1_MoveDownRight ; 10
dw PikaMovementFunc1_MoveUpLeft ; 11
dw PikaMovementFunc1_MoveUpRight ; 12
dw PikaMovementFunc1_LookDown ; 13
dw PikaMovementFunc1_LookUp ; 14
dw PikaMovementFunc1_LookLeft ; 15
dw PikaMovementFunc1_LookRight ; 16
dw PikaMovementFunc1_EndCommand_ ; 17
PikaMovementFunc1_EndCommand:
ld a, [wPikachuMovementFlags]
set 7, a
ld [wPikachuMovementFlags], a
ret
PikaMovementFunc1_EndCommand_:
call PikaMovementFunc1_EndCommand
ret
PikaMovementFunc1_LoadPikachuCurrentPosition:
ld hl, wPlayerYPixels - wPlayerSpriteStateData1
add hl, bc
ld a, [hl]
ld [wPikaSpriteY], a
ld hl, wPlayerXPixels - wPlayerSpriteStateData1
add hl, bc
ld a, [hl]
ld [wPikaSpriteX], a
xor a
ld [wPikachuMovementYOffset], a
ld [wPikachuMovementXOffset], a
call PikaMovementFunc1_EndCommand
ret
PikaMovementFunc1_DelayFrames:
call CheckPikachuStepTimer1
ret nz
call PikaMovementFunc1_EndCommand
ret
PikaMovementFunc1_WalkInCurrentFacingDirection:
call GetPikachuFacing
jr PikaMovementFunc1_ApplyStepVector
PikaMovementFunc1_WalkInOppositeFacingDirection:
call GetPikachuFacing
xor %100
jr PikaMovementFunc1_ApplyStepVector
PikaMovementFunc1_StepTurningCounterclockwise:
call GetPikachuFacing
ld hl, .Data
call PikaMovementFunc1_GetNextFacing
jr PikaMovementFunc1_ApplyStepVector
.Data:
db SPRITE_FACING_DOWN, PIKASTEPDIR_RIGHT << 2
db SPRITE_FACING_UP, PIKASTEPDIR_LEFT << 2
db SPRITE_FACING_LEFT, PIKASTEPDIR_DOWN << 2
db SPRITE_FACING_RIGHT, PIKASTEPDIR_UP << 2
db $ff
PikaMovementFunc1_StepTurningClockwise:
call GetPikachuFacing
ld hl, .Data
call PikaMovementFunc1_GetNextFacing
jr PikaMovementFunc1_ApplyStepVector
.Data:
db SPRITE_FACING_DOWN, PIKASTEPDIR_LEFT << 2
db SPRITE_FACING_UP, PIKASTEPDIR_RIGHT << 2
db SPRITE_FACING_LEFT, PIKASTEPDIR_UP << 2
db SPRITE_FACING_RIGHT, PIKASTEPDIR_DOWN << 2
db $ff
PikaMovementFunc1_StepForwardLeft:
call GetPikachuFacing
ld hl, .Data
call PikaMovementFunc1_GetNextFacing
jr PikaMovementFunc1_ApplyStepVector
.Data:
db SPRITE_FACING_DOWN, PIKASTEPDIR_DOWN_RIGHT << 2
db SPRITE_FACING_UP, PIKASTEPDIR_UP_LEFT << 2
db SPRITE_FACING_LEFT, PIKASTEPDIR_DOWN_LEFT << 2
db SPRITE_FACING_RIGHT, PIKASTEPDIR_UP_RIGHT << 2
PikaMovementFunc1_StepForwardRight:
call GetPikachuFacing
ld hl, .Data
call PikaMovementFunc1_GetNextFacing
jr PikaMovementFunc1_ApplyStepVector
.Data:
db SPRITE_FACING_DOWN, PIKASTEPDIR_DOWN_LEFT << 2
db SPRITE_FACING_UP, PIKASTEPDIR_UP_RIGHT << 2
db SPRITE_FACING_LEFT, PIKASTEPDIR_UP_LEFT << 2
db SPRITE_FACING_RIGHT, PIKASTEPDIR_DOWN_RIGHT << 2
PikaMovementFunc1_StepBackwardLeft:
call GetPikachuFacing
ld hl, .Data
call PikaMovementFunc1_GetNextFacing
jr PikaMovementFunc1_ApplyStepVector
.Data:
db SPRITE_FACING_DOWN, PIKASTEPDIR_UP_RIGHT << 2
db SPRITE_FACING_UP, PIKASTEPDIR_DOWN_LEFT << 2
db SPRITE_FACING_LEFT, PIKASTEPDIR_DOWN_RIGHT << 2
db SPRITE_FACING_RIGHT, PIKASTEPDIR_UP_LEFT << 2
PikaMovementFunc1_StepBackwardRight:
call GetPikachuFacing
ld hl, .Data
call PikaMovementFunc1_GetNextFacing
jr PikaMovementFunc1_ApplyStepVector
.Data:
db SPRITE_FACING_DOWN, PIKASTEPDIR_UP_LEFT << 2
db SPRITE_FACING_UP, PIKASTEPDIR_DOWN_RIGHT << 2
db SPRITE_FACING_LEFT, PIKASTEPDIR_UP_RIGHT << 2
db SPRITE_FACING_RIGHT, PIKASTEPDIR_DOWN_LEFT << 2
PikaMovementFunc1_ApplyStepVector:
rrca
rrca
and $7
ld e, a
call GetPikachuStepVectorMagnitude
ld d, a
call UpdatePikachuPosition
call CheckPikachuStepTimer1
ret nz
call PikaMovementFunc1_EndCommand
ret
PikaMovementFunc1_GetNextFacing:
push de
ld d, a
.loop
ld a, [hli]
cp d
jr z, .found
inc hl
cp $ff
jr nz, .loop
pop de
ret
.found
ld a, [hl]
pop de
scf
ret
PikaMovementFunc1_MoveDown:
ld a, PIKASTEPDIR_DOWN
jr PikaMovementFunc1_ApplyFacingAndMove
PikaMovementFunc1_MoveUp:
ld a, PIKASTEPDIR_UP
jr PikaMovementFunc1_ApplyFacingAndMove
PikaMovementFunc1_MoveLeft:
ld a, PIKASTEPDIR_LEFT
jr PikaMovementFunc1_ApplyFacingAndMove
PikaMovementFunc1_MoveRight:
ld a, PIKASTEPDIR_RIGHT
jr PikaMovementFunc1_ApplyFacingAndMove
PikaMovementFunc1_MoveDownLeft:
ld e, PIKASTEPDIR_DOWN_LEFT
jr PikaMovementFunc1_MoveDiagonally
PikaMovementFunc1_MoveDownRight:
ld e, PIKASTEPDIR_DOWN_RIGHT
jr PikaMovementFunc1_MoveDiagonally
PikaMovementFunc1_MoveUpLeft:
ld e, PIKASTEPDIR_UP_LEFT
jr PikaMovementFunc1_MoveDiagonally
PikaMovementFunc1_MoveUpRight:
ld e, PIKASTEPDIR_UP_RIGHT
jr PikaMovementFunc1_MoveDiagonally
PikaMovementFunc1_ApplyFacingAndMove:
ld e, a
call SetPikachuFacing
PikaMovementFunc1_MoveDiagonally:
call GetPikachuStepVectorMagnitude
ld d, a
push de
call UpdatePikachuPosition
pop de
call CheckPikachuStepTimer1
ret nz
ld a, e
call ApplyPikachuStepVector
call PikaMovementFunc1_EndCommand
ret
PikaMovementFunc1_LookDown:
ld a, PIKASTEPDIR_DOWN
jr PikaMovementFunc1_ApplyFacing
PikaMovementFunc1_LookUp:
ld a, PIKASTEPDIR_UP
jr PikaMovementFunc1_ApplyFacing
PikaMovementFunc1_LookLeft:
ld a, PIKASTEPDIR_LEFT
jr PikaMovementFunc1_ApplyFacing
PikaMovementFunc1_LookRight:
ld a, PIKASTEPDIR_RIGHT
jr PikaMovementFunc1_ApplyFacing
PikaMovementFunc1_ApplyFacing:
call SetPikachuFacing
call PikaMovementFunc1_EndCommand
ret
UpdatePikachuPosition:
push de
ld d, 0
ld hl, .Jumptable
add hl, de
add hl, de
ld a, [hli]
ld h, [hl]
ld l, a
pop de
ld a, d
jp [hl]
.Jumptable:
dw .Down
dw .Up
dw .Left
dw .Right
dw .DownLeft
dw .DownRight
dw .UpLeft
dw .UpRight
.Down:
ld d, 0
ld e, a
jr .ApplyVector
.Up:
ld d, 0
cpl
inc a
ld e, a
jr .ApplyVector
.Left:
cpl
inc a
ld d, a
ld e, 0
jr .ApplyVector
.Right:
ld d, a
ld e, 0
jr .ApplyVector
.DownLeft:
ld e, a
cpl
inc a
ld d, a
jr .ApplyVector
.DownRight:
ld e, a
ld d, a
jr .ApplyVector
.UpLeft:
cpl
inc a
ld e, a
ld d, a
jr .ApplyVector
.UpRight:
ld d, a
cpl
inc a
ld e, a
jr .ApplyVector
.ApplyVector:
ld a, [wPikaSpriteX]
add d
ld [wPikaSpriteX], a
ld a, [wPikaSpriteY]
add e
ld [wPikaSpriteY], a
ret
PikaMovementFunc2Jumptable:
dw PikaMovementFunc2_ResetFrameCounterAndFaceCurrent ; 0
dw PikaMovementFunc2_UpdateSpriteImageIdxWithPreviousImageIdxDirection ; 1
dw PikaMovementFunc2_UpdateSpriteImageIdxWithFacing ; 2
dw PikaMovementFunc2_TurnParameter ; 3
dw PikaMovementFunc2_TurnClockwise ; 4
dw PikaMovementFunc2_TurnCounterClockwise ; 5
dw PikaMovementFunc2_CopySpriteImageIdxDirectionToSpriteImageIdx ; 6
dw PikaMovementFunc2_UpdateJumpWithPreviousImageIdxDirection ; 7
dw PikaMovementFunc2_UpdateJumpWithFacing ; 8
dw PikaMovementFunc2_CopyFacingToJump ; 9
dw PikaMovementFunc2_nop ; 10
PikaMovement_SetSpawnShadow:
ld hl, wPikachuMovementFlags
set 6, [hl]
ret
PikaMovementFunc2_ResetFrameCounterAndFaceCurrent:
ld hl, wPlayerIntraAnimFrameCounter - wPlayerSpriteStateData1
add hl, bc
xor a
ld [hli], a
ld [hl], a
call PikaMovementFunc2_GetImageBaseOffset
ld d, a
call GetPikachuFacing
or d
ld [wCurPikaMovementSpriteImageIdx], a
ret
PikaMovementFunc2_nop:
ret
PikaMovementFunc2_CopySpriteImageIdxDirectionToSpriteImageIdx:
call PikaMovementFunc2_GetImageBaseOffset
ld d, a
call PikaMovementFunc2_GetSpriteImageIdxDirection
or d
ld [wCurPikaMovementSpriteImageIdx], a
ret
PikaMovementFunc2_UpdateSpriteImageIdxWithFacing:
call PikaMovementFunc2_GetImageBaseOffset
ld d, a
call GetPikachuFacing
or d
ld d, a
jr PikaMovementFunc2_UpdateSpriteImageIdx
PikaMovementFunc2_UpdateSpriteImageIdxWithPreviousImageIdxDirection:
call PikaMovementFunc2_GetImageBaseOffset
ld d, a
call PikaMovementFunc2_GetSpriteImageIdxDirection
or d
ld d, a
PikaMovementFunc2_UpdateSpriteImageIdx:
ld hl, wPlayerAnimFrameCounter - wPlayerSpriteStateData1
add hl, bc
call CheckPikachuStepTimer2 ; does not preserve hl
jr nz, .skip
inc [hl]
.skip
ld a, [hl]
rrca
rrca
and 3
or d
ld [wCurPikaMovementSpriteImageIdx], a
ret
PikaMovementFunc2_UpdateJumpWithFacing:
call GetPikachuFacing
ld d, a
jr PikaMovementFunc2_UpdateJump
PikaMovementFunc2_UpdateJumpWithPreviousImageIdxDirection:
call PikaMovementFunc2_GetSpriteImageIdxDirection
ld d, a
PikaMovementFunc2_UpdateJump:
call PikaMovementFunc2_GetImageBaseOffset
or d
ld d, a
call PikaMovementFunc2_Timer
or d
ld [wCurPikaMovementSpriteImageIdx], a
call PikaMovementFunc_Sine
ld [wPikachuMovementYOffset], a
and a
ret z
call PikaMovement_SetSpawnShadow
ret
PikaMovementFunc2_CopyFacingToJump:
call GetPikachuFacing
ld d, a
call PikaMovementFunc2_GetImageBaseOffset
or d
ld [wCurPikaMovementSpriteImageIdx], a
call PikaMovementFunc_Sine
ld [wPikachuMovementYOffset], a
ret
PikaMovementFunc2_TurnParameter:
ld a, [wCurPikaMovementParam2]
and $40
cp $40
jr z, PikaMovementFunc2_TurnClockwise
jr PikaMovementFunc2_TurnCounterClockwise
PikaMovementFunc2_TurnClockwise:
call PikaMovementFunc2_GetSpriteImageIdxDirection
ld d, a
call CheckPikachuStepTimer2
jr nz, .skip
ld hl, Data_fd731
.loop
ld a, [hli]
cp d
jr nz, .loop
ld d, [hl]
.skip
call PikaMovementFunc2_GetImageBaseOffset
or d
ld [wCurPikaMovementSpriteImageIdx], a
ret
PikaMovementFunc2_TurnCounterClockwise:
call PikaMovementFunc2_GetSpriteImageIdxDirection
ld d, a
call CheckPikachuStepTimer2
jr nz, .skip
ld hl, Data_fd731End
.loop
ld a, [hld]
cp d
jr nz, .loop
ld d, [hl]
.skip
call PikaMovementFunc2_GetImageBaseOffset
or d
ld [wCurPikaMovementSpriteImageIdx], a
ret
Data_fd731:
db SPRITE_FACING_DOWN
db SPRITE_FACING_LEFT
db SPRITE_FACING_UP
db SPRITE_FACING_RIGHT
db SPRITE_FACING_DOWN
Data_fd731End:
PikaMovementFunc2_Timer:
push hl
ld hl, wPlayerIntraAnimFrameCounter - wPlayerSpriteStateData1
add hl, bc
ld a, [hl]
inc a
and $3
ld [hli], a
jr nz, .load_pop
ld a, [hl]
inc a
and $3
ld [hl], a
.load_pop
ld a, [hl]
pop hl
ret
PikaMovementFunc2_GetImageBaseOffset:
push hl
ld hl, wPlayerSpriteImageBaseOffset - wPlayerSpriteStateData1
add hl, bc
ld a, [hl]
dec a
swap a
pop hl
ret
PikaMovementFunc2_GetSpriteImageIdxDirection:
push hl
ld hl, wPlayerSpriteImageIdx - wPlayerSpriteStateData1
add hl, bc
ld a, [hl]
and $c
pop hl
ret
GetPikachuFacing:
push hl
ld hl, wPlayerFacingDirection - wPlayerSpriteStateData1
add hl, bc
ld a, [hl]
and $c
pop hl
ret
SetPikachuFacing:
push hl
ld hl, wPlayerFacingDirection - wPlayerSpriteStateData1
add hl, bc
add a
add a
and $c
ld [hl], a
pop hl
ret
CheckPikachuStepTimer1:
ld hl, wPikachuStepTimer
inc [hl]
ld a, [wCurPikaMovementParam1]
and $1f
inc a
cp [hl]
ret nz
ld [hl], 0
ret
GetPikachuStepVectorMagnitude:
; *XX*****
ld a, [wCurPikaMovementParam1]
swap a
rrca
and $3
inc a
ret
CheckPikachuStepTimer2:
ld hl, wPikachuStepSubtimer
inc [hl]
ld a, [wCurPikaMovementParam2]
and $f
inc a
cp [hl]
ret nz
ld [hl], 0
ret
PikaMovementFunc_Sine:
call .GetArgument
ld a, [wPikachuStepSubtimer]
add e
ld [wPikachuStepSubtimer], a
add $20
ld e, a
push hl
push bc
call Sine_e
pop bc
pop hl
ret
.GetArgument:
ld a, [wCurPikaMovementParam2]
and $f
inc a
ld d, a
ld a, [wCurPikaMovementParam2]
swap a
and $7
ld e, a
ld a, 1
jr z, .okay
.loop
add a
dec e
jr nz, .loop
.okay
ld e, a
ret
ApplyPikachuStepVector:
push bc
ld c, a
ld b, 0
ld hl, .StepVectors
add hl, bc
add hl, bc
ld d, [hl]
inc hl
ld e, [hl]
pop bc
ld hl, wPlayerMapY - wPlayerSpriteStateData1
add hl, bc
ld a, [hl]
add e
ld [hli], a
ld a, [hl]
add d
ld [hl], a
ret
.StepVectors:
db 0, 1
db 0, -1
db -1, 0
db 1, 0
db -1, 1
db 1, 1
db -1, -1
db 1, -1
LoadPikachuShadowOAMData:
push bc
push de
push hl
ld bc, wOAMBuffer + 4 * 36
ld a, [wPikaSpriteY]
ld e, a
ld a, [wPikaSpriteX]
ld d, a
ld hl, .OAMData
call .LoadOAMData
pop hl
pop de
pop bc
ret
.OAMData:
db 2
db $0c, $00, $ff, 0
db $0c, $08, $ff, 1 << OAM_X_FLIP
.LoadOAMData:
ld a, e
add $10
ld e, a
ld a, d
add $8
ld d, a
ld a, [hli]
.loop
push af
ld a, [hli]
add e
ld [bc], a
inc bc
ld a, [hli]
add d
ld [bc], a
inc bc
ld a, [hli]
ld [bc], a
inc bc
ld a, [hli]
ld [bc], a
inc bc
pop af
dec a
jr nz, .loop
ret
LoadPikachuShadowIntoVRAM:
ld hl, vNPCSprites2 + $7f * $10
ld de, LedgeHoppingShadowGFX_3F
lb bc, BANK(LedgeHoppingShadowGFX_3F), (LedgeHoppingShadowGFX_3FEnd - LedgeHoppingShadowGFX_3F) / 8
jp CopyVideoDataDoubleAlternate
LedgeHoppingShadowGFX_3F:
INCBIN "gfx/ledge_hopping_shadow.1bpp"
LedgeHoppingShadowGFX_3FEnd:
LoadPikachuBallIconIntoVRAM:
ld hl, vNPCSprites2 + $7e * $10
ld de, GFX_fd86b
lb bc, BANK(GFX_fd86b), 1
jp CopyVideoDataDoubleAlternate
Func_fd851:
ld hl, vNPCSprites + $c * $10
ld a, 3
.loop
push af
push hl
ld de, GFX_fd86b
lb bc, BANK(GFX_fd86b), 4
call CopyVideoDataAlternate
pop hl
ld de, 4 * $10
add hl, de
pop af
dec a
jr nz, .loop
ret
GFX_fd86b:
INCBIN "gfx/unknown_fd86b.2bpp"
LoadPikachuSpriteIntoVRAM:
call IsPikachuFirst
cp 25
ld a,0
jr nz, .load2
call IsStarterPikachuInOurParty2
jr nc, .Raichu
ld de, PikachuSprite
;lb bc, BANK(PikachuSprite), (SandshrewSprite - PikachuSprite) / 32
jr .go
.Raichu
ld de, RaichuSprite
.go
lb bc, BANK(PikachuSprite), (SandshrewSprite - PikachuSprite) / 32
ld hl, vNPCSprites + $c * $10
push bc
call CopyVideoDataAlternate
call IsStarterRaichuInOurParty
jr nc, .Pikachu2
ld de, RaichuSprite + $c * $10
jr .goo
.Pikachu2
ld de, PikachuSprite + $c * $10
.goo
ld hl, vNPCSprites2 + $c * $10
ld a, [h_0xFFFC]
and a
jr z, .load
callab IsStarterRaichuInOurParty
jr nc, .Pikachu3
ld de, RaichuSprite + $c * $10
jr .goo2
.Pikachu3
ld de, PikachuSprite + $c * $10
.goo2
ld hl, vNPCSprites2 + $4c * $10
.load
pop bc
call CopyVideoDataAlternate
.load2
call LoadPikachuShadowIntoVRAM
call LoadPikachuBallIconIntoVRAM
ret
PikachuPewterPokecenterCheck:
ld a, [wCurMap]
cp PEWTER_POKECENTER
ret nz
call EnablePikachuFollowingPlayer
call StarterPikachuEmotionCommand_turnawayfromplayer
ret
PikachuFanClubCheck:
ld a, [wCurMap]
cp POKEMON_FAN_CLUB
ret nz
call EnablePikachuFollowingPlayer
call StarterPikachuEmotionCommand_turnawayfromplayer
ret
PikachuBillsHouseCheck:
ld a, [wCurMap]
cp BILLS_HOUSE
ret nz
call EnablePikachuFollowingPlayer
ret
Pikachu_LoadCurrentMapViewUpdateSpritesAndDelay3:
call LoadCurrentMapView
call UpdateSprites
call Delay3
ret
Cosine_e: ; cosine?
ld a, e
add $10
jr asm_fd908
Sine_e: ; sine?
ld a, e
asm_fd908
and $3f
cp $20
jr nc, .asm_fd913
call GetSine
ld a, h
ret
.asm_fd913
and $1f
call GetSine
ld a, h
cpl
inc a
ret
GetSine:
ld e, a
ld a, d
ld d, 0
ld hl, SineWave_3f
add hl, de
add hl, de
ld e, [hl]
inc hl
ld d, [hl]
ld hl, 0
.asm_fd92b
srl a
jr nc, .asm_fd930
add hl, de
.asm_fd930
sla e
rl d
and a
jr nz, .asm_fd92b
ret
SineWave_3f:
sine_wave $100
|
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca_notsx.log_21829_624.asm | ljhsiun2/medusa | 9 | 245624 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %r8
push %r9
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1318, %rbx
nop
nop
nop
nop
sub %r8, %r8
movb $0x61, (%rbx)
nop
nop
nop
nop
add %r8, %r8
lea addresses_WC_ht+0xffb0, %r12
nop
sub $17212, %rsi
movw $0x6162, (%r12)
nop
nop
nop
nop
nop
add $28711, %rsi
lea addresses_normal_ht+0x193b0, %r8
clflush (%r8)
nop
nop
add %r9, %r9
mov $0x6162636465666768, %r10
movq %r10, %xmm1
movups %xmm1, (%r8)
cmp %r14, %r14
lea addresses_UC_ht+0x12f18, %r14
nop
sub %rbx, %rbx
movl $0x61626364, (%r14)
nop
inc %r8
lea addresses_normal_ht+0x6184, %rsi
lea addresses_A_ht+0xa1b0, %rdi
nop
inc %r10
mov $37, %rcx
rep movsb
nop
nop
nop
nop
and $7939, %rsi
lea addresses_WC_ht+0x1330, %rsi
lea addresses_A_ht+0x14c20, %rdi
clflush (%rdi)
nop
nop
nop
nop
add $24815, %r8
mov $46, %rcx
rep movsl
nop
sub %rbx, %rbx
lea addresses_A_ht+0x1edc0, %rsi
lea addresses_WT_ht+0x1e5b0, %rdi
sub $61698, %r12
mov $75, %rcx
rep movsq
nop
nop
nop
nop
and %r9, %r9
lea addresses_WT_ht+0x1efb0, %r9
nop
nop
nop
nop
mfence
movl $0x61626364, (%r9)
nop
nop
nop
xor %r10, %r10
lea addresses_WT_ht+0xe7b0, %rsi
lea addresses_normal_ht+0x19db0, %rdi
nop
nop
nop
nop
cmp %r8, %r8
mov $7, %rcx
rep movsw
nop
nop
add $31396, %rdi
lea addresses_WT_ht+0x1730, %rsi
lea addresses_D_ht+0xe486, %rdi
sub $41352, %r12
mov $93, %rcx
rep movsb
nop
nop
nop
nop
nop
and $55778, %rcx
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r9
pop %r8
pop %r14
pop %r12
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r8
push %rbp
push %rcx
push %rdx
push %rsi
// Store
lea addresses_A+0x1244, %r13
nop
nop
inc %rcx
movw $0x5152, (%r13)
nop
nop
sub %r13, %r13
// Store
lea addresses_UC+0x1a710, %r13
nop
nop
nop
nop
xor $44325, %rsi
movl $0x51525354, (%r13)
nop
nop
add $32288, %r13
// Store
lea addresses_WC+0xaab0, %r8
nop
and %rcx, %rcx
movw $0x5152, (%r8)
nop
nop
nop
add $19846, %rdx
// Store
lea addresses_A+0x2818, %rsi
nop
nop
nop
and %r8, %r8
movl $0x51525354, (%rsi)
nop
nop
nop
nop
and %r11, %r11
// Faulty Load
lea addresses_normal+0x107b0, %rcx
nop
nop
nop
nop
nop
xor $54951, %rsi
mov (%rcx), %rbp
lea oracles, %r11
and $0xff, %rbp
shlq $12, %rbp
mov (%r11,%rbp,1), %rbp
pop %rsi
pop %rdx
pop %rcx
pop %rbp
pop %r8
pop %r13
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'same': False, 'type': 'addresses_normal', 'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 0}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_A', 'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 2}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_UC', 'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 4}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_WC', 'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 8}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_A', 'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 2}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'same': True, 'type': 'addresses_normal', 'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 0}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_A_ht', 'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 3}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_WC_ht', 'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 5}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_normal_ht', 'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 10}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_UC_ht', 'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 3}}
{'OP': 'REPM', 'src': {'same': False, 'congruent': 2, 'type': 'addresses_normal_ht'}, 'dst': {'same': False, 'congruent': 6, 'type': 'addresses_A_ht'}}
{'OP': 'REPM', 'src': {'same': False, 'congruent': 7, 'type': 'addresses_WC_ht'}, 'dst': {'same': False, 'congruent': 2, 'type': 'addresses_A_ht'}}
{'OP': 'REPM', 'src': {'same': False, 'congruent': 4, 'type': 'addresses_A_ht'}, 'dst': {'same': False, 'congruent': 8, 'type': 'addresses_WT_ht'}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_WT_ht', 'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 10}}
{'OP': 'REPM', 'src': {'same': False, 'congruent': 9, 'type': 'addresses_WT_ht'}, 'dst': {'same': False, 'congruent': 9, 'type': 'addresses_normal_ht'}}
{'OP': 'REPM', 'src': {'same': False, 'congruent': 7, 'type': 'addresses_WT_ht'}, 'dst': {'same': False, 'congruent': 1, 'type': 'addresses_D_ht'}}
{'34': 21829}
34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34
*/
|
Windows/Detector/_Detector.asm | fplu/Detector | 15 | 17680 | <gh_stars>10-100
GLOBAL _ModifiedThread
GLOBAL _ThreadWhichModify
section .text ; makes this executable
align 4096 ; aligns on page size for both x86 and x64 architectures, ensure that _ModifiedThread and codeToModify are on the same page
_ThreadWhichModify:
mov byte[rel Sync], 1 ; Synchronize the thread, but too early in order to exploit the FIFO property of the processor cache.
mov byte[rel codeToModify + 1], 1 ; Transform 'mov eax, 0' into 'mov eax, 1'.
ret
_ModifiedThread:
cmp byte[rel Sync], 0 ; Wait for the synchronisation.
jz _ModifiedThread ;
;If a DBI is here, or a debug interrupts the detection will occur.
;In order to detect VM you should add several CPUID here (depending on your processor).
codeToModify: ; 0B8h is the opcode for mov eax, imm32, here imm32 is 0.
db 0B8h, 00h, 00h, 00h, 00h ; mov eax, 0
ret
section .data ; Makes this writable and ensure it is not in the same memory page than the code above.
Sync : db 0
|
source/web/tools/wsdl2ada/wsdl-assertions.adb | svn2github/matreshka | 24 | 26986 | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Tools Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2013, <NAME> <<EMAIL>> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the <NAME>, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
package body WSDL.Assertions is
WSDL_Assertion_Message :
constant array (WSDL_Assertion) of League.Strings.Universal_String
:= (Description_1001 =>
League.Strings.To_Universal_String ("not supported"),
Description_1002 =>
League.Strings.To_Universal_String ("not supported"),
Description_1003 =>
League.Strings.To_Universal_String ("not supported"),
Description_1004 =>
League.Strings.To_Universal_String ("not supported"),
Description_1005 =>
League.Strings.To_Universal_String
("invalid order of children elements of wsdl:decription element"),
Description_1006 =>
League.Strings.To_Universal_String ("not supported"),
Types_1007 =>
League.Strings.To_Universal_String ("not supported"),
Types_1008 =>
League.Strings.To_Universal_String ("not supported"),
Interface_1009 =>
League.Strings.To_Universal_String ("not supported"),
Interface_1010 =>
League.Strings.To_Universal_String
("name of the interface component must be unique"),
Interface_1011 =>
League.Strings.To_Universal_String
("list of extended interfaces must not contain duplicates"),
Interface_1012 =>
League.Strings.To_Universal_String ("not supported"),
InterfaceFault_1013 =>
League.Strings.To_Universal_String ("not supported"),
InterfaceFault_1014 =>
League.Strings.To_Universal_String ("not supported"),
InterfaceFault_1015 =>
League.Strings.To_Universal_String ("not supported"),
InterfaceFault_1016 =>
League.Strings.To_Universal_String ("not supported"),
InterfaceFault_1017 =>
League.Strings.To_Universal_String ("not supported"),
InterfaceOperation_1018 =>
League.Strings.To_Universal_String ("not supported"),
InterfaceOperation_1019 =>
League.Strings.To_Universal_String ("not supported"),
InterfaceOperation_1020 =>
League.Strings.To_Universal_String ("not supported"),
InterfaceOperation_1021 =>
League.Strings.To_Universal_String ("not supported"),
MEP_1022 =>
League.Strings.To_Universal_String ("MEP is not supported"),
InterfaceOperation_1023 =>
League.Strings.To_Universal_String ("not supported"),
MessageLabel_1024 =>
League.Strings.To_Universal_String ("enforced by construction"),
InterfaceMessageReference_1025 =>
League.Strings.To_Universal_String ("enforced by construction"),
InterfaceMessageReference_1026 =>
League.Strings.To_Universal_String ("enforced by construction"),
InterfaceMessageReference_1027 =>
League.Strings.To_Universal_String ("enforced by construction"),
InterfaceMessageReference_1028 =>
League.Strings.To_Universal_String ("enforced by construction"),
InterfaceMessageReference_1029 =>
League.Strings.To_Universal_String
("effective message label must be unique"),
MessageLabel_1030 =>
League.Strings.To_Universal_String
("no such placeholder message defined by the MEP"),
MessageLabel_1031 =>
League.Strings.To_Universal_String
("MEP has more than one placeholder message in this direction,"
& " message label must be specified"),
MessageLabel_1032 =>
League.Strings.To_Universal_String
("MEP doesn't have placeholder message with direction ""In"""),
MessageLabel_1033 =>
League.Strings.To_Universal_String
("MEP doesn't have placeholder message with direction ""Out"""),
MessageLabel_1034 =>
League.Strings.To_Universal_String
("MEP doesn't support fault in the ""In"" direction"),
MessageLabel_1035 =>
League.Strings.To_Universal_String
("MEP doesn't support fault in then ""Out"" direction"),
InterfaceFaultReference_1037 =>
League.Strings.To_Universal_String ("enforced by construction"),
InterfaceFaultReference_1038 =>
League.Strings.To_Universal_String ("enforced by construction"),
InterfaceFaultReference_1039 =>
League.Strings.To_Universal_String
("combination of its interface fault and message label must be"
& " unique"),
InterfaceFaultReference_1040 =>
League.Strings.To_Universal_String
("MEP has more than one fault in this direction, message label"
& " must be specified"),
MessageLabel_1041 =>
League.Strings.To_Universal_String
("MEP has more than one placeholder message in this direction,"
& " message label must be specified"),
MessageLabel_1042 =>
League.Strings.To_Universal_String
("no such placeholder message defined by the MEP"),
MessageLabel_1043 =>
League.Strings.To_Universal_String
("MEP doesn't have placeholder message with this direction"),
Binding_1044 =>
League.Strings.To_Universal_String
("interface must be specified for binding when it specify"
& " operation or fault binding details"),
Binding_1045 =>
League.Strings.To_Universal_String ("not supported"),
Binding_1046 =>
League.Strings.To_Universal_String ("not supported"),
Binding_1047 =>
League.Strings.To_Universal_String ("not supported"),
Binding_1048 =>
League.Strings.To_Universal_String ("not supported"),
Binding_1049 =>
League.Strings.To_Universal_String
("name of binding component must be unique"),
BindingFault_1050 =>
League.Strings.To_Universal_String
("duplicate specification of binding details for interface"
& " fault"),
BindingOperation_1051 =>
League.Strings.To_Universal_String
("duplicate specification of binding details for interface"
& " operation"));
------------
-- Report --
------------
procedure Report
(File : League.Strings.Universal_String;
Line : WSDL.Diagnoses.Line_Number;
Column : WSDL.Diagnoses.Column_Number;
Assertion : WSDL_Assertion) is
begin
WSDL.Diagnoses.Report
(File, Line, Column, WSDL_Assertion_Message (Assertion));
end Report;
end WSDL.Assertions;
|
src/tictac.asm | rprouse/8088 | 0 | 26134 | <filename>src/tictac.asm
; Tic-Tac-Toe
cpu 8086
bits 16
org 0x0100
board: equ 0x0300
jmp start
%include 'library.inc'
start:
.init:
; Populate the board with the numbers 1-9
mov bx,board
mov cx,9
mov al,'1'
.init_loop:
mov [bx],al
inc al
inc bx
loop .init_loop
.game_loop:
call .show_board
call .find_line
call .get_move
mov byte [bx],'X'
call .show_board
call .find_line
call .get_move
mov byte [bx],'O'
jmp .game_loop
.get_move:
call chin
cmp al,0x1b ; ESC pressed?
je exit
; Validate input
sub al,'1' ; Convert ASCII to decimal
jc .get_move ; If it is less than, invalid, get next char
cmp al,0x09
jge .get_move ; If >= 9, invalid, get next char
cbw ; Expand AL to 16 bits using AH
mov bx,board
add bx,ax ; Get the offset into the board
mov al,[bx] ; Get the content of the square
cmp al,'@' ; ASCII letter before A, IE, is this a letter or number
jg .get_move ; This square is taken, try again
call .show_crlf
ret
.show_board:
mov bx,board
call .show_row
call .show_div
mov bx,board+3
call .show_row
call .show_div
mov bx,board+6
call .show_row
ret
.show_row:
call .show_square
mov al,0xb3 ; Graphic |
call chout
call .show_square
mov al,0xb3 ; Graphic |
call chout
call .show_square
call .show_crlf
ret
.show_div:
mov al,0xc4 ; Graphic -
call chout
mov al,0xc5 ; Graphic +
call chout
mov al,0xc4 ; Graphic -
call chout
mov al,0xc5 ; Graphic +
call chout
mov al,0xc4 ; Graphic -
call chout
call .show_crlf
ret
.show_square:
mov al,[bx]
inc bx
call chout
ret
.show_crlf:
mov al,0x0d
call chout
mov al,0x0a
call chout
ret
.find_line:
; First horizontal row
mov al,[board] ; X.. ... ...
cmp al,[board+1] ; .X. ... ...
jne .find_second_line
cmp al,[board+2] ; ..X ... ...
je .win
.find_second_line:
; Second horizontal row
mov al,[board+3] ; ... X.. ...
cmp al,[board+4] ; ... .X. ...
jne .find_third_line
cmp al,[board+5] ; ... ..X ...
je .win
.find_third_line:
; Third horizontal row
mov al,[board+6] ; ... ... X..
cmp al,[board+7] ; ... ... .X.
jne .find_first_column
cmp al,[board+8] ; ... ... ..X
je .win
.find_first_column:
; First vertical column
mov al,[board] ; X.. ... ...
cmp al,[board+3] ; ... X.. ...
jne .find_second_column
cmp al,[board+6] ; ... ... X..
je .win
.find_second_column:
; Second vertical column
mov al,[board+1] ; .X. ... ...
cmp al,[board+4] ; ... .X. ...
jne .find_third_column
cmp al,[board+7] ; ... ... .X.
je .win
.find_third_column:
; Third vertical column
mov al,[board+2] ; ..X ... ...
cmp al,[board+5] ; ... ..X ...
jne .find_first_diagonal
cmp al,[board+8] ; ... ... ..X
je .win
.find_first_diagonal:
; First diagonal
mov al,[board] ; X.. ... ...
cmp al,[board+4] ; ... .X. ...
jne .find_second_diagonal
cmp al,[board+8] ; ... ... ..X
je .win
.find_second_diagonal:
; Second diagonal
mov al,[board+2] ; ..X ... ...
cmp al,[board+4] ; ... .X. ...
jne .check_tie
cmp al,[board+6] ; ... ... X..
je .win
.check_tie:
mov bx,board
mov cx,9
.check_tie_loop:
cmp byte [bx],0x40 ; Does the square contain an ASCII letter or digit
jl .finish ; If we find a number, there are open squares
inc bx
loop .check_tie_loop
; Tie
mov al,'T'
call chout
mov al,'i'
call chout
mov al,'e'
call chout
mov al,' '
call chout
mov al,'g'
call chout
mov al,'a'
call chout
mov al,'m'
call chout
mov al,'e'
call chout
call .show_crlf
jmp exit
.finish:
ret
.win:
; AL contains the letter that won the game
call chout
mov al,' '
call chout
mov al,'W'
call chout
mov al,'i'
call chout
mov al,'n'
call chout
mov al,'s'
call chout
mov al,'!'
call chout
call .show_crlf
jmp exit |
3-8086/ex2.asm | etzinis/micro_lab_ntua | 0 | 160696 | <gh_stars>0
DATA_SEG SEGMENT
NUMBERS 100 DUP(0)
MS1 DB 0AH,0DH,"GIVE DECIMAL DIGITS :$"
MS2 DB 0AH,0DH,"HEX=$"
MS3 DB 0AH,0DH,"THE MAXIMUM NUMBER OF DIGITS MUST BE 100 $"
INDEX1 DB 0 ;POINTER TO THE FIRST NON ZERO ELEMENT OF THE ARRAY NUMBERS
INDEX2 DB 0 ;POINTER TO THE LAST ELEMENT OF THE ARRAY NUMBERS
CHECK DB 0
CHECK2 DB 0
COUNTER DB 0
COUNTER2 DB 0
DATA_SEG ENDS
CODE_SEG SEGMENT
ASSUME CS:CODE_SEG,DS:DATA_SEG
PRINT_STR MACRO STRING ;MACRO TO PRINT A STRING
MOV DX,OFFSET STRING
MOV AH,9
INT 21H
ENDM
PRINT MACRO CHAR ;MICRO TO PRINT A CHAR
MOV DL,CHAR
MOV AH,2H
INT 21H
ENDM
DECTOHEX PROC NEAR
LOOP_1:
CMP CH,0
JZ EXIT1
ADD CL,0AH
DEC CH
JMP LOOP_1
EXIT1:RET
DECTOHEX ENDP
PRINT_HEX PROC NEAR
CMP DL,9
JLE ADDR3
ADD DL,37H
JMP ADDR4
ADDR3:
ADD DL,30H
ADDR4:
MOV AH,02H
INT 21H
RET
PRINT_HEX ENDP
READ_NUM PROC NEAR ;PROC TO READ A NUMBER
PUSH DX
IGNORE:
MOV AH,08H ;READ THE NUMBER
INT 21H
MOV CL,INDEX2
CMP CL,4 ;CHECK IF I HAVE ALREADY READ 4 NUMBERS
JL OXI_TELOS
CMP AL,0DH ;IF SO CHECK FOR ENTER BUTTON
JE TELOS
OXI_TELOS:
CMP AL,30H ;CHECK IF THE CHARACTER IS A NUMBER BETWEEN 0 AND 9
JL IGNORE
CMP AL,39H ;IF NOT READ AGAIN
JG IGNORE
JMP KEEP_READING
TELOS:
MOV CHECK,1 ;IF ENTER BUTTON IS PUSHED THE CHECK=1
KEEP_READING:
POP DX
RET
READ_NUM ENDP
MAIN PROC FAR
MOV AX,DATA_SEG
MOV DS,AX
START:
PRINT_STR MS3
PRINT_STR MS1
MOV BX,OFFSET NUMBERS ;INITIALIZE BX TO THE FIRST ELEMENT OF ARRAY
MOV CHECK,0
MOV INDEX1,0
MOV INDEX2,0
MOV COUNTER,0
MOV CHECK2,0
CREATE_ARRAY:
CALL READ_NUM ;READ NUMBER
CMP CHECK,1 ;CHECK IF ENTER BUTTON IS PUSHED
JE ENDOF_ARRAY ;IF SO STOP READING
MOV [BX],AL ;ELSE PUT THE NUMBER YOU READ TO THE ARRAY
INC INDEX2 ;INCREASE INDEX2
INC BX ;GET TO THE NEXT CELL OF THE ARRAY
JMP CREATE_ARRAY
ENDOF_ARRAY:
MOV BX,OFFSET NUMBERS
FIND_NONZERO_ELEMENT: ;FINDS THE PLACE OF THE FIRST NON ZERO ELEMENT
MOV CL,INDEX1
MOV CH,INDEX2
CMP CL,CH
JG ENDOF_0
MOV AL,[BX]
SUB AL,30H ;GET THE ASCII CODE OF THE ELEMENT
CMP AL,0 ;IF I FIND ONE NON ZERO ELEMENT I'M DONE
JNE ENDOF_0
INC BX
INC INDEX1
JMP FIND_NONZERO_ELEMENT
ENDOF_0:
MOV BX,OFFSET NUMBERS
MOV CH,0
MOV CL,INDEX2 ;CX=THE PLACE OF THE LAST ELEMENT OF ARRAY
MOV AL,CL
SUB AL,INDEX1 ;COUNTER2=THE NUMBER OF THE ELEMENTS LEFT AFTER THE FIRST NON-ZERO
MOV COUNTER2,AL
PRINT_NUMS:
CMP CHECK2,1 ;IF WE HAVE NOT FOUND THE FIRST NON ZERO ELEMENT WE DONT HAVE TO PUT COMMA
JNE NOT_COMMA
MOV AL, COUNTER2 ;ELSE WE CHECK IF THE NON ZERO ELEMENTS LEFT ARE MULTIPLE OF 3
MOV AH,0
MOV DH,3
DIV DH
CMP AH,0
JNE NOT_COMMA ;IF SO WE PUT COMMA
MOV DL,2CH
MOV AH,2
INT 21H
NOT_COMMA:
MOV DH,[BX]
PUSH AX ;THEN WE PRINT THE NEXT ELEMENT OF THE ARRAY
PRINT DH
POP AX
SUB DH,30H
CMP CHECK2,1 ;WE CHECK IF CKECK2=1
JE DECRONLY ;IF SO WE DECREASE THE ELEMENTS LEFT
CMP DH,0 ;IF NOT WE CHECK IF THIS ELEMENT IS 0
JE DONT_DECR ;IF SO WE DO NOTHING
MOV CHECK2,1 ;ELSE WE MAKE CHECK2=1
DECRONLY:
DEC COUNTER2 ;AND WE DECREASE THE COUNTER
DONT_DECR:
INC BX
LOOP PRINT_NUMS
INTO_HEX:
MOV BX,OFFSET NUMBERS
MOV CL,INDEX2
MOV CH,0
ADD BX,CX ;CX=THE PLACE OF THE LAST ELEMENT OF THE ARRAY
SUB BX,4
MOV DL,[BX]
SUB DL,30H ;WE CHECK IF THE LAST 4 NUMBERS WE GOT ARE 307
CMP DL,3 ;IF SO WE QUIT
JNE OK
INC BX
MOV DL,[BX]
SUB DL,30H
CMP DL,0
JNE OK
INC BX ;IF NOT WE CONTINUE
MOV DL,[BX]
SUB DL,30H
CMP DL,7
JNE OK
INC BX
MOV DL,[BX]
SUB DL,30H
CMP DL,6
JE QUIT
OK:
;MOV BX,OFFSET NUMBERS
;SUB BX,4
PRINT_STR MS2
MOV CX,0
MOV DX,0
MOV INDEX2,4 ;WE USE INDEX2 AS A COUNTER AS WE DONT NEED IT ANYMORE
LOOPA:
MOV DL,[BX]
SUB DL,30H
PUSH DX
MOV AX,10 ;I MAKE THE 4 DIGIT NUMBER FROM THE 4 LAST ELEMENTS OF THE ARRAY
MUL CX
MOV CX,AX
POP DX
ADD CX,DX
INC BX
DEC INDEX2
CMP INDEX2,0
JG LOOPA
MOV BX,CX
MOV CX,4
ADDR2:
ROL BX,4 ;WE USE 4 RIGHT SLIDES TO TAKE EACH ONE OF THE NUMBER'S DIGITS
MOV DX,BX
AND DX,000FH
CALL PRINT_HEX
LOOP ADDR2
JMP START
QUIT:
MOV AX,4C00H
INT 21H
CODE_SEG ENDS
END MAIN |
lib/builtin_lib.asm | spectrometerHBH/Daedalus | 10 | 14060 | <filename>lib/builtin_lib.asm
__builtin_string_add:
push r15
push r14
push r13
push r12
push rbp
push rbx
mov rbp, rsi
sub rsp, 24
mov rbx, qword [rdi]
mov r15, qword [rsi]
mov qword [rsp+8H], rdi
lea edi, [rbx+r15+9H]
movsxd rdi, edi
call malloc
mov r14, rax
lea eax, [r15+rbx]
test ebx, ebx
lea r12, [r14+8H]
mov rcx, qword [rsp+8H]
cdqe
mov qword [r14], rax
jle L_003
lea r13d, [rbx-1H]
lea rsi, [rcx+8H]
mov rdi, r12
lea rdx, [r13+1H]
mov rbx, r13
call memcpy
L_001: test r15d, r15d
jle L_002
lea r13d, [r15-1H]
movsxd rbx, ebx
lea rsi, [rbp+8H]
lea rdi, [r14+rbx+9H]
add r13, 1
mov rdx, r13
add r13, rbx
call memcpy
L_002: mov byte [r12+r13+1H], 0
add rsp, 24
mov rax, r14
pop rbx
pop rbp
pop r12
pop r13
pop r14
pop r15
ret
ALIGN 8
L_003: mov r13, -1
mov ebx, r13d
jmp L_001
ALIGN 16
__builtin_string_equal:
sub rsp, 8
add rsi, 8
add rdi, 8
call strcmp
test eax, eax
sete al
add rsp, 8
movzx eax, al
ret
ALIGN 8
__builtin_string_inequal:
sub rsp, 8
add rsi, 8
add rdi, 8
call strcmp
test eax, eax
setne al
add rsp, 8
movzx eax, al
ret
ALIGN 8
__builtin_string_less:
sub rsp, 8
add rsi, 8
add rdi, 8
call strcmp
add rsp, 8
shr eax, 31
ret
ALIGN 8
__builtin_string_less_equal:
sub rsp, 8
add rsi, 8
add rdi, 8
call strcmp
test eax, eax
setle al
add rsp, 8
movzx eax, al
ret
ALIGN 8
__builtin_string_great:
sub rsp, 8
add rsi, 8
add rdi, 8
call strcmp
test eax, eax
setg al
add rsp, 8
movzx eax, al
ret
ALIGN 8
__builtin_string_great_equal:
sub rsp, 8
add rsi, 8
add rdi, 8
call strcmp
not eax
add rsp, 8
shr eax, 31
ret
ALIGN 8
__builtin_print:
lea rdx, [rdi+8H]
lea rsi, [rel LC0]
mov edi, 1
xor eax, eax
jmp __printf_chk
ALIGN 16
__builtin_println:
add rdi, 8
jmp puts
ALIGN 8
__builtin_printInt:
push rbp
push rbx
sub rsp, 56
mov rax, qword [fs:abs 28H]
mov qword [rsp+28H], rax
xor eax, eax
test edi, edi
je L_008
mov ebx, edi
js L_007
L_004: mov eax, ebx
mov esi, 3435973837
mov edi, ebx
mul esi
mov ecx, edx
shr ecx, 3
lea eax, [rcx+rcx*4]
add eax, eax
sub edi, eax
test ecx, ecx
mov dword [rsp], edi
je L_010
mov eax, ecx
mul esi
shr edx, 3
lea eax, [rdx+rdx*4]
add eax, eax
sub ecx, eax
mov eax, ebx
mov dword [rsp+4H], ecx
mov ecx, 1374389535
mul ecx
mov ecx, edx
shr ecx, 5
test ecx, ecx
je L_011
mov eax, ecx
mul esi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 274877907
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+8H], ecx
shr edx, 6
test edx, edx
mov ecx, edx
je L_012
mov eax, edx
mul esi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 3518437209
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+0CH], ecx
mov ecx, edx
shr ecx, 13
test ecx, ecx
je L_009
mov eax, ecx
mul esi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, ebx
shr edx, 5
add eax, eax
sub ecx, eax
mov eax, edx
mov dword [rsp+10H], ecx
mov ecx, 175921861
mul ecx
mov ecx, edx
shr ecx, 7
test ecx, ecx
je L_013
mov eax, ecx
mul esi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 1125899907
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+14H], ecx
shr edx, 18
test edx, edx
mov ecx, edx
je L_014
mov eax, edx
mul esi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 1801439851
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+18H], ecx
mov ecx, edx
shr ecx, 22
test ecx, ecx
je L_016
mov eax, ecx
mul esi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 1441151881
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+1CH], ecx
shr edx, 25
test edx, edx
mov ecx, edx
je L_017
mov eax, edx
shr ebx, 9
mul esi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 281475
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+20H], ecx
shr edx, 7
test edx, edx
je L_015
mov dword [rsp+24H], edx
mov eax, 10
L_005: sub eax, 1
lea rbp, [rsp-4H]
cdqe
shl rax, 2
lea rbx, [rsp+rax]
ALIGN 8
L_006: mov eax, dword [rbx]
mov rsi, qword [rel stdout]
sub rbx, 4
lea edi, [rax+30H]
call _IO_putc
cmp rbx, rbp
jnz L_006
mov rax, qword [rsp+28H]
xor rax, qword [fs:abs 28H]
jne L_018
add rsp, 56
pop rbx
pop rbp
ret
ALIGN 8
L_007: mov rsi, qword [rel stdout]
mov edi, 45
neg ebx
call _IO_putc
jmp L_004
L_008: mov rax, qword [rsp+28H]
xor rax, qword [fs:abs 28H]
jne L_018
mov rsi, qword [rel stdout]
add rsp, 56
mov edi, 48
pop rbx
pop rbp
jmp _IO_putc
ALIGN 8
L_009: mov eax, 4
jmp L_005
ALIGN 8
L_010: mov eax, 1
jmp L_005
ALIGN 8
L_011: mov eax, 2
jmp L_005
ALIGN 8
L_012: mov eax, 3
jmp L_005
ALIGN 8
L_013: mov eax, 5
jmp L_005
ALIGN 8
L_014: mov eax, 6
jmp L_005
L_015: mov eax, 9
jmp L_005
L_016: mov eax, 7
jmp L_005
L_017: mov eax, 8
jmp L_005
L_018:
call __stack_chk_fail
ALIGN 8
__builtin_printlnInt:
push rbp
push rbx
sub rsp, 56
mov rsi, qword [rel stdout]
mov rax, qword [fs:abs 28H]
mov qword [rsp+28H], rax
xor eax, eax
test edi, edi
je L_023
mov ebx, edi
js L_022
L_019: mov eax, ebx
mov edi, 3435973837
mul edi
mov ecx, edx
mov edx, ebx
shr ecx, 3
lea eax, [rcx+rcx*4]
add eax, eax
sub edx, eax
test ecx, ecx
mov dword [rsp], edx
je L_026
mov eax, ecx
mul edi
shr edx, 3
lea eax, [rdx+rdx*4]
add eax, eax
sub ecx, eax
mov eax, ebx
mov dword [rsp+4H], ecx
mov ecx, 1374389535
mul ecx
mov ecx, edx
shr ecx, 5
test ecx, ecx
je L_027
mov eax, ecx
mul edi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 274877907
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+8H], ecx
mov ecx, edx
shr ecx, 6
test ecx, ecx
je L_028
mov eax, ecx
mul edi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 3518437209
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+0CH], ecx
mov ecx, edx
shr ecx, 13
test ecx, ecx
je L_025
mov eax, ecx
mul edi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, ebx
shr edx, 5
add eax, eax
sub ecx, eax
mov eax, edx
mov dword [rsp+10H], ecx
mov ecx, 175921861
mul ecx
shr edx, 7
test edx, edx
mov ecx, edx
je L_029
mov eax, edx
mul edi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 1125899907
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+14H], ecx
mov ecx, edx
shr ecx, 18
test ecx, ecx
je L_030
mov eax, ecx
mul edi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 1801439851
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+18H], ecx
mov ecx, edx
shr ecx, 22
test ecx, ecx
je L_032
mov eax, ecx
mul edi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 1441151881
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+1CH], ecx
shr edx, 25
test edx, edx
mov ecx, edx
je L_033
mov eax, edx
shr ebx, 9
mul edi
shr edx, 3
lea eax, [rdx+rdx*4]
mov edx, 281475
add eax, eax
sub ecx, eax
mov eax, ebx
mul edx
mov dword [rsp+20H], ecx
shr edx, 7
test edx, edx
je L_031
mov dword [rsp+24H], edx
mov eax, 10
L_020: sub eax, 1
lea rbp, [rsp-4H]
cdqe
shl rax, 2
lea rbx, [rsp+rax]
L_021: mov eax, dword [rbx]
sub rbx, 4
lea edi, [rax+30H]
call _IO_putc
cmp rbx, rbp
mov rsi, qword [rel stdout]
jnz L_021
jmp L_024
ALIGN 8
L_022: mov edi, 45
neg ebx
call _IO_putc
mov rsi, qword [rel stdout]
jmp L_019
ALIGN 16
L_023: mov edi, 48
call _IO_putc
mov rsi, qword [rel stdout]
L_024: mov rax, qword [rsp+28H]
xor rax, qword [fs:abs 28H]
jne L_034
add rsp, 56
mov edi, 10
pop rbx
pop rbp
jmp _IO_putc
ALIGN 8
L_025: mov eax, 4
jmp L_020
ALIGN 8
L_026: mov eax, 1
jmp L_020
ALIGN 8
L_027: mov eax, 2
jmp L_020
ALIGN 8
L_028: mov eax, 3
jmp L_020
ALIGN 8
L_029: mov eax, 5
jmp L_020
ALIGN 8
L_030: mov eax, 6
jmp L_020
L_031: mov eax, 9
jmp L_020
L_032: mov eax, 7
jmp L_020
L_033: mov eax, 8
jmp L_020
L_034:
call __stack_chk_fail
nop
ALIGN 16
__builtin_getString:
push rbp
push rbx
mov edi, 266
sub rsp, 8
call malloc
lea rbx, [rax+8H]
lea rdi, [rel LC0]
mov rbp, rax
xor eax, eax
mov rsi, rbx
call scanf
mov rdx, rbx
L_035: mov ecx, dword [rdx]
add rdx, 4
lea eax, [rcx-1010101H]
not ecx
and eax, ecx
and eax, 80808080H
jz L_035
mov ecx, eax
shr ecx, 16
test eax, 8080H
cmove eax, ecx
lea rcx, [rdx+2H]
mov esi, eax
cmove rdx, rcx
add sil, al
mov rax, rbp
sbb rdx, 3
sub rdx, rbx
mov qword [rbp], rdx
add rsp, 8
pop rbx
pop rbp
ret
ALIGN 16
__builtin_getInt:
mov rdi, qword [rel stdin]
push r12
push rbp
push rbx
call _IO_getc
lea edx, [rax-30H]
cmp dl, 9
jbe L_040
mov ebx, eax
xor ebp, ebp
mov r12d, 1
ALIGN 8
L_036: mov rdi, qword [rel stdin]
cmp bl, 45
cmove ebp, r12d
call _IO_getc
movsx ebx, al
sub eax, 48
cmp al, 9
ja L_036
sub ebx, 48
movsxd rbx, ebx
jmp L_038
ALIGN 8
L_037: lea rax, [rbx+rbx*4]
lea rbx, [rdx+rax*2-30H]
L_038: mov rdi, qword [rel stdin]
call _IO_getc
movsx rdx, al
sub eax, 48
cmp al, 9
jbe L_037
mov rax, rbx
neg rax
test bpl, bpl
cmovne rbx, rax
L_039: mov rax, rbx
pop rbx
pop rbp
pop r12
ret
ALIGN 8
L_040: mov rdi, qword [rel stdin]
movsx ebx, al
sub ebx, 48
movsxd rbx, ebx
call _IO_getc
movsx rdx, al
sub eax, 48
cmp al, 9
ja L_039
xor ebp, ebp
jmp L_037
ALIGN 8
__builtin_toString:
push r12
push rbp
push rbx
sub rsp, 64
mov rax, qword [fs:abs 28H]
mov qword [rsp+38H], rax
xor eax, eax
test edi, edi
js L_042
jne L_046
mov edi, 10
mov dword [rsp+4H], 0
call malloc
movzx edi, byte [rsp+4H]
mov qword [rax], 1
mov byte [rax+9H], 0
lea edx, [rdi+30H]
mov byte [rax+8H], dl
L_041: mov rdi, qword [rsp+38H]
xor rdi, qword [fs:abs 28H]
jne L_056
add rsp, 64
pop rbx
pop rbp
pop r12
ret
ALIGN 16
L_042: neg edi
mov ebp, 1
L_043: mov eax, edi
mov edx, 3435973837
mov ebx, edi
mul edx
shr edx, 3
lea eax, [rdx+rdx*4]
mov ecx, edx
add eax, eax
sub ebx, eax
test edx, edx
mov dword [rsp+4H], ebx
je L_047
mov eax, edx
mov esi, 1717986919
imul esi
shr edx, 2
lea eax, [rdx+rdx*4]
mov edx, 1374389535
add eax, eax
sub ecx, eax
mov eax, edi
mul edx
mov dword [rsp+8H], ecx
shr edx, 5
test edx, edx
mov ecx, edx
je L_048
mov eax, edx
imul esi
shr edx, 2
lea eax, [rdx+rdx*4]
mov edx, 274877907
add eax, eax
sub ecx, eax
mov eax, edi
mul edx
mov dword [rsp+0CH], ecx
shr edx, 6
test edx, edx
mov ecx, edx
je L_049
mov eax, edx
imul esi
shr edx, 2
lea eax, [rdx+rdx*4]
mov edx, 3518437209
add eax, eax
sub ecx, eax
mov eax, edi
mul edx
mov dword [rsp+10H], ecx
shr edx, 13
test edx, edx
mov ecx, edx
je L_051
mov eax, edx
imul esi
shr edx, 2
lea eax, [rdx+rdx*4]
mov edx, edi
shr edx, 5
add eax, eax
sub ecx, eax
mov eax, edx
mov dword [rsp+14H], ecx
mov ecx, 175921861
mul ecx
shr edx, 7
test edx, edx
mov ecx, edx
je L_050
mov eax, edx
imul esi
shr edx, 2
lea eax, [rdx+rdx*4]
mov edx, 1125899907
add eax, eax
sub ecx, eax
mov eax, edi
mul edx
mov dword [rsp+18H], ecx
shr edx, 18
test edx, edx
mov ecx, edx
je L_052
mov eax, edx
imul esi
shr edx, 2
lea eax, [rdx+rdx*4]
mov edx, 1801439851
add eax, eax
sub ecx, eax
mov eax, edi
mul edx
mov dword [rsp+1CH], ecx
shr edx, 22
test edx, edx
mov ecx, edx
je L_053
mov eax, edx
imul esi
shr edx, 2
lea eax, [rdx+rdx*4]
mov edx, 1441151881
add eax, eax
sub ecx, eax
mov eax, edi
mul edx
mov dword [rsp+20H], ecx
shr edx, 25
test edx, edx
mov ecx, edx
je L_054
mov eax, edx
shr edi, 9
imul esi
mov esi, edx
mov edx, 281475
shr esi, 2
lea eax, [rsi+rsi*4]
add eax, eax
sub ecx, eax
mov eax, edi
mul edx
mov dword [rsp+24H], ecx
shr edx, 7
test edx, edx
je L_055
mov dword [rsp+28H], edx
mov ebx, 10
L_044: lea r12d, [rbx+rbp]
lea edi, [r12+9H]
movsxd r12, r12d
movsxd rdi, edi
call malloc
test ebp, ebp
mov qword [rax], r12
lea rdx, [rax+8H]
mov byte [rax+r12+8H], 0
jz L_045
mov byte [rax+8H], 45
L_045: movsxd rcx, ebx
movsxd rsi, ebp
mov ecx, dword [rsp+rcx*4]
add ecx, 48
cmp ebx, 1
mov byte [rdx+rsi], cl
je L_041
lea esi, [rbx-1H]
lea ecx, [rbp+1H]
movsxd rsi, esi
movsxd rcx, ecx
mov esi, dword [rsp+rsi*4]
add esi, 48
cmp ebx, 2
mov byte [rdx+rcx], sil
je L_041
lea esi, [rbx-2H]
lea ecx, [rbp+2H]
movsxd rsi, esi
movsxd rcx, ecx
mov esi, dword [rsp+rsi*4]
add esi, 48
cmp ebx, 3
mov byte [rdx+rcx], sil
je L_041
lea esi, [rbx-3H]
lea ecx, [rbp+3H]
movsxd rsi, esi
movsxd rcx, ecx
mov esi, dword [rsp+rsi*4]
add esi, 48
cmp ebx, 4
mov byte [rdx+rcx], sil
je L_041
lea esi, [rbx-4H]
lea ecx, [rbp+4H]
movsxd rsi, esi
movsxd rcx, ecx
mov esi, dword [rsp+rsi*4]
add esi, 48
cmp ebx, 5
mov byte [rdx+rcx], sil
je L_041
lea esi, [rbx-5H]
lea ecx, [rbp+5H]
movsxd rsi, esi
movsxd rcx, ecx
mov esi, dword [rsp+rsi*4]
add esi, 48
cmp ebx, 6
mov byte [rdx+rcx], sil
je L_041
lea esi, [rbx-6H]
lea ecx, [rbp+6H]
movsxd rsi, esi
movsxd rcx, ecx
mov esi, dword [rsp+rsi*4]
add esi, 48
cmp ebx, 7
mov byte [rdx+rcx], sil
je L_041
lea esi, [rbx-7H]
lea ecx, [rbp+7H]
movsxd rsi, esi
movsxd rcx, ecx
mov esi, dword [rsp+rsi*4]
add esi, 48
cmp ebx, 8
mov byte [rdx+rcx], sil
je L_041
lea esi, [rbx-8H]
lea ecx, [rbp+8H]
movsxd rsi, esi
movsxd rcx, ecx
mov esi, dword [rsp+rsi*4]
add esi, 48
cmp ebx, 9
mov byte [rdx+rcx], sil
je L_041
movzx ebx, byte [rsp+4H]
add ebp, 9
movsxd rbp, ebp
lea ecx, [rbx+30H]
mov byte [rdx+rbp], cl
jmp L_041
ALIGN 8
L_046: xor ebp, ebp
jmp L_043
ALIGN 16
L_047: mov ebx, 1
jmp L_044
ALIGN 8
L_048: mov ebx, 2
jmp L_044
ALIGN 8
L_049: mov ebx, 3
jmp L_044
ALIGN 8
L_050: mov ebx, 5
jmp L_044
ALIGN 8
L_051: mov ebx, 4
jmp L_044
ALIGN 8
L_052: mov ebx, 6
jmp L_044
ALIGN 8
L_053: mov ebx, 7
jmp L_044
ALIGN 8
L_054: mov ebx, 8
jmp L_044
ALIGN 8
L_055: mov ebx, 9
jmp L_044
L_056:
call __stack_chk_fail
nop
ALIGN 16
__builtin_string_substring:
push r15
push r14
push r13
movsxd r13, esi
push r12
push rbp
push rbx
mov ebx, edx
sub ebx, r13d
mov r12, rdi
lea edi, [rbx+0AH]
lea r15d, [rbx+1H]
sub rsp, 8
movsxd rdi, edi
movsxd r14, r15d
call malloc
test r15d, r15d
mov rbp, rax
mov qword [rax], r14
jle L_057
mov edx, ebx
lea rdi, [rax+8H]
lea rsi, [r12+r13+8H]
add rdx, 1
call memcpy
L_057: mov byte [rbp+r14+8H], 0
add rsp, 8
mov rax, rbp
pop rbx
pop rbp
pop r12
pop r13
pop r14
pop r15
ret
ALIGN 16
__builtin_string_parseInt:
mov edx, 1
xor esi, esi
mov r9d, 1
jmp L_059
ALIGN 8
L_058: cmp al, 45
cmove esi, r9d
add rdx, 1
L_059: movsx eax, byte [rdi+rdx+7H]
movsxd r8, edx
lea ecx, [rax-30H]
cmp cl, 9
ja L_058
movsx edx, byte [rdi+r8+8H]
sub eax, 48
lea ecx, [rdx-30H]
cmp cl, 9
ja L_061
lea rcx, [rdi+r8+9H]
L_060: lea eax, [rax+rax*4]
add rcx, 1
lea eax, [rdx+rax*2-30H]
movsx edx, byte [rcx-1H]
lea edi, [rdx-30H]
cmp dil, 9
jbe L_060
L_061: mov edx, eax
neg edx
test sil, sil
cmovne eax, edx
ret
ALIGN 16
__builtin_string_ord:
add esi, 8
movsxd rsi, esi
movsx eax, byte [rdi+rsi]
ret
SECTION .data
SECTION .bss
SECTION .rodata.str1.1
LC0:
db 25H, 73H, 00H |
src/arch/x86_64/long_boot.asm | jackmillerstudent/rust-os | 0 | 16744 | global long_mode_start
section .text
bits 64
long_mode_start:
; call the rust main
extern kmain ; new
call kmain ; new
.os_returned:
; rust main returned, print `OS returned!`
mov rax, 0x4f724f204f534f4f
mov [0xb8000], rax
mov rax, 0x4f724f754f744f65
mov [0xb8008], rax
mov rax, 0x4f214f644f654f6e
mov [0xb8010], rax
hlt
|
src/main/resources/grammar/Nginx.g4 | tianmaomao/nginx-java-parser | 0 | 3827 | grammar Nginx;
@parser::header {
package com.inspur.icp.nginxparser.antlr;
import com.inspur.icp.nginxparser.*;
}
@lexer::header {
package com.inspur.icp.nginxparser.antlr;
}
config returns [NgxConfig ret]
@init { $ret = new NgxConfig(); }
:
(
statement { $ret.addEntry($statement.ret); }
| block { $ret.addEntry($block.ret); }
| Comment { $ret.addEntry(new NgxComment($Comment.text)); }
)+
;
statement returns [NgxParam ret]
:
(
rewriteStatement { $ret = $rewriteStatement.ret; }
|
genericStatement { $ret = $genericStatement.ret; }
|
regexHeaderStatement { $ret = $regexHeaderStatement.ret; }
)
';';
genericStatement returns [NgxParam ret]
@init { $ret = new NgxParam(); }
:
Value { $ret.addValue($Value.text); }
(
Value { $ret.addValue($Value.text); }
|
r=regexp { $ret.addValue($r.ret); }
)*
;
regexHeaderStatement returns [NgxParam ret]
@init { $ret = new NgxParam(); }
:
// Use token definition for regexp-driven parameter name in Nginx config
// See: http://nginx.org/en/docs/http/ngx_http_map_module.html
REGEXP_PREFIXED { $ret.addValue($REGEXP_PREFIXED.text); }
Value { $ret.addValue($Value.text); }
;
block returns [NgxBlock ret]
@init { $ret = new NgxBlock(); }
:
(
locationBlockHeader { $ret.getTokens().addAll($locationBlockHeader.ret); }
|
genericBlockHeader { $ret.getTokens().addAll($genericBlockHeader.ret); }
)
Comment?
'{'
(
statement { $ret.addEntry($statement.ret); }
|
b=block { $ret.addEntry($b.ret); }
|
if_statement { $ret.addEntry($if_statement.ret); }
|
Comment { $ret.addEntry(new NgxComment($Comment.text)); }
)*
'}'
;
genericBlockHeader returns [List<NgxToken> ret]
@init { $ret = new ArrayList<NgxToken>(); }
:
Value { $ret.add(new NgxToken($Value.text)); }
(
Value { $ret.add(new NgxToken($Value.text)); }
|
regexp { $ret.add(new NgxToken($regexp.ret)); }
)*;
if_statement returns [NgxIfBlock ret]
@init { $ret = new NgxIfBlock(); }
:
id='if' { $ret.addValue(new NgxToken($id.text)); }
if_body { $ret.getTokens().addAll($if_body.ret); }
Comment?
'{'
(statement { $ret.addEntry($statement.ret); } )*
'}'
;
if_body returns [List<NgxToken> ret]
@init { $ret = new ArrayList<NgxToken>(); }
:
'('
Value { $ret.add(new NgxToken($Value.text)); }
(Value { $ret.add(new NgxToken($Value.text)); })?
(
Value { $ret.add(new NgxToken($Value.text)); }
|
regexp { $ret.add(new NgxToken($regexp.ret)); }
)?
')'
;
regexp returns [String ret]
@init { $ret = ""; }
:
(
id='\\.' { $ret += $id.text; }
| id='^' { $ret += $id.text; }
| Value { $ret += $Value.text; }
| '(' r=regexp { $ret += "(".concat($r.ret).concat(")"); } ')'
)+;
locationBlockHeader returns [List<NgxToken> ret]
@init { $ret = new ArrayList<NgxToken>(); }
:
id='location' { $ret.add(new NgxToken($id.text)); }
(Value { $ret.add(new NgxToken($Value.text)); })?
(
Value { $ret.add(new NgxToken($Value.text)); }
|
regexp { $ret.add(new NgxToken($regexp.ret)); }
)
;
rewriteStatement returns [NgxParam ret]
@init { $ret = new NgxParam(); }
:
id='rewrite' { $ret.addValue($id.text); }
(Value { $ret.addValue($Value.text); } | regexp { $ret.addValue($regexp.ret); }) Value { $ret.addValue($Value.text); }
(opt=('last' | 'break' | 'redirect' | 'permanent') { $ret.addValue($opt.text); })?
;
//QUOTED_STRING
//: '"' (~('"' | '\\' | '\r' | '\n') | '\\' ('"' | '\\'))* '"';
Value: STR_EXT | QUOTED_STRING | SINGLE_QUOTED
;
STR_EXT
:
([a-zA-Z0-9_/\.,\-:=~+!?$&^*\[\]@|#%] | NON_ASCII)+;
Comment
:
'#' ~[\r\n]*;
REGEXP_PREFIXED
: (RegexpPrefix)[a-zA-Z0-9_/\.,\-:=~+!?$&^*\[\]@|#%)(]+
;
QUOTED_STRING
:
'"' StringCharacters? '"'
;
fragment RegexpPrefix : [~][*]?;
fragment StringCharacters : (~["\\] | EscapeSequence)+;
fragment NON_ASCII : '\u0080'..'\uFFFF';
fragment
EscapeSequence
: '\\' [btnfr"'\\]?
;
SINGLE_QUOTED
:
'\'' ~['\\]* '\'';
WS
:
[ \t\n\r]+ -> skip ; |
src/gen-commands-info.adb | Letractively/ada-gen | 0 | 10038 | -----------------------------------------------------------------------
-- gen-commands-info -- Collect and give information about the project
-- Copyright (C) 2011, 2012, 2013, 2014 <NAME>
-- Written by <NAME> (<EMAIL>)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Text_IO;
with Ada.Directories;
with Gen.Utils;
with Gen.Utils.GNAT;
with Gen.Model.Projects;
with Util.Strings.Sets;
with Util.Files;
package body Gen.Commands.Info is
-- ------------------------------
-- Execute the command with the arguments.
-- ------------------------------
procedure Execute (Cmd : in Command;
Generator : in out Gen.Generator.Handler) is
pragma Unreferenced (Cmd);
procedure Collect_Directories (List : in Gen.Utils.String_List.Vector;
Result : out Gen.Utils.String_List.Vector);
procedure Print_Model_File (Name : in String;
File : in String;
Done : out Boolean);
procedure Print_GNAT_Projects (Project : in out Gen.Model.Projects.Project_Definition);
procedure Print_Dynamo_Projects (Project : in out Model.Projects.Root_Project_Definition);
procedure Print_Modules (Project : in out Gen.Model.Projects.Project_Definition'Class;
Indent : in Ada.Text_IO.Positive_Count);
procedure Print_Project (Project : in out Gen.Model.Projects.Root_Project_Definition);
procedure Print_Project_List (Indent : in Ada.Text_IO.Positive_Count;
List : in Gen.Model.Projects.Project_Vectors.Vector);
List : Gen.Utils.String_List.Vector;
Names : Util.Strings.Sets.Set;
procedure Collect_Directories (List : in Gen.Utils.String_List.Vector;
Result : out Gen.Utils.String_List.Vector) is
procedure Add_Model_Dir (Base_Dir : in String;
Dir : in String);
procedure Add_Model_Dir (Base_Dir : in String;
Dir : in String) is
Path : constant String := Util.Files.Compose (Base_Dir, Dir);
begin
if not Result.Contains (Path)
and then Ada.Directories.Exists (Path) then
Result.Append (Path);
end if;
end Add_Model_Dir;
Iter : Gen.Utils.String_List.Cursor := List.First;
begin
while Gen.Utils.String_List.Has_Element (Iter) loop
declare
Path : constant String := Gen.Utils.String_List.Element (Iter);
Dir : constant String := Ada.Directories.Containing_Directory (Path);
begin
Add_Model_Dir (Dir, "db");
Add_Model_Dir (Dir, "db/regtests");
Add_Model_Dir (Dir, "db/samples");
end;
Gen.Utils.String_List.Next (Iter);
end loop;
end Collect_Directories;
procedure Print_Model_File (Name : in String;
File : in String;
Done : out Boolean) is
pragma Unreferenced (Name);
begin
Ada.Text_IO.Put (" ");
Ada.Text_IO.Put_Line (File);
Done := False;
end Print_Model_File;
-- ------------------------------
-- Print the list of GNAT projects used by the main project.
-- ------------------------------
procedure Print_GNAT_Projects (Project : in out Gen.Model.Projects.Project_Definition) is
use Gen.Utils.GNAT;
Iter : Project_Info_Vectors.Cursor := Project.Project_Files.First;
Info : Project_Info;
begin
if Project_Info_Vectors.Has_Element (Iter) then
Ada.Text_IO.Put_Line ("GNAT project files:");
while Project_Info_Vectors.Has_Element (Iter) loop
Ada.Text_IO.Put (" ");
Info := Project_Info_Vectors.Element (Iter);
Ada.Text_IO.Put_Line (Ada.Strings.Unbounded.To_String (Info.Path));
Project_Info_Vectors.Next (Iter);
end loop;
end if;
end Print_GNAT_Projects;
-- ------------------------------
-- Print the list of Dynamo modules
-- ------------------------------
procedure Print_Project_List (Indent : in Ada.Text_IO.Positive_Count;
List : in Gen.Model.Projects.Project_Vectors.Vector) is
use Gen.Model.Projects;
use type Ada.Text_IO.Positive_Count;
Iter : Project_Vectors.Cursor := List.First;
Ref : Model.Projects.Project_Reference;
begin
while Project_Vectors.Has_Element (Iter) loop
Ref := Project_Vectors.Element (Iter);
Ada.Text_IO.Set_Col (Indent);
Ada.Text_IO.Put (" ");
Ada.Text_IO.Put (Ada.Strings.Unbounded.To_String (Ref.Name));
Ada.Text_IO.Set_Col (Indent + 30);
if Ref.Project /= null then
Ada.Text_IO.Put_Line (Ada.Strings.Unbounded.To_String (Ref.Project.Path));
else
Ada.Text_IO.Put_Line ("?");
end if;
Project_Vectors.Next (Iter);
end loop;
end Print_Project_List;
-- ------------------------------
-- Print the list of Dynamo modules
-- ------------------------------
procedure Print_Modules (Project : in out Gen.Model.Projects.Project_Definition'Class;
Indent : in Ada.Text_IO.Positive_Count) is
use Gen.Model.Projects;
use type Ada.Text_IO.Positive_Count;
Iter : Project_Vectors.Cursor := Project.Modules.First;
Ref : Model.Projects.Project_Reference;
begin
if not Project.Modules.Is_Empty then
Ada.Text_IO.Set_Col (Indent);
Ada.Text_IO.Put_Line ("Dynamo plugins:");
Print_Project_List (Indent, Project.Modules);
Print_Project_List (Indent, Project.Dependencies);
Iter := Project.Modules.First;
while Project_Vectors.Has_Element (Iter) loop
Ref := Project_Vectors.Element (Iter);
if Ref.Project /= null and then not Ref.Project.Modules.Is_Empty then
declare
Name : constant String := Ada.Strings.Unbounded.To_String (Ref.Name);
begin
Ada.Text_IO.Set_Col (Indent);
if Names.Contains (Name) then
Ada.Text_IO.Put_Line ("!! " & Name);
else
Names.Insert (Name);
Ada.Text_IO.Put_Line ("== " & Name);
Print_Modules (Ref.Project.all, Indent + 4);
Names.Delete (Name);
end if;
end;
end if;
Project_Vectors.Next (Iter);
end loop;
end if;
end Print_Modules;
-- ------------------------------
-- Print the list of Dynamo projects used by the main project.
-- ------------------------------
procedure Print_Dynamo_Projects (Project : in out Model.Projects.Root_Project_Definition) is
Iter : Gen.Utils.String_List.Cursor := Project.Dynamo_Files.First;
begin
if Gen.Utils.String_List.Has_Element (Iter) then
Ada.Text_IO.Put_Line ("Dynamo project files:");
while Gen.Utils.String_List.Has_Element (Iter) loop
Ada.Text_IO.Put (" ");
Ada.Text_IO.Put_Line (Gen.Utils.String_List.Element (Iter));
Gen.Utils.String_List.Next (Iter);
end loop;
end if;
end Print_Dynamo_Projects;
procedure Print_Project (Project : in out Gen.Model.Projects.Root_Project_Definition) is
begin
Print_GNAT_Projects (Gen.Model.Projects.Project_Definition (Project));
Print_Dynamo_Projects (Project);
Print_Modules (Project, 1);
declare
Model_Dirs : Gen.Utils.String_List.Vector;
begin
Collect_Directories (List, Model_Dirs);
declare
Iter : Gen.Utils.String_List.Cursor := Model_Dirs.First;
begin
Ada.Text_IO.Put_Line ("ADO model files:");
while Gen.Utils.String_List.Has_Element (Iter) loop
Ada.Text_IO.Put (" ");
Ada.Text_IO.Put_Line (Gen.Utils.String_List.Element (Iter));
Util.Files.Iterate_Files_Path (Pattern => "*.xml",
Path => Gen.Utils.String_List.Element (Iter),
Process => Print_Model_File'Access);
Gen.Utils.String_List.Next (Iter);
end loop;
end;
end;
end Print_Project;
begin
Generator.Read_Project ("dynamo.xml", True);
Generator.Update_Project (Print_Project'Access);
end Execute;
-- ------------------------------
-- Write the help associated with the command.
-- ------------------------------
procedure Help (Cmd : in Command;
Generator : in out Gen.Generator.Handler) is
pragma Unreferenced (Cmd, Generator);
begin
Ada.Text_IO.Put_Line ("info: Print information about the current project");
Ada.Text_IO.Put_Line ("Usage: info");
Ada.Text_IO.New_Line;
end Help;
end Gen.Commands.Info;
|
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-bitfie.ads | djamal2727/Main-Bearing-Analytical-Model | 0 | 22193 | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . B I T F I E L D _ U T I L S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2019-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Bitfield_Utils;
package System.Bitfields is
-- Instances of the generic package in System.Bitfield_Utils. So far
-- we have just one, which defaults to the natural endianness of the
-- machine. We might someday want to support Scalar_Storage_Order.
-- Note: we use Long_Long_Integer'Size / 2 instead of 32 to support
-- specifying a target configuration file where the largest integer is
-- 32 bits instead of 64.
Val_Bits : constant := Long_Long_Integer'Size / 2;
Val_Bytes : constant := Val_Bits / System.Storage_Unit;
type Val_2 is mod 2**(Val_Bits * 2) with Alignment => Val_Bytes;
pragma Provide_Shift_Operators (Val_2);
type Val is mod 2**Val_Bits with Alignment => Val_Bytes;
package Utils is new System.Bitfield_Utils.G (Val, Val_2);
procedure Copy_Bitfield
(Src_Address : Address;
Src_Offset : Utils.Bit_Offset_In_Byte;
Dest_Address : Address;
Dest_Offset : Utils.Bit_Offset_In_Byte;
Size : Utils.Bit_Size)
renames Utils.Copy_Bitfield;
end System.Bitfields;
|
Examples/XML.agda | nad/pretty | 0 | 5174 | ------------------------------------------------------------------------
-- Simplified XML documents
------------------------------------------------------------------------
-- This example is based on (but not identical to) one in Wadler's "A
-- prettier printer".
{-# OPTIONS --guardedness #-}
module Examples.XML where
open import Codata.Musical.Notation
open import Data.Bool
open import Data.Char
open import Data.List as List using (List; []; _∷_)
open import Data.List.NonEmpty as List⁺ using (_∷_)
open import Data.Product
import Data.String as String
open import Data.Unit
open import Relation.Binary.PropositionalEquality using (_≡_; refl)
open import Examples.Identifier
open import Grammar.Infinite as Grammar
using (Grammar) hiding (module Grammar)
open import Pretty using (Pretty-printer)
open import Renderer
open import Utilities
-- Text.
is-text-char : Char → Bool
is-text-char t =
('A' ≤?C t) ∧ (t ≤?C 'Z')
∨
('a' ≤?C t) ∧ (t ≤?C 'z')
∨
('0' ≤?C t) ∧ (t ≤?C '9')
∨
List.any (_==_ t) (String.toList ":./ \n")
Text : Set
Text = List (∃ λ (t : Char) → T (is-text-char t))
text-g : Grammar Text
text-g = sat _ ⋆
where open Grammar
text-printer : Pretty-printer text-g
text-printer = map⋆ (sat is-text-char)
where open Pretty
mutual
data XML : Set where
elt : Identifier → List Att → List XML → XML
txt : Text → XML
data Att : Set where
att : Identifier → Text → Att
module _ where
open Grammar
mutual
-- The following grammar is ambiguous: a sequence of txt elements can
-- be parsed in several different ways.
xml : Grammar XML
xml = (start-of-element >>= λ { (t , atts) →
elt t atts <$> (
[] <$ string′ "/"
∣ string′ ">"
⊛> xmls
<⊛ symbol′ "</"
<⊛ symbol (List.map proj₁ (List⁺.toList t)))}) <⊛
symbol′ ">"
∣ txt <$> text-g <⊛ whitespace ⋆
start-of-element : Grammar (Identifier × List Att)
start-of-element = _,_ <$ symbol′ "<" ⊛ identifier ⊛ attrs
xmls : Grammar (List XML)
xmls = whitespace ⋆ ⊛> ♯ xml ⋆
attrs : Grammar (List Att)
attrs = [] <$ whitespace ⋆
∣ List⁺.toList <$> (whitespace + ⊛> attr +)
attr : Grammar Att
attr = att <$> identifier
<⊛ whitespace ⋆
<⊛ symbol′ "="
<⊛ string′ "\""
⊛ text-g
<⊛ symbol′ "\""
open Pretty
mutual
xml-printer : Pretty-printer xml
xml-printer (elt t atts []) =
left ((start-of-element-printer (t , atts) ◇
<$> left (<$ text))
<⊛ symbol)
xml-printer (elt t atts xs) =
left ((start-of-element-printer (t , atts) ◇
<$> right (text ⊛> xmls-printer xs <⊛ symbol <⊛ symbol))
<⊛ symbol)
xml-printer (txt t) =
-- Wadler pretty-prints text items in a different way. (The
-- grammar that I use does not allow me to modify the amount of
-- whitespace in the same way as Wadler.)
right (<$> text-printer t <⊛ nil-⋆)
start-of-element-printer : Pretty-printer start-of-element
start-of-element-printer (t , atts) =
<$ symbol ⊛ identifier-printer t ⊛ attrs-printer atts
attrs-printer : Pretty-printer attrs
attrs-printer [] = left (<$ nil-⋆)
attrs-printer (a ∷ as) =
right (<$> group (nest 2 line
tt-⊛>
final-line 4
(nest 2 (map+-fill 2 attr-printer (a ∷ as))) 0))
attr-printer : Pretty-printer attr
attr-printer (att n v) =
<$> identifier-printer n
<⊛ nil-⋆
<⊛ symbol
<⊛ text
⊛ text-printer v
<⊛ symbol
-- The following definition uses "fill+ 3 (to-docs x xs)" (along
-- with the auxiliary definition of to-docs) rather than
-- "map+-fill 3 xml-printer (x ∷ xs)" because the latter piece of
-- code makes the termination checker complain.
xmls-printer : Pretty-printer xmls
xmls-printer [] = nil-⋆ ⊛> nil-⋆
xmls-printer (x ∷ xs) =
group (nest 2 line⋆
tt-⊛>
final-line-+⋆ 5 (nest 2 (fill+ 3 (to-docs x xs))) 0)
where
to-docs : ∀ x xs → Docs xml (x ∷ xs)
to-docs x [] = [ xml-printer x ]
to-docs x (x′ ∷ xs) = xml-printer x ∷ to-docs x′ xs
example : XML
example = elt (str⁺ "p")
(att (str⁺ "color") (str "red") ∷
att (str⁺ "font") (str "Times") ∷
att (str⁺ "size") (str "10") ∷ [])
(txt (str "Here is some") ∷
elt (str⁺ "em")
[]
(txt (str "emphasized") ∷ []) ∷
txt (str "text.") ∷
txt (str "Here is a") ∷
elt (str⁺ "a")
(att (str⁺ "href") (str "http://www.eg.com/") ∷ [])
(txt (str "link") ∷ []) ∷
txt (str "elsewhere.") ∷ [])
test₁ : render 30 (xml-printer example) ≡
"<p\n color=\"red\" font=\"Times\"\n size=\"10\"\n>\n Here is some\n <em> emphasized </em> text.\n Here is a\n <a\n href=\"http://www.eg.com/\"\n > link </a>\n elsewhere.\n</p>"
test₁ = refl
test₂ : render 60 (xml-printer example) ≡
"<p color=\"red\" font=\"Times\" size=\"10\" >\n Here is some <em> emphasized </em> text. Here is a\n <a href=\"http://www.eg.com/\" > link </a> elsewhere.\n</p>"
test₂ = refl
|
source/nodes/program-nodes-parenthesized_expressions.ads | optikos/oasis | 0 | 23308 | -- Copyright (c) 2019 <NAME> <<EMAIL>>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Lexical_Elements;
with Program.Elements.Expressions;
with Program.Elements.Parenthesized_Expressions;
with Program.Element_Visitors;
package Program.Nodes.Parenthesized_Expressions is
pragma Preelaborate;
type Parenthesized_Expression is
new Program.Nodes.Node
and Program.Elements.Parenthesized_Expressions
.Parenthesized_Expression
and Program.Elements.Parenthesized_Expressions
.Parenthesized_Expression_Text
with private;
function Create
(Left_Bracket_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Expression : not null Program.Elements.Expressions
.Expression_Access;
Right_Bracket_Token : not null Program.Lexical_Elements
.Lexical_Element_Access)
return Parenthesized_Expression;
type Implicit_Parenthesized_Expression is
new Program.Nodes.Node
and Program.Elements.Parenthesized_Expressions
.Parenthesized_Expression
with private;
function Create
(Expression : not null Program.Elements.Expressions
.Expression_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False)
return Implicit_Parenthesized_Expression
with Pre =>
Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance;
private
type Base_Parenthesized_Expression is
abstract new Program.Nodes.Node
and Program.Elements.Parenthesized_Expressions.Parenthesized_Expression
with record
Expression : not null Program.Elements.Expressions.Expression_Access;
end record;
procedure Initialize
(Self : aliased in out Base_Parenthesized_Expression'Class);
overriding procedure Visit
(Self : not null access Base_Parenthesized_Expression;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class);
overriding function Expression
(Self : Base_Parenthesized_Expression)
return not null Program.Elements.Expressions.Expression_Access;
overriding function Is_Parenthesized_Expression_Element
(Self : Base_Parenthesized_Expression)
return Boolean;
overriding function Is_Expression_Element
(Self : Base_Parenthesized_Expression)
return Boolean;
type Parenthesized_Expression is
new Base_Parenthesized_Expression
and Program.Elements.Parenthesized_Expressions
.Parenthesized_Expression_Text
with record
Left_Bracket_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Right_Bracket_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
end record;
overriding function To_Parenthesized_Expression_Text
(Self : aliased in out Parenthesized_Expression)
return Program.Elements.Parenthesized_Expressions
.Parenthesized_Expression_Text_Access;
overriding function Left_Bracket_Token
(Self : Parenthesized_Expression)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Right_Bracket_Token
(Self : Parenthesized_Expression)
return not null Program.Lexical_Elements.Lexical_Element_Access;
type Implicit_Parenthesized_Expression is
new Base_Parenthesized_Expression
with record
Is_Part_Of_Implicit : Boolean;
Is_Part_Of_Inherited : Boolean;
Is_Part_Of_Instance : Boolean;
end record;
overriding function To_Parenthesized_Expression_Text
(Self : aliased in out Implicit_Parenthesized_Expression)
return Program.Elements.Parenthesized_Expressions
.Parenthesized_Expression_Text_Access;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Parenthesized_Expression)
return Boolean;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Parenthesized_Expression)
return Boolean;
overriding function Is_Part_Of_Instance
(Self : Implicit_Parenthesized_Expression)
return Boolean;
end Program.Nodes.Parenthesized_Expressions;
|
Benchmarks_with_Functional_Bugs/Java/checkstyle-8381754/src/src/main/resources/com/puppycrawl/tools/checkstyle/grammars/javadoc/JavadocParser.g4 | kupl/starlab-benchmarks | 0 | 3639 | parser grammar JavadocParser;
options { tokenVocab=JavadocLexer; }
@parser::members {
boolean isNextJavadocTag() {
int token1 = _input.LA(2);
int token2 = _input.LA(3);
return isJavadocTag(token1)
|| (token1 == WS && isJavadocTag(token2));
}
boolean isJavadocTag(int type) {
switch(type) {
case AUTHOR_LITERAL:
case DEPRECATED_LITERAL:
case EXCEPTION_LITERAL:
case PARAM_LITERAL:
case RETURN_LITERAL:
case SEE_LITERAL:
case SERIAL_LITERAL:
case SERIAL_FIELD_LITERAL:
case SERIAL_DATA_LITERAL:
case SINCE_LITERAL:
case THROWS_LITERAL:
case VERSION_LITERAL:
case CUSTOM_NAME:
return true;
default:
return false;
}
}
boolean isSameTagNames(ParserRuleContext htmlTagOpen, ParserRuleContext htmlTagClose) {
String openTag = htmlTagOpen.getToken(HTML_TAG_NAME, 0).getText().toLowerCase();
String closeTag = htmlTagClose.getToken(HTML_TAG_NAME, 0).getText().toLowerCase();
System.out.println(openTag + " - " + closeTag);
return openTag.equals(closeTag);
}
}
javadoc: (
htmlElement
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag
)*
(LEADING_ASTERISK? WS* javadocTag)*
EOF;
htmlElement: htmlTag
| singletonElement
| paragraph
| li
| tr
| td
| th
| body
| colgroup
| dd
| dt
| head
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| pTagClose
| liTagClose
| trTagClose
| tdTagClose
| thTagClose
| bodyTagClose
| colgroupTagClose
| ddTagClose
| dtTagClose
| headTagClose
| htmlTagClose
| optionTagClose
| tbodyTagClose
| theadTagClose
| tfootTagClose
;
htmlElementOpen: OPEN HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
htmlElementClose: OPEN SLASH HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
attribute: HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* EQUALS (NEWLINE | LEADING_ASTERISK | WS)* (ATTR_VALUE | text | HTML_TAG_NAME);
htmlTag: htmlElementOpen (htmlElement
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)* htmlElementClose //{isSameTagNames($htmlElementOpen.ctx, $htmlElementClose.ctx)}?
| htmlElementOpen (htmlElement
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
{notifyErrorListeners($htmlElementOpen.ctx.getToken(HTML_TAG_NAME, 0).getSymbol(), "javadoc.missed.html.close", null);}
;
//////////////////////////////////////////////////////////////////////////////////////
//////////////////// HTML TAGS WITH OPTIONAL END TAG ////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////
pTagOpen: OPEN P_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
pTagClose: OPEN SLASH P_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
paragraph: pTagOpen
(htmlTag
| singletonTag
| li
| tr
| td
| th
| body
| colgroup
| dd
| dt
| head
| html
| option
| tbody
| thead
| tfoot
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
pTagClose
;
liTagOpen: OPEN LI_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
liTagClose: OPEN SLASH LI_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
li: liTagOpen
(htmlTag
| singletonTag
| paragraph
| tr
| td
| th
| body
| colgroup
| dd
| dt
| head
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
liTagClose
;
trTagOpen: OPEN TR_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
trTagClose: OPEN SLASH TR_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
tr: trTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| td
| th
| body
| colgroup
| dd
| dt
| head
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
trTagClose
;
tdTagOpen: OPEN TD_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
tdTagClose: OPEN SLASH TD_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
td: tdTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| th
| body
| colgroup
| dd
| dt
| head
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
tdTagClose
;
thTagOpen: OPEN TH_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
thTagClose: OPEN SLASH TH_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
th: thTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| body
| colgroup
| dd
| dt
| head
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
thTagClose
;
bodyTagOpen: OPEN BODY_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
bodyTagClose: OPEN SLASH BODY_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
body: bodyTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| colgroup
| dd
| dt
| head
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
bodyTagClose
;
colgroupTagOpen: OPEN COLGROUP_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
colgroupTagClose: OPEN SLASH COLGROUP_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
colgroup: colgroupTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| body
| dd
| dt
| head
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
colgroupTagClose
;
ddTagOpen: OPEN DD_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
ddTagClose: OPEN SLASH DD_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
dd: ddTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| body
| colgroup
| dt
| head
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
ddTagClose
;
dtTagOpen: OPEN DT_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
dtTagClose: OPEN SLASH DT_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
dt: dtTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| body
| colgroup
| dd
| head
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
dtTagClose
;
headTagOpen: OPEN HEAD_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
headTagClose: OPEN SLASH HEAD_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
head: headTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| body
| colgroup
| dd
| dt
| html
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
headTagClose
;
htmlTagOpen: OPEN HTML_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
htmlTagClose: OPEN SLASH HTML_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
html: htmlTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| body
| colgroup
| dd
| dt
| head
| option
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
htmlTagClose
;
optionTagOpen: OPEN OPTION_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
optionTagClose: OPEN SLASH OPTION_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
option: optionTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| body
| colgroup
| dd
| dt
| head
| html
| tbody
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| tbodyTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
optionTagClose
;
tbodyTagOpen: OPEN TBODY_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
tbodyTagClose: OPEN SLASH TBODY_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
tbody: tbodyTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| body
| colgroup
| dd
| dt
| head
| html
| option
| thead
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| theadTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
tbodyTagClose
;
tfootTagOpen: OPEN TFOOT_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
tfootTagClose: OPEN SLASH TFOOT_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
tfoot: tfootTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| body
| colgroup
| dd
| dt
| head
| html
| option
| tbody
| thead
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| theadTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
tfootTagClose
;
theadTagOpen: OPEN THEAD_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
theadTagClose: OPEN SLASH THEAD_HTML_TAG_NAME (NEWLINE | LEADING_ASTERISK | WS)* CLOSE;
thead: theadTagOpen
(htmlTag
| singletonTag
| paragraph
| li
| tr
| td
| th
| body
| colgroup
| dd
| dt
| head
| html
| option
| tbody
| tfoot
| pTagOpen
| liTagOpen
| trTagOpen
| tdTagOpen
| thTagOpen
| bodyTagOpen
| colgroupTagOpen
| ddTagOpen
| dtTagOpen
| headTagOpen
| htmlTagOpen
| optionTagOpen
| tbodyTagOpen
| tfootTagOpen
| ({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag)*
theadTagClose
;
//////////////////////////////////////////////////////////////////////////////////////
////////////////////////// SINLETON HTML TAGS //////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////
singletonElement: singletonTag
| areaTag
| baseTag
| basefrontTag
| brTag
| colTag
| frameTag
| hrTag
| imgTag
| inputTag
| isindexTag
| linkTag
| metaTag
| paramTag
| wrongSinletonTag
;
singletonTag: OPEN
(
HTML_TAG_NAME
| P_HTML_TAG_NAME
| LI_HTML_TAG_NAME
| TR_HTML_TAG_NAME
| TD_HTML_TAG_NAME
| TH_HTML_TAG_NAME
| BODY_HTML_TAG_NAME
| COLGROUP_HTML_TAG_NAME
| DD_HTML_TAG_NAME
| DT_HTML_TAG_NAME
| HEAD_HTML_TAG_NAME
| HTML_HTML_TAG_NAME
| OPTION_HTML_TAG_NAME
| TBODY_HTML_TAG_NAME
| TFOOT_HTML_TAG_NAME
| THEAD_HTML_TAG_NAME
)
(attribute | NEWLINE | LEADING_ASTERISK | WS)* SLASH_CLOSE;
areaTag: OPEN AREA_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
baseTag: OPEN BASE_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
basefrontTag: OPEN BASEFRONT_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
brTag: OPEN BR_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
colTag: OPEN COL_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
frameTag: OPEN FRAME_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
hrTag: OPEN HR_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
imgTag: OPEN IMG_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
inputTag: OPEN INPUT_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
isindexTag: OPEN ISINDEX_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
linkTag: OPEN LINK_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
metaTag: OPEN META_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
paramTag: OPEN PARAM_HTML_TAG_NAME (attribute | NEWLINE | LEADING_ASTERISK | WS)* (SLASH_CLOSE | CLOSE);
wrongSinletonTag: OPEN SLASH singletonTagName CLOSE {notifyErrorListeners($singletonTagName.start, "javadoc.wrong.singleton.html.tag", null);}
;
singletonTagName: (AREA_HTML_TAG_NAME
| BASE_HTML_TAG_NAME
| BASEFRONT_HTML_TAG_NAME
| BR_HTML_TAG_NAME
| COL_HTML_TAG_NAME
| FRAME_HTML_TAG_NAME
| HR_HTML_TAG_NAME
| IMG_HTML_TAG_NAME
| INPUT_HTML_TAG_NAME
| ISINDEX_HTML_TAG_NAME
| LINK_HTML_TAG_NAME
| META_HTML_TAG_NAME
| PARAM_HTML_TAG_NAME
)
;
//////////////////////////////////////////////////////////////////////////////////////
////////////////////////// JAVADOC TAGS ////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////
description: (
({!isNextJavadocTag()}? LEADING_ASTERISK)
| htmlComment
| CDATA
| NEWLINE
| text
| javadocInlineTag
| htmlElement
)+;
reference:
(
PACKAGE (DOT | CLASS)* HASH? MEMBER? parameters?
| (DOT | CLASS)+ HASH? MEMBER? parameters?
| HASH? MEMBER parameters?
)
;
parameters: LEFT_BRACE (ARGUMENT | COMMA | WS | NEWLINE | LEADING_ASTERISK)* RIGHT_BRACE;
javadocTag: AUTHOR_LITERAL (WS | NEWLINE)* description?
| DEPRECATED_LITERAL (WS | NEWLINE)* description?
| EXCEPTION_LITERAL (WS | NEWLINE)* CLASS_NAME? (WS | NEWLINE)* description?
| PARAM_LITERAL (WS | NEWLINE)* PARAMETER_NAME? (WS | NEWLINE)* description?
| RETURN_LITERAL (WS | NEWLINE)* description?
| SEE_LITERAL (WS | NEWLINE)* reference? (STRING | htmlElement)* (WS | NEWLINE)* description?
| SERIAL_LITERAL (WS | NEWLINE)* (LITERAL_INCLUDE | LITERAL_EXCLUDE)? description?
| SERIAL_DATA_LITERAL (WS | NEWLINE)* description?
| SERIAL_FIELD_LITERAL (WS | NEWLINE)* FIELD_NAME? (WS | NEWLINE)* FIELD_TYPE? (WS | NEWLINE)* description?
| SINCE_LITERAL (WS | NEWLINE)* description?
| THROWS_LITERAL (WS | NEWLINE)* CLASS_NAME? (WS | NEWLINE)* description?
| VERSION_LITERAL (WS | NEWLINE)* description?
| CUSTOM_NAME (WS | NEWLINE)* description?
;
//////////////////////////////////////////////////////////////////////////////////////
////////////////////////// JAVADOC INLINE TAGS /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////
javadocInlineTag:
JAVADOC_INLINE_TAG_START
(
CODE_LITERAL (WS | NEWLINE | LEADING_ASTERISK | text)*
| DOC_ROOT_LITERAL (WS | NEWLINE | LEADING_ASTERISK)*
| INHERIT_DOC_LITERAL (WS | NEWLINE | LEADING_ASTERISK)*
| LINK_LITERAL (WS | NEWLINE | LEADING_ASTERISK)* reference description?
| LINKPLAIN_LITERAL (WS | NEWLINE | LEADING_ASTERISK)* reference description?
| LITERAL_LITERAL (WS | NEWLINE | LEADING_ASTERISK | text)*
| VALUE_LITERAL (WS | NEWLINE | LEADING_ASTERISK)* reference?
| CUSTOM_NAME (WS | NEWLINE | LEADING_ASTERISK)+ description?
)
JAVADOC_INLINE_TAG_END
;
htmlComment: HTML_COMMENT_START (text | NEWLINE | LEADING_ASTERISK)* HTML_COMMENT_END;
text : (CHAR | WS)+ ;
|
oeis/000/A000227.asm | neoneye/loda-programs | 11 | 173165 | <reponame>neoneye/loda-programs
; A000227: Nearest integer to e^n.
; Submitted by <NAME>
; 1,3,7,20,55,148,403,1097,2981,8103,22026,59874,162755,442413,1202604,3269017,8886111,24154953,65659969,178482301,485165195,1318815734,3584912846,9744803446,26489122130,72004899337,195729609429,532048240602,1446257064291,3931334297144,10686474581524,29048849665247,78962960182681,214643579785916,583461742527455,1586013452313431,4311231547115195,11719142372802611,31855931757113756,86593400423993747,235385266837019985,639843493530054949,1739274941520501047,4727839468229346561,12851600114359308276
mov $1,1
mov $3,$0
mul $3,4
lpb $3
add $2,$1
mul $1,$3
mov $4,$0
cmp $4,0
add $0,$4
div $1,$0
add $2,$1
sub $3,1
lpe
div $2,2
div $2,$1
mov $0,$2
add $0,1
|
uw1/eop-mapControl.asm | JohnGlassmyer/UltimaHacks | 68 | 90300 | %include "../UltimaPatcher.asm"
%include "include/uw1.asm"
%include "include/uw1-eop.asm"
[bits 16]
startPatch EXE_LENGTH, \
expanded overlay procedure: mapControl
startBlockAt addr_eop_mapControl
push bp
mov bp, sp
; bp-based stack frame:
%assign arg_mapControl 0x04
%assign ____callerIp 0x02
%assign ____callerBp 0x00
push si
push di
cmp word [bp+arg_mapControl], MapControl_LEVEL_UP
jz levelUp
cmp word [bp+arg_mapControl], MapControl_LEVEL_DOWN
jz levelDown
cmp word [bp+arg_mapControl], MapControl_AVATAR_LEVEL
jz avatarLevel
jmp endProc
levelUp:
test word [dseg_mapDungeonLevel], 7
jz endProc
mov ax, [dseg_mapDungeonLevel]
inc ax
jmp changeMapLevel
levelDown:
mov ax, [dseg_mapDungeonLevel]
and ax, 7
cmp ax, 1
jz endProc
mov ax, [dseg_mapDungeonLevel]
dec ax
jmp changeMapLevel
avatarLevel:
mov ax, [dseg_avatarDungeonLevel]
cmp ax, [dseg_mapDungeonLevel]
jz endProc
jmp changeMapLevel
changeMapLevel:
push ax
callFromOverlay changeMapLevel
add sp, 2
endProc:
pop di
pop si
mov sp, bp
pop bp
retn
endBlockAt off_eop_mapControl_end
endPatch
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.