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
|
---|---|---|---|---|
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c9/c94001e.ada | best08618/asylo | 7 | 6655 | <filename>gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c9/c94001e.ada
-- C94001E.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 A TASK IS ALSO COMPLETED IF AN EXCEPTION IS RAISED BY
-- THE EXECUTION OF ITS SEQUENCE OF STATEMENTS.
-- THIS MUST HOLD FOR BOTH CASES WHERE A HANDLER IS PRESENT OR NOT.
-- VERSION WITH EXCEPTION HANDLER.
-- WEI 3/ 4/82
-- JWC 6/28/85 RENAMED FROM C940AGA-B.ADA
-- RLB 06/29/01 CORRECTED TO ALLOW AGGRESSIVE OPTIMIZATION.
WITH REPORT;
USE REPORT;
PROCEDURE C94001E IS
SUBTYPE ARG IS NATURAL RANGE 0..9;
SPYNUMB : NATURAL := 0;
PROCEDURE PSPY_NUMB (DIGT: IN ARG) IS
BEGIN
SPYNUMB := 10*SPYNUMB+DIGT;
END PSPY_NUMB;
BEGIN
TEST ("C94001E", "TASK COMPLETION BY EXCEPTION");
BLOCK:
DECLARE
TASK T1;
TASK BODY T1 IS
TYPE I1 IS RANGE 0 .. 1;
OBJ_I1 : I1;
BEGIN
OBJ_I1 := I1(IDENT_INT(2)); -- CONSTRAINT_ERROR.
IF OBJ_I1 /= I1(IDENT_INT(0)) THEN
PSPY_NUMB (1);
ELSE
PSPY_NUMB (2);
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR => NULL;
WHEN OTHERS => FAILED ("OTHER EXCEPTION RAISED");
END T1;
BEGIN
NULL;
END BLOCK;
IF SPYNUMB /= 0 THEN
FAILED ("TASK T1 NOT COMPLETED AFTER EXCEPTION");
COMMENT ("ACTUAL ORDER WAS:" & INTEGER'IMAGE(SPYNUMB));
END IF;
RESULT;
END C94001E;
|
firmware/kernal/keyboard.asm | QuorumComp/hc800 | 2 | 172067 | <reponame>QuorumComp/hc800<filename>firmware/kernal/keyboard.asm
INCLUDE "lowlevel/hc800.i"
INCLUDE "lowlevel/memory.i"
INCLUDE "lowlevel/rc800.i"
INCLUDE "lowlevel/scancodes.i"
INCLUDE "stdlib/stream.i"
INCLUDE "keyboard.i"
MATRIX_SIZE EQU 128/8
RSRESET
key_Ascii RB 1
key_Counter RB 1
key_SIZEOF RB 0
REPEAT_INITIAL EQU 20
REPEAT_SUB EQU 3
SECTION "Keyboard",CODE
KeyboardInitialize:
pusha
ld bc,KeyboardMatrix
ld de,MATRIX_SIZE+key_SIZEOF
ld t,0
jal SetMemory
popa
j (hl)
; --
; -- VBlank service routine
; --
KeyboardVBlank:
ld bc,KeyRepeat+key_Counter
ld t,(bc)
cmp t,0
j/z .done
sub t,1
ld (bc),t
.done j (hl)
; --
; -- Read character from keyboard
; --
; -- Output:
; -- f - "nz" condition if character available
; -- t - ASCII character
; --
KeyboardRead:
push bc-hl
ld b,IO_KEYBOARD_BASE
ld c,IO_KEYBOARD_STATUS
lio t,(bc)
cmp t,0
j/z .repeat
add c,IO_KEYBOARD_DATA-IO_KEYBOARD_STATUS
lio t,(bc)
; jal StreamHexByteOut
jal updateMatrix
cmp t,0
j/lt .make
jal repeatStop
ld f,FLAGS_Z
j .exit
.repeat jal repeatKey
j .test_t
.make and t,$7F
jal scanCodeToAscii
j/z .exit
jal setupAsciiRepeat
.test_t cmp t,0
.exit pop bc-hl
j (hl)
; --
; -- Test if key is down
; --
; -- Inputs:
; -- t - scancode to test (no make/break flag)
; --
; -- Outputs:
; -- f - "nz" condition if key down
; --
isKeyDown:
push bc/de
push ft
and t,$7
ld e,t ; e = bit #
ld t,$01
ls ft,e
ld e,t ; e = bit mask
pop ft
ld f,0
rs ft,3 ; t = byte index
ld bc,KeyboardMatrix
add ft,bc
ld t,(ft)
and t,e
cmp t,0
pop bc/de
j (hl)
; --
; -- Update keyboard matrix
; --
; -- Inputs:
; -- t - scan code including make/break bit
; --
updateMatrix:
pusha
push ft
and t,$7
ld h,t ; h = bit #
pop ft
push ft
ld l,0
cmp t,0
ld/lt l,1 ; l = bit value (make = $01 / break = $00)
ld t,l
ls ft,h
ld l,t ; l = bit mask
ld ft,$00FE
ls ft,h
or t,f
ld e,t ; e = remove bit mask
pop ft
and t,$7F
ld f,0
rs ft,3 ; t = byte index
ld bc,KeyboardMatrix
add ft,bc
ld bc,ft
ld t,(bc)
and t,e
or t,l
ld (bc),t
popa
j (hl)
; --
; -- Repeat last ASCII code
; --
; -- Outputs:
; -- t - ASCII (zero if no key)
; --
repeatKey:
push hl
ld hl,KeyRepeat+key_Counter
ld t,(hl)
cmp t,0
j/nz .no_repeat
ld t,REPEAT_SUB
ld (hl),t
sub hl,1
ld t,(hl)
j .repeat
.no_repeat ld t,0
.repeat pop hl
j (hl)
; --
; -- Stop repeating keys
; --
repeatStop:
push ft/hl
ld hl,KeyRepeat
ld t,0
ld (hl),t
pop ft/hl
j (hl)
; --
; -- Setup key repeating
; --
; -- Inputs:
; -- t - ASCII code
; --
setupAsciiRepeat:
push ft/hl
jal isAsciiRepeating
ld/nz t,0
ld hl,KeyRepeat
ld (hl),t
add hl,1
ld t,REPEAT_INITIAL
ld (hl),t
pop ft/hl
j (hl)
; --
; -- Determine if key is a repeating key
; --
; -- Inputs:
; -- t - ASCII code
; --
; -- Outputs:
; -- f - "z" condition if repeating key
; --
isAsciiRepeating:
push bc/de
ld de,.keys
ld b,t
ld c,.keys_end-.keys
.check lco t,(de)
add de,1
cmp t,b
j/eq .done
dj c,.check
.done pop bc/de
j (hl)
.keys DB KEY_LEFT
DB KEY_RIGHT
DB KEY_UP
DB KEY_DOWN
DB KEY_DELETE
DB KEY_BACKSPACE
DB ' '
.keys_end
; --
; -- Convert scancode to ASCII, taking modifier keys into account
; --
; -- Inputs:
; -- t - scancode (no make/break flag)
; --
; -- Outputs:
; -- t - ASCII character
; -- f - "nz" condition if character valid
; --
scanCodeToAscii:
push hl
cmp t,$60
j/ltu .valid_key
ld f,FLAGS_Z
j .exit
.valid_key jal getKeyboardState
ld f,0
add ft,bc
lco t,(ft)
cmp t,0
.exit pop hl
j (hl)
; --
; -- Get current keyboard modifier state
; --
; -- Outputs:
; -- bc - table
; --
getKeyboardState:
push ft/hl
jal getExtendShiftState
j/nz .extendShift
jal getShiftState
j/nz .shift
jal getSymbolShiftState
j/nz .symbol
jal getCapsLockState
j/nz .capsLock
jal getExtendState
j/nz .extend
ld bc,.table_00
.done pop ft/hl
j (hl)
.shift ld bc,.table_01
j .done
.symbol ld bc,.table_02
j .done
.capsLock ld bc,.table_03
j .done
.extend ld bc,.table_04
j .done
.extendShift ld bc,.table_05
j .done
.table_00 ; Regular
DB $00, $01, $02, $00, $04, $05, $06, $00, $08, $09, $0A, $00, $00, $00, $0E, $00
DB $10, $00, $12, $13, $14, $15, $16, $17, $18, $19, $00, $1B, $1C, $1D, $00, $00
DB ' ', $00, '"', $00, $00, $00, $00, $00, $00, $00, $00, $00, ',', $00, '.', $00
DB '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', $00, ';', $00, $00, $00, $00
DB $00, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o'
DB 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', $00, $00, $00, $00, $00
.table_01 ; + Shift
DB $00, $00, $02, $00, $00, $00, $06, $00, $04, $00, $0A, $00, $00, $00, $0E, $00
DB $10, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00
DB ' ', $00, 147, $00, $00, $00, $00, $00, $00, $00, $00, $00, 145, $00, 133, $00
DB '_', '!', '@', '#', '$', '%', '&', '\'', '(', ')', $00, ':', $00, $00, $00, $00
DB $00, 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O'
DB 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', $00, $00, $00, $00, $00
.table_02 ; + Symbol
DB $00, $00, $02, $00, $00, $00, $06, $00, $08, $00, $0A, $00, $00, $00, $0E, $00
DB $10, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00
DB ' ', $00, 148, $00, $00, $00, $00, $00, $00, $00, $00, $00, 146, $00, 149, $00
DB '_', 161, '@', '#', 162, 137, '&', '`', '(', ')', $00, ';', $00, $00, $00, $00
DB $00, '~', '*', '?', '\\', 128, '\{', '\}', '^', 191, '-', '+', '=', $B1, 247, $B0
DB 182, 187, '<', '|', '>', ']', '/', 171, 163, '[', ':', $00, $00, $00, $00, $00
.table_03 ; Caps lock
DB $00, $00, $02, $00, $00, $00, $06, $00, $08, $00, $0A, $00, $00, $00, $0E, $00
DB $10, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00
DB ' ', $00, '"', $00, $00, $00, $00, $00, $00, $00, $00, $00, ',', $00, '.', $00
DB '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', $00, ';', $00, $00, $00, $00
DB $00, 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O'
DB 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', $00, $00, $00, $00, $00
.table_04 ; Extend
DB $00, $00, $01, $00, $00, $00, $05, $00, $0C, $00, $0A, $00, $00, $00, $06, $00
DB $01, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00
DB $00, $00, $A8, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00
DB $BA, $B9, $B2, $B3, '4', '5', '6', '7', '8', '9', $00, $00, $00, $00, $00, $00
DB $00, $E5, 'B', $E7, $F0, $E9, 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', $F1, $F8
DB 'P', $E6, 'R', $DF, $DE, $FC, 'V', 'W', 'X', $FF, $9E, $00, $00, $00, $00, $00
.table_05 ; Extend+shift
DB $00, $00, $01, $00, $00, $00, $05, $00, $0C, $00, $0A, $00, $00, $00, $06, $00
DB $01, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00
DB $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00
DB $BA, $B9, $B2, $B3, '4', '5', '6', '7', '8', '9', $00, $00, $00, $00, $00, $00
DB $00, $C5, 'B', $C7, $D0, $C9, 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', $D1, $D8
DB 'P', $C6, 'R', $DF, $FE, $DC, 'V', 'W', 'X', $9F, $8E, $00, $00, $00, $00, $00
getShiftState:
push hl
ld t,KEY_LSHIFT
jal isKeyDown
j/nz .down
ld t,KEY_RSHIFT
jal isKeyDown
.down
pop hl
j (hl)
getExtendShiftState:
push hl
jal getShiftState
j/z .not_down
ld t,KEY_EXTEND
jal isKeyDown
.not_down pop hl
j (hl)
getSymbolShiftState:
ld t,KEY_SYM_SHIFT
j getCommonState
getExtendState:
ld t,KEY_EXTEND
j getCommonState
getCapsLockState:
ld t,KEY_CAPS_LOCK
getCommonState push hl
jal isKeyDown
pop hl
j (hl)
SECTION "KeyboardVars",BSS
KeyboardMatrix: DS 128/8
KeyRepeat: DS key_SIZEOF
|
tlsf/src/tlsf-block-types.adb | vasil-sd/ada-tlsf | 3 | 569 | <filename>tlsf/src/tlsf-block-types.adb<gh_stars>1-10
pragma Ada_2012;
with Bits;
with BitOperations.Search.Axiom;
with BitOperations.Search.Axiom.Most_Significant_Bit;
package body TLSF.Block.Types with SPARK_Mode, Pure, Preelaborate is
package Bits_Size is new Bits(Size_Bits); use Bits_Size;
function To_Size_Bits (S : Size) return Size_Bits
is
Result : constant Size_Bits := Size_Bits(S);
begin
pragma Assert (Natural(Size_Bits'Last) = Natural(Size'Last));
pragma Assert (Natural(S) in 0 .. Natural(Size_Bits'Last));
pragma Assert (Size(Result) = S);
return Result;
end To_Size_Bits;
function To_Address_Bits (A : Address) return Address_Bits
is
Result : constant Address_Bits := Address_Bits(A);
begin
pragma Assert (Natural(Address_Bits'Last) = Natural(Address'Last));
pragma Assert (Natural(A) in 0 .. Natural(Address_Bits'Last));
pragma Assert (Address(Result) = A);
return Result;
end To_Address_Bits;
generic
type Value_Type is range <>;
type Value_Type_Mod is mod <>;
function Is_Aligned_Generic(Val : Value_Type_Mod) return Boolean
with Pre => Integer(Value_Type_Mod'First) = Integer(Value_Type'First)
and then Integer(Value_Type_Mod'Last) = Integer(Value_Type'Last)
and then Integer(Val) in 0 .. Integer(Value_Type'Last),
Contract_Cases =>
( (Val and Align_Mask) = 0 => Is_Aligned_Generic'Result = True,
(Val and Align_Mask) /= 0 => Is_Aligned_Generic'Result = False);
function Is_Aligned_Generic(Val : Value_Type_Mod) return Boolean
is
Result : constant Boolean := (Val and Align_Mask) = 0;
begin
return Result;
end Is_Aligned_Generic;
function Is_Aligned(Val : Size) return Boolean
is
function Is_Aligned_Size is new Is_Aligned_Generic(Size, Size_Bits);
begin
return Is_Aligned_Size(Size_Bits(Val));
end Is_Aligned;
function Is_Aligned(Val : Address) return Boolean
is
function Is_Aligned_Addr is new Is_Aligned_Generic(Address, Address_Bits);
begin
return Is_Aligned_Addr(Address_Bits(Val));
end Is_Aligned;
----------------
-- Round_Size --
----------------
generic
type Value_Type is range <>;
type Value_Type_Mod is mod <>;
with function Is_Aligned (Val : Value_Type_Mod) return Boolean;
function Round_Generic (V : Value_Type) return Value_Type
with Pre => V <= Value_Type'Last - Align_Mask
and then Integer(Value_Type_Mod'First) = Integer(Value_Type'First)
and then Integer(Value_Type_Mod'Last) = Integer(Value_Type'Last)
and then Integer(V) in 0 .. Integer(Value_Type'Last),
Post => Is_Aligned(Value_Type_Mod(Round_Generic'Result))
and then (Value_Type_Mod(Round_Generic'Result) and Align_Mask) = 0;
function Round_Generic (V : Value_Type) return Value_Type is
pragma Assert (V <= Value_Type'Last - Align_Mask);
USize : constant Value_Type_Mod := Value_Type_Mod(V);
pragma Assert (USize <= Value_Type_Mod(Size'Last - Align_Mask));
Adj_Size : constant Value_Type_Mod := USize + Align_Mask;
Masked_Size : constant Value_Type_Mod := Adj_Size and (not Align_Mask);
pragma Assert (Natural(Value_Type_Mod'Last) = Natural(Value_Type'Last));
Result_Size : constant Value_Type := Value_Type(Masked_Size);
begin
pragma Assert (Is_Aligned(Masked_Size));
return Result_Size;
end Round_Generic;
function Round_Size_Up (S : Size) return Aligned_Size is
function Is_Aligned_Val is new Is_Aligned_Generic(Size, Size_Bits);
function Round is new Round_Generic(Size, Size_Bits, Is_Aligned_Val);
begin
return Round(S);
end Round_Size_Up;
function Round_Address_Up (A : Address) return Aligned_Address is
function Is_Aligned_Val is new Is_Aligned_Generic(Address, Address_Bits);
function Round is new Round_Generic(Address, Address_Bits, Is_Aligned_Val);
begin
return Round(A);
end Round_Address_Up;
function "+" (A: Aligned_Address; S: Aligned_Size) return Aligned_Address
is
Addr : constant Natural := Natural(A) + Natural(S);
pragma Assert (Addr in 0 .. Natural (Address'Last));
-- TODO add lemma:
-- Aligned + Aligned = Aligned
-- or more common case: preservation of aligment by +,-,* operations
pragma Assume (Is_Aligned(Address(Addr)));
Result : constant Aligned_Address := Address(Addr);
begin
return Result;
end "+";
function "+" (L, R : Aligned_Size) return Aligned_Size
is
Sz : constant Natural := Natural (L) + Natural (R);
pragma Assert (Sz in 0 .. Natural (Size'Last));
pragma Assume (Is_Aligned (Size (Sz)));
Result : constant Aligned_Size := Size (Sz);
begin
return Result;
end "+";
function "-" (To, From : Aligned_Address) return Aligned_Size
is
Sz : constant Natural := Natural(To) - Natural(From);
pragma Assert (Sz in 0.. Natural(Size'Last));
-- TODO add lemma:
-- Aligned + Aligned = Aligned
-- or more common case: preservation of aligment by +,-,* operations
pragma Assume (Is_Aligned(Size(Sz)));
Result : constant Aligned_Size := Size(Sz);
begin
return Result;
end "-";
function Calculate_Levels_Indices
(S : Size_Bits)
return Level_Index
is
package Search_Axiom_Pkg is new Bits_Size.Search.Axiom;
package MSB_Axiom is new Search_Axiom_Pkg.Most_Significant_Bit;
First_Bit : constant Bits_Size.Bit_Position :=
Bits_Size.Most_Significant_Bit(S);
Second_Level_Bits : Size_Bits;
MSB_Small_Block_Size : constant Bits_Size.Bit_Position :=
Bits_Size.Most_Significant_Bit(Small_Block_Size)
with Ghost;
Result : Level_Index;
begin
MSB_Axiom.Result_Is_Correct(S, First_Bit);
MSB_Axiom.Result_Is_Correct(Small_Block_Size, MSB_Small_Block_Size);
MSB_Axiom.Order_Preservation_Value_To_Index
(Value1 => S,
Value2 => Small_Block_Size,
Index1 => First_Bit,
Index2 => FL_Index_Shift);
pragma Assert (First_Bit >= FL_Index_Shift);
Second_Level_Bits := Bits_Size.Extract(S,
First_Bit - SL_Index_Count_Log2,
First_Bit - 1);
Result.First_Level := First_Level_Index (First_Bit);
Result.Second_Level := Second_Level_Index (Second_Level_Bits);
return Result;
end Calculate_Levels_Indices;
function Is_Same_Size_Class(S1, S2: Size) return Boolean
is (Calculate_Levels_Indices(Size_Bits(S1)) =
Calculate_Levels_Indices(Size_Bits(S2)));
end TLSF.Block.Types;
|
src/messages.ads | thindil/steamsky | 80 | 18405 | -- Copyright 2016-2021 <NAME>
--
-- This file is part of Steam Sky.
--
-- Steam Sky is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- Steam Sky 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 General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with Steam Sky. If not, see <http://www.gnu.org/licenses/>.
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Ada.Containers.Vectors; use Ada.Containers;
with Game; use Game;
-- ****h* Messages/Messages
-- FUNCTION
-- Provides code for manipulate in game messages
-- SOURCE
package Messages is
-- ****
-- ****t* Messages/Messages.Message_Type
-- FUNCTION
-- Types of messages
-- SOURCE
type Message_Type is
(Default, CombatMessage, TradeMessage, OrderMessage, CraftMessage,
OtherMessage, MissionMessage) with
Default_Value => Default;
-- ****
-- ****t* Messages/Messages.Message_Color
-- FUNCTION
-- Colors of messages
-- SOURCE
type Message_Color is (WHITE, YELLOW, GREEN, RED, BLUE, CYAN) with
Default_Value => WHITE;
-- ****
-- ****s* Messages/Messages.Message_Data
-- FUNCTION
-- Data structure for messages
-- PARAMETERS
-- Message - Text of message
-- MType - Type of message
-- Color - Color used for show message
-- SOURCE
type Message_Data is record
Message: Unbounded_String;
MType: Message_Type;
Color: Message_Color;
end record;
-- ****
-- ****t* Messages/Messages.Messages_Container
-- FUNCTION
-- Used to store messages data
-- SOURCE
package Messages_Container is new Vectors(Positive, Message_Data);
-- ****
-- ****v* Messages/Messages.Messages_List
-- FUNCTION
-- List of all messages
-- SOURCE
Messages_List: Messages_Container.Vector;
-- ****
-- ****v* Messages/Messages.LastMessageIndex
-- FUNCTION
-- Index of last message to show
-- SOURCE
LastMessageIndex: Natural := 0;
-- ****
-- ****f* Messages/Messages.FormatedTime
-- FUNCTION
-- Format game time
-- PARAMETERS
-- Time - Game time to format. Default is current game time
-- RESULT
-- Formatted in YYYY-MM-DD HH:MM style in game time
-- SOURCE
function FormatedTime(Time: Date_Record := Game_Date) return String with
Post => FormatedTime'Result'Length > 0,
Test_Case => (Name => "Test_FormattedTime", Mode => Nominal);
-- ****
-- ****f* Messages/Messages.AddMessage
-- FUNCTION
-- Add new message to list
-- PARAMETERS
-- Message - Text of message to add
-- MType - Type of message to add
-- Color - Color of message to add
-- SOURCE
procedure AddMessage
(Message: String; MType: Message_Type; Color: Message_Color := WHITE) with
Pre => Message'Length > 0,
Test_Case => (Name => "Test_AddMessage", Mode => Nominal);
-- ****
-- ****f* Messages/Messages.GetMessage
-- FUNCTION
-- Get Nth message of selected type
-- PARAMETERS
-- MessageIndex - If positive, get Nth message from start of list if
-- negative, get Nth message from the end of the messages
-- list
-- MType - Type of messages to check. Default all messages
-- RESULT
-- Selected message or empty message if nothing found
-- SOURCE
function GetMessage
(MessageIndex: Integer; MType: Message_Type := Default)
return Message_Data with
Test_Case => (Name => "Test_GetMessage", Mode => Robustness);
-- ****
-- ****f* Messages/Messages.ClearMessages
-- FUNCTION
-- Remove all messages
-- SOURCE
procedure ClearMessages with
Test_Case => (Name => "Test_ClearMessages", Mode => Robustness);
-- ****
-- ****f* Messages/Messages.MessagesAmount
-- FUNCTION
-- Get amount of selected type messages
-- PARAMETERS
-- MType - Type of messages to search. Default is all messages
-- RESULT
-- Amount of messages of selected type
-- SOURCE
function MessagesAmount(MType: Message_Type := Default) return Natural with
Test_Case => (Name => "Test_MessagesAmount", Mode => Robustness);
-- ****
-- ****f* Messages/Messages.RestoreMessage
-- FUNCTION
-- Restore message from save file
-- PARAMETERS
-- Message - Text of message to restore
-- MType - Type of message to restore. Default is no type
-- Color - Color of message to restore. Default is white.
-- SOURCE
procedure RestoreMessage
(Message: Unbounded_String; MType: Message_Type := Default;
Color: Message_Color := WHITE) with
Pre => Message /= Null_Unbounded_String,
Test_Case => (Name => "Test_RestoreMessage", Mode => Nominal);
-- ****
-- ****f* Messages/Messages.GetLastMessageIndex
-- FUNCTION
-- Get last message index
-- RESULT
-- List index of the last message
-- SOURCE
function GetLastMessageIndex return Natural with
Test_Case => (Name => "Test_GetLastMessageIndex", Mode => Robustness);
-- ****
end Messages;
|
oeis/008/A008473.asm | neoneye/loda-programs | 11 | 10647 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A008473: If n = Product (p_j^k_j) then a(n) = Product (p_j + k_j).
; Submitted by <NAME>
; 1,3,4,4,6,12,8,5,5,18,12,16,14,24,24,6,18,15,20,24,32,36,24,20,7,42,6,32,30,72,32,7,48,54,48,20,38,60,56,30,42,96,44,48,30,72,48,24,9,21,72,56,54,18,72,40,80,90,60,96,62,96,40,8,84,144,68,72,96,144,72,25,74,114,28,80,96,168,80,36,7,126,84,128,108,132,120,60,90,90,112,96,128,144,120,28,98,27,60,28
add $0,1
mov $1,1
lpb $0
mov $3,$0
lpb $3
mov $4,$0
mov $6,$2
cmp $6,0
add $2,$6
mod $4,$2
cmp $4,0
cmp $4,0
mov $5,$2
add $2,1
cmp $5,1
max $4,$5
sub $3,$4
lpe
mov $5,1
lpb $0
dif $0,$2
lpb $4
sub $4,1
mul $5,$2
lpe
add $5,1
lpe
mul $1,$5
lpe
mov $0,$1
|
openal-context-capture.adb | io7m/coreland-openal-ada | 1 | 26805 | <reponame>io7m/coreland-openal-ada<filename>openal-context-capture.adb<gh_stars>1-10
with Ada.IO_Exceptions;
with Interfaces.C;
with OpenAL.ALC_Thin;
with OpenAL.Thin;
with System;
package body OpenAL.Context.Capture is
package C renames Interfaces.C;
--
-- Close_Device
--
procedure Close_Device (Device : in out Device_t) is
Return_Code : constant Boolean := Boolean
(ALC_Thin.Capture_Close_Device (Device.Device_Data));
begin
Device := Invalid_Device;
pragma Assert (Return_Code'Size > 0);
end Close_Device;
--
-- Invalid_Format
--
procedure Invalid_Format
(Device : in Device_t) is
begin
raise Ada.IO_Exceptions.Data_Error with
"requested format does not match device format (" &
Format_t'Image (Device.Capture_Format) & ")";
end Invalid_Format;
--
-- Open_Device
--
type Map_Format_t is array (Format_t) of Types.Enumeration_t;
Map_Format : constant Map_Format_t :=
(Mono_8 => Thin.AL_FORMAT_MONO8,
Stereo_8 => Thin.AL_FORMAT_STEREO8,
Mono_16 => Thin.AL_FORMAT_MONO16,
Stereo_16 => Thin.AL_FORMAT_STEREO16,
Unknown => 0);
function Open_Default_Device
(Frequency : in Types.Frequency_t;
Format : in Request_Format_t;
Buffer_Size : in Buffer_Size_t) return Device_t
is
Device : Device_t;
begin
Device.Device_Data := ALC_Thin.Capture_Open_Device
(Name => System.Null_Address,
Frequency => Types.Unsigned_Integer_t (Frequency),
Format => Map_Format (Format),
Buffer_Size => Types.Size_t (Buffer_Size));
return Device;
end Open_Default_Device;
function Open_Device
(Name : in String;
Frequency : in Types.Frequency_t;
Format : in Request_Format_t;
Buffer_Size : in Buffer_Size_t) return Device_t
is
C_Name : aliased C.char_array := C.To_C (Name);
Device : Device_t;
begin
Device.Device_Data := ALC_Thin.Capture_Open_Device
(Name => C_Name (C_Name'First)'Address,
Frequency => Types.Unsigned_Integer_t (Frequency),
Format => Map_Format (Format),
Buffer_Size => Types.Size_t (Buffer_Size));
return Device;
end Open_Device;
--
-- Samples_*
--
procedure Samples_Mono_8
(Device : in Device_t;
Samples : out OpenAL.Buffer.Sample_Array_8_t) is
begin
if Device.Capture and Device.Capture_Format = Mono_8 then
ALC_Thin.Capture_Samples
(Device => Device.Device_Data,
Buffer => Samples (Samples'First)'Address,
Samples => Samples'Length);
else
Invalid_Format (Device);
end if;
end Samples_Mono_8;
procedure Samples_Mono_16
(Device : in Device_t;
Samples : out OpenAL.Buffer.Sample_Array_16_t) is
begin
if Device.Capture and Device.Capture_Format = Mono_16 then
ALC_Thin.Capture_Samples
(Device => Device.Device_Data,
Buffer => Samples (Samples'First)'Address,
Samples => Samples'Length);
else
Invalid_Format (Device);
end if;
end Samples_Mono_16;
procedure Samples_Stereo_8
(Device : in Device_t;
Samples : out OpenAL.Buffer.Sample_Array_8_t) is
begin
if Device.Capture and Device.Capture_Format = Stereo_8 then
ALC_Thin.Capture_Samples
(Device => Device.Device_Data,
Buffer => Samples (Samples'First)'Address,
Samples => Samples'Length);
else
Invalid_Format (Device);
end if;
end Samples_Stereo_8;
procedure Samples_Stereo_16
(Device : in Device_t;
Samples : out OpenAL.Buffer.Sample_Array_16_t) is
begin
if Device.Capture and Device.Capture_Format = Stereo_16 then
ALC_Thin.Capture_Samples
(Device => Device.Device_Data,
Buffer => Samples (Samples'First)'Address,
Samples => Samples'Length);
else
Invalid_Format (Device);
end if;
end Samples_Stereo_16;
--
-- Start
--
procedure Start (Device : in Device_t) is
begin
ALC_Thin.Capture_Start (Device.Device_Data);
end Start;
--
-- Stop
--
procedure Stop (Device : in Device_t) is
begin
ALC_Thin.Capture_Stop (Device.Device_Data);
end Stop;
end OpenAL.Context.Capture;
|
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce2402a.ada | best08618/asylo | 7 | 17956 | -- CE2402A.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.
--*
-- OBJECTIVE:
-- CHECK THAT READ, WRITE, INDEX, SET_INDEX, SIZE, AND
-- END_OF_FILE RAISE STATUS_ERROR WHEN APPLIED TO A NON-OPEN
-- DIRECT FILE. USE_ERROR IS NOT PERMITTED.
-- HISTORY:
-- ABW 08/17/82
-- SPS 09/16/82
-- SPS 11/09/82
-- JBG 08/30/83
-- EG 11/26/84
-- EG 06/04/85
-- GMT 08/03/87 CLARIFIED SOME OF THE FAILED MESSAGES, AND
-- REMOVED THE EXCEPTION FOR CONSTRAINT_ERROR.
WITH REPORT; USE REPORT;
WITH DIRECT_IO;
PROCEDURE CE2402A IS
PACKAGE DIR IS NEW DIRECT_IO (INTEGER);
USE DIR;
FILE1 : FILE_TYPE;
CNST : CONSTANT INTEGER := 101;
IVAL : INTEGER;
BOOL : BOOLEAN;
X_COUNT : COUNT;
P_COUNT : POSITIVE_COUNT;
BEGIN
TEST ("CE2402A","CHECK THAT READ, WRITE, INDEX, " &
"SET_INDEX, SIZE, AND END_OF_FILE " &
"RAISE STATUS_ERROR WHEN APPLIED " &
"A NON-OPEN DIRECT FILE");
BEGIN
WRITE (FILE1, CNST);
FAILED ("STATUS_ERROR WAS NOT RAISED ON WRITE - 1");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN USE_ERROR =>
FAILED ("USE_ERROR RAISED ON WRITE - 2");
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED ON WRITE - 3");
END;
BEGIN
X_COUNT := SIZE (FILE1);
FAILED ("STATUS_ERROR NOT RAISED ON SIZE - 4");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN USE_ERROR =>
FAILED ("USE_ERROR RAISED ON SIZE - 5");
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED ON SIZE - 6");
END;
BEGIN
BOOL := END_OF_FILE (FILE1);
FAILED ("STATUS_ERROR WAS NOT RAISED ON END_OF_FILE - 7");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN USE_ERROR =>
FAILED ("USE_ERROR RAISED ON END_OF_FILE - 8");
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED ON END_OF_FILE - 9");
END;
BEGIN
P_COUNT := INDEX (FILE1);
FAILED ("STATUS_ERROR WAS NOT RAISED ON INDEX - 10");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN USE_ERROR =>
FAILED ("USE_ERROR RAISED ON INDEX - 11");
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED ON INDEX - 12");
END;
BEGIN
READ (FILE1, IVAL);
FAILED ("STATUS_ERROR WAS NOT RAISED ON READ - 13");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN USE_ERROR =>
FAILED ("USE_ERROR RAISED ON READ - 14");
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED ON READ - 15");
END;
DECLARE
ONE : POSITIVE_COUNT := POSITIVE_COUNT (IDENT_INT(1));
BEGIN
BEGIN
WRITE (FILE1, CNST, ONE);
FAILED ("STATUS_ERROR NOT RAISED ON WRITE - 16");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN USE_ERROR =>
FAILED ("USE_ERROR RAISED ON WRITE - 17");
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED ON WRITE - 18");
END;
BEGIN
SET_INDEX (FILE1,ONE);
FAILED ("STATUS_ERROR NOT RAISED ON SET_INDEX - 19");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN USE_ERROR =>
FAILED ("USE_ERROR RAISED ON SET_INDEX - 20");
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED ON SET_INDEX - 21");
END;
BEGIN
READ (FILE1, IVAL, ONE);
FAILED ("STATUS_ERROR WAS NOT RAISED ON READ - 22");
EXCEPTION
WHEN STATUS_ERROR =>
NULL;
WHEN USE_ERROR =>
FAILED ("USE_ERROR RAISED ON READ - 23");
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED ON READ - 24");
END;
END;
RESULT;
END CE2402A;
|
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xca.log_5397_1143.asm | ljhsiun2/medusa | 9 | 95096 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x7d1f, %r8
xor %rdi, %rdi
mov $0x6162636465666768, %r15
movq %r15, %xmm2
movups %xmm2, (%r8)
nop
sub %rax, %rax
lea addresses_D_ht+0xe61f, %rbx
clflush (%rbx)
nop
nop
nop
nop
nop
add $42923, %rsi
mov (%rbx), %rcx
nop
nop
nop
nop
nop
dec %rsi
lea addresses_normal_ht+0xe11f, %rax
nop
nop
nop
sub $2859, %r8
and $0xffffffffffffffc0, %rax
movaps (%rax), %xmm5
vpextrq $1, %xmm5, %rsi
nop
nop
and %rdi, %rdi
lea addresses_A_ht+0xa61f, %rbx
nop
nop
nop
sub %rdi, %rdi
vmovups (%rbx), %ymm0
vextracti128 $1, %ymm0, %xmm0
vpextrq $0, %xmm0, %rcx
nop
nop
nop
cmp $19935, %rbx
lea addresses_A_ht+0x18732, %rsi
lea addresses_D_ht+0x9dab, %rdi
nop
nop
nop
nop
and %r14, %r14
mov $58, %rcx
rep movsl
nop
nop
sub %rbx, %rbx
lea addresses_UC_ht+0x1e57f, %rsi
nop
nop
nop
nop
inc %r8
movb $0x61, (%rsi)
nop
nop
nop
nop
cmp %rbx, %rbx
lea addresses_WC_ht+0x1d161, %r14
cmp $54826, %r15
mov $0x6162636465666768, %r8
movq %r8, %xmm0
vmovups %ymm0, (%r14)
nop
sub %rbx, %rbx
lea addresses_normal_ht+0x1991f, %rbx
clflush (%rbx)
nop
dec %r8
mov (%rbx), %si
nop
nop
nop
nop
nop
and $49076, %rcx
lea addresses_A_ht+0x5d1f, %r8
nop
nop
nop
cmp %r14, %r14
mov (%r8), %cx
nop
nop
nop
and %rax, %rax
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rax
pop %r8
pop %r15
pop %r14
ret
.global s_faulty_load
s_faulty_load:
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
// REPMOV
lea addresses_UC+0x1eb9f, %rsi
lea addresses_UC+0x901f, %rdi
xor %rbp, %rbp
mov $5, %rcx
rep movsq
cmp %rdx, %rdx
// Faulty Load
lea addresses_D+0x1f51f, %rcx
nop
nop
add %rbp, %rbp
vmovups (%rcx), %ymm7
vextracti128 $0, %ymm7, %xmm7
vpextrq $1, %xmm7, %rdi
lea oracles, %rsi
and $0xff, %rdi
shlq $12, %rdi
mov (%rsi,%rdi,1), %rdi
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %r15
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_D', 'same': False, 'AVXalign': False, 'congruent': 0}}
{'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_UC', 'congruent': 7}, 'dst': {'same': False, 'type': 'addresses_UC', 'congruent': 6}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'size': 32, 'NT': False, 'type': 'addresses_D', 'same': True, 'AVXalign': False, 'congruent': 0}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'size': 16, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 9}}
{'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_D_ht', 'same': False, 'AVXalign': False, 'congruent': 8}}
{'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_normal_ht', 'same': False, 'AVXalign': True, 'congruent': 10}}
{'OP': 'LOAD', 'src': {'size': 32, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 3}}
{'OP': 'REPM', 'src': {'same': True, 'type': 'addresses_A_ht', 'congruent': 0}, 'dst': {'same': False, 'type': 'addresses_D_ht', 'congruent': 2}}
{'OP': 'STOR', 'dst': {'size': 1, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 5}}
{'OP': 'STOR', 'dst': {'size': 32, 'NT': False, 'type': 'addresses_WC_ht', 'same': False, 'AVXalign': False, 'congruent': 0}}
{'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_normal_ht', 'same': False, 'AVXalign': False, 'congruent': 9}}
{'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 8}}
{'36': 5397}
36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36
*/
|
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_142.asm | ljhsiun2/medusa | 9 | 3504 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r14
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x3e68, %r9
nop
nop
nop
nop
sub %r11, %r11
movl $0x61626364, (%r9)
and %r14, %r14
lea addresses_WC_ht+0x17bb8, %rsi
lea addresses_A_ht+0xfba4, %rdi
nop
nop
cmp $45303, %r10
mov $13, %rcx
rep movsq
nop
nop
nop
nop
nop
add $63646, %r11
lea addresses_UC_ht+0x16318, %rsi
lea addresses_D_ht+0x17758, %rdi
nop
nop
nop
nop
nop
add %r12, %r12
mov $30, %rcx
rep movsw
and %rsi, %rsi
lea addresses_A_ht+0x1788, %r12
nop
nop
nop
dec %r9
vmovups (%r12), %ymm7
vextracti128 $1, %ymm7, %xmm7
vpextrq $1, %xmm7, %rcx
nop
nop
and $2100, %rsi
lea addresses_UC_ht+0x1aee8, %rsi
lea addresses_normal_ht+0x11f3c, %rdi
nop
cmp %r11, %r11
mov $35, %rcx
rep movsl
nop
nop
nop
and $1242, %r10
pop %rsi
pop %rdi
pop %rcx
pop %r9
pop %r14
pop %r12
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r13
push %r14
push %r8
push %rax
push %rdx
// Store
lea addresses_RW+0x185f8, %r13
nop
nop
nop
inc %r10
mov $0x5152535455565758, %r11
movq %r11, (%r13)
nop
nop
nop
nop
nop
sub %r14, %r14
// Store
lea addresses_WC+0x12f80, %rdx
nop
nop
dec %rax
movw $0x5152, (%rdx)
nop
nop
nop
nop
and $7813, %r14
// Store
lea addresses_PSE+0x1d18, %r14
cmp %r13, %r13
mov $0x5152535455565758, %r10
movq %r10, (%r14)
nop
nop
nop
nop
nop
sub %rax, %rax
// Store
mov $0x9d8, %r13
nop
nop
nop
and $45948, %r11
mov $0x5152535455565758, %r10
movq %r10, %xmm4
vmovups %ymm4, (%r13)
xor $14786, %r11
// Faulty Load
lea addresses_D+0x13b18, %r13
nop
nop
nop
cmp $39805, %rdx
movups (%r13), %xmm2
vpextrq $1, %xmm2, %r10
lea oracles, %rax
and $0xff, %r10
shlq $12, %r10
mov (%rax,%r10,1), %r10
pop %rdx
pop %rax
pop %r8
pop %r14
pop %r13
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_D', 'AVXalign': False, 'size': 2, 'NT': False, 'same': False, 'congruent': 0}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_RW', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 5}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'AVXalign': False, 'size': 2, 'NT': False, 'same': False, 'congruent': 2}}
{'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 9}}
{'OP': 'STOR', 'dst': {'type': 'addresses_P', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 6}}
[Faulty Load]
{'src': {'type': 'addresses_D', 'AVXalign': False, 'size': 16, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 4, 'NT': False, 'same': False, 'congruent': 4}}
{'src': {'type': 'addresses_WC_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_A_ht', 'congruent': 2, 'same': True}}
{'src': {'type': 'addresses_UC_ht', 'congruent': 11, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_D_ht', 'congruent': 6, 'same': False}}
{'src': {'type': 'addresses_A_ht', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 4}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC_ht', 'congruent': 2, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 2, 'same': False}}
{'36': 21829}
36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36
*/
|
Appl/BigCalc/bigcalcHolder.asm | steakknife/pcgeos | 504 | 167838 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: bigcalcHolder.asm
AUTHOR: <NAME>, Jun 17, 1992
ROUTINES:
Name Description
---- -----------
INT PCFHolderBringPCFToTopCB looks for the
REVISION HISTORY:
Name Date Description
---- ---- -----------
CP 6/17/92 Initial revision
andres 10/29/96 Don't need this for DOVE
andres 11/18/96 Don't need this for PENELOPE
DESCRIPTION:
$Id: bigcalcHolder.asm,v 1.1 97/04/04 14:37:58 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
COMMENT @%%%%%%%%%%%% DON'T NEED THIS FOR RESPONDER %%%%%%%%%%%%%%%%%%%%%%@
ProcessCode segment
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PCFHolderBringPCFToTop
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: checks the 3rd through last child for the PCF_ID
brings it to top, if found
CALLED BY:
PASS: *ds:si = PCFHolderClass object
ds:di = PCFHolderClass instance data
ds:bx = PCFHolderClass object (same as *ds:si)
es = dgroup
ax = message #
cx = PreCannedFunctionID
RETURN: cx:dx = PCF that was revitalized
carry set, if found
unset, if not
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
CP 4/23/92 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
PCFHolderBringPCFToTop method dynamic PCFHolderClass,
MSG_PCF_HOLDER_BRING_PCF_TO_TOP
uses ax, bp
.enter
;
; set up the ObjCompProcessChildren
;
clr ax
push ax
clr ax ; start with the 1st child
push ax
mov ax, offset GI_link
push ax
push cs
mov ax, offset PCFHolderBringPCFToTopCB
push ax
;cx == PreCannedFunctionID
mov bx, offset Gen_offset
mov di, offset GI_comp
call ObjCompProcessChildren
.leave
ret
PCFHolderBringPCFToTop endm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PCFHolderBringPCFToTopCB
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: call back function for PCFHolderBringPCFToTop
CALLED BY: PCFHolderBringPCFToTop
PASS: *ds:si -- PreCannedFunction object
cx -- PreCannedFunctionID
RETURN: carry set -- if PCF was found
unset, if not
DESTROYED: nothing
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
CP 4/23/92 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
PCFHolderBringPCFToTopCB proc far
uses ax,bx,si,di,bp
class PreCannedFunctionClass
.enter
mov di, ds:[si]
add di, ds:[di].PreCannedFunction_offset
cmp ds:[di].PCFI_ID, cx
clc ; assume not found
jne done ; if different, keep going
; We found the form. Set is usable, and display it.
;
mov ax, MSG_GEN_SET_USABLE
mov dl, VUM_DELAYED_VIA_UI_QUEUE
call ObjCallInstanceNoLock
mov ax, MSG_GEN_INTERACTION_INITIATE
call ObjCallInstanceNoLockES
; Return useful information
;
mov cx, ds:[LMBH_handle]
mov dx, si
stc ; stop searching
done:
.leave
ret
PCFHolderBringPCFToTopCB endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PCFHolderClosePCF
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: closes the PCF
CALLED BY: MSG_PCF_HOLDER_CLOSE_PCF
PASS: *ds:si = PCFHolderClass object
ds:di = PCFHolderClass instance data
ds:bx = PCFHolderClass object (same as *ds:si)
es = segment of PCFHolderClass
ax = message #
^cx:dx = the PCF to be closed
bp=0 = set it not usable
bp=1 = destroy it
RETURN: nothing
DESTROYED: nothing
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
CP 7/13/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
PCFHolderClosePCF method dynamic PCFHolderClass,
MSG_PCF_HOLDER_CLOSE_PCF
uses ax, cx, dx, bp
.enter
; Either we dismiss the dialog, or free it.
;
tst bp
jz dismiss
call BigCalcDestroyPCF
jmp done
; Dismiss the current dialog, but we can't do this via an
; InteractionCommand as we end up in an endless loop. So,
; just set the form NOT_USABLE.
dismiss:
mov ax, MSG_GEN_SET_NOT_USABLE
movdw bxsi, cxdx
mov dl, VUM_NOW
clr di
call ObjMessage
done:
.leave
ret
PCFHolderClosePCF endm
ProcessCode ends
|
Ada/items.adb | yangyangisyou/GildedRose-Refactoring-Kata | 2,201 | 15963 | <reponame>yangyangisyou/GildedRose-Refactoring-Kata
with Ada.Strings.Unbounded;
use Ada.Strings.Unbounded;
package body Items is
function Integer_Image(Self : in Integer) return String is
Img : constant String := Integer'Image(Self);
begin
if Self < 0 then
return Img;
else
return Img(2 .. Img'Length);
end if;
end;
function To_String(Self : in Item) return String is
Name : constant Unbounded_String := Self.Name;
Sell_In : constant Unbounded_String := To_Unbounded_String(Integer_Image(Self.Sell_In));
Quality : constant Unbounded_String := To_Unbounded_String(Integer_Image(Self.Quality));
Ret : Unbounded_String;
begin
Append(Ret, Name);
Append(Ret, ", ");
Append(Ret, Sell_In);
Append(Ret, ", ");
Append(Ret, Quality);
return To_String(Ret);
end;
end Items;
|
coverage/PENDING_SUBMIT/amdvlk/0619-COVERAGE-instruction-simplify-1258/work/variant/1_spirv_asm/shader.frag.asm | asuonpaa/ShaderTests | 0 | 95950 | <reponame>asuonpaa/ShaderTests<gh_stars>0
; SPIR-V
; Version: 1.0
; Generator: Khronos Glslang Reference Front End; 10
; Bound: 63
; Schema: 0
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %4 "main" %11 %44
OpExecutionMode %4 OriginUpperLeft
OpSource ESSL 320
OpName %4 "main"
OpName %11 "gl_FragCoord"
OpName %18 "buf0"
OpMemberName %18 0 "_GLF_uniform_float_values"
OpName %20 ""
OpName %33 "buf1"
OpMemberName %33 0 "_GLF_uniform_int_values"
OpName %35 ""
OpName %44 "_GLF_color"
OpDecorate %11 BuiltIn FragCoord
OpDecorate %17 ArrayStride 16
OpMemberDecorate %18 0 Offset 0
OpDecorate %18 Block
OpDecorate %20 DescriptorSet 0
OpDecorate %20 Binding 0
OpDecorate %32 ArrayStride 16
OpMemberDecorate %33 0 Offset 0
OpDecorate %33 Block
OpDecorate %35 DescriptorSet 0
OpDecorate %35 Binding 1
OpDecorate %44 Location 0
%2 = OpTypeVoid
%3 = OpTypeFunction %2
%6 = OpTypeInt 32 1
%7 = OpConstant %6 4
%8 = OpTypeFloat 32
%9 = OpTypeVector %8 4
%10 = OpTypePointer Input %9
%11 = OpVariable %10 Input
%12 = OpTypeInt 32 0
%13 = OpConstant %12 1
%14 = OpTypePointer Input %8
%17 = OpTypeArray %8 %13
%18 = OpTypeStruct %17
%19 = OpTypePointer Uniform %18
%20 = OpVariable %19 Uniform
%21 = OpConstant %6 0
%22 = OpTypePointer Uniform %8
%25 = OpTypeBool
%27 = OpConstant %6 256
%28 = OpConstant %6 1
%31 = OpConstant %12 3
%32 = OpTypeArray %6 %31
%33 = OpTypeStruct %32
%34 = OpTypePointer Uniform %33
%35 = OpVariable %34 Uniform
%36 = OpConstant %6 2
%37 = OpTypePointer Uniform %6
%43 = OpTypePointer Output %9
%44 = OpVariable %43 Output
%4 = OpFunction %2 None %3
%5 = OpLabel
%15 = OpAccessChain %14 %11 %13
%16 = OpLoad %8 %15
%23 = OpAccessChain %22 %20 %21 %21
%24 = OpLoad %8 %23
%26 = OpFOrdLessThan %25 %16 %24
%29 = OpSelect %6 %26 %27 %28
%30 = OpShiftRightArithmetic %6 %7 %29
%38 = OpAccessChain %37 %35 %21 %36
%39 = OpLoad %6 %38
%40 = OpIEqual %25 %30 %39
OpSelectionMerge %42 None
OpBranchConditional %40 %41 %58
%41 = OpLabel
%45 = OpAccessChain %37 %35 %21 %21
%46 = OpLoad %6 %45
%47 = OpConvertSToF %8 %46
%48 = OpAccessChain %37 %35 %21 %28
%49 = OpLoad %6 %48
%50 = OpConvertSToF %8 %49
%51 = OpAccessChain %37 %35 %21 %28
%52 = OpLoad %6 %51
%53 = OpConvertSToF %8 %52
%54 = OpAccessChain %37 %35 %21 %21
%55 = OpLoad %6 %54
%56 = OpConvertSToF %8 %55
%57 = OpCompositeConstruct %9 %47 %50 %53 %56
OpStore %44 %57
OpBranch %42
%58 = OpLabel
%59 = OpAccessChain %37 %35 %21 %28
%60 = OpLoad %6 %59
%61 = OpConvertSToF %8 %60
%62 = OpCompositeConstruct %9 %61 %61 %61 %61
OpStore %44 %62
OpBranch %42
%42 = OpLabel
OpReturn
OpFunctionEnd
|
quicksort.asm | retq/ASMWorks | 0 | 24270 | <gh_stars>0
myss SEGMENT PARA STACK 'MYSS'
DW 180 DUP(?)
myss ENDS
myds SEGMENT PARA 'MYDS'
DIZI DW 56, 197, 130, 41, 51, 0, 48
dw 193, 27, 149, 144, 223, 167, 169
dw 246, 134, 45, 156, 252, 4, 224, 16
dw 206, 209, 255, 167, 164, 20, 109, 85
dw 154, 64, 248, 66, 205, 33, 190, 49, 163
dw 53, 125, 129, 73, 227, 59, 20, 250, 234
dw 80, 28, 66, 236, 228, 90, 36, 141
dw 105, 170, 231, 74, 103, 208, 203, 89
LEN DW 126
myds ENDS
mycs SEGMENT PARA 'MYCS'
ASSUME CS:mycs, DS:myds, SS:myss
QS PROC FAR
; AX START, BX END
PUSH AX
PUSH BX
;LEA SI,DIZI
MOV SI,AX ; J
MOV DI,BX ; LAST ELEMENT
XCHG AX,BX
SUB AX,BX
MOV CX,2
XOR DX,DX
DIV CX
MOV CX,AX ; # OF LOOPS
MOV BX,SI ; I
LS: MOV AX,[DI]
CMP AX,[SI]
JNA LELSE
MOV AX,[SI]
XCHG AX,[BX]
MOV [SI],AX
ADD BX,2
LELSE:
ADD SI,2
LOOP LS
MOV AX,[DI]
XCHG AX,[BX] ;BX is the pivot
MOV [DI],AX
MOV DX,BX ; RETURN DX
POP BX
POP AX
RETF
QS ENDP
SORT PROC FAR
; AX START, BX END
PUSH DX
PUSH AX
PUSH BX
PUSH BX
SUB BX,AX
CMP BX,2
POP BX
JL LEND
CALL QS
;FIRST CALL
PUSH BX
MOV BX,DX
SUB BX,2
CALL SORT
;SECOND CALL
POP BX
MOV AX,DX
ADD AX,2
CALL SORT
LEND:
POP BX
POP AX
POP DX
RETF
SORT ENDP
MAIN PROC FAR
PUSH DS
XOR AX,AX
PUSH AX
MOV AX,myds
MOV DS,AX
;CODE STARTS
LEA AX,DIZI
MOV BX,LEN
CALL SORT
RETF
MAIN ENDP
mycs ENDS
END MAIN
|
src/main/antlr4/net/tarilabs/aytb/Bot.g4 | tarilabs/quarkus-aytb | 0 | 6822 | grammar Bot;
parse
: ( commands
| . )*
EOF
;
commands: command+ ;
command:
rgb_command
| color_command ;
rgb_command: SRGB HASH? rgb=HEX;
color_command: SCOLOR color=WORD;
SRGB
: FSLASH R G B
;
SCOLOR
: FSLASH C O L O R
;
HEX
: HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT
;
WORD
: [a-zA-Z]+
;
HASH : '#';
fragment FSLASH: '/';
fragment HEX_DIGIT : [0-9] | A | B | C | D | E | F | O ; // adding O as Oscar as OCR might interpret zero as an O.
fragment A:[aA];
fragment B:[bB];
fragment C:[cC];
fragment D:[dD];
fragment E:[eE];
fragment F:[fF];
fragment G:[gG];
fragment H:[hH];
fragment I:[iI];
fragment J:[jJ];
fragment K:[kK];
fragment L:[lL];
fragment M:[mM];
fragment N:[nN];
fragment O:[oO];
fragment P:[pP];
fragment Q:[qQ];
fragment R:[rR];
fragment S:[sS];
fragment T:[tT];
fragment U:[uU];
fragment V:[vV];
fragment W:[wW];
fragment X:[xX];
fragment Y:[yY];
fragment Z:[zZ];
EVERYTHING
: . -> skip
; |
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48.log_21829_1288.asm | ljhsiun2/medusa | 9 | 12424 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r15
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0xeddd, %r15
cmp $3178, %r10
movb (%r15), %r14b
nop
nop
nop
inc %rdi
lea addresses_WC_ht+0xa2dd, %r14
clflush (%r14)
nop
nop
nop
dec %rdx
movl $0x61626364, (%r14)
nop
nop
nop
and $54078, %r10
lea addresses_A_ht+0x1170d, %rbp
nop
nop
nop
nop
cmp $23181, %rsi
vmovups (%rbp), %ymm2
vextracti128 $0, %ymm2, %xmm2
vpextrq $0, %xmm2, %r15
nop
sub %r15, %r15
lea addresses_D_ht+0x148dd, %r10
nop
nop
nop
add %rdx, %rdx
movl $0x61626364, (%r10)
dec %rdx
lea addresses_UC_ht+0x48dd, %rdx
nop
sub $50216, %rsi
mov $0x6162636465666768, %rbp
movq %rbp, (%rdx)
nop
nop
nop
nop
nop
sub %rsi, %rsi
lea addresses_normal_ht+0x1582d, %rsi
lea addresses_WT_ht+0x1edd, %rdi
clflush (%rsi)
nop
nop
nop
nop
xor $17340, %rbp
mov $65, %rcx
rep movsw
nop
nop
cmp $52545, %r15
lea addresses_WT_ht+0x8a39, %rsi
nop
nop
nop
nop
nop
add %rdx, %rdx
mov $0x6162636465666768, %rbp
movq %rbp, %xmm2
movups %xmm2, (%rsi)
nop
nop
nop
cmp %rdi, %rdi
lea addresses_UC_ht+0x1b2dd, %rdx
nop
sub %r14, %r14
mov (%rdx), %cx
nop
nop
inc %r15
lea addresses_WT_ht+0x19dd9, %r14
nop
nop
nop
nop
nop
cmp %rdx, %rdx
movb (%r14), %r10b
nop
nop
nop
nop
xor %rcx, %rcx
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbp
pop %r15
pop %r14
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r8
push %rax
push %rbp
push %rdx
push %rsi
// Faulty Load
mov $0x679a2200000008dd, %r8
nop
nop
and %rsi, %rsi
mov (%r8), %rbp
lea oracles, %r8
and $0xff, %rbp
shlq $12, %rbp
mov (%r8,%rbp,1), %rbp
pop %rsi
pop %rdx
pop %rbp
pop %rax
pop %r8
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'AVXalign': False, 'congruent': 0, 'size': 2, 'same': False, 'NT': True}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'AVXalign': False, 'congruent': 0, 'size': 8, 'same': True, 'NT': False}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'type': 'addresses_WT_ht', 'AVXalign': False, 'congruent': 8, 'size': 1, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': False, 'congruent': 9, 'size': 4, 'same': False, 'NT': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'AVXalign': False, 'congruent': 4, 'size': 32, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'AVXalign': False, 'congruent': 11, 'size': 4, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'AVXalign': False, 'congruent': 11, 'size': 8, 'same': False, 'NT': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 2, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 9, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'AVXalign': False, 'congruent': 1, 'size': 16, 'same': False, 'NT': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'AVXalign': False, 'congruent': 9, 'size': 2, 'same': False, 'NT': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WT_ht', 'AVXalign': True, 'congruent': 2, 'size': 1, 'same': False, 'NT': False}}
{'00': 21829}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
|
test/Fail/NonCopatternInstance.agda | dxts/agda2hs | 1 | 4155 | <filename>test/Fail/NonCopatternInstance.agda<gh_stars>1-10
module Fail.NonCopatternInstance where
record HasId (a : Set) : Set where
field id : a → a
open HasId ⦃ ... ⦄
{-# COMPILE AGDA2HS HasId class #-}
data Unit : Set where
MkUnit : Unit
{-# COMPILE AGDA2HS Unit #-}
instance
UnitHasId : HasId Unit
UnitHasId = record { id = λ x → x } -- NOT CORRECT
-- UnitHasId .id x = x -- CORRECT
{-# COMPILE AGDA2HS UnitHasId #-}
|
src/main/antlr/CommandExecutionCtxLexer.g4 | MarkL4YG/core-framework | 8 | 4600 | lexer grammar CommandExecutionCtxLexer;
fragment IDENTIFIER : [a-zA-Z0-9]+;
fragment DASH : '-' ;
fragment EQ : '=';
fragment SAFECODEPOINT
: ~ ["\\\u0000-\u001F]
;
fragment SAFECODEPOINT_PARAM
: ~ ["\\\u0000-\u001F -];
fragment ESC: '\\';
WHITESPACE: [ \t\n\r]+;
ARGUMENT_HEAD_EQ: DASH DASH? IDENTIFIER EQ;
ARGUMENT_OPTION : DASH DASH? IDENTIFIER;
PARAMETER: SAFECODEPOINT_PARAM+ | SAFECODEPOINT_PARAM+ ('-' SAFECODEPOINT_PARAM+)+;
QUOTED_PARAMETER: '"' (ESC '"' | SAFECODEPOINT)* '"'; |
oeis/267/A267247.asm | neoneye/loda-programs | 11 | 22110 | ; A267247: Decimal representation of the n-th iteration of the "Rule 165" elementary cellular automaton starting with a single ON (black) cell.
; Submitted by <NAME>(s2)
; 1,2,14,42,254,762,3822,10922,65534,196602,983022,2817962,16711422,50002682,250539758,715827882,4294967294,12884901882,64424509422,184683593642,1095216660222,3277060045562,16419659968238,46913927752362,281470681677822,844403454967802,4222051635101678,12103058920767402,71775015237779198,214759888113040122,1076060070966390510,3074457345618258602,18446744073709551614,55340232221128654842,276701161105643274222,793209995169510719402,4703919738795935661822,14074865728240387881722
mul $0,2
seq $0,219843 ; Rows of A219463 seen as numbers in binary representation.
trn $0,1
add $0,1
|
packaging/osx/res/finder_layout.scpt | emmahonkamaa/roman | 0 | 2420 | <filename>packaging/osx/res/finder_layout.scpt
tell application "Finder"
tell disk "Roman"
open
set theX to 300
set theY to 200
set theW to 760
set theH to 480
set theX2 to (theX + theW)
set theY2 to (theY + theH)
set theI1X to 200
set theI2X to (theW - theI1X)
set theIY to 200
tell container window
set current view to icon view
set toolbar visible to false
set statusbar visible to false
set the bounds to {theX, theY, theX2, theY2}
end tell
set viewOptions to the icon view options of container window
tell viewOptions
set arrangement to not arranged
set icon size to 128
set text size to 14
end tell
set background picture of viewOptions to file ".background:dmg-background.png"
set position of item "Roman.app" of container window to {theI1X, theIY}
set position of item "Applications" of container window to {theI2X, theIY}
close
open
update without registering applications
delay 2
end tell
end tell
|
so/overlay/src/overlay3.asm | bmnascimento/von-neumann-simulator | 0 | 104359 | @ 300
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
k ff
|
bddisasm_test/basic/misc_16.asm | andreaswimmer/bddisasm | 675 | 101605 | <reponame>andreaswimmer/bddisasm
bits 16
daa
das
aaa
aas
aam 100
aad 100
bound ax, [ebx + esi]
bound eax, [ebx + esi]
arpl [bx], ax
arpl [ebx], ax
nop
pause
clc
cmc
stc
cld
std
cli
sti
cbw
cwde
cwd
cdq
wait
sahf
lahf
salc
lea ax, [bx]
lea ax, [bx + si]
les ax, [bx]
les ax, [ebx]
les eax, [bx]
les eax, [ebx]
lds ax, [bx]
lds ax, [ebx]
lds eax, [bx]
lds eax, [ebx]
lss ax, [bx]
lss ax, [ebx]
lss eax, [bx]
lss eax, [ebx]
lfs ax, [bx]
lfs ax, [ebx]
lfs eax, [bx]
lfs eax, [ebx]
lgs ax, [bx]
lgs ax, [ebx]
lgs eax, [bx]
lgs eax, [ebx]
|
programs/oeis/051/A051062.asm | karttu/loda | 1 | 246705 | <filename>programs/oeis/051/A051062.asm
; A051062: a(n) = 16*n + 8.
; 8,24,40,56,72,88,104,120,136,152,168,184,200,216,232,248,264,280,296,312,328,344,360,376,392,408,424,440,456,472,488,504,520,536,552,568,584,600,616,632,648,664,680,696,712,728,744,760,776,792,808,824,840
mov $1,$0
mul $1,16
add $1,8
|
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_4087_1720.asm | ljhsiun2/medusa | 9 | 81515 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r9
push %rax
push %rbp
push %rsi
lea addresses_UC_ht+0x13d4b, %r11
dec %rsi
movl $0x61626364, (%r11)
nop
nop
nop
nop
nop
and %rax, %rax
lea addresses_WT_ht+0x9aab, %rsi
nop
nop
and $3270, %r12
mov $0x6162636465666768, %rbp
movq %rbp, (%rsi)
nop
nop
nop
cmp %r11, %r11
lea addresses_WT_ht+0x39b3, %r12
nop
nop
nop
and %rbp, %rbp
vmovups (%r12), %ymm4
vextracti128 $0, %ymm4, %xmm4
vpextrq $0, %xmm4, %r9
cmp %rsi, %rsi
lea addresses_D_ht+0x1ade3, %rax
nop
nop
nop
xor %r14, %r14
movb (%rax), %r11b
nop
nop
nop
nop
cmp $52267, %r11
lea addresses_D_ht+0x1dde3, %r12
nop
nop
add %rsi, %rsi
mov $0x6162636465666768, %rbp
movq %rbp, (%r12)
nop
nop
nop
nop
nop
cmp $5707, %r14
pop %rsi
pop %rbp
pop %rax
pop %r9
pop %r14
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %rax
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
// Load
lea addresses_D+0x199e3, %rcx
nop
nop
nop
nop
nop
dec %rbx
mov (%rcx), %rdx
nop
nop
nop
nop
sub %rdi, %rdi
// Store
mov $0x1ea3550000000d83, %rdi
nop
nop
nop
cmp $2910, %rbx
mov $0x5152535455565758, %rdx
movq %rdx, (%rdi)
xor $34108, %rbp
// Faulty Load
lea addresses_US+0x8de3, %rcx
nop
inc %r11
movups (%rcx), %xmm4
vpextrq $0, %xmm4, %rax
lea oracles, %rcx
and $0xff, %rax
shlq $12, %rax
mov (%rcx,%rax,1), %rax
pop %rdx
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %rax
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': True, 'AVXalign': False, 'size': 32, 'congruent': 0, 'same': True, 'type': 'addresses_US'}, 'OP': 'LOAD'}
{'src': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 7, 'same': False, 'type': 'addresses_D'}, 'OP': 'LOAD'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 5, 'same': False, 'type': 'addresses_NC'}, 'OP': 'STOR'}
[Faulty Load]
{'src': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 0, 'same': True, 'type': 'addresses_US'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'dst': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 3, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'STOR'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 3, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'STOR'}
{'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 4, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'LOAD'}
{'src': {'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 11, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'LOAD'}
{'dst': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 7, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'STOR'}
{'00': 4087}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
|
arch/ARM/STM32/svd/stm32wb55x/stm32_svd-rcc.ads | morbos/Ada_Drivers_Library | 2 | 17 | -- This spec has been automatically generated from STM32WB55x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.RCC is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype CR_MSIRANGE_Field is HAL.UInt4;
type CR_Register is record
MSION : Boolean := False;
MSIRDY : Boolean := False;
MSIPLLEN : Boolean := False;
-- unspecified
Reserved_3_3 : HAL.Bit := 16#0#;
MSIRANGE : CR_MSIRANGE_Field := 16#0#;
HSION : Boolean := False;
HSIKERON : Boolean := False;
HSIRDY : Boolean := False;
HSIASFS : Boolean := False;
HSIKERDY : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
HSEON : Boolean := False;
HSERDY : Boolean := False;
HSEBYP : Boolean := False;
CSSON : Boolean := False;
HSEPRE : Boolean := False;
-- unspecified
Reserved_21_23 : HAL.UInt3 := 16#0#;
PLLON : Boolean := False;
PLLRDY : Boolean := False;
PLLSAI1ON : Boolean := False;
PLLSAI1RDY : Boolean := False;
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
MSION at 0 range 0 .. 0;
MSIRDY at 0 range 1 .. 1;
MSIPLLEN at 0 range 2 .. 2;
Reserved_3_3 at 0 range 3 .. 3;
MSIRANGE at 0 range 4 .. 7;
HSION at 0 range 8 .. 8;
HSIKERON at 0 range 9 .. 9;
HSIRDY at 0 range 10 .. 10;
HSIASFS at 0 range 11 .. 11;
HSIKERDY at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
HSEON at 0 range 16 .. 16;
HSERDY at 0 range 17 .. 17;
HSEBYP at 0 range 18 .. 18;
CSSON at 0 range 19 .. 19;
HSEPRE at 0 range 20 .. 20;
Reserved_21_23 at 0 range 21 .. 23;
PLLON at 0 range 24 .. 24;
PLLRDY at 0 range 25 .. 25;
PLLSAI1ON at 0 range 26 .. 26;
PLLSAI1RDY at 0 range 27 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
subtype ICSCR_MSICAL_Field is HAL.UInt8;
subtype ICSCR_MSITRIM_Field is HAL.UInt8;
subtype ICSCR_HSICAL_Field is HAL.UInt8;
subtype ICSCR_HSITRIM_Field is HAL.UInt7;
type ICSCR_Register is record
MSICAL : ICSCR_MSICAL_Field := 16#0#;
MSITRIM : ICSCR_MSITRIM_Field := 16#0#;
HSICAL : ICSCR_HSICAL_Field := 16#0#;
HSITRIM : ICSCR_HSITRIM_Field := 16#0#;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ICSCR_Register use record
MSICAL at 0 range 0 .. 7;
MSITRIM at 0 range 8 .. 15;
HSICAL at 0 range 16 .. 23;
HSITRIM at 0 range 24 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CFGR_SW_Field is HAL.UInt2;
subtype CFGR_SWS_Field is HAL.UInt2;
subtype CFGR_HPRE_Field is HAL.UInt4;
-- CFGR_PPRE array element
subtype CFGR_PPRE_Element is HAL.UInt3;
-- CFGR_PPRE array
type CFGR_PPRE_Field_Array is array (1 .. 2) of CFGR_PPRE_Element
with Component_Size => 3, Size => 6;
-- Type definition for CFGR_PPRE
type CFGR_PPRE_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- PPRE as a value
Val : HAL.UInt6;
when True =>
-- PPRE as an array
Arr : CFGR_PPRE_Field_Array;
end case;
end record
with Unchecked_Union, Size => 6;
for CFGR_PPRE_Field use record
Val at 0 range 0 .. 5;
Arr at 0 range 0 .. 5;
end record;
subtype CFGR_MCOSEL_Field is HAL.UInt4;
subtype CFGR_MCOPRE_Field is HAL.UInt3;
type CFGR_Register is record
SW : CFGR_SW_Field := 16#0#;
SWS : CFGR_SWS_Field := 16#0#;
HPRE : CFGR_HPRE_Field := 16#0#;
PPRE : CFGR_PPRE_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_14_14 : HAL.Bit := 16#0#;
STOPWUCK : Boolean := False;
HPREF : Boolean := False;
PPRE1F : Boolean := False;
PPRE2F : Boolean := False;
-- unspecified
Reserved_19_23 : HAL.UInt5 := 16#0#;
MCOSEL : CFGR_MCOSEL_Field := 16#0#;
MCOPRE : CFGR_MCOPRE_Field := 16#0#;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CFGR_Register use record
SW at 0 range 0 .. 1;
SWS at 0 range 2 .. 3;
HPRE at 0 range 4 .. 7;
PPRE at 0 range 8 .. 13;
Reserved_14_14 at 0 range 14 .. 14;
STOPWUCK at 0 range 15 .. 15;
HPREF at 0 range 16 .. 16;
PPRE1F at 0 range 17 .. 17;
PPRE2F at 0 range 18 .. 18;
Reserved_19_23 at 0 range 19 .. 23;
MCOSEL at 0 range 24 .. 27;
MCOPRE at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PLLCFGR_PLLSRC_Field is HAL.UInt2;
subtype PLLCFGR_PLLM_Field is HAL.UInt3;
subtype PLLCFGR_PLLN_Field is HAL.UInt7;
subtype PLLCFGR_PLLP_Field is HAL.UInt5;
subtype PLLCFGR_PLLQ_Field is HAL.UInt3;
subtype PLLCFGR_PLLR_Field is HAL.UInt3;
type PLLCFGR_Register is record
PLLSRC : PLLCFGR_PLLSRC_Field := 16#0#;
-- unspecified
Reserved_2_3 : HAL.UInt2 := 16#0#;
PLLM : PLLCFGR_PLLM_Field := 16#0#;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#0#;
PLLN : PLLCFGR_PLLN_Field := 16#0#;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
PLLPEN : Boolean := False;
PLLP : PLLCFGR_PLLP_Field := 16#0#;
-- unspecified
Reserved_22_23 : HAL.UInt2 := 16#0#;
PLLQEN : Boolean := False;
PLLQ : PLLCFGR_PLLQ_Field := 16#0#;
PLLREN : Boolean := False;
PLLR : PLLCFGR_PLLR_Field := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PLLCFGR_Register use record
PLLSRC at 0 range 0 .. 1;
Reserved_2_3 at 0 range 2 .. 3;
PLLM at 0 range 4 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
PLLN at 0 range 8 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
PLLPEN at 0 range 16 .. 16;
PLLP at 0 range 17 .. 21;
Reserved_22_23 at 0 range 22 .. 23;
PLLQEN at 0 range 24 .. 24;
PLLQ at 0 range 25 .. 27;
PLLREN at 0 range 28 .. 28;
PLLR at 0 range 29 .. 31;
end record;
subtype PLL_SAI1CFGR_PLLN_Field is HAL.UInt7;
subtype PLL_SAI1CFGR_PLLP_Field is HAL.UInt5;
subtype PLL_SAI1CFGR_PLLQ_Field is HAL.UInt3;
subtype PLL_SAI1CFGR_PLLR_Field is HAL.UInt3;
type PLL_SAI1CFGR_Register is record
-- unspecified
Reserved_0_7 : HAL.UInt8 := 16#0#;
PLLN : PLL_SAI1CFGR_PLLN_Field := 16#0#;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
PLLPEN : Boolean := False;
PLLP : PLL_SAI1CFGR_PLLP_Field := 16#0#;
-- unspecified
Reserved_22_23 : HAL.UInt2 := 16#0#;
PLLQEN : Boolean := False;
PLLQ : PLL_SAI1CFGR_PLLQ_Field := 16#0#;
PLLREN : Boolean := False;
PLLR : PLL_SAI1CFGR_PLLR_Field := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PLL_SAI1CFGR_Register use record
Reserved_0_7 at 0 range 0 .. 7;
PLLN at 0 range 8 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
PLLPEN at 0 range 16 .. 16;
PLLP at 0 range 17 .. 21;
Reserved_22_23 at 0 range 22 .. 23;
PLLQEN at 0 range 24 .. 24;
PLLQ at 0 range 25 .. 27;
PLLREN at 0 range 28 .. 28;
PLLR at 0 range 29 .. 31;
end record;
type CIER_Register is record
LSI1RDYIE : Boolean := False;
LSERDYIE : Boolean := False;
MSIRDYIE : Boolean := False;
HSIRDYIE : Boolean := False;
HSERDYIE : Boolean := False;
PLLRDYIE : Boolean := False;
PLLSAI1RDYIE : Boolean := False;
-- unspecified
Reserved_7_8 : HAL.UInt2 := 16#0#;
LSECSSIE : Boolean := False;
HSI48RDYIE : Boolean := False;
LSI2RDYIE : Boolean := False;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CIER_Register use record
LSI1RDYIE at 0 range 0 .. 0;
LSERDYIE at 0 range 1 .. 1;
MSIRDYIE at 0 range 2 .. 2;
HSIRDYIE at 0 range 3 .. 3;
HSERDYIE at 0 range 4 .. 4;
PLLRDYIE at 0 range 5 .. 5;
PLLSAI1RDYIE at 0 range 6 .. 6;
Reserved_7_8 at 0 range 7 .. 8;
LSECSSIE at 0 range 9 .. 9;
HSI48RDYIE at 0 range 10 .. 10;
LSI2RDYIE at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
type CIFR_Register is record
LSI1RDYF : Boolean := False;
LSERDYF : Boolean := False;
MSIRDYF : Boolean := False;
HSIRDYF : Boolean := False;
HSERDYF : Boolean := False;
PLLRDYF : Boolean := False;
PLLSAI1RDYF : Boolean := False;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#0#;
CSSF : Boolean := False;
LSECSSF : Boolean := False;
HSI48RDYF : Boolean := False;
LSI2RDYF : Boolean := False;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CIFR_Register use record
LSI1RDYF at 0 range 0 .. 0;
LSERDYF at 0 range 1 .. 1;
MSIRDYF at 0 range 2 .. 2;
HSIRDYF at 0 range 3 .. 3;
HSERDYF at 0 range 4 .. 4;
PLLRDYF at 0 range 5 .. 5;
PLLSAI1RDYF at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
CSSF at 0 range 8 .. 8;
LSECSSF at 0 range 9 .. 9;
HSI48RDYF at 0 range 10 .. 10;
LSI2RDYF at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
type CICR_Register is record
LSI1RDYC : Boolean := False;
LSERDYC : Boolean := False;
MSIRDYC : Boolean := False;
HSIRDYC : Boolean := False;
HSERDYC : Boolean := False;
PLLRDYC : Boolean := False;
PLLSAI1RDYC : Boolean := False;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#0#;
CSSC : Boolean := False;
LSECSSC : Boolean := False;
HSI48RDYC : Boolean := False;
LSI2RDYC : Boolean := False;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CICR_Register use record
LSI1RDYC at 0 range 0 .. 0;
LSERDYC at 0 range 1 .. 1;
MSIRDYC at 0 range 2 .. 2;
HSIRDYC at 0 range 3 .. 3;
HSERDYC at 0 range 4 .. 4;
PLLRDYC at 0 range 5 .. 5;
PLLSAI1RDYC at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
CSSC at 0 range 8 .. 8;
LSECSSC at 0 range 9 .. 9;
HSI48RDYC at 0 range 10 .. 10;
LSI2RDYC at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype SMPSCR_SMPSSEL_Field is HAL.UInt2;
subtype SMPSCR_SMPSDIV_Field is HAL.UInt2;
subtype SMPSCR_SMPSSWS_Field is HAL.UInt2;
type SMPSCR_Register is record
SMPSSEL : SMPSCR_SMPSSEL_Field := 16#0#;
-- unspecified
Reserved_2_3 : HAL.UInt2 := 16#0#;
SMPSDIV : SMPSCR_SMPSDIV_Field := 16#0#;
-- unspecified
Reserved_6_7 : HAL.UInt2 := 16#0#;
SMPSSWS : SMPSCR_SMPSSWS_Field := 16#0#;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SMPSCR_Register use record
SMPSSEL at 0 range 0 .. 1;
Reserved_2_3 at 0 range 2 .. 3;
SMPSDIV at 0 range 4 .. 5;
Reserved_6_7 at 0 range 6 .. 7;
SMPSSWS at 0 range 8 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
type AHB1RSTR_Register is record
DMA1RST : Boolean := False;
DMA2RST : Boolean := False;
DMAMUX1RST : Boolean := False;
-- unspecified
Reserved_3_11 : HAL.UInt9 := 16#0#;
CRCRST : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
TSCRST : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB1RSTR_Register use record
DMA1RST at 0 range 0 .. 0;
DMA2RST at 0 range 1 .. 1;
DMAMUX1RST at 0 range 2 .. 2;
Reserved_3_11 at 0 range 3 .. 11;
CRCRST at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
TSCRST at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type AHB2RSTR_Register is record
GPIOARST : Boolean := False;
GPIOBRST : Boolean := False;
GPIOCRST : Boolean := False;
GPIODRST : Boolean := False;
GPIOERST : Boolean := False;
-- unspecified
Reserved_5_6 : HAL.UInt2 := 16#0#;
GPIOHRST : Boolean := False;
-- unspecified
Reserved_8_12 : HAL.UInt5 := 16#0#;
ADCRST : Boolean := False;
-- unspecified
Reserved_14_15 : HAL.UInt2 := 16#0#;
AES1RST : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB2RSTR_Register use record
GPIOARST at 0 range 0 .. 0;
GPIOBRST at 0 range 1 .. 1;
GPIOCRST at 0 range 2 .. 2;
GPIODRST at 0 range 3 .. 3;
GPIOERST at 0 range 4 .. 4;
Reserved_5_6 at 0 range 5 .. 6;
GPIOHRST at 0 range 7 .. 7;
Reserved_8_12 at 0 range 8 .. 12;
ADCRST at 0 range 13 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
AES1RST at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type AHB3RSTR_Register is record
-- unspecified
Reserved_0_7 : HAL.UInt8 := 16#0#;
QUADSPIRST : Boolean := False;
-- unspecified
Reserved_9_15 : HAL.UInt7 := 16#0#;
PKARST : Boolean := False;
AES2RST : Boolean := False;
RNGRST : Boolean := False;
HSEMRST : Boolean := False;
IPCCRST : Boolean := False;
-- unspecified
Reserved_21_24 : HAL.UInt4 := 16#0#;
FLASHRST : Boolean := False;
-- unspecified
Reserved_26_31 : HAL.UInt6 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB3RSTR_Register use record
Reserved_0_7 at 0 range 0 .. 7;
QUADSPIRST at 0 range 8 .. 8;
Reserved_9_15 at 0 range 9 .. 15;
PKARST at 0 range 16 .. 16;
AES2RST at 0 range 17 .. 17;
RNGRST at 0 range 18 .. 18;
HSEMRST at 0 range 19 .. 19;
IPCCRST at 0 range 20 .. 20;
Reserved_21_24 at 0 range 21 .. 24;
FLASHRST at 0 range 25 .. 25;
Reserved_26_31 at 0 range 26 .. 31;
end record;
type APB1RSTR1_Register is record
TIM2RST : Boolean := False;
-- unspecified
Reserved_1_8 : HAL.UInt8 := 16#0#;
LCDRST : Boolean := False;
-- unspecified
Reserved_10_13 : HAL.UInt4 := 16#0#;
SPI2RST : Boolean := False;
-- unspecified
Reserved_15_20 : HAL.UInt6 := 16#0#;
I2C1RST : Boolean := False;
-- unspecified
Reserved_22_22 : HAL.Bit := 16#0#;
I2C3RST : Boolean := False;
CRSRST : Boolean := False;
-- unspecified
Reserved_25_25 : HAL.Bit := 16#0#;
USBRST : Boolean := False;
-- unspecified
Reserved_27_30 : HAL.UInt4 := 16#0#;
LPTIM1RST : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB1RSTR1_Register use record
TIM2RST at 0 range 0 .. 0;
Reserved_1_8 at 0 range 1 .. 8;
LCDRST at 0 range 9 .. 9;
Reserved_10_13 at 0 range 10 .. 13;
SPI2RST at 0 range 14 .. 14;
Reserved_15_20 at 0 range 15 .. 20;
I2C1RST at 0 range 21 .. 21;
Reserved_22_22 at 0 range 22 .. 22;
I2C3RST at 0 range 23 .. 23;
CRSRST at 0 range 24 .. 24;
Reserved_25_25 at 0 range 25 .. 25;
USBRST at 0 range 26 .. 26;
Reserved_27_30 at 0 range 27 .. 30;
LPTIM1RST at 0 range 31 .. 31;
end record;
type APB1RSTR2_Register is record
LPUART1RST : Boolean := False;
-- unspecified
Reserved_1_4 : HAL.UInt4 := 16#0#;
LPTIM2RST : Boolean := False;
-- unspecified
Reserved_6_31 : HAL.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB1RSTR2_Register use record
LPUART1RST at 0 range 0 .. 0;
Reserved_1_4 at 0 range 1 .. 4;
LPTIM2RST at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
type APB2RSTR_Register is record
-- unspecified
Reserved_0_10 : HAL.UInt11 := 16#0#;
TIM1RST : Boolean := False;
SPI1RST : Boolean := False;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
USART1RST : Boolean := False;
-- unspecified
Reserved_15_16 : HAL.UInt2 := 16#0#;
TIM16RST : Boolean := False;
TIM17RST : Boolean := False;
-- unspecified
Reserved_19_20 : HAL.UInt2 := 16#0#;
SAI1RST : Boolean := False;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB2RSTR_Register use record
Reserved_0_10 at 0 range 0 .. 10;
TIM1RST at 0 range 11 .. 11;
SPI1RST at 0 range 12 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
USART1RST at 0 range 14 .. 14;
Reserved_15_16 at 0 range 15 .. 16;
TIM16RST at 0 range 17 .. 17;
TIM17RST at 0 range 18 .. 18;
Reserved_19_20 at 0 range 19 .. 20;
SAI1RST at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
type APB3RSTR_Register is record
RFRST : Boolean := False;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB3RSTR_Register use record
RFRST at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
type AHB1ENR_Register is record
DMA1EN : Boolean := False;
DMA2EN : Boolean := False;
DMAMUX1EN : Boolean := False;
-- unspecified
Reserved_3_11 : HAL.UInt9 := 16#0#;
CRCEN : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
TSCEN : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB1ENR_Register use record
DMA1EN at 0 range 0 .. 0;
DMA2EN at 0 range 1 .. 1;
DMAMUX1EN at 0 range 2 .. 2;
Reserved_3_11 at 0 range 3 .. 11;
CRCEN at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
TSCEN at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type AHB2ENR_Register is record
GPIOAEN : Boolean := False;
GPIOBEN : Boolean := False;
GPIOCEN : Boolean := False;
GPIODEN : Boolean := False;
GPIOEEN : Boolean := False;
-- unspecified
Reserved_5_6 : HAL.UInt2 := 16#0#;
GPIOHEN : Boolean := False;
-- unspecified
Reserved_8_12 : HAL.UInt5 := 16#0#;
ADCEN : Boolean := False;
-- unspecified
Reserved_14_15 : HAL.UInt2 := 16#0#;
AES1EN : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB2ENR_Register use record
GPIOAEN at 0 range 0 .. 0;
GPIOBEN at 0 range 1 .. 1;
GPIOCEN at 0 range 2 .. 2;
GPIODEN at 0 range 3 .. 3;
GPIOEEN at 0 range 4 .. 4;
Reserved_5_6 at 0 range 5 .. 6;
GPIOHEN at 0 range 7 .. 7;
Reserved_8_12 at 0 range 8 .. 12;
ADCEN at 0 range 13 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
AES1EN at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type AHB3ENR_Register is record
-- unspecified
Reserved_0_7 : HAL.UInt8 := 16#0#;
QUADSPIEN : Boolean := False;
-- unspecified
Reserved_9_15 : HAL.UInt7 := 16#0#;
PKAEN : Boolean := False;
AES2EN : Boolean := False;
RNGEN : Boolean := False;
HSEMEN : Boolean := False;
IPCCEN : Boolean := False;
-- unspecified
Reserved_21_24 : HAL.UInt4 := 16#0#;
FLASHEN : Boolean := False;
-- unspecified
Reserved_26_31 : HAL.UInt6 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB3ENR_Register use record
Reserved_0_7 at 0 range 0 .. 7;
QUADSPIEN at 0 range 8 .. 8;
Reserved_9_15 at 0 range 9 .. 15;
PKAEN at 0 range 16 .. 16;
AES2EN at 0 range 17 .. 17;
RNGEN at 0 range 18 .. 18;
HSEMEN at 0 range 19 .. 19;
IPCCEN at 0 range 20 .. 20;
Reserved_21_24 at 0 range 21 .. 24;
FLASHEN at 0 range 25 .. 25;
Reserved_26_31 at 0 range 26 .. 31;
end record;
type APB1ENR1_Register is record
TIM2EN : Boolean := False;
-- unspecified
Reserved_1_8 : HAL.UInt8 := 16#0#;
LCDEN : Boolean := False;
RTCAPBEN : Boolean := False;
WWDGEN : Boolean := False;
-- unspecified
Reserved_12_13 : HAL.UInt2 := 16#0#;
SPI2EN : Boolean := False;
-- unspecified
Reserved_15_20 : HAL.UInt6 := 16#0#;
I2C1EN : Boolean := False;
-- unspecified
Reserved_22_22 : HAL.Bit := 16#0#;
I2C3EN : Boolean := False;
CRSEN : Boolean := False;
-- unspecified
Reserved_25_25 : HAL.Bit := 16#0#;
USBEN : Boolean := False;
-- unspecified
Reserved_27_30 : HAL.UInt4 := 16#0#;
LPTIM1EN : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB1ENR1_Register use record
TIM2EN at 0 range 0 .. 0;
Reserved_1_8 at 0 range 1 .. 8;
LCDEN at 0 range 9 .. 9;
RTCAPBEN at 0 range 10 .. 10;
WWDGEN at 0 range 11 .. 11;
Reserved_12_13 at 0 range 12 .. 13;
SPI2EN at 0 range 14 .. 14;
Reserved_15_20 at 0 range 15 .. 20;
I2C1EN at 0 range 21 .. 21;
Reserved_22_22 at 0 range 22 .. 22;
I2C3EN at 0 range 23 .. 23;
CRSEN at 0 range 24 .. 24;
Reserved_25_25 at 0 range 25 .. 25;
USBEN at 0 range 26 .. 26;
Reserved_27_30 at 0 range 27 .. 30;
LPTIM1EN at 0 range 31 .. 31;
end record;
type APB1ENR2_Register is record
LPUART1EN : Boolean := False;
-- unspecified
Reserved_1_4 : HAL.UInt4 := 16#0#;
LPTIM2EN : Boolean := False;
-- unspecified
Reserved_6_31 : HAL.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB1ENR2_Register use record
LPUART1EN at 0 range 0 .. 0;
Reserved_1_4 at 0 range 1 .. 4;
LPTIM2EN at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
type APB2ENR_Register is record
-- unspecified
Reserved_0_10 : HAL.UInt11 := 16#0#;
TIM1EN : Boolean := False;
SPI1EN : Boolean := False;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
USART1EN : Boolean := False;
-- unspecified
Reserved_15_16 : HAL.UInt2 := 16#0#;
TIM16EN : Boolean := False;
TIM17EN : Boolean := False;
-- unspecified
Reserved_19_20 : HAL.UInt2 := 16#0#;
SAI1EN : Boolean := False;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB2ENR_Register use record
Reserved_0_10 at 0 range 0 .. 10;
TIM1EN at 0 range 11 .. 11;
SPI1EN at 0 range 12 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
USART1EN at 0 range 14 .. 14;
Reserved_15_16 at 0 range 15 .. 16;
TIM16EN at 0 range 17 .. 17;
TIM17EN at 0 range 18 .. 18;
Reserved_19_20 at 0 range 19 .. 20;
SAI1EN at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
type AHB1SMENR_Register is record
DMA1SMEN : Boolean := False;
DMA2SMEN : Boolean := False;
DMAMUX1SMEN : Boolean := False;
-- unspecified
Reserved_3_8 : HAL.UInt6 := 16#0#;
SRAM1SMEN : Boolean := False;
-- unspecified
Reserved_10_11 : HAL.UInt2 := 16#0#;
CRCSMEN : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
TSCSMEN : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB1SMENR_Register use record
DMA1SMEN at 0 range 0 .. 0;
DMA2SMEN at 0 range 1 .. 1;
DMAMUX1SMEN at 0 range 2 .. 2;
Reserved_3_8 at 0 range 3 .. 8;
SRAM1SMEN at 0 range 9 .. 9;
Reserved_10_11 at 0 range 10 .. 11;
CRCSMEN at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
TSCSMEN at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type AHB2SMENR_Register is record
GPIOASMEN : Boolean := False;
GPIOBSMEN : Boolean := False;
GPIOCSMEN : Boolean := False;
GPIODSMEN : Boolean := False;
GPIOESMEN : Boolean := False;
-- unspecified
Reserved_5_6 : HAL.UInt2 := 16#0#;
GPIOHSMEN : Boolean := False;
-- unspecified
Reserved_8_12 : HAL.UInt5 := 16#0#;
ADCFSSMEN : Boolean := False;
-- unspecified
Reserved_14_15 : HAL.UInt2 := 16#0#;
AES1SMEN : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB2SMENR_Register use record
GPIOASMEN at 0 range 0 .. 0;
GPIOBSMEN at 0 range 1 .. 1;
GPIOCSMEN at 0 range 2 .. 2;
GPIODSMEN at 0 range 3 .. 3;
GPIOESMEN at 0 range 4 .. 4;
Reserved_5_6 at 0 range 5 .. 6;
GPIOHSMEN at 0 range 7 .. 7;
Reserved_8_12 at 0 range 8 .. 12;
ADCFSSMEN at 0 range 13 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
AES1SMEN at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type AHB3SMENR_Register is record
-- unspecified
Reserved_0_7 : HAL.UInt8 := 16#0#;
QUADSPISMEN : Boolean := False;
-- unspecified
Reserved_9_15 : HAL.UInt7 := 16#0#;
PKASMEN : Boolean := False;
AES2SMEN : Boolean := False;
RNGSMEN : Boolean := False;
-- unspecified
Reserved_19_23 : HAL.UInt5 := 16#0#;
SRAM2SMEN : Boolean := False;
FLASHSMEN : Boolean := False;
-- unspecified
Reserved_26_31 : HAL.UInt6 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for AHB3SMENR_Register use record
Reserved_0_7 at 0 range 0 .. 7;
QUADSPISMEN at 0 range 8 .. 8;
Reserved_9_15 at 0 range 9 .. 15;
PKASMEN at 0 range 16 .. 16;
AES2SMEN at 0 range 17 .. 17;
RNGSMEN at 0 range 18 .. 18;
Reserved_19_23 at 0 range 19 .. 23;
SRAM2SMEN at 0 range 24 .. 24;
FLASHSMEN at 0 range 25 .. 25;
Reserved_26_31 at 0 range 26 .. 31;
end record;
type APB1SMENR1_Register is record
TIM2SMEN : Boolean := False;
-- unspecified
Reserved_1_8 : HAL.UInt8 := 16#0#;
LCDSMEN : Boolean := False;
RTCAPBSMEN : Boolean := False;
WWDGSMEN : Boolean := False;
-- unspecified
Reserved_12_13 : HAL.UInt2 := 16#0#;
SPI2SMEN : Boolean := False;
-- unspecified
Reserved_15_20 : HAL.UInt6 := 16#0#;
I2C1SMEN : Boolean := False;
-- unspecified
Reserved_22_22 : HAL.Bit := 16#0#;
I2C3SMEN : Boolean := False;
CRSSMEN : Boolean := False;
-- unspecified
Reserved_25_25 : HAL.Bit := 16#0#;
USBSMEN : Boolean := False;
-- unspecified
Reserved_27_30 : HAL.UInt4 := 16#0#;
LPTIM1SMEN : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB1SMENR1_Register use record
TIM2SMEN at 0 range 0 .. 0;
Reserved_1_8 at 0 range 1 .. 8;
LCDSMEN at 0 range 9 .. 9;
RTCAPBSMEN at 0 range 10 .. 10;
WWDGSMEN at 0 range 11 .. 11;
Reserved_12_13 at 0 range 12 .. 13;
SPI2SMEN at 0 range 14 .. 14;
Reserved_15_20 at 0 range 15 .. 20;
I2C1SMEN at 0 range 21 .. 21;
Reserved_22_22 at 0 range 22 .. 22;
I2C3SMEN at 0 range 23 .. 23;
CRSSMEN at 0 range 24 .. 24;
Reserved_25_25 at 0 range 25 .. 25;
USBSMEN at 0 range 26 .. 26;
Reserved_27_30 at 0 range 27 .. 30;
LPTIM1SMEN at 0 range 31 .. 31;
end record;
type APB1SMENR2_Register is record
LPUART1SMEN : Boolean := False;
-- unspecified
Reserved_1_4 : HAL.UInt4 := 16#0#;
LPTIM2SMEN : Boolean := False;
-- unspecified
Reserved_6_31 : HAL.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB1SMENR2_Register use record
LPUART1SMEN at 0 range 0 .. 0;
Reserved_1_4 at 0 range 1 .. 4;
LPTIM2SMEN at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
type APB2SMENR_Register is record
-- unspecified
Reserved_0_10 : HAL.UInt11 := 16#0#;
TIM1SMEN : Boolean := False;
SPI1SMEN : Boolean := False;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
USART1SMEN : Boolean := False;
-- unspecified
Reserved_15_16 : HAL.UInt2 := 16#0#;
TIM16SMEN : Boolean := False;
TIM17SMEN : Boolean := False;
-- unspecified
Reserved_19_20 : HAL.UInt2 := 16#0#;
SAI1SMEN : Boolean := False;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for APB2SMENR_Register use record
Reserved_0_10 at 0 range 0 .. 10;
TIM1SMEN at 0 range 11 .. 11;
SPI1SMEN at 0 range 12 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
USART1SMEN at 0 range 14 .. 14;
Reserved_15_16 at 0 range 15 .. 16;
TIM16SMEN at 0 range 17 .. 17;
TIM17SMEN at 0 range 18 .. 18;
Reserved_19_20 at 0 range 19 .. 20;
SAI1SMEN at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
subtype CCIPR_USART1SEL_Field is HAL.UInt2;
subtype CCIPR_LPUART1SEL_Field is HAL.UInt2;
subtype CCIPR_I2C1SEL_Field is HAL.UInt2;
subtype CCIPR_I2C3SEL_Field is HAL.UInt2;
subtype CCIPR_LPTIM1SEL_Field is HAL.UInt2;
subtype CCIPR_LPTIM2SEL_Field is HAL.UInt2;
subtype CCIPR_SAI1SEL_Field is HAL.UInt2;
subtype CCIPR_CLK48SEL_Field is HAL.UInt2;
subtype CCIPR_ADCSEL_Field is HAL.UInt2;
subtype CCIPR_RNGSEL_Field is HAL.UInt2;
type CCIPR_Register is record
USART1SEL : CCIPR_USART1SEL_Field := 16#0#;
-- unspecified
Reserved_2_9 : HAL.UInt8 := 16#0#;
LPUART1SEL : CCIPR_LPUART1SEL_Field := 16#0#;
I2C1SEL : CCIPR_I2C1SEL_Field := 16#0#;
-- unspecified
Reserved_14_15 : HAL.UInt2 := 16#0#;
I2C3SEL : CCIPR_I2C3SEL_Field := 16#0#;
LPTIM1SEL : CCIPR_LPTIM1SEL_Field := 16#0#;
LPTIM2SEL : CCIPR_LPTIM2SEL_Field := 16#0#;
SAI1SEL : CCIPR_SAI1SEL_Field := 16#0#;
-- unspecified
Reserved_24_25 : HAL.UInt2 := 16#0#;
CLK48SEL : CCIPR_CLK48SEL_Field := 16#0#;
ADCSEL : CCIPR_ADCSEL_Field := 16#0#;
RNGSEL : CCIPR_RNGSEL_Field := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CCIPR_Register use record
USART1SEL at 0 range 0 .. 1;
Reserved_2_9 at 0 range 2 .. 9;
LPUART1SEL at 0 range 10 .. 11;
I2C1SEL at 0 range 12 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
I2C3SEL at 0 range 16 .. 17;
LPTIM1SEL at 0 range 18 .. 19;
LPTIM2SEL at 0 range 20 .. 21;
SAI1SEL at 0 range 22 .. 23;
Reserved_24_25 at 0 range 24 .. 25;
CLK48SEL at 0 range 26 .. 27;
ADCSEL at 0 range 28 .. 29;
RNGSEL at 0 range 30 .. 31;
end record;
subtype BDCR_LSE_DRV_Field is HAL.UInt2;
subtype BDCR_RTC_SEL_Field is HAL.UInt2;
type BDCR_Register is record
LSEON : Boolean := False;
LSERDY : Boolean := False;
LSEBYP : Boolean := False;
LSE_DRV : BDCR_LSE_DRV_Field := 16#0#;
LSECSSON : Boolean := False;
LSECSSD : Boolean := False;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#0#;
RTC_SEL : BDCR_RTC_SEL_Field := 16#0#;
-- unspecified
Reserved_10_14 : HAL.UInt5 := 16#0#;
RTCEN : Boolean := False;
BDRST : Boolean := False;
-- unspecified
Reserved_17_23 : HAL.UInt7 := 16#0#;
LSCOEN : Boolean := False;
LSCOSEL : Boolean := False;
-- unspecified
Reserved_26_31 : HAL.UInt6 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BDCR_Register use record
LSEON at 0 range 0 .. 0;
LSERDY at 0 range 1 .. 1;
LSEBYP at 0 range 2 .. 2;
LSE_DRV at 0 range 3 .. 4;
LSECSSON at 0 range 5 .. 5;
LSECSSD at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
RTC_SEL at 0 range 8 .. 9;
Reserved_10_14 at 0 range 10 .. 14;
RTCEN at 0 range 15 .. 15;
BDRST at 0 range 16 .. 16;
Reserved_17_23 at 0 range 17 .. 23;
LSCOEN at 0 range 24 .. 24;
LSCOSEL at 0 range 25 .. 25;
Reserved_26_31 at 0 range 26 .. 31;
end record;
subtype CSR_LSI2TRIM_Field is HAL.UInt4;
subtype CSR_RFWKPSEL_Field is HAL.UInt2;
type CSR_Register is record
LSI1ON : Boolean := False;
LSI1RDY : Boolean := False;
LSI2ON : Boolean := False;
LSI2RDY : Boolean := False;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
LSI2TRIM : CSR_LSI2TRIM_Field := 16#0#;
-- unspecified
Reserved_12_13 : HAL.UInt2 := 16#0#;
RFWKPSEL : CSR_RFWKPSEL_Field := 16#0#;
RFRSTS : Boolean := False;
-- unspecified
Reserved_17_22 : HAL.UInt6 := 16#0#;
RMVF : Boolean := False;
-- unspecified
Reserved_24_24 : HAL.Bit := 16#0#;
OBLRSTF : Boolean := False;
PINRSTF : Boolean := False;
BORRSTF : Boolean := False;
SFTRSTF : Boolean := False;
IWDGRSTF : Boolean := False;
WWDGRSTF : Boolean := False;
LPWRRSTF : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CSR_Register use record
LSI1ON at 0 range 0 .. 0;
LSI1RDY at 0 range 1 .. 1;
LSI2ON at 0 range 2 .. 2;
LSI2RDY at 0 range 3 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
LSI2TRIM at 0 range 8 .. 11;
Reserved_12_13 at 0 range 12 .. 13;
RFWKPSEL at 0 range 14 .. 15;
RFRSTS at 0 range 16 .. 16;
Reserved_17_22 at 0 range 17 .. 22;
RMVF at 0 range 23 .. 23;
Reserved_24_24 at 0 range 24 .. 24;
OBLRSTF at 0 range 25 .. 25;
PINRSTF at 0 range 26 .. 26;
BORRSTF at 0 range 27 .. 27;
SFTRSTF at 0 range 28 .. 28;
IWDGRSTF at 0 range 29 .. 29;
WWDGRSTF at 0 range 30 .. 30;
LPWRRSTF at 0 range 31 .. 31;
end record;
subtype CRRCR_HSI48CAL_Field is HAL.UInt9;
type CRRCR_Register is record
HSI48ON : Boolean := False;
HSI48RDY : Boolean := False;
-- unspecified
Reserved_2_6 : HAL.UInt5 := 16#0#;
HSI48CAL : CRRCR_HSI48CAL_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CRRCR_Register use record
HSI48ON at 0 range 0 .. 0;
HSI48RDY at 0 range 1 .. 1;
Reserved_2_6 at 0 range 2 .. 6;
HSI48CAL at 0 range 7 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype HSECR_HSEGMC_Field is HAL.UInt3;
subtype HSECR_HSETUNE_Field is HAL.UInt6;
type HSECR_Register is record
UNLOCKED : Boolean := False;
-- unspecified
Reserved_1_2 : HAL.UInt2 := 16#0#;
HSES : Boolean := False;
HSEGMC : HSECR_HSEGMC_Field := 16#0#;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#0#;
HSETUNE : HSECR_HSETUNE_Field := 16#0#;
-- unspecified
Reserved_14_31 : HAL.UInt18 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for HSECR_Register use record
UNLOCKED at 0 range 0 .. 0;
Reserved_1_2 at 0 range 1 .. 2;
HSES at 0 range 3 .. 3;
HSEGMC at 0 range 4 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
HSETUNE at 0 range 8 .. 13;
Reserved_14_31 at 0 range 14 .. 31;
end record;
subtype EXTCFGR_SHDHPRE_Field is HAL.UInt4;
subtype EXTCFGR_C2HPRE_Field is HAL.UInt4;
type EXTCFGR_Register is record
SHDHPRE : EXTCFGR_SHDHPRE_Field := 16#0#;
C2HPRE : EXTCFGR_C2HPRE_Field := 16#0#;
-- unspecified
Reserved_8_15 : HAL.UInt8 := 16#0#;
SHDHPREF : Boolean := False;
C2HPREF : Boolean := False;
-- unspecified
Reserved_18_19 : HAL.UInt2 := 16#0#;
RFCSS : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for EXTCFGR_Register use record
SHDHPRE at 0 range 0 .. 3;
C2HPRE at 0 range 4 .. 7;
Reserved_8_15 at 0 range 8 .. 15;
SHDHPREF at 0 range 16 .. 16;
C2HPREF at 0 range 17 .. 17;
Reserved_18_19 at 0 range 18 .. 19;
RFCSS at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
type C2AHB1ENR_Register is record
DMA1EN : Boolean := False;
DMA2EN : Boolean := False;
DMAMUX1EN : Boolean := False;
-- unspecified
Reserved_3_8 : HAL.UInt6 := 16#0#;
SRAM1EN : Boolean := False;
-- unspecified
Reserved_10_11 : HAL.UInt2 := 16#0#;
CRCEN : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
TSCEN : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2AHB1ENR_Register use record
DMA1EN at 0 range 0 .. 0;
DMA2EN at 0 range 1 .. 1;
DMAMUX1EN at 0 range 2 .. 2;
Reserved_3_8 at 0 range 3 .. 8;
SRAM1EN at 0 range 9 .. 9;
Reserved_10_11 at 0 range 10 .. 11;
CRCEN at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
TSCEN at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type C2AHB2ENR_Register is record
GPIOAEN : Boolean := False;
GPIOBEN : Boolean := False;
GPIOCEN : Boolean := False;
GPIODEN : Boolean := False;
GPIOEEN : Boolean := False;
-- unspecified
Reserved_5_6 : HAL.UInt2 := 16#0#;
GPIOHEN : Boolean := False;
-- unspecified
Reserved_8_12 : HAL.UInt5 := 16#0#;
ADCEN : Boolean := False;
-- unspecified
Reserved_14_15 : HAL.UInt2 := 16#0#;
AES1EN : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2AHB2ENR_Register use record
GPIOAEN at 0 range 0 .. 0;
GPIOBEN at 0 range 1 .. 1;
GPIOCEN at 0 range 2 .. 2;
GPIODEN at 0 range 3 .. 3;
GPIOEEN at 0 range 4 .. 4;
Reserved_5_6 at 0 range 5 .. 6;
GPIOHEN at 0 range 7 .. 7;
Reserved_8_12 at 0 range 8 .. 12;
ADCEN at 0 range 13 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
AES1EN at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type C2AHB3ENR_Register is record
-- unspecified
Reserved_0_15 : HAL.UInt16 := 16#0#;
PKAEN : Boolean := False;
AES2EN : Boolean := False;
RNGEN : Boolean := False;
HSEMEN : Boolean := False;
IPCCEN : Boolean := False;
-- unspecified
Reserved_21_24 : HAL.UInt4 := 16#0#;
FLASHEN : Boolean := False;
-- unspecified
Reserved_26_31 : HAL.UInt6 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2AHB3ENR_Register use record
Reserved_0_15 at 0 range 0 .. 15;
PKAEN at 0 range 16 .. 16;
AES2EN at 0 range 17 .. 17;
RNGEN at 0 range 18 .. 18;
HSEMEN at 0 range 19 .. 19;
IPCCEN at 0 range 20 .. 20;
Reserved_21_24 at 0 range 21 .. 24;
FLASHEN at 0 range 25 .. 25;
Reserved_26_31 at 0 range 26 .. 31;
end record;
type C2APB1ENR1_Register is record
TIM2EN : Boolean := False;
-- unspecified
Reserved_1_8 : HAL.UInt8 := 16#0#;
LCDEN : Boolean := False;
RTCAPBEN : Boolean := False;
-- unspecified
Reserved_11_13 : HAL.UInt3 := 16#0#;
SPI2EN : Boolean := False;
-- unspecified
Reserved_15_20 : HAL.UInt6 := 16#0#;
I2C1EN : Boolean := False;
-- unspecified
Reserved_22_22 : HAL.Bit := 16#0#;
I2C3EN : Boolean := False;
CRSEN : Boolean := False;
-- unspecified
Reserved_25_25 : HAL.Bit := 16#0#;
USBEN : Boolean := False;
-- unspecified
Reserved_27_30 : HAL.UInt4 := 16#0#;
LPTIM1EN : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2APB1ENR1_Register use record
TIM2EN at 0 range 0 .. 0;
Reserved_1_8 at 0 range 1 .. 8;
LCDEN at 0 range 9 .. 9;
RTCAPBEN at 0 range 10 .. 10;
Reserved_11_13 at 0 range 11 .. 13;
SPI2EN at 0 range 14 .. 14;
Reserved_15_20 at 0 range 15 .. 20;
I2C1EN at 0 range 21 .. 21;
Reserved_22_22 at 0 range 22 .. 22;
I2C3EN at 0 range 23 .. 23;
CRSEN at 0 range 24 .. 24;
Reserved_25_25 at 0 range 25 .. 25;
USBEN at 0 range 26 .. 26;
Reserved_27_30 at 0 range 27 .. 30;
LPTIM1EN at 0 range 31 .. 31;
end record;
type C2APB1ENR2_Register is record
LPUART1EN : Boolean := False;
-- unspecified
Reserved_1_4 : HAL.UInt4 := 16#0#;
LPTIM2EN : Boolean := False;
-- unspecified
Reserved_6_31 : HAL.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2APB1ENR2_Register use record
LPUART1EN at 0 range 0 .. 0;
Reserved_1_4 at 0 range 1 .. 4;
LPTIM2EN at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
type C2APB2ENR_Register is record
-- unspecified
Reserved_0_10 : HAL.UInt11 := 16#0#;
TIM1EN : Boolean := False;
SPI1EN : Boolean := False;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
USART1EN : Boolean := False;
-- unspecified
Reserved_15_16 : HAL.UInt2 := 16#0#;
TIM16EN : Boolean := False;
TIM17EN : Boolean := False;
-- unspecified
Reserved_19_20 : HAL.UInt2 := 16#0#;
SAI1EN : Boolean := False;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2APB2ENR_Register use record
Reserved_0_10 at 0 range 0 .. 10;
TIM1EN at 0 range 11 .. 11;
SPI1EN at 0 range 12 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
USART1EN at 0 range 14 .. 14;
Reserved_15_16 at 0 range 15 .. 16;
TIM16EN at 0 range 17 .. 17;
TIM17EN at 0 range 18 .. 18;
Reserved_19_20 at 0 range 19 .. 20;
SAI1EN at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
type C2APB3ENR_Register is record
BLEEN : Boolean := False;
C2APB3ENR_Register_802EN : Boolean := False;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2APB3ENR_Register use record
BLEEN at 0 range 0 .. 0;
C2APB3ENR_Register_802EN at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
type C2AHB1SMENR_Register is record
DMA1SMEN : Boolean := False;
DMA2SMEN : Boolean := False;
DMAMUX1SMEN : Boolean := False;
-- unspecified
Reserved_3_8 : HAL.UInt6 := 16#0#;
SRAM1SMEN : Boolean := False;
-- unspecified
Reserved_10_11 : HAL.UInt2 := 16#0#;
CRCSMEN : Boolean := False;
-- unspecified
Reserved_13_15 : HAL.UInt3 := 16#0#;
TSCSMEN : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2AHB1SMENR_Register use record
DMA1SMEN at 0 range 0 .. 0;
DMA2SMEN at 0 range 1 .. 1;
DMAMUX1SMEN at 0 range 2 .. 2;
Reserved_3_8 at 0 range 3 .. 8;
SRAM1SMEN at 0 range 9 .. 9;
Reserved_10_11 at 0 range 10 .. 11;
CRCSMEN at 0 range 12 .. 12;
Reserved_13_15 at 0 range 13 .. 15;
TSCSMEN at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type C2AHB2SMENR_Register is record
GPIOASMEN : Boolean := False;
GPIOBSMEN : Boolean := False;
GPIOCSMEN : Boolean := False;
GPIODSMEN : Boolean := False;
GPIOESMEN : Boolean := False;
-- unspecified
Reserved_5_6 : HAL.UInt2 := 16#0#;
GPIOHSMEN : Boolean := False;
-- unspecified
Reserved_8_12 : HAL.UInt5 := 16#0#;
ADCFSSMEN : Boolean := False;
-- unspecified
Reserved_14_15 : HAL.UInt2 := 16#0#;
AES1SMEN : Boolean := False;
-- unspecified
Reserved_17_31 : HAL.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2AHB2SMENR_Register use record
GPIOASMEN at 0 range 0 .. 0;
GPIOBSMEN at 0 range 1 .. 1;
GPIOCSMEN at 0 range 2 .. 2;
GPIODSMEN at 0 range 3 .. 3;
GPIOESMEN at 0 range 4 .. 4;
Reserved_5_6 at 0 range 5 .. 6;
GPIOHSMEN at 0 range 7 .. 7;
Reserved_8_12 at 0 range 8 .. 12;
ADCFSSMEN at 0 range 13 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
AES1SMEN at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
type C2AHB3SMENR_Register is record
-- unspecified
Reserved_0_15 : HAL.UInt16 := 16#0#;
PKASMEN : Boolean := False;
AES2SMEN : Boolean := False;
RNGSMEN : Boolean := False;
-- unspecified
Reserved_19_23 : HAL.UInt5 := 16#0#;
SRAM2SMEN : Boolean := False;
FLASHSMEN : Boolean := False;
-- unspecified
Reserved_26_31 : HAL.UInt6 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2AHB3SMENR_Register use record
Reserved_0_15 at 0 range 0 .. 15;
PKASMEN at 0 range 16 .. 16;
AES2SMEN at 0 range 17 .. 17;
RNGSMEN at 0 range 18 .. 18;
Reserved_19_23 at 0 range 19 .. 23;
SRAM2SMEN at 0 range 24 .. 24;
FLASHSMEN at 0 range 25 .. 25;
Reserved_26_31 at 0 range 26 .. 31;
end record;
type C2_APB1SMENR1_Register is record
TIM2SMEN : Boolean := False;
-- unspecified
Reserved_1_8 : HAL.UInt8 := 16#0#;
LCDSMEN : Boolean := False;
RTCAPBSMEN : Boolean := False;
-- unspecified
Reserved_11_13 : HAL.UInt3 := 16#0#;
SPI2SMEN : Boolean := False;
-- unspecified
Reserved_15_20 : HAL.UInt6 := 16#0#;
I2C1SMEN : Boolean := False;
-- unspecified
Reserved_22_22 : HAL.Bit := 16#0#;
I2C3SMEN : Boolean := False;
CRSSMEN : Boolean := False;
-- unspecified
Reserved_25_25 : HAL.Bit := 16#0#;
USBSMEN : Boolean := False;
-- unspecified
Reserved_27_30 : HAL.UInt4 := 16#0#;
LPTIM1SMEN : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2_APB1SMENR1_Register use record
TIM2SMEN at 0 range 0 .. 0;
Reserved_1_8 at 0 range 1 .. 8;
LCDSMEN at 0 range 9 .. 9;
RTCAPBSMEN at 0 range 10 .. 10;
Reserved_11_13 at 0 range 11 .. 13;
SPI2SMEN at 0 range 14 .. 14;
Reserved_15_20 at 0 range 15 .. 20;
I2C1SMEN at 0 range 21 .. 21;
Reserved_22_22 at 0 range 22 .. 22;
I2C3SMEN at 0 range 23 .. 23;
CRSSMEN at 0 range 24 .. 24;
Reserved_25_25 at 0 range 25 .. 25;
USBSMEN at 0 range 26 .. 26;
Reserved_27_30 at 0 range 27 .. 30;
LPTIM1SMEN at 0 range 31 .. 31;
end record;
type C2_APB1SMENR2_Register is record
LPUART1SMEN : Boolean := False;
-- unspecified
Reserved_1_4 : HAL.UInt4 := 16#0#;
LPTIM2SMEN : Boolean := False;
-- unspecified
Reserved_6_31 : HAL.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2_APB1SMENR2_Register use record
LPUART1SMEN at 0 range 0 .. 0;
Reserved_1_4 at 0 range 1 .. 4;
LPTIM2SMEN at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
type C2_APB2SMENR_Register is record
-- unspecified
Reserved_0_10 : HAL.UInt11 := 16#0#;
TIM1SMEN : Boolean := False;
SPI1SMEN : Boolean := False;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
USART1SMEN : Boolean := False;
-- unspecified
Reserved_15_16 : HAL.UInt2 := 16#0#;
TIM16SMEN : Boolean := False;
TIM17SMEN : Boolean := False;
-- unspecified
Reserved_19_20 : HAL.UInt2 := 16#0#;
SAI1SMEN : Boolean := False;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2_APB2SMENR_Register use record
Reserved_0_10 at 0 range 0 .. 10;
TIM1SMEN at 0 range 11 .. 11;
SPI1SMEN at 0 range 12 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
USART1SMEN at 0 range 14 .. 14;
Reserved_15_16 at 0 range 15 .. 16;
TIM16SMEN at 0 range 17 .. 17;
TIM17SMEN at 0 range 18 .. 18;
Reserved_19_20 at 0 range 19 .. 20;
SAI1SMEN at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
type C2_APB3SMENR_Register is record
BLESMEN : Boolean := False;
C2_APB3SMENR_Register_802SMEN : Boolean := False;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for C2_APB3SMENR_Register use record
BLESMEN at 0 range 0 .. 0;
C2_APB3SMENR_Register_802SMEN at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
type RCC_Peripheral is record
CR : aliased CR_Register;
ICSCR : aliased ICSCR_Register;
CFGR : aliased CFGR_Register;
PLLCFGR : aliased PLLCFGR_Register;
PLL_SAI1CFGR : aliased PLL_SAI1CFGR_Register;
CIER : aliased CIER_Register;
CIFR : aliased CIFR_Register;
CICR : aliased CICR_Register;
SMPSCR : aliased SMPSCR_Register;
AHB1RSTR : aliased AHB1RSTR_Register;
AHB2RSTR : aliased AHB2RSTR_Register;
AHB3RSTR : aliased AHB3RSTR_Register;
APB1RSTR1 : aliased APB1RSTR1_Register;
APB1RSTR2 : aliased APB1RSTR2_Register;
APB2RSTR : aliased APB2RSTR_Register;
APB3RSTR : aliased APB3RSTR_Register;
AHB1ENR : aliased AHB1ENR_Register;
AHB2ENR : aliased AHB2ENR_Register;
AHB3ENR : aliased AHB3ENR_Register;
APB1ENR1 : aliased APB1ENR1_Register;
APB1ENR2 : aliased APB1ENR2_Register;
APB2ENR : aliased APB2ENR_Register;
AHB1SMENR : aliased AHB1SMENR_Register;
AHB2SMENR : aliased AHB2SMENR_Register;
AHB3SMENR : aliased AHB3SMENR_Register;
APB1SMENR1 : aliased APB1SMENR1_Register;
APB1SMENR2 : aliased APB1SMENR2_Register;
APB2SMENR : aliased APB2SMENR_Register;
CCIPR : aliased CCIPR_Register;
BDCR : aliased BDCR_Register;
CSR : aliased CSR_Register;
CRRCR : aliased CRRCR_Register;
HSECR : aliased HSECR_Register;
EXTCFGR : aliased EXTCFGR_Register;
C2AHB1ENR : aliased C2AHB1ENR_Register;
C2AHB2ENR : aliased C2AHB2ENR_Register;
C2AHB3ENR : aliased C2AHB3ENR_Register;
C2APB1ENR1 : aliased C2APB1ENR1_Register;
C2APB1ENR2 : aliased C2APB1ENR2_Register;
C2APB2ENR : aliased C2APB2ENR_Register;
C2APB3ENR : aliased C2APB3ENR_Register;
C2AHB1SMENR : aliased C2AHB1SMENR_Register;
C2AHB2SMENR : aliased C2AHB2SMENR_Register;
C2AHB3SMENR : aliased C2AHB3SMENR_Register;
C2_APB1SMENR1 : aliased C2_APB1SMENR1_Register;
C2_APB1SMENR2 : aliased C2_APB1SMENR2_Register;
C2_APB2SMENR : aliased C2_APB2SMENR_Register;
C2_APB3SMENR : aliased C2_APB3SMENR_Register;
end record
with Volatile;
for RCC_Peripheral use record
CR at 16#0# range 0 .. 31;
ICSCR at 16#4# range 0 .. 31;
CFGR at 16#8# range 0 .. 31;
PLLCFGR at 16#C# range 0 .. 31;
PLL_SAI1CFGR at 16#10# range 0 .. 31;
CIER at 16#18# range 0 .. 31;
CIFR at 16#1C# range 0 .. 31;
CICR at 16#20# range 0 .. 31;
SMPSCR at 16#24# range 0 .. 31;
AHB1RSTR at 16#28# range 0 .. 31;
AHB2RSTR at 16#2C# range 0 .. 31;
AHB3RSTR at 16#30# range 0 .. 31;
APB1RSTR1 at 16#38# range 0 .. 31;
APB1RSTR2 at 16#3C# range 0 .. 31;
APB2RSTR at 16#40# range 0 .. 31;
APB3RSTR at 16#44# range 0 .. 31;
AHB1ENR at 16#48# range 0 .. 31;
AHB2ENR at 16#4C# range 0 .. 31;
AHB3ENR at 16#50# range 0 .. 31;
APB1ENR1 at 16#58# range 0 .. 31;
APB1ENR2 at 16#5C# range 0 .. 31;
APB2ENR at 16#60# range 0 .. 31;
AHB1SMENR at 16#68# range 0 .. 31;
AHB2SMENR at 16#6C# range 0 .. 31;
AHB3SMENR at 16#70# range 0 .. 31;
APB1SMENR1 at 16#78# range 0 .. 31;
APB1SMENR2 at 16#7C# range 0 .. 31;
APB2SMENR at 16#80# range 0 .. 31;
CCIPR at 16#88# range 0 .. 31;
BDCR at 16#90# range 0 .. 31;
CSR at 16#94# range 0 .. 31;
CRRCR at 16#98# range 0 .. 31;
HSECR at 16#9C# range 0 .. 31;
EXTCFGR at 16#108# range 0 .. 31;
C2AHB1ENR at 16#148# range 0 .. 31;
C2AHB2ENR at 16#14C# range 0 .. 31;
C2AHB3ENR at 16#150# range 0 .. 31;
C2APB1ENR1 at 16#158# range 0 .. 31;
C2APB1ENR2 at 16#15C# range 0 .. 31;
C2APB2ENR at 16#160# range 0 .. 31;
C2APB3ENR at 16#164# range 0 .. 31;
C2AHB1SMENR at 16#168# range 0 .. 31;
C2AHB2SMENR at 16#16C# range 0 .. 31;
C2AHB3SMENR at 16#170# range 0 .. 31;
C2_APB1SMENR1 at 16#178# range 0 .. 31;
C2_APB1SMENR2 at 16#17C# range 0 .. 31;
C2_APB2SMENR at 16#180# range 0 .. 31;
C2_APB3SMENR at 16#184# range 0 .. 31;
end record;
RCC_Periph : aliased RCC_Peripheral
with Import, Address => System'To_Address (16#58000000#);
end STM32_SVD.RCC;
|
lab_task-3.asm | IftekharMohammad/Computer-Organization-and-Architecture-Lab-Task | 0 | 7493 | <filename>lab_task-3.asm
.MODEL SMALL
.STACK 100H
.DATA
QUES DB "ENTER A HEX DIGIT: $"
PROMPT DB "IN DECIMAL IT IS: $"
INITIAL DB ?
.CODE
MAIN PROC
MOV AX,@DATA
MOV DS,AX
MOV AH,9
LEA DX,QUES
INT 21H
MOV AH,1
INT 21H ;INPUT IN INITIAL
MOV INITIAL,AL
MOV AH,2
MOV DL,0AH
INT 21H
MOV DL,0DH
INT 21H
MOV AH,9
LEA DX,PROMPT
INT 21H
MOV AH,2
MOV DL,31H
INT 21H
MOV DL,INITIAL
SUB DL,17
INT 21H
MOV AH,4CH ;RETURN TO OS
INT 21H
MAIN ENDP
END MAIN |
Driver/IFS/RFSD/rfsdNotify.asm | steakknife/pcgeos | 504 | 87355 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: RFSD
FILE: rfsdNotify.asm
AUTHOR: <NAME>, Jun 8, 1993
REVISION HISTORY:
Name Date Description
---- ---- -----------
atw 6/ 8/93 Initial revision
DESCRIPTION:
Contains routines and message handlers to transfer file change
notifications to the remote machine.
$Id: rfsdNotify.asm,v 1.1 97/04/18 11:46:16 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
Server segment resource
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
HandleIfNotOurDrive
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Handle the notification to drives not owned by us.
CALLED BY: GLOBAL
PASS: ax - disk handle
dx - FileChangeNotificationType
RETURN: carry set if not owned by us
DESTROYED: es, ax
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
atw 6/16/93 Initial version
simon 11/17/94 Handle special file notification for
remote drives
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
HandleIfNotOurDrive proc near
diskHandle local word push ax
uses di, si
.enter
;
; First we check if the drive belongs to us
;
call FSDLockInfoShared ; ax <- seg of FSIR
mov es, ax
mov di, ss:[diskHandle]
mov di, es:[di].DD_drive
mov di, es:[di].DSE_fsd
cmp es:[di].FSD_handle, handle 0
jne ownedByUs
;
; Check the notification type if it is what we care. Right
; now, we only support Disk format notification on remote disks.
;
cmp dx, FCNT_DISK_FORMAT
stc
jne exit
;
; The remote side has formatted its disk in an exportable drive.
; We call the RFSD Strategy to update this side's DiskDesc table
; using DR_FS_DISK_INIT. We need to do this in order to update
; the local disk table (DiskDesc) of the remote disk.
;
; If we do not do this, there is possibility that the DiskDesc of
; this side will not be updated when the disk is re-accessed.
; It is because the system checks if the disk ID (DD_id) has been
; changed. If not, it does not update DiskDesc which contains
; the vol label, etc. In the case of quick format, the disk ID is not
; changed. Thus, the new vol label is never updated on this side.
; -simon 11/17/94
;
mov di, DR_FS_DISK_INIT
mov si, ss:[diskHandle] ; es:si <- DiskDesc
mov ah, FNA_SILENT
push bp ; save bp
call RFStrategy ; carry set if error
; es may be fixed up
pop bp ; restore bp
stc
jmp exit
ownedByUs:
clc ; owned by us
exit:
call FSDUnlockInfoShared
.leave
ret
HandleIfNotOurDrive endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RFSDNotifyFileChange
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Takes a file change notification, and sends it to the remote
system.
CALLED BY: GLOBAL
PASS: bp - FileChangeNotificationData
dx - FileChangeNotificationType
RETURN: nada
DESTROYED: nada
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
atw 6/ 8/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RFSDNotifyFileChange method DispatchProcessClass,
MSG_NOTIFY_FILE_CHANGE
tst es:[closingConnection]
LONG jnz exit
push ax, dx, bp, es, ds
; Append the header to the front of the block, and send it to the remote
; system.
mov bx, bp
call MemLock ;Lock down the notification block
mov ds, ax
mov ax, ds:[FCND_disk] ;AX <- disk handle (if this is not a
; batch notification)
; Check for an empty batch notification - this will happen pretty often,
; when GeoManager tries to batch up notifications and all the file
; operations are happening remotely.
cmp dx, FCNT_BATCH
jne notBatch
cmp ds:[FCBND_end], size FileChangeBatchNotificationData
je noSend
mov ax, ds:[FCBND_items].FCBNI_disk
notBatch:
; Check to see if this notifications was generated by RFSD itself in
; RFSDRemoteFileChangeNotification - if so, ignore it.
;
; HACK - for batch notifications, we check to see if the first item
; was for a drive owned by us, and if so, we ignore the
; notification.
;
; Not all notification for drives not owned by us can be
; ignored, such as Disk format notification. -simon 11/17/94
call HandleIfNotOurDrive ; carry set if notification is
; not for our drive
; es, ax destroyed
jc noSend ;Don't send on if it wasn't our drive
mov ax, MGIT_SIZE
call MemGetInfo ;AX <- # bytes in the block
; Allocate a block large enough for the notification data and an
; RFSHeader/RFSDFileChangeNotificationData structure
push ax
add ax, size RFSHeader + size RFSDFileChangeNotificationData
mov cx, ALLOC_DYNAMIC_NO_ERR_LOCK
call RFSDMemAlloc ;Allocates block to hold the data + an
mov es, ax ; RFSHeader.
mov di, size RFSHeader + offset RFSDFCND_data
clr si
pop cx ;CX <- size of notification data
call strncpy
; Initialize the header, and the notification type
mov es:[RPC_flags], RPC_CALL
mov es:[RPC_proc], RFS_REMOTE_NOTIFICATION
mov es:[size RFSHeader].RFSDFCND_type, dx
; Send the data to the remote machine.
segmov ds, es
clr si
add cx, size RFSHeader + size RFSDFileChangeNotificationData
segmov es, dgroup, ax
call RFSendBufferWithRetries
if DEBUGGING
WARNING SENT_NOTIFICATIONS_TO_REMOTE
endif
; Free up the temp block we allocated, and unlock the notification block
call MemFree
noSend:
pop ax, dx, bp, es, ds
mov bx, bp
call MemUnlock
exit:
;
; GRRRRR! It turns out that ObjCallSuperNoLock expects DS to be a
; fix-uppable segment. In our case, our dgroup is not fixuppable,
; but our stack segment will be, so use that instead.
;
segmov ds, ss, di
mov di, offset DispatchProcessClass
GOTO ObjCallSuperNoLock
RFSDNotifyFileChange endp
Server ends
Client segment resource
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
MapRemoteDiskHandle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Maps a remote disk handle into a local one
CALLED BY: GLOBAL
PASS: si - remote disk handle
RETURN: si - local disk handle
carry set if error (disk handle could not be mapped)
DESTROYED: nada
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
atw 6/ 9/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
MapRemoteDiskHandle proc near uses ax, bx, di, ds
.enter
call FSDLockInfoShared
mov ds, ax
; Start off the loop by making ds:di point to a pseudo-DiskDesc struct.
; DS:DI.DD_next will point to the first DiskDesc in the list.
mov di, offset FIH_diskList - offset DD_next
next:
mov di, ds:[di].DD_next
tst di
stc
jz notFound
EC < xchg si, di >
EC < call ECCheckBounds >
EC < xchg si, di >
mov bx, ds:[di].DD_drive
mov bx, ds:[bx].DSE_fsd
cmp ds:[bx].FSD_handle, handle 0
jne next
; This disk is owned by us - see if it corresponds to the passed remote
; disk handle.
mov bx, ds:[di].DD_private
cmp ds:[bx], si
jne next
mov si, di ;SI <- local disk handle
clc
notFound:
call FSDUnlockInfoShared
.leave
ret
MapRemoteDiskHandle endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
GenerateLocalNotification
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Generates a file-system notification corresponding to the one
we've received from the remote machine, if it was associated
with a drive we've imported.
CALLED BY: GLOBAL
PASS: ds:si - FileChangeNotificationData
ax - FileChangeNotificationType
bp - non-zero if we want to batch this up
RETURN: nada
DESTROYED: nada
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
atw 6/ 9/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
GenerateLocalNotification proc near uses ax, bx, cx, dx, si
.enter
EC < cmp ax, FCNT_BATCH >
EC < ERROR_E ILLEGAL_FILE_CHANGE_NOTIFICATION_TYPE >
EC < cmp ax, FileChangeNotificationType >
EC < ERROR_AE ILLEGAL_FILE_CHANGE_NOTIFICATION_TYPE >
EC < call ECCheckBounds >
movdw cxdx, ds:[si].FCND_id ;CX.DX <- ID
lea bx, ds:[si].FCND_name ;DS:BX <- name
mov si, ds:[si].FCND_disk
call MapRemoteDiskHandle
jc exit
tst bp
jz noBatch
call FileBatchChangeNotifications
noBatch:
call FSDGenerateNotify
exit:
.leave
ret
GenerateLocalNotification endp
;
; ===========================================================================
; RFSD PCMCIA EXTENSION
; ===========================================================================
;
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RFSDRemoteDriveChangeNotification
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Process drive change notifications from the remote site.
CALLED BY: MSG_RFSD_REMOTE_DRIVE_CHANGE_NOTIFICATION
PASS: ds = dgroup
cx = packet buffer handle
RETURN: nothing
DESTROYED: nothing
SIDE EFFECTS:
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
SJ 6/30/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RFSDRemoteDriveChangeNotification method dynamic DispatchProcessClass,
MSG_RFSD_REMOTE_DRIVE_CHANGE_NOTIFICATION
uses ax, bx, cx
.enter
mov_tr bx, cx
call MemLock
mov es, ax
call ProcessRFSDriveChangeNotification
.leave
ret
RFSDRemoteDriveChangeNotification endm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ProcessRFSDriveChangeNotification
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Create or delete the drive on this side according to the
incoming remote drive change notification.
CALLED BY: RemoteNotification
PASS: ds = dgroup
es = segment of call data
bx = handle of call data
RETURN: nothing
DESTROYED: nothing
SIDE EFFECTS: none
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
SJ 5/17/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ProcessRFSDriveChangeNotification proc near
uses ax,cx,dx
.enter
;
; Ignore the drive change notification that will be caused by
; creating a representation of remote drive in this routine.
;
push bx
;
; Determine if this message is for drive creation or drive deletion
; call the appropriate routine
;
cmp es:[size RFSHeader].RFSDDCND_type, GCNDCNT_CREATED
jne notCreated
call ProcessDriveCreation
jmp finish
notCreated:
call ProcessDriveDeletion
finish:
;
; Restore ignoreDriveChange variable to its previous state
;
; mov ds:[ignoreDriveChange], 0
pop bx
call MemFree
.leave
ret
ProcessRFSDriveChangeNotification endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ProcessDriveCreation
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Handle drive creation on the remote side.
CALLED BY: ProcessRFSDriveChangeNotification
PASS: es = segment of call data
RETURN: nothing
DESTROYED: ax, bx, cx, dx
SIDE EFFECTS: none
PSEUDO CODE/STRATEGY:
1. Create an DriveStatus entry for this drive on this side.
2. Send MSG_NOTIFY_DRIVE_CHANGE to GCN list.
REVISION HISTORY:
Name Date Description
---- ---- -----------
SJ 5/20/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ProcessDriveCreation proc near
uses si, di, ds, es, bp
.enter
;
; Prepare arguments to call FSDInitDrive with
;
lea di, es:[size RFSHeader].RFSDDCND_drive
;
; es:di = DriveInfoStruct which is a part of call data
;
; < FSDInitDrive arguments >
; al :drive number = -1
; ah :MediaType = DIS_defaultMedia
; bx :private chunk = new lmem chunk handle
; cx :DriveExtendedStatus = DIS_status
; dx :FSDriver offset = dgroup:fsdOffset
; ds:si :drive name = DIS_nameString
;
;
; private data for RFSD ( the drive number on remote side that is )
;
call FSDLockInfoExcl
mov ds, ax
mov cx, size RFSPrivateData
call LMemAlloc ;-> ax = handle of the chunk
mov_tr si, ax ;
mov al, es:[di].DIS_number ;
mov {byte}ds:[si], al ;
call FSDUnlockInfoExcl
mov_tr bx, si ; bx=private data chunk handle
;
; Other arguments for FSDInitDrive
;
mov al, -1 ; drive number
mov ah, es:[di].DIS_defaultMedia ; drive media type
mov cx, es:[di].DIS_status ; drive status
segmov ds, dgroup, dx ;
mov dx, ds:[fsdOffset] ; FSDriver offset
lea si, es:[di].DIS_nameString ;
segmov ds, es, di ; ds:si = name string
;
; Create a DriveStatusEntry for this drive
;
call FSDInitDrive
.leave
ret
ProcessDriveCreation endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ProcessDriveDeletion
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Handle drive deletion at remote site
CALLED BY: ProcessRFSDriveChangeNotification
PASS: es = segment of the call data
RETURN: nothing
DESTROYED: ax, bx, cx, dx
SIDE EFFECTS: none
PSEUDO CODE/STRATEGY:
1. Find the drive corresponding to the remote drive passed in
2. Destroy the drive(statusEntry) on this side.
3. Send an appropriate message to GCN list.
REVISION HISTORY:
Name Date Description
---- ---- -----------
SJ 5/20/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
ProcessDriveDeletion proc near
uses si, di, ds, es, bp
.enter
;
; Find logical drive corresponding to the remote drive just deleted
;
clr cx
mov cl, es:[size RFSHeader].RFSDDCND_drive.DIS_number
call FSDLockInfoShared ;-> ax,
mov es, ax ; es = FSD info block seg
mov ax, MAX_DRIVE_NUMBER ; al = drive number
findLoop:
call DriveLocateByNumber ;-> es:si = drive status entry
jc nextDrive
;
; Check if the drive is owned by RFSD
;
mov bx, es:[si].DSE_fsd
cmp es:[bx].FSD_handle, handle 0
jne nextDrive ; a local drive maybe
;
; This drive is owned by RFSD, now match the drive number on the remote
; site ( *causion!!!* FSD info block is actually a LMem without
; handles. See LMF_NO_HANDLES for more info )
;
mov di, es:[si].DSE_private
cmp {byte}es:[di], cl ; compare with drive number
; passed in from the other side
je nukeDrive ; this is the drive that was
; deleted at the remote site
nextDrive:
dec ax
tst ax
jnz findLoop
jmp done ; drive not found; do nothing
nukeDrive:
;
; Remove logical drive corresponding to the
; one deleted at the remote site.
;
call RFSDRemoveDrive
done:
call FSDUnlockInfoShared
.leave
ret
ProcessDriveDeletion endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RFSDRemoveDrive
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Remove a drive entry in FSD info block, and also, notify
everyone using the drive that the drive is going away.
CALLED BY: ProcessDriveDeletion
PASS: al = drive number
es = FSInfo resource segment
(es:si = drive status entry)
RETURN: nothing
DESTROYED: nothing
SIDE EFFECTS: none
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
SJ 5/21/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RFSDRemoveDrive proc near
uses ax, bx, di, si
.enter
startOver:
mov di, es:[FIH_diskList]
scanDiskList:
mov bx, es:[di].DD_drive
cmp es:[bx].DSE_number, al
jne nextDisk
push ax, di ;FFSRNotify destroys everything
mov bx, di ; bx = nptr.DriveDesc
call FFSRNotify
pop ax, di
nextDisk:
mov di, es:[di].DD_next
tst di
jnz scanDiskList
;
; Remove drive from kernel FSD
; al = drive number
;
call FSDDeleteDrive
jnc done
;
; Somebody has a file open on this drive
; So, sleep until it is closed.
;
push ax
mov ax, 8 * 60 ; Sleep for 8 seconds and try nuking
call TimerSleep ; the drive again
mov es, ax
pop ax
jmp startOver
done:
.leave
ret
RFSDRemoveDrive endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RFSDNotifyDriveChange
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Convert drive change notification into special RFSD message
and send it to the other side.
CALLED BY: MSG_NOTIFY_DRIVE_CHANGE
PASS: cx = GCNDriveChangeNotificationType
dx = drive number
es = dgroup
RETURN: nothing
DESTROYED: nothing
SIDE EFFECTS: none
PSEUDO CODE/STRATEGY:
REVISION HISTORY:
Name Date Description
---- ---- -----------
SJ 5/17/94 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RFSDNotifyDriveChange method dynamic DispatchProcessClass,
MSG_NOTIFY_DRIVE_CHANGE
uses ax, bx, cx, di, si, es, ds
.enter
tst es:[closingConnection]
LONG jnz exit
;
; Allocate a package block
; Translate the meessage into RFS_REMOTE_NOTIFICATION
;
; ax = packet block size
; cl = flags for block type
; ch = flags for allocation method
;
push cx
mov ax, size RFSHeader + \
size RFSDDriveChangeNotificationData
mov cx, ALLOC_DYNAMIC_NO_ERR_LOCK
call RFSDMemAlloc ;-> ax = seg addr
; bx = block handle
; CF = 1 if no memory
mov ds, ax
pop cx
;
; Compose packet
;
mov ds:[RPC_flags], RPC_CALL
mov ds:[RPC_proc], RFS_REMOTE_NOTIFICATION
mov ds:[RPC_ID], RFSDFOD_driveChange
mov ds:[size RFSHeader].RFSDDCND_type, cx
;
; In case of drive creation, we can count on DriveStatusEntry being
; there, but in case of drive removal we cannot.
;
lea di, ds:[size RFSHeader].RFSDDCND_drive
mov ds:[di].DIS_number, dl
cmp cx, GCNDCNT_CREATED
je driveCreation
;
; In case of drive creation we need to send the information about the
; new drive so that the remote RFSD can create a corresponding logical
; drive. In case of drive deletion, we only need to send the ID of the
; drive deleted. RFSD on the other side should be able to find which
; of the remote drives have been deleted with this original drive #.
;
sendPacket:
;
; Send the packet
;
clr si ; ds:si = the packet
mov cx, size RFSHeader + \
size RFSDDriveChangeNotificationData
call RFSendBufferWithRetries
;
; Free up used memory block
;
call MemFree
exit:
done::
.leave
ret
driveCreation:
;
; If the drive uses rfsd as its fsd, it is an imported drive, so do not
; send notification to remote site
;
push bx
call FSDLockInfoShared
mov es, ax
mov ax, dx
call DriveLocateByNumber ; es:si = DriveStatusEntry
mov bx, es:[si].DSE_fsd
mov bx, es:[bx].FSD_strategy.segment
cmp bx, segment RFStrategy
call FSDUnlockInfoShared
pop bx
je exit
;
; Using the drive status entry found, fill in DriveInfoStruct of
; notification packet
;
call FSDLockInfoExcl
mov es, ax ; es = FSD info block
mov ax, dx
call DriveLocateByNumber ; es:si = DriveStatusEntry
mov cl, es:[si].DSE_defaultMedia
mov ds:[di].DIS_defaultMedia, cl
mov cx, es:[si].DSE_status
mov ds:[di].DIS_status, cx
lea di, ds:[di].DIS_nameString ; ds:di = name field
push es, si ; save DriveStatusEntry
;
; Store <serverName>-<driveName>
;
segmov es, ds, ax ; es = packet block
segmov ds, dgroup, ax ; ds:si = server name
mov si, offset serverName ; es:di = DIS_name
call strcpy ; pre-pend server name
add di, ax
mov {char}es:[di-1], '-'
pop ds, si ; restore drive status entry
lea si, ds:[si].DSE_name ; ds:si = drive name string
call strcpy ; copy name
call FSDUnlockInfoExcl
segmov ds, es, ax ; ds = packet block
segmov es, dgroup, ax ; es = dgroup
jmp sendPacket
RFSDNotifyDriveChange endm
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RFSDRemoteFileChangeNotification
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: Translates the remote file-change notification
CALLED BY: GLOBAL
PASS: cx - block containing:
RFSHeader<>
RFSDFileChangeNotificationData<>
RETURN: nada
DESTROYED: nada
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
atw 6/ 9/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RFSDRemoteFileChangeNotification method DispatchProcessClass,
MSG_RFSD_REMOTE_FILE_CHANGE_NOTIFICATION
.enter
if DEBUGGING
WARNING RECEIVED_REMOTE_NOTIFICATIONS
endif
mov bx, cx
call MemLock
mov ds, ax
mov ax, ds:[size RFSHeader].RFSDFCND_type
lea si, ds:[size RFSHeader].RFSDFCND_data
cmp ax, FCNT_BATCH
je batch
; This is a single notification, so map the disk handle and pass it
; on to the output
clr bp
call GenerateLocalNotification
exit:
call MemFree
.leave
ret
batch:
; Have all of these notifications batched up
;
; DS:SI <- FileChangeBatchNotificationData
;
mov cx, ds:[si].FCBND_end
add cx, si ;DS:CX <- ptr after last item in array
add si, offset FCBND_items
cmp cx, si ;If nothing in here, exit
je exit
next:
;
; DS:CX <- ptr beyond last item in the array
; DS:SI <- ptr to FileChangeBatchNotificationItem
;
cmp cx, si
je done
EC < ERROR_B RFSD_INTERNAL_ERROR >
mov ax, ds:[si].FCBNI_type
add si, offset FCBNI_disk
;DS:SI <- ptr to FileChangeNotificationData
mov bp, -1 ;We are creating a batch notification
call GenerateLocalNotification
; If the type was FCNT_RENAME or FCNT_CREATE, then there is a
; FileLongName attached to it. Otherwise, don't bother.
add si, size FCBNI_disk + FCBNI_id
cmp ax, FCNT_RENAME
ja next
add si, size FileLongName
jmp next
done:
call FileFlushChangeNotifications
jmp exit
RFSDRemoteFileChangeNotification endp
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
RFSDFlushRemoteNotifications
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SYNOPSIS: This routine flushes out the remote file change notifications
CALLED BY: GLOBAL
PASS: es - dgroup
RETURN: nada
DESTROYED: nada
PSEUDO CODE/STRATEGY:
KNOWN BUGS/SIDE EFFECTS/IDEAS:
REVISION HISTORY:
Name Date Description
---- ---- -----------
atw 6/14/93 Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
RFSDFlushRemoteNotifications method DispatchProcessClass,
MSG_RFSD_FLUSH_REMOTE_NOTIFICATIONS
.enter
tst es:[closingConnection]
jnz exit
; If we match the current timerID, then nuke the timer
call GrabNotificationTimer
cmp bp, es:[notificationTimerID]
jne doVSem
clr es:[notificationTimer] ;Sets Z flag
EC < ERROR_NZ -1 >
doVSem:
call ReleaseNotificationTimer
jne exit
if DEBUGGING
WARNING FLUSHING_REMOTE_FILE_CHANGE_NOTIFICATIONS
endif
mov cx, size RFSHeader
sub sp, cx
mov si, sp
segmov ds, ss ;DS:SI <- RFSHeader
mov ds:[si].RPC_proc, RFS_FLUSH_FILE_CHANGE_NOTIFICATIONS
mov ds:[si].RPC_flags, RPC_CALL
call RFSendBufferWithRetries
add sp, cx
exit:
.leave
ret
RFSDFlushRemoteNotifications endp
Client ends
|
src/main/fragment/mos6502-common/_stackpushword_=vbuaa.asm | jbrandwood/kickc | 2 | 13147 | <gh_stars>1-10
tax
lda #0
pha
txa
pha
|
libsrc/_DEVELOPMENT/string/c/sccz80/strlcat.asm | Frodevan/z88dk | 640 | 246955 |
; size_t strlcat(char * restrict s1, const char * restrict s2, size_t n)
SECTION code_clib
SECTION code_string
PUBLIC strlcat
EXTERN asm_strlcat
strlcat:
IF __CPU_GBZ80__ | __CPU_INTEL__
ld hl,sp+2
ld c,(hl)
inc hl
ld b,(hl)
inc hl
ld e,(hl)
inc hl
ld d,(hl)
inc hl
ld a,(hl+)
ld h,(hl)
ld l,a
call asm_strlcat
ld d,h
ld e,l
ret
ELSE
pop af
pop bc
pop de
pop hl
push hl
push de
push bc
push af
jp asm_strlcat
ENDIF
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _strlcat
defc _strlcat = strlcat
ENDIF
|
src/interrupts.asm | BlockoS/up-18 | 3 | 80261 | <gh_stars>1-10
;----------------------------------------------------
; interupts.asm : interruption vectors
;
; (c) 2007 Vincent '<NAME>
;
; Interruption vectors for each of the pce
; interruptions.
;
; LICENCE: not my fault if anything burns
;
;;---------------------------------------------------------------------
; desc : hardware memory transfer mode
;;---------------------------------------------------------------------
MEMCPY_SRC_ALT_DEST_INC = $F3
MEMCPY_SRC_INC_DEST_ALT = $E3
MEMCPY_SRC_INC_DEST_INC = $73
MEMCPY_SRC_INC_DEST_NONE = $D3
MEMCPY_SRC_DEC_DEST_DEC = $C3
;;---------------------------------------------------------------------
; desc : hardware memory transfer instruction helper
;;---------------------------------------------------------------------
.bss
_hrdw_memcpy_mode .ds 1
_hrdw_memcpy_src .ds 2
_hrdw_memcpy_dst .ds 2
_hrdw_memcpy_len .ds 2
_hrdw_memcpy_rts .ds 1
hrdw_memcpy = _hrdw_memcpy_mode
;----------------------------------------------------------------------
; name : set_vec
;
; description : Set user interrupt functions
;
; warning : A,X and Y will be overwritten
; Interrupts are disabled. You'll need to enable them by hands
;
; in : \1 interrupt to hook
; \2 user function to be called when interrupt will be triggered
set_vec .macro
sei ; disable interrupts
lda \1
asl A ; compute offset in user function table
tax
lda #low(\2)
sta user_jmptbl,X ; store low byte
inx
lda #high(\2)
sta user_jmptbl,X
.endm
;----------------------------------------------------------------------
; name : vec_on
;
; description : Enable interrupt vector
;
; warning : SOFT_RESET must not be used.
; Bit 4 of irq_m is used to tell that the user vsync hook
; must be run.
; Bit 5 is for standard vsync hook.
; Bit 6 and 7 are the same things but for hsync.
; Standard and user [h|v]sync hooks are not mutually
; exclusive. If both bits are set, first the standard handler
; will be called then the user one.
;
; in : \1 Vector to enable
;
vec_on .macro
.if (\1 = 5)
smb #6, <irq_m ; user hsync
.else
smb #\1, <irq_m
.endif
.endm
;----------------------------------------------------------------------
; name : vec_off
;
; description : Disable interrupt vector
;
; warning : same as vec_on (for irq_m bit value)
;
; in : \1 Vector to disable
vec_off .macro
.if (\1 = 5)
rmb #6, <irq_m ; user hsync
.else
rmb \1, <irq_m
.endif
.endm
;----------------------------------------------------------------------
; name : irq1_end
;
; description : End of IRQ1 interrupt
;
; warning : Must be performed at the end of each IRQ1 vector!
;
irq1_end .macro
; restore registers
lda <vdc_reg
sta video_reg
ply
plx
pla
rti
.endm
;----------------------------------------------------------------------
; Interrupt vectors names
;----------------------------------------------------------------------
IRQ2 = 0
IRQ1 = 1
TIMER = 2
NMI = 3
VSYNC = 4
HSYNC = 5
SOFT_RESET = 6
|
source/vampire-forms-selecting.ads | ytomino/vampire | 1 | 3156 | <filename>source/vampire-forms-selecting.ads<gh_stars>1-10
-- The Village of Vampire by YT, このソースコードはNYSLです
package Vampire.Forms.Selecting is
function Select_Form (
Query_Strings : Web.Query_Strings;
Speeches_Per_Page : Tabula.Villages.Speech_Positive_Count'Base)
return Root_Form_Type'Class;
end Vampire.Forms.Selecting;
|
libsrc/_DEVELOPMENT/adt/p_forward_list/c/sccz80/p_forward_list_push_back_callee.asm | jpoikela/z88dk | 640 | 27192 |
; void p_forward_list_push_back(p_forward_list_t *list, void *item)
SECTION code_clib
SECTION code_adt_p_forward_list
PUBLIC p_forward_list_push_back_callee
EXTERN asm_p_forward_list_push_back
p_forward_list_push_back_callee:
pop hl
pop de
ex (sp),hl
jp asm_p_forward_list_push_back
; SDCC bridge for Classic
IF __CLASSIC
PUBLIC _p_forward_list_push_back_callee
defc _p_forward_list_push_back_callee = p_forward_list_push_back_callee
ENDIF
|
src/spread/sprites/tsym.asm | olifink/qspread | 0 | 169449 | <filename>src/spread/sprites/tsym.asm
;Sprite source code generated with EASYSOURCE V3.02
; 1991/92 <NAME> Software
;************************************************
; -> tsym <- 1993 Jul 02 23:13:56
section sprite
xdef mes_tsym
xref mes_zero
mes_tsym
sp1_tsym
dc.w $0100,$0000 ;form, time/adaption
dc.w $0015,$000F ;x size, y size
dc.w $000A,$0009 ;x origin, y origin
dc.l cp1_tsym-* ;pointer to colour pattern
dc.l mes_zero-* ;pointer to pattern mask
dc.l 0 ;pointer to next definition
cp1_tsym
dc.w $0000,$8484,$0000,$0000
dc.w $0101,$6AEE,$0000,$0000
dc.w $0101,$12FE,$4040,$0000
dc.w $0000,$84FC,$8080,$0000
dc.w $0000,$7F7F,$E0E0,$0000
dc.w $0101,$FCFC,$0000,$0000
dc.w $0607,$03FF,$C0C0,$0000
dc.w $181F,$20FF,$20E0,$0000
dc.w $607F,$FCFF,$10F0,$0000
dc.w $81FF,$20FF,$08F8,$0000
dc.w $80FF,$F8FF,$08F8,$0000
dc.w $80FF,$24FF,$08F8,$0000
dc.w $417F,$F8FF,$30F0,$0000
dc.w $383F,$21FF,$C0C0,$0000
dc.w $0707,$FEFE,$0000,$0000
;
end
|
tests/bases-cargo-test_data-tests.ads | thindil/steamsky | 80 | 9001 | <reponame>thindil/steamsky
-- This package has been generated automatically by GNATtest.
-- Do not edit any part of it, see GNATtest documentation for more details.
-- begin read only
with Gnattest_Generated;
package Bases.Cargo.Test_Data.Tests is
type Test is new GNATtest_Generated.GNATtest_Standard.Bases.Cargo.Test_Data
.Test with
null record;
procedure Test_Generate_Cargo_bedd31_021eea(Gnattest_T: in out Test);
-- bases-cargo.ads:29:4:Generate_Cargo:Test_GenerateCargo
procedure Test_Update_Base_Cargo_0621ee_1e1787(Gnattest_T: in out Test);
-- bases-cargo.ads:43:4:Update_Base_Cargo:Test_UpdateBaseCargo
procedure Test_Find_Base_Cargo_7b1190_f9e132(Gnattest_T: in out Test);
-- bases-cargo.ads:59:4:Find_Base_Cargo:Test_FindBaseCargo
end Bases.Cargo.Test_Data.Tests;
-- end read only
|
case-studies/performance/verification/alloy/ppc/tests/safe321.als | uwplse/memsynth | 19 | 26 | module tests/safe321
open program
open model
/**
PPC safe321
"SyncdWW Rfe DpdR Fre SyncdWW Rfe DpdR Fre"
Cycle=SyncdWW Rfe DpdR Fre SyncdWW Rfe DpdR Fre
Relax=
Safe=Fre DpdR BCSyncdWW
{
0:r2=x; 0:r5=y;
1:r2=y; 1:r4=z;
2:r2=z; 2:r5=a;
3:r2=a; 3:r4=x;
}
P0 | P1 | P2 | P3 ;
lwz r1,0(r2) | li r1,1 | lwz r1,0(r2) | li r1,1 ;
xor r3,r1,r1 | stw r1,0(r2) | xor r3,r1,r1 | stw r1,0(r2) ;
lwzx r4,r3,r5 | sync | lwzx r4,r3,r5 | sync ;
| li r3,1 | | li r3,1 ;
| stw r3,0(r4) | | stw r3,0(r4) ;
exists
(0:r1=1 /\ 0:r4=0 /\ 2:r1=1 /\ 2:r4=0)
**/
one sig a, x, y, z extends Location {}
one sig P1, P2, P3, P4 extends Processor {}
one sig op1 extends Read {}
one sig op2 extends Read {}
one sig op3 extends Write {}
one sig op4 extends Sync {}
one sig op5 extends Write {}
one sig op6 extends Read {}
one sig op7 extends Read {}
one sig op8 extends Write {}
one sig op9 extends Sync {}
one sig op10 extends Write {}
fact {
P1.read[1, op1, x, 1]
P1.read[2, op2, y, 0] and op2.dep[op1]
P2.write[3, op3, y, 1]
P2.sync[4, op4]
P2.write[5, op5, z, 1]
P3.read[6, op6, z, 1]
P3.read[7, op7, a, 0] and op7.dep[op6]
P4.write[8, op8, a, 1]
P4.sync[9, op9]
P4.write[10, op10, x, 1]
}
Allowed:
run { Allowed_PPC } for 5 int expect 0 |
libsrc/_DEVELOPMENT/arch/ts2068/display/c/sdcc/tshc_cxy2saddr_callee.asm | jpoikela/z88dk | 640 | 243917 | <reponame>jpoikela/z88dk
; void *tshc_cxy2saddr(uchar x, uchar y)
SECTION code_clib
SECTION code_arch
PUBLIC _tshc_cxy2saddr_callee
EXTERN _zx_cxy2saddr_callee
defc _tshc_cxy2saddr_callee = _zx_cxy2saddr_callee
|
bb-runtimes/src/s-textio__microbit.adb | JCGobbi/Nucleo-STM32G474RE | 0 | 18441 | <filename>bb-runtimes/src/s-textio__microbit.adb
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . T E X T _ I O --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2018, 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 Interfaces.NRF51; use Interfaces.NRF51;
with Interfaces.NRF51.UART; use Interfaces.NRF51.UART;
package body System.Text_IO is
---------
-- Get --
---------
function Get return Character is
Ret : constant Character :=
Character'Val (UART0_Periph.RXD.RXD and 16#FF#);
begin
-- Clear the RX event for the character we just received
UART0_Periph.EVENTS_RXDRDY := 0;
return Ret;
end Get;
----------------
-- Initialize --
----------------
procedure Initialize is
Unref : Character with Unreferenced;
begin
-- Set a 115_200 baudrate
UART0_Periph.BAUDRATE := 16#01D7E000#;
-- Set TX io pin
UART0_Periph.PSELTXD := 24;
-- Set RX io pin
UART0_Periph.PSELRXD := 25;
-- Hardware Flow Control disabled
UART0_Periph.CONFIG.HWFC := Disabled;
-- Parity disabled
UART0_Periph.CONFIG.PARITY := Excluded;
-- Enable the peripheral
UART0_Periph.ENABLE.ENABLE := Enabled;
-- Clear events
UART0_Periph.EVENTS_RXDRDY := 0;
UART0_Periph.EVENTS_TXDRDY := 0;
-- Start TX and RX
UART0_Periph.TASKS_STARTRX := 1;
UART0_Periph.TASKS_STARTTX := 1;
-- Send a first character to start the TXREADY events (See nRF51 Series
-- Reference Manual Version 3.0 Figure 68: UART transmission)
Put (ASCII.NUL);
Initialized := True;
end Initialize;
-----------------
-- Is_Rx_Ready --
-----------------
function Is_Rx_Ready return Boolean is
begin
return UART0_Periph.EVENTS_RXDRDY /= 0;
end Is_Rx_Ready;
-----------------
-- Is_Tx_Ready --
-----------------
function Is_Tx_Ready return Boolean is
begin
return UART0_Periph.EVENTS_TXDRDY /= 0;
end Is_Tx_Ready;
---------
-- Put --
---------
procedure Put (C : Character) is
begin
UART0_Periph.EVENTS_TXDRDY := 0;
-- Send the character
UART0_Periph.TXD.TXD := Byte (Character'Pos (C));
end Put;
----------------------------
-- Use_Cr_Lf_For_New_Line --
----------------------------
function Use_Cr_Lf_For_New_Line return Boolean is
begin
return True;
end Use_Cr_Lf_For_New_Line;
end System.Text_IO;
|
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-ngelfu.ads | djamal2727/Main-Bearing-Analytical-Model | 0 | 15979 | <filename>Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-ngelfu.ads
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- ADA.NUMERICS.GENERIC_ELEMENTARY_FUNCTIONS --
-- --
-- S p e c --
-- --
-- Copyright (C) 2012-2020, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the Post aspects that have been added to the spec. --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
generic
type Float_Type is digits <>;
package Ada.Numerics.Generic_Elementary_Functions with
SPARK_Mode => On
is
pragma Pure;
-- Preconditions in this unit are meant for analysis only, not for run-time
-- checking, so that the expected exceptions are raised when calling
-- Assert. This is enforced by setting the corresponding assertion policy
-- to Ignore. This is done in the generic spec so that it applies to all
-- instances.
pragma Assertion_Policy (Pre => Ignore);
function Sqrt (X : Float_Type'Base) return Float_Type'Base with
Pre => X >= 0.0,
Post => Sqrt'Result >= 0.0
and then (if X = 0.0 then Sqrt'Result = 0.0)
and then (if X = 1.0 then Sqrt'Result = 1.0)
-- Finally if X is positive, the result of Sqrt is positive (because
-- the sqrt of numbers greater than 1 is greater than or equal to 1,
-- and the sqrt of numbers less than 1 is greater than the argument).
-- This property is useful in particular for static analysis. The
-- property that X is positive is not expressed as (X > 0.0), as
-- the value X may be held in registers that have larger range and
-- precision on some architecture (for example, on x86 using x387
-- FPU, as opposed to SSE2). So, it might be possible for X to be
-- 2.0**(-5000) or so, which could cause the number to compare as
-- greater than 0, but Sqrt would still return a zero result.
-- Note: we use the comparison with Succ (0.0) here because this is
-- more amenable to CodePeer analysis than the use of 'Machine.
and then (if X >= Float_Type'Succ (0.0) then Sqrt'Result > 0.0);
function Log (X : Float_Type'Base) return Float_Type'Base with
Pre => X > 0.0,
Post => (if X = 1.0 then Log'Result = 0.0);
function Log (X, Base : Float_Type'Base) return Float_Type'Base with
Pre => X > 0.0 and Base > 0.0 and Base /= 1.0,
Post => (if X = 1.0 then Log'Result = 0.0);
function Exp (X : Float_Type'Base) return Float_Type'Base with
Post => (if X = 0.0 then Exp'Result = 1.0);
function "**" (Left, Right : Float_Type'Base) return Float_Type'Base with
Pre => (if Left = 0.0 then Right > 0.0) and Left >= 0.0,
Post => "**"'Result >= 0.0
and then (if Right = 0.0 then "**"'Result = 1.0)
and then (if Right = 1.0 then "**"'Result = Left)
and then (if Left = 1.0 then "**"'Result = 1.0)
and then (if Left = 0.0 then "**"'Result = 0.0);
function Sin (X : Float_Type'Base) return Float_Type'Base with
Inline,
Post => Sin'Result in -1.0 .. 1.0
and then (if X = 0.0 then Sin'Result = 0.0);
function Sin (X, Cycle : Float_Type'Base) return Float_Type'Base with
Pre => Cycle > 0.0,
Post => Sin'Result in -1.0 .. 1.0
and then (if X = 0.0 then Sin'Result = 0.0);
function Cos (X : Float_Type'Base) return Float_Type'Base with
Inline,
Post => Cos'Result in -1.0 .. 1.0
and then (if X = 0.0 then Cos'Result = 1.0);
function Cos (X, Cycle : Float_Type'Base) return Float_Type'Base with
Pre => Cycle > 0.0,
Post => Cos'Result in -1.0 .. 1.0
and then (if X = 0.0 then Cos'Result = 1.0);
function Tan (X : Float_Type'Base) return Float_Type'Base with
Post => (if X = 0.0 then Tan'Result = 0.0);
function Tan (X, Cycle : Float_Type'Base) return Float_Type'Base with
Pre => Cycle > 0.0
and then abs Float_Type'Base'Remainder (X, Cycle) /= 0.25 * Cycle,
Post => (if X = 0.0 then Tan'Result = 0.0);
function Cot (X : Float_Type'Base) return Float_Type'Base with
Pre => X /= 0.0;
function Cot (X, Cycle : Float_Type'Base) return Float_Type'Base with
Pre => Cycle > 0.0
and then X /= 0.0
and then Float_Type'Base'Remainder (X, Cycle) /= 0.0
and then abs Float_Type'Base'Remainder (X, Cycle) = 0.5 * Cycle;
function Arcsin (X : Float_Type'Base) return Float_Type'Base with
Pre => abs X <= 1.0,
Post => (if X = 0.0 then Arcsin'Result = 0.0);
function Arcsin (X, Cycle : Float_Type'Base) return Float_Type'Base with
Pre => Cycle > 0.0 and abs X <= 1.0,
Post => (if X = 0.0 then Arcsin'Result = 0.0);
function Arccos (X : Float_Type'Base) return Float_Type'Base with
Pre => abs X <= 1.0,
Post => (if X = 1.0 then Arccos'Result = 0.0);
function Arccos (X, Cycle : Float_Type'Base) return Float_Type'Base with
Pre => Cycle > 0.0 and abs X <= 1.0,
Post => (if X = 1.0 then Arccos'Result = 0.0);
function Arctan
(Y : Float_Type'Base;
X : Float_Type'Base := 1.0) return Float_Type'Base
with
Pre => X /= 0.0 or Y /= 0.0,
Post => (if X > 0.0 and then Y = 0.0 then Arctan'Result = 0.0);
function Arctan
(Y : Float_Type'Base;
X : Float_Type'Base := 1.0;
Cycle : Float_Type'Base) return Float_Type'Base
with
Pre => Cycle > 0.0 and (X /= 0.0 or Y /= 0.0),
Post => (if X > 0.0 and then Y = 0.0 then Arctan'Result = 0.0);
function Arccot
(X : Float_Type'Base;
Y : Float_Type'Base := 1.0) return Float_Type'Base
with
Pre => X /= 0.0 or Y /= 0.0,
Post => (if X > 0.0 and then Y = 0.0 then Arccot'Result = 0.0);
function Arccot
(X : Float_Type'Base;
Y : Float_Type'Base := 1.0;
Cycle : Float_Type'Base) return Float_Type'Base
with
Pre => Cycle > 0.0 and (X /= 0.0 or Y /= 0.0),
Post => (if X > 0.0 and then Y = 0.0 then Arccot'Result = 0.0);
function Sinh (X : Float_Type'Base) return Float_Type'Base with
Post => (if X = 0.0 then Sinh'Result = 0.0);
function Cosh (X : Float_Type'Base) return Float_Type'Base with
Post => Cosh'Result >= 1.0
and then (if X = 0.0 then Cosh'Result = 1.0);
function Tanh (X : Float_Type'Base) return Float_Type'Base with
Post => Tanh'Result in -1.0 .. 1.0
and then (if X = 0.0 then Tanh'Result = 0.0);
function Coth (X : Float_Type'Base) return Float_Type'Base with
Pre => X /= 0.0,
Post => abs Coth'Result >= 1.0;
function Arcsinh (X : Float_Type'Base) return Float_Type'Base with
Post => (if X = 0.0 then Arcsinh'Result = 0.0);
function Arccosh (X : Float_Type'Base) return Float_Type'Base with
Pre => X >= 1.0,
Post => Arccosh'Result >= 0.0
and then (if X = 1.0 then Arccosh'Result = 0.0);
function Arctanh (X : Float_Type'Base) return Float_Type'Base with
Pre => abs X < 1.0,
Post => (if X = 0.0 then Arctanh'Result = 0.0);
function Arccoth (X : Float_Type'Base) return Float_Type'Base with
Pre => abs X > 1.0;
end Ada.Numerics.Generic_Elementary_Functions;
|
src/Implicits/Substitutions/Term.agda | metaborg/ts.agda | 4 | 2320 | <gh_stars>1-10
open import Prelude hiding (subst)
module Implicits.Substitutions.Term where
open import Implicits.Syntax.Type
open import Implicits.Syntax.Term
open import Data.Fin.Substitution
open import Data.Star as Star hiding (map)
open import Data.Star.Properties
open import Data.Vec hiding ([_])
open import Implicits.Substitutions.Type as TypeSubst using ()
module TermTypeSubst where
module TermTypeApp {T} (l : Lift T Type) where
open Lift l hiding (var)
open TypeSubst.TypeApp l renaming (_/_ to _/tp_)
infixl 8 _/_
-- Apply a type substitution to a term
_/_ : ∀ {ν μ n} → Term ν n → Sub T ν μ → Term μ n
var x / σ = var x
Λ t / σ = Λ (t / σ ↑)
λ' a t / σ = λ' (a /tp σ) (t / σ)
t [ a ] / σ = (t / σ) [ a /tp σ ]
s · t / σ = (s / σ) · (t / σ)
ρ a t / σ = ρ (a /tp σ) (t / σ)
r ⟨⟩ / σ = (r / σ) ⟨⟩
r with' e / σ = (r / σ) with' (e / σ)
open TypeSubst using (varLift; termLift; sub)
module Lifted {T} (lift : Lift T Type) {n} where
application : Application (λ ν → Term ν n) T
application = record { _/_ = TermTypeApp._/_ lift {n = n} }
open Application application public
open Lifted termLift public
-- apply a type variable substitution (renaming) to a term
_/Var_ : ∀ {ν μ n} → Term ν n → Sub Fin ν μ → Term μ n
_/Var_ = TermTypeApp._/_ varLift
-- weaken a term with an additional type variable
weaken : ∀ {ν n} → Term ν n → Term (suc ν) n
weaken t = t /Var VarSubst.wk
infix 8 _[/_]
-- shorthand for single-variable type substitutions in terms
_[/_] : ∀ {ν n} → Term (suc ν) n → Type ν → Term ν n
t [/ b ] = t / sub b
module TermTermSubst where
-- Substitutions of terms in terms
TermSub : (ℕ → ℕ → Set) → ℕ → ℕ → ℕ → Set
TermSub T ν m n = Sub (T ν) m n
record TermLift (T : ℕ → ℕ → Set) : Set where
infix 10 _↑tm _↑tp
field
lift : ∀ {ν n} → T ν n → Term ν n
_↑tm : ∀ {ν m n} → TermSub T ν m n → TermSub T ν (suc m) (suc n)
_↑tp : ∀ {ν m n} → TermSub T ν m n → TermSub T (suc ν) m n
module TermTermApp {T} (l : TermLift T) where
open TermLift l
infixl 8 _/_
-- Apply a term substitution to a term
_/_ : ∀ {ν m n} → Term ν m → TermSub T ν m n → Term ν n
var x / σ = lift $ lookup x σ
Λ t / σ = Λ (t / σ ↑tp)
λ' a t / σ = λ' a (t / σ ↑tm)
t [ a ] / σ = (t / σ) [ a ]
s · t / σ = (s / σ) · (t / σ)
ρ a t / σ = ρ a (t / σ ↑tm)
r ⟨⟩ / σ = (r / σ) ⟨⟩
r with' e / σ = (r / σ) with' (e / σ)
Fin′ : ℕ → ℕ → Set
Fin′ _ m = Fin m
varLift : TermLift Fin′
varLift = record { lift = var; _↑tm = VarSubst._↑; _↑tp = Prelude.id }
infixl 8 _/Var_
_/Var_ : ∀ {ν m n} → Term ν m → Sub Fin m n → Term ν n
_/Var_ = TermTermApp._/_ varLift
private
module ExpandSimple {n : ℕ} where
simple : Simple (Term n)
simple = record { var = var; weaken = λ t → t /Var VarSubst.wk }
open Simple simple public
open ExpandSimple using (_↑; simple)
open TermTypeSubst using () renaming (weaken to weakenTp)
termLift : TermLift Term
termLift = record
{ lift = Prelude.id; _↑tm = _↑ ; _↑tp = λ ρ → map weakenTp ρ }
private
module ExpandSubst {ν : ℕ} where
app : Application (Term ν) (Term ν)
app = record { _/_ = TermTermApp._/_ termLift {ν = ν} }
subst : Subst (Term ν)
subst = record
{ simple = simple
; application = app
}
open Subst subst public
open ExpandSubst public hiding (var; simple)
infix 8 _[/_]
-- Shorthand for single-variable term substitutions in terms
_[/_] : ∀ {ν n} → Term ν (suc n) → Term ν n → Term ν n
s [/ t ] = s / sub t
|
Task/Combinations/AppleScript/combinations.applescript | djgoku/RosettaCodeData | 0 | 657 | <gh_stars>0
on comb(n, k)
set c to {}
repeat with i from 1 to k
set end of c to i's contents
end repeat
set r to {c's contents}
repeat while my next_comb(c, k, n)
set end of r to c's contents
end repeat
return r
end comb
on next_comb(c, k, n)
set i to k
set c's item i to (c's item i) + 1
repeat while (i > 1 and c's item i ≥ n - k + 1 + i)
set i to i - 1
set c's item i to (c's item i) + 1
end repeat
if (c's item 1 > n - k + 1) then return false
repeat with i from i + 1 to k
set c's item i to (c's item (i - 1)) + 1
end repeat
return true
end next_comb
return comb(5, 3)
|
source/Compressor/log_table.asm | Vertver/Crinkler | 739 | 167473 | global LogTable
global _LogTable
section logtable data
LogTable:
_LogTable:
dd 0,-49151,-45055,-42659,-40959,-39640,-38563,-37652,-36863,-36167,-35544,-34981,-34467,-33994,-33556,-33148
dd -32767,-32409,-32071,-31751,-31448,-31160,-30885,-30622,-30371,-30130,-29898,-29675,-29460,-29253,-29052,-28859
dd -28671,-28489,-28313,-28141,-27975,-27813,-27655,-27502,-27352,-27206,-27064,-26925,-26789,-26656,-26526,-26399
dd -26275,-26153,-26034,-25917,-25802,-25689,-25579,-25471,-25364,-25259,-25157,-25056,-24956,-24859,-24763,-24668
dd -24575,-24483,-24393,-24304,-24217,-24130,-24045,-23962,-23879,-23797,-23717,-23638,-23559,-23482,-23406,-23331
dd -23256,-23183,-23110,-23039,-22968,-22898,-22829,-22761,-22693,-22626,-22560,-22495,-22430,-22367,-22303,-22241
dd -22179,-22118,-22057,-21997,-21938,-21879,-21821,-21763,-21706,-21649,-21593,-21538,-21483,-21429,-21375,-21321
dd -21268,-21216,-21163,-21112,-21061,-21010,-20960,-20910,-20860,-20811,-20763,-20714,-20667,-20619,-20572,-20525
dd -20479,-20433,-20387,-20342,-20297,-20253,-20208,-20164,-20121,-20077,-20034,-19992,-19949,-19907,-19866,-19824
dd -19783,-19742,-19701,-19661,-19621,-19581,-19542,-19502,-19463,-19425,-19386,-19348,-19310,-19272,-19235,-19197
dd -19160,-19124,-19087,-19051,-19014,-18979,-18943,-18907,-18872,-18837,-18802,-18767,-18733,-18699,-18665,-18631
dd -18597,-18564,-18530,-18497,-18464,-18432,-18399,-18367,-18334,-18302,-18271,-18239,-18207,-18176,-18145,-18114
dd -18083,-18052,-18022,-17991,-17961,-17931,-17901,-17871,-17842,-17812,-17783,-17754,-17725,-17696,-17667,-17638
dd -17610,-17582,-17553,-17525,-17497,-17470,-17442,-17414,-17387,-17360,-17333,-17305,-17279,-17252,-17225,-17199
dd -17172,-17146,-17120,-17093,-17067,-17042,-17016,-16990,-16965,-16939,-16914,-16889,-16864,-16839,-16814,-16789
dd -16764,-16740,-16715,-16691,-16667,-16643,-16618,-16594,-16571,-16547,-16523,-16500,-16476,-16453,-16429,-16406
dd -16383,-16360,-16337,-16314,-16291,-16269,-16246,-16224,-16201,-16179,-16157,-16134,-16112,-16090,-16068,-16047
dd -16025,-16003,-15981,-15960,-15938,-15917,-15896,-15875,-15853,-15832,-15811,-15790,-15770,-15749,-15728,-15708
dd -15687,-15667,-15646,-15626,-15605,-15585,-15565,-15545,-15525,-15505,-15485,-15465,-15446,-15426,-15406,-15387
dd -15367,-15348,-15329,-15309,-15290,-15271,-15252,-15233,-15214,-15195,-15176,-15157,-15139,-15120,-15101,-15083
dd -15064,-15046,-15028,-15009,-14991,-14973,-14955,-14937,-14918,-14900,-14883,-14865,-14847,-14829,-14811,-14794
dd -14776,-14759,-14741,-14724,-14706,-14689,-14671,-14654,-14637,-14620,-14603,-14586,-14569,-14552,-14535,-14518
dd -14501,-14484,-14468,-14451,-14434,-14418,-14401,-14385,-14368,-14352,-14336,-14319,-14303,-14287,-14271,-14255
dd -14238,-14222,-14206,-14191,-14175,-14159,-14143,-14127,-14111,-14096,-14080,-14064,-14049,-14033,-14018,-14002
dd -13987,-13972,-13956,-13941,-13926,-13911,-13895,-13880,-13865,-13850,-13835,-13820,-13805,-13790,-13775,-13761
dd -13746,-13731,-13716,-13702,-13687,-13672,-13658,-13643,-13629,-13614,-13600,-13585,-13571,-13557,-13542,-13528
dd -13514,-13500,-13486,-13472,-13457,-13443,-13429,-13415,-13401,-13388,-13374,-13360,-13346,-13332,-13318,-13305
dd -13291,-13277,-13264,-13250,-13237,-13223,-13209,-13196,-13183,-13169,-13156,-13142,-13129,-13116,-13103,-13089
dd -13076,-13063,-13050,-13037,-13024,-13010,-12997,-12984,-12971,-12959,-12946,-12933,-12920,-12907,-12894,-12881
dd -12869,-12856,-12843,-12831,-12818,-12805,-12793,-12780,-12768,-12755,-12743,-12730,-12718,-12705,-12693,-12681
dd -12668,-12656,-12644,-12632,-12619,-12607,-12595,-12583,-12571,-12559,-12547,-12534,-12522,-12510,-12498,-12487
dd -12475,-12463,-12451,-12439,-12427,-12415,-12404,-12392,-12380,-12368,-12357,-12345,-12333,-12322,-12310,-12299
dd -12287,-12275,-12264,-12252,-12241,-12230,-12218,-12207,-12195,-12184,-12173,-12161,-12150,-12139,-12128,-12116
dd -12105,-12094,-12083,-12072,-12061,-12049,-12038,-12027,-12016,-12005,-11994,-11983,-11972,-11961,-11951,-11940
dd -11929,-11918,-11907,-11896,-11885,-11875,-11864,-11853,-11842,-11832,-11821,-11810,-11800,-11789,-11779,-11768
dd -11757,-11747,-11736,-11726,-11715,-11705,-11694,-11684,-11674,-11663,-11653,-11643,-11632,-11622,-11612,-11601
dd -11591,-11581,-11571,-11560,-11550,-11540,-11530,-11520,-11509,-11499,-11489,-11479,-11469,-11459,-11449,-11439
dd -11429,-11419,-11409,-11399,-11389,-11379,-11369,-11360,-11350,-11340,-11330,-11320,-11310,-11301,-11291,-11281
dd -11271,-11262,-11252,-11242,-11233,-11223,-11213,-11204,-11194,-11185,-11175,-11166,-11156,-11146,-11137,-11127
dd -11118,-11109,-11099,-11090,-11080,-11071,-11061,-11052,-11043,-11033,-11024,-11015,-11005,-10996,-10987,-10978
dd -10968,-10959,-10950,-10941,-10932,-10922,-10913,-10904,-10895,-10886,-10877,-10868,-10859,-10850,-10841,-10831
dd -10822,-10813,-10804,-10796,-10787,-10778,-10769,-10760,-10751,-10742,-10733,-10724,-10715,-10707,-10698,-10689
dd -10680,-10671,-10663,-10654,-10645,-10636,-10628,-10619,-10610,-10601,-10593,-10584,-10575,-10567,-10558,-10550
dd -10541,-10532,-10524,-10515,-10507,-10498,-10490,-10481,-10473,-10464,-10456,-10447,-10439,-10430,-10422,-10414
dd -10405,-10397,-10388,-10380,-10372,-10363,-10355,-10347,-10338,-10330,-10322,-10314,-10305,-10297,-10289,-10281
dd -10272,-10264,-10256,-10248,-10240,-10231,-10223,-10215,-10207,-10199,-10191,-10183,-10175,-10167,-10159,-10151
dd -10142,-10134,-10126,-10118,-10110,-10102,-10095,-10087,-10079,-10071,-10063,-10055,-10047,-10039,-10031,-10023
dd -10015,-10008,-10000, -9992, -9984, -9976, -9968, -9961, -9953, -9945, -9937, -9930, -9922, -9914, -9906, -9899
dd -9891, -9883, -9876, -9868, -9860, -9853, -9845, -9837, -9830, -9822, -9815, -9807, -9799, -9792, -9784, -9777
dd -9769, -9762, -9754, -9747, -9739, -9732, -9724, -9717, -9709, -9702, -9694, -9687, -9679, -9672, -9665, -9657
dd -9650, -9642, -9635, -9628, -9620, -9613, -9606, -9598, -9591, -9584, -9576, -9569, -9562, -9555, -9547, -9540
dd -9533, -9526, -9518, -9511, -9504, -9497, -9489, -9482, -9475, -9468, -9461, -9454, -9446, -9439, -9432, -9425
dd -9418, -9411, -9404, -9397, -9390, -9383, -9376, -9368, -9361, -9354, -9347, -9340, -9333, -9326, -9319, -9312
dd -9305, -9298, -9292, -9285, -9278, -9271, -9264, -9257, -9250, -9243, -9236, -9229, -9222, -9216, -9209, -9202
dd -9195, -9188, -9181, -9174, -9168, -9161, -9154, -9147, -9141, -9134, -9127, -9120, -9113, -9107, -9100, -9093
dd -9087, -9080, -9073, -9066, -9060, -9053, -9046, -9040, -9033, -9026, -9020, -9013, -9007, -9000, -8993, -8987
dd -8980, -8973, -8967, -8960, -8954, -8947, -8941, -8934, -8928, -8921, -8914, -8908, -8901, -8895, -8888, -8882
dd -8875, -8869, -8863, -8856, -8850, -8843, -8837, -8830, -8824, -8817, -8811, -8805, -8798, -8792, -8785, -8779
dd -8773, -8766, -8760, -8754, -8747, -8741, -8735, -8728, -8722, -8716, -8709, -8703, -8697, -8691, -8684, -8678
dd -8672, -8665, -8659, -8653, -8647, -8640, -8634, -8628, -8622, -8616, -8609, -8603, -8597, -8591, -8585, -8579
dd -8572, -8566, -8560, -8554, -8548, -8542, -8536, -8529, -8523, -8517, -8511, -8505, -8499, -8493, -8487, -8481
dd -8475, -8469, -8463, -8457, -8451, -8445, -8438, -8432, -8426, -8420, -8414, -8408, -8402, -8397, -8391, -8385
dd -8379, -8373, -8367, -8361, -8355, -8349, -8343, -8337, -8331, -8325, -8319, -8313, -8308, -8302, -8296, -8290
dd -8284, -8278, -8272, -8267, -8261, -8255, -8249, -8243, -8237, -8232, -8226, -8220, -8214, -8208, -8203, -8197
dd -8191, -8185, -8179, -8174, -8168, -8162, -8156, -8151, -8145, -8139, -8134, -8128, -8122, -8116, -8111, -8105
dd -8099, -8094, -8088, -8082, -8077, -8071, -8065, -8060, -8054, -8048, -8043, -8037, -8032, -8026, -8020, -8015
dd -8009, -8004, -7998, -7992, -7987, -7981, -7976, -7970, -7965, -7959, -7953, -7948, -7942, -7937, -7931, -7926
dd -7920, -7915, -7909, -7904, -7898, -7893, -7887, -7882, -7876, -7871, -7865, -7860, -7855, -7849, -7844, -7838
dd -7833, -7827, -7822, -7816, -7811, -7806, -7800, -7795, -7789, -7784, -7779, -7773, -7768, -7763, -7757, -7752
dd -7746, -7741, -7736, -7730, -7725, -7720, -7714, -7709, -7704, -7699, -7693, -7688, -7683, -7677, -7672, -7667
dd -7661, -7656, -7651, -7646, -7640, -7635, -7630, -7625, -7619, -7614, -7609, -7604, -7598, -7593, -7588, -7583
dd -7578, -7572, -7567, -7562, -7557, -7552, -7547, -7541, -7536, -7531, -7526, -7521, -7516, -7510, -7505, -7500
dd -7495, -7490, -7485, -7480, -7475, -7469, -7464, -7459, -7454, -7449, -7444, -7439, -7434, -7429, -7424, -7419
dd -7413, -7408, -7403, -7398, -7393, -7388, -7383, -7378, -7373, -7368, -7363, -7358, -7353, -7348, -7343, -7338
dd -7333, -7328, -7323, -7318, -7313, -7308, -7303, -7298, -7293, -7288, -7283, -7278, -7273, -7269, -7264, -7259
dd -7254, -7249, -7244, -7239, -7234, -7229, -7224, -7219, -7214, -7210, -7205, -7200, -7195, -7190, -7185, -7180
dd -7175, -7171, -7166, -7161, -7156, -7151, -7146, -7142, -7137, -7132, -7127, -7122, -7117, -7113, -7108, -7103
dd -7098, -7093, -7089, -7084, -7079, -7074, -7070, -7065, -7060, -7055, -7050, -7046, -7041, -7036, -7031, -7027
dd -7022, -7017, -7013, -7008, -7003, -6998, -6994, -6989, -6984, -6980, -6975, -6970, -6965, -6961, -6956, -6951
dd -6947, -6942, -6937, -6933, -6928, -6923, -6919, -6914, -6909, -6905, -6900, -6896, -6891, -6886, -6882, -6877
dd -6872, -6868, -6863, -6859, -6854, -6849, -6845, -6840, -6836, -6831, -6826, -6822, -6817, -6813, -6808, -6804
dd -6799, -6794, -6790, -6785, -6781, -6776, -6772, -6767, -6763, -6758, -6754, -6749, -6745, -6740, -6735, -6731
dd -6726, -6722, -6717, -6713, -6708, -6704, -6700, -6695, -6691, -6686, -6682, -6677, -6673, -6668, -6664, -6659
dd -6655, -6650, -6646, -6642, -6637, -6633, -6628, -6624, -6619, -6615, -6611, -6606, -6602, -6597, -6593, -6588
dd -6584, -6580, -6575, -6571, -6567, -6562, -6558, -6553, -6549, -6545, -6540, -6536, -6532, -6527, -6523, -6518
dd -6514, -6510, -6505, -6501, -6497, -6492, -6488, -6484, -6479, -6475, -6471, -6467, -6462, -6458, -6454, -6449
dd -6445, -6441, -6436, -6432, -6428, -6424, -6419, -6415, -6411, -6406, -6402, -6398, -6394, -6389, -6385, -6381
dd -6377, -6372, -6368, -6364, -6360, -6356, -6351, -6347, -6343, -6339, -6334, -6330, -6326, -6322, -6318, -6313
dd -6309, -6305, -6301, -6297, -6292, -6288, -6284, -6280, -6276, -6272, -6267, -6263, -6259, -6255, -6251, -6247
dd -6242, -6238, -6234, -6230, -6226, -6222, -6218, -6213, -6209, -6205, -6201, -6197, -6193, -6189, -6185, -6180
dd -6176, -6172, -6168, -6164, -6160, -6156, -6152, -6148, -6144, -6140, -6135, -6131, -6127, -6123, -6119, -6115
dd -6111, -6107, -6103, -6099, -6095, -6091, -6087, -6083, -6079, -6075, -6071, -6067, -6063, -6059, -6055, -6051
dd -6046, -6042, -6038, -6034, -6030, -6026, -6022, -6018, -6014, -6010, -6006, -6002, -5999, -5995, -5991, -5987
dd -5983, -5979, -5975, -5971, -5967, -5963, -5959, -5955, -5951, -5947, -5943, -5939, -5935, -5931, -5927, -5923
dd -5919, -5915, -5912, -5908, -5904, -5900, -5896, -5892, -5888, -5884, -5880, -5876, -5872, -5869, -5865, -5861
dd -5857, -5853, -5849, -5845, -5841, -5837, -5834, -5830, -5826, -5822, -5818, -5814, -5810, -5807, -5803, -5799
dd -5795, -5791, -5787, -5783, -5780, -5776, -5772, -5768, -5764, -5760, -5757, -5753, -5749, -5745, -5741, -5738
dd -5734, -5730, -5726, -5722, -5719, -5715, -5711, -5707, -5703, -5700, -5696, -5692, -5688, -5684, -5681, -5677
dd -5673, -5669, -5666, -5662, -5658, -5654, -5651, -5647, -5643, -5639, -5636, -5632, -5628, -5624, -5621, -5617
dd -5613, -5609, -5606, -5602, -5598, -5595, -5591, -5587, -5583, -5580, -5576, -5572, -5569, -5565, -5561, -5557
dd -5554, -5550, -5546, -5543, -5539, -5535, -5532, -5528, -5524, -5521, -5517, -5513, -5510, -5506, -5502, -5499
dd -5495, -5491, -5488, -5484, -5480, -5477, -5473, -5469, -5466, -5462, -5459, -5455, -5451, -5448, -5444, -5440
dd -5437, -5433, -5430, -5426, -5422, -5419, -5415, -5411, -5408, -5404, -5401, -5397, -5393, -5390, -5386, -5383
dd -5379, -5376, -5372, -5368, -5365, -5361, -5358, -5354, -5350, -5347, -5343, -5340, -5336, -5333, -5329, -5326
dd -5322, -5318, -5315, -5311, -5308, -5304, -5301, -5297, -5294, -5290, -5287, -5283, -5280, -5276, -5272, -5269
dd -5265, -5262, -5258, -5255, -5251, -5248, -5244, -5241, -5237, -5234, -5230, -5227, -5223, -5220, -5216, -5213
dd -5209, -5206, -5202, -5199, -5196, -5192, -5189, -5185, -5182, -5178, -5175, -5171, -5168, -5164, -5161, -5157
dd -5154, -5151, -5147, -5144, -5140, -5137, -5133, -5130, -5126, -5123, -5120, -5116, -5113, -5109, -5106, -5102
dd -5099, -5096, -5092, -5089, -5085, -5082, -5078, -5075, -5072, -5068, -5065, -5061, -5058, -5055, -5051, -5048
dd -5045, -5041, -5038, -5034, -5031, -5028, -5024, -5021, -5017, -5014, -5011, -5007, -5004, -5001, -4997, -4994
dd -4991, -4987, -4984, -4980, -4977, -4974, -4970, -4967, -4964, -4960, -4957, -4954, -4950, -4947, -4944, -4940
dd -4937, -4934, -4930, -4927, -4924, -4920, -4917, -4914, -4911, -4907, -4904, -4901, -4897, -4894, -4891, -4887
dd -4884, -4881, -4877, -4874, -4871, -4868, -4864, -4861, -4858, -4854, -4851, -4848, -4845, -4841, -4838, -4835
dd -4832, -4828, -4825, -4822, -4818, -4815, -4812, -4809, -4805, -4802, -4799, -4796, -4792, -4789, -4786, -4783
dd -4779, -4776, -4773, -4770, -4767, -4763, -4760, -4757, -4754, -4750, -4747, -4744, -4741, -4738, -4734, -4731
dd -4728, -4725, -4721, -4718, -4715, -4712, -4709, -4705, -4702, -4699, -4696, -4693, -4689, -4686, -4683, -4680
dd -4677, -4674, -4670, -4667, -4664, -4661, -4658, -4654, -4651, -4648, -4645, -4642, -4639, -4635, -4632, -4629
dd -4626, -4623, -4620, -4617, -4613, -4610, -4607, -4604, -4601, -4598, -4595, -4591, -4588, -4585, -4582, -4579
dd -4576, -4573, -4569, -4566, -4563, -4560, -4557, -4554, -4551, -4548, -4544, -4541, -4538, -4535, -4532, -4529
dd -4526, -4523, -4520, -4517, -4513, -4510, -4507, -4504, -4501, -4498, -4495, -4492, -4489, -4486, -4483, -4479
dd -4476, -4473, -4470, -4467, -4464, -4461, -4458, -4455, -4452, -4449, -4446, -4443, -4440, -4437, -4433, -4430
dd -4427, -4424, -4421, -4418, -4415, -4412, -4409, -4406, -4403, -4400, -4397, -4394, -4391, -4388, -4385, -4382
dd -4379, -4376, -4373, -4370, -4367, -4364, -4361, -4358, -4355, -4352, -4349, -4345, -4342, -4339, -4336, -4333
dd -4330, -4327, -4324, -4321, -4318, -4315, -4312, -4309, -4306, -4303, -4301, -4298, -4295, -4292, -4289, -4286
dd -4283, -4280, -4277, -4274, -4271, -4268, -4265, -4262, -4259, -4256, -4253, -4250, -4247, -4244, -4241, -4238
dd -4235, -4232, -4229, -4226, -4223, -4220, -4217, -4215, -4212, -4209, -4206, -4203, -4200, -4197, -4194, -4191
dd -4188, -4185, -4182, -4179, -4176, -4173, -4171, -4168, -4165, -4162, -4159, -4156, -4153, -4150, -4147, -4144
dd -4141, -4138, -4136, -4133, -4130, -4127, -4124, -4121, -4118, -4115, -4112, -4109, -4107, -4104, -4101, -4098
dd -4095, -4092, -4089, -4086, -4083, -4081, -4078, -4075, -4072, -4069, -4066, -4063, -4060, -4058, -4055, -4052
dd -4049, -4046, -4043, -4040, -4038, -4035, -4032, -4029, -4026, -4023, -4020, -4018, -4015, -4012, -4009, -4006
dd -4003, -4001, -3998, -3995, -3992, -3989, -3986, -3984, -3981, -3978, -3975, -3972, -3969, -3967, -3964, -3961
dd -3958, -3955, -3952, -3950, -3947, -3944, -3941, -3938, -3936, -3933, -3930, -3927, -3924, -3922, -3919, -3916
dd -3913, -3910, -3908, -3905, -3902, -3899, -3896, -3894, -3891, -3888, -3885, -3882, -3880, -3877, -3874, -3871
dd -3869, -3866, -3863, -3860, -3857, -3855, -3852, -3849, -3846, -3844, -3841, -3838, -3835, -3833, -3830, -3827
dd -3824, -3822, -3819, -3816, -3813, -3811, -3808, -3805, -3802, -3800, -3797, -3794, -3791, -3789, -3786, -3783
dd -3780, -3778, -3775, -3772, -3769, -3767, -3764, -3761, -3759, -3756, -3753, -3750, -3748, -3745, -3742, -3739
dd -3737, -3734, -3731, -3729, -3726, -3723, -3720, -3718, -3715, -3712, -3710, -3707, -3704, -3702, -3699, -3696
dd -3693, -3691, -3688, -3685, -3683, -3680, -3677, -3675, -3672, -3669, -3667, -3664, -3661, -3659, -3656, -3653
dd -3650, -3648, -3645, -3642, -3640, -3637, -3634, -3632, -3629, -3626, -3624, -3621, -3618, -3616, -3613, -3610
dd -3608, -3605, -3603, -3600, -3597, -3595, -3592, -3589, -3587, -3584, -3581, -3579, -3576, -3573, -3571, -3568
dd -3565, -3563, -3560, -3558, -3555, -3552, -3550, -3547, -3544, -3542, -3539, -3537, -3534, -3531, -3529, -3526
dd -3523, -3521, -3518, -3516, -3513, -3510, -3508, -3505, -3502, -3500, -3497, -3495, -3492, -3489, -3487, -3484
dd -3482, -3479, -3476, -3474, -3471, -3469, -3466, -3463, -3461, -3458, -3456, -3453, -3451, -3448, -3445, -3443
dd -3440, -3438, -3435, -3432, -3430, -3427, -3425, -3422, -3420, -3417, -3414, -3412, -3409, -3407, -3404, -3402
dd -3399, -3396, -3394, -3391, -3389, -3386, -3384, -3381, -3379, -3376, -3373, -3371, -3368, -3366, -3363, -3361
dd -3358, -3356, -3353, -3350, -3348, -3345, -3343, -3340, -3338, -3335, -3333, -3330, -3328, -3325, -3323, -3320
dd -3317, -3315, -3312, -3310, -3307, -3305, -3302, -3300, -3297, -3295, -3292, -3290, -3287, -3285, -3282, -3280
dd -3277, -3275, -3272, -3270, -3267, -3265, -3262, -3260, -3257, -3255, -3252, -3250, -3247, -3245, -3242, -3240
dd -3237, -3235, -3232, -3230, -3227, -3225, -3222, -3220, -3217, -3215, -3212, -3210, -3207, -3205, -3202, -3200
dd -3197, -3195, -3192, -3190, -3187, -3185, -3182, -3180, -3177, -3175, -3173, -3170, -3168, -3165, -3163, -3160
dd -3158, -3155, -3153, -3150, -3148, -3145, -3143, -3141, -3138, -3136, -3133, -3131, -3128, -3126, -3123, -3121
dd -3118, -3116, -3114, -3111, -3109, -3106, -3104, -3101, -3099, -3097, -3094, -3092, -3089, -3087, -3084, -3082
dd -3079, -3077, -3075, -3072, -3070, -3067, -3065, -3063, -3060, -3058, -3055, -3053, -3050, -3048, -3046, -3043
dd -3041, -3038, -3036, -3034, -3031, -3029, -3026, -3024, -3021, -3019, -3017, -3014, -3012, -3009, -3007, -3005
dd -3002, -3000, -2997, -2995, -2993, -2990, -2988, -2985, -2983, -2981, -2978, -2976, -2974, -2971, -2969, -2966
dd -2964, -2962, -2959, -2957, -2954, -2952, -2950, -2947, -2945, -2943, -2940, -2938, -2935, -2933, -2931, -2928
dd -2926, -2924, -2921, -2919, -2917, -2914, -2912, -2909, -2907, -2905, -2902, -2900, -2898, -2895, -2893, -2891
dd -2888, -2886, -2884, -2881, -2879, -2876, -2874, -2872, -2869, -2867, -2865, -2862, -2860, -2858, -2855, -2853
dd -2851, -2848, -2846, -2844, -2841, -2839, -2837, -2834, -2832, -2830, -2827, -2825, -2823, -2820, -2818, -2816
dd -2813, -2811, -2809, -2806, -2804, -2802, -2800, -2797, -2795, -2793, -2790, -2788, -2786, -2783, -2781, -2779
dd -2776, -2774, -2772, -2769, -2767, -2765, -2763, -2760, -2758, -2756, -2753, -2751, -2749, -2746, -2744, -2742
dd -2740, -2737, -2735, -2733, -2730, -2728, -2726, -2724, -2721, -2719, -2717, -2714, -2712, -2710, -2708, -2705
dd -2703, -2701, -2698, -2696, -2694, -2692, -2689, -2687, -2685, -2682, -2680, -2678, -2676, -2673, -2671, -2669
dd -2667, -2664, -2662, -2660, -2658, -2655, -2653, -2651, -2649, -2646, -2644, -2642, -2639, -2637, -2635, -2633
dd -2630, -2628, -2626, -2624, -2621, -2619, -2617, -2615, -2612, -2610, -2608, -2606, -2604, -2601, -2599, -2597
dd -2595, -2592, -2590, -2588, -2586, -2583, -2581, -2579, -2577, -2574, -2572, -2570, -2568, -2566, -2563, -2561
dd -2559, -2557, -2554, -2552, -2550, -2548, -2546, -2543, -2541, -2539, -2537, -2534, -2532, -2530, -2528, -2526
dd -2523, -2521, -2519, -2517, -2515, -2512, -2510, -2508, -2506, -2503, -2501, -2499, -2497, -2495, -2492, -2490
dd -2488, -2486, -2484, -2481, -2479, -2477, -2475, -2473, -2471, -2468, -2466, -2464, -2462, -2460, -2457, -2455
dd -2453, -2451, -2449, -2446, -2444, -2442, -2440, -2438, -2436, -2433, -2431, -2429, -2427, -2425, -2422, -2420
dd -2418, -2416, -2414, -2412, -2409, -2407, -2405, -2403, -2401, -2399, -2396, -2394, -2392, -2390, -2388, -2386
dd -2383, -2381, -2379, -2377, -2375, -2373, -2371, -2368, -2366, -2364, -2362, -2360, -2358, -2355, -2353, -2351
dd -2349, -2347, -2345, -2343, -2340, -2338, -2336, -2334, -2332, -2330, -2328, -2325, -2323, -2321, -2319, -2317
dd -2315, -2313, -2310, -2308, -2306, -2304, -2302, -2300, -2298, -2296, -2293, -2291, -2289, -2287, -2285, -2283
dd -2281, -2279, -2276, -2274, -2272, -2270, -2268, -2266, -2264, -2262, -2260, -2257, -2255, -2253, -2251, -2249
dd -2247, -2245, -2243, -2241, -2238, -2236, -2234, -2232, -2230, -2228, -2226, -2224, -2222, -2219, -2217, -2215
dd -2213, -2211, -2209, -2207, -2205, -2203, -2201, -2198, -2196, -2194, -2192, -2190, -2188, -2186, -2184, -2182
dd -2180, -2178, -2176, -2173, -2171, -2169, -2167, -2165, -2163, -2161, -2159, -2157, -2155, -2153, -2151, -2148
dd -2146, -2144, -2142, -2140, -2138, -2136, -2134, -2132, -2130, -2128, -2126, -2124, -2122, -2119, -2117, -2115
dd -2113, -2111, -2109, -2107, -2105, -2103, -2101, -2099, -2097, -2095, -2093, -2091, -2089, -2087, -2084, -2082
dd -2080, -2078, -2076, -2074, -2072, -2070, -2068, -2066, -2064, -2062, -2060, -2058, -2056, -2054, -2052, -2050
dd -2048, -2046, -2044, -2042, -2039, -2037, -2035, -2033, -2031, -2029, -2027, -2025, -2023, -2021, -2019, -2017
dd -2015, -2013, -2011, -2009, -2007, -2005, -2003, -2001, -1999, -1997, -1995, -1993, -1991, -1989, -1987, -1985
dd -1983, -1981, -1979, -1977, -1975, -1973, -1971, -1969, -1967, -1965, -1963, -1961, -1959, -1957, -1955, -1952
dd -1950, -1948, -1946, -1944, -1942, -1940, -1938, -1936, -1934, -1932, -1930, -1928, -1926, -1924, -1922, -1920
dd -1918, -1916, -1914, -1912, -1910, -1908, -1906, -1905, -1903, -1901, -1899, -1897, -1895, -1893, -1891, -1889
dd -1887, -1885, -1883, -1881, -1879, -1877, -1875, -1873, -1871, -1869, -1867, -1865, -1863, -1861, -1859, -1857
dd -1855, -1853, -1851, -1849, -1847, -1845, -1843, -1841, -1839, -1837, -1835, -1833, -1831, -1829, -1827, -1825
dd -1823, -1821, -1819, -1818, -1816, -1814, -1812, -1810, -1808, -1806, -1804, -1802, -1800, -1798, -1796, -1794
dd -1792, -1790, -1788, -1786, -1784, -1782, -1780, -1778, -1776, -1774, -1773, -1771, -1769, -1767, -1765, -1763
dd -1761, -1759, -1757, -1755, -1753, -1751, -1749, -1747, -1745, -1743, -1741, -1740, -1738, -1736, -1734, -1732
dd -1730, -1728, -1726, -1724, -1722, -1720, -1718, -1716, -1714, -1712, -1711, -1709, -1707, -1705, -1703, -1701
dd -1699, -1697, -1695, -1693, -1691, -1689, -1687, -1686, -1684, -1682, -1680, -1678, -1676, -1674, -1672, -1670
dd -1668, -1666, -1664, -1663, -1661, -1659, -1657, -1655, -1653, -1651, -1649, -1647, -1645, -1643, -1642, -1640
dd -1638, -1636, -1634, -1632, -1630, -1628, -1626, -1624, -1623, -1621, -1619, -1617, -1615, -1613, -1611, -1609
dd -1607, -1605, -1604, -1602, -1600, -1598, -1596, -1594, -1592, -1590, -1588, -1587, -1585, -1583, -1581, -1579
dd -1577, -1575, -1573, -1571, -1570, -1568, -1566, -1564, -1562, -1560, -1558, -1556, -1555, -1553, -1551, -1549
dd -1547, -1545, -1543, -1541, -1540, -1538, -1536, -1534, -1532, -1530, -1528, -1526, -1525, -1523, -1521, -1519
dd -1517, -1515, -1513, -1512, -1510, -1508, -1506, -1504, -1502, -1500, -1499, -1497, -1495, -1493, -1491, -1489
dd -1487, -1486, -1484, -1482, -1480, -1478, -1476, -1474, -1473, -1471, -1469, -1467, -1465, -1463, -1461, -1460
dd -1458, -1456, -1454, -1452, -1450, -1449, -1447, -1445, -1443, -1441, -1439, -1437, -1436, -1434, -1432, -1430
dd -1428, -1426, -1425, -1423, -1421, -1419, -1417, -1415, -1414, -1412, -1410, -1408, -1406, -1404, -1403, -1401
dd -1399, -1397, -1395, -1393, -1392, -1390, -1388, -1386, -1384, -1383, -1381, -1379, -1377, -1375, -1373, -1372
dd -1370, -1368, -1366, -1364, -1363, -1361, -1359, -1357, -1355, -1353, -1352, -1350, -1348, -1346, -1344, -1343
dd -1341, -1339, -1337, -1335, -1334, -1332, -1330, -1328, -1326, -1324, -1323, -1321, -1319, -1317, -1315, -1314
dd -1312, -1310, -1308, -1306, -1305, -1303, -1301, -1299, -1297, -1296, -1294, -1292, -1290, -1288, -1287, -1285
dd -1283, -1281, -1280, -1278, -1276, -1274, -1272, -1271, -1269, -1267, -1265, -1263, -1262, -1260, -1258, -1256
dd -1254, -1253, -1251, -1249, -1247, -1246, -1244, -1242, -1240, -1238, -1237, -1235, -1233, -1231, -1230, -1228
dd -1226, -1224, -1222, -1221, -1219, -1217, -1215, -1214, -1212, -1210, -1208, -1206, -1205, -1203, -1201, -1199
dd -1198, -1196, -1194, -1192, -1191, -1189, -1187, -1185, -1184, -1182, -1180, -1178, -1176, -1175, -1173, -1171
dd -1169, -1168, -1166, -1164, -1162, -1161, -1159, -1157, -1155, -1154, -1152, -1150, -1148, -1147, -1145, -1143
dd -1141, -1140, -1138, -1136, -1134, -1133, -1131, -1129, -1127, -1126, -1124, -1122, -1120, -1119, -1117, -1115
dd -1113, -1112, -1110, -1108, -1106, -1105, -1103, -1101, -1100, -1098, -1096, -1094, -1093, -1091, -1089, -1087
dd -1086, -1084, -1082, -1080, -1079, -1077, -1075, -1074, -1072, -1070, -1068, -1067, -1065, -1063, -1061, -1060
dd -1058, -1056, -1055, -1053, -1051, -1049, -1048, -1046, -1044, -1042, -1041, -1039, -1037, -1036, -1034, -1032
dd -1030, -1029, -1027, -1025, -1024, -1022, -1020, -1018, -1017, -1015, -1013, -1012, -1010, -1008, -1006, -1005
dd -1003, -1001, -1000, -998, -996, -994, -993, -991, -989, -988, -986, -984, -982, -981, -979, -977
dd -976, -974, -972, -971, -969, -967, -965, -964, -962, -960, -959, -957, -955, -954, -952, -950
dd -949, -947, -945, -943, -942, -940, -938, -937, -935, -933, -932, -930, -928, -927, -925, -923
dd -921, -920, -918, -916, -915, -913, -911, -910, -908, -906, -905, -903, -901, -900, -898, -896
dd -895, -893, -891, -890, -888, -886, -884, -883, -881, -879, -878, -876, -874, -873, -871, -869
dd -868, -866, -864, -863, -861, -859, -858, -856, -854, -853, -851, -849, -848, -846, -844, -843
dd -841, -839, -838, -836, -834, -833, -831, -829, -828, -826, -824, -823, -821, -819, -818, -816
dd -815, -813, -811, -810, -808, -806, -805, -803, -801, -800, -798, -796, -795, -793, -791, -790
dd -788, -786, -785, -783, -781, -780, -778, -777, -775, -773, -772, -770, -768, -767, -765, -763
dd -762, -760, -758, -757, -755, -754, -752, -750, -749, -747, -745, -744, -742, -740, -739, -737
dd -736, -734, -732, -731, -729, -727, -726, -724, -722, -721, -719, -718, -716, -714, -713, -711
dd -709, -708, -706, -705, -703, -701, -700, -698, -696, -695, -693, -692, -690, -688, -687, -685
dd -683, -682, -680, -679, -677, -675, -674, -672, -671, -669, -667, -666, -664, -662, -661, -659
dd -658, -656, -654, -653, -651, -650, -648, -646, -645, -643, -642, -640, -638, -637, -635, -633
dd -632, -630, -629, -627, -625, -624, -622, -621, -619, -617, -616, -614, -613, -611, -609, -608
dd -606, -605, -603, -601, -600, -598, -597, -595, -593, -592, -590, -589, -587, -585, -584, -582
dd -581, -579, -578, -576, -574, -573, -571, -570, -568, -566, -565, -563, -562, -560, -558, -557
dd -555, -554, -552, -551, -549, -547, -546, -544, -543, -541, -539, -538, -536, -535, -533, -532
dd -530, -528, -527, -525, -524, -522, -521, -519, -517, -516, -514, -513, -511, -510, -508, -506
dd -505, -503, -502, -500, -499, -497, -495, -494, -492, -491, -489, -488, -486, -484, -483, -481
dd -480, -478, -477, -475, -473, -472, -470, -469, -467, -466, -464, -463, -461, -459, -458, -456
dd -455, -453, -452, -450, -448, -447, -445, -444, -442, -441, -439, -438, -436, -434, -433, -431
dd -430, -428, -427, -425, -424, -422, -421, -419, -417, -416, -414, -413, -411, -410, -408, -407
dd -405, -404, -402, -400, -399, -397, -396, -394, -393, -391, -390, -388, -387, -385, -383, -382
dd -380, -379, -377, -376, -374, -373, -371, -370, -368, -367, -365, -363, -362, -360, -359, -357
dd -356, -354, -353, -351, -350, -348, -347, -345, -344, -342, -341, -339, -337, -336, -334, -333
dd -331, -330, -328, -327, -325, -324, -322, -321, -319, -318, -316, -315, -313, -312, -310, -308
dd -307, -305, -304, -302, -301, -299, -298, -296, -295, -293, -292, -290, -289, -287, -286, -284
dd -283, -281, -280, -278, -277, -275, -274, -272, -271, -269, -268, -266, -265, -263, -262, -260
dd -259, -257, -256, -254, -253, -251, -249, -248, -246, -245, -243, -242, -240, -239, -237, -236
dd -234, -233, -231, -230, -228, -227, -225, -224, -222, -221, -219, -218, -216, -215, -213, -212
dd -210, -209, -207, -206, -205, -203, -202, -200, -199, -197, -196, -194, -193, -191, -190, -188
dd -187, -185, -184, -182, -181, -179, -178, -176, -175, -173, -172, -170, -169, -167, -166, -164
dd -163, -161, -160, -158, -157, -155, -154, -152, -151, -149, -148, -147, -145, -144, -142, -141
dd -139, -138, -136, -135, -133, -132, -130, -129, -127, -126, -124, -123, -121, -120, -119, -117
dd -116, -114, -113, -111, -110, -108, -107, -105, -104, -102, -101, -99, -98, -96, -95, -94
dd -92, -91, -89, -88, -86, -85, -83, -82, -80, -79, -77, -76, -75, -73, -72, -70
dd -69, -67, -66, -64, -63, -61, -60, -58, -57, -56, -54, -53, -51, -50, -48, -47
dd -45, -44, -42, -41, -40, -38, -37, -35, -34, -32, -31, -29, -28, -26, -25, -24
dd -22, -21, -19, -18, -16, -15, -13, -12, -11, -9, -8, -6, -5, -3, -2, 0
dd 0, 1, 3, 4, 6, 7, 9, 10, 12, 13, 14, 16, 17, 19, 20, 22
dd 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 37, 39, 40, 42, 43, 45
dd 46, 47, 49, 50, 52, 53, 55, 56, 57, 59, 60, 62, 63, 65, 66, 67
dd 69, 70, 72, 73, 75, 76, 77, 79, 80, 82, 83, 85, 86, 87, 89, 90
dd 92, 93, 94, 96, 97, 99, 100, 102, 103, 104, 106, 107, 109, 110, 111, 113
dd 114, 116, 117, 119, 120, 121, 123, 124, 126, 127, 128, 130, 131, 133, 134, 135
dd 137, 138, 140, 141, 143, 144, 145, 147, 148, 150, 151, 152, 154, 155, 157, 158
dd 159, 161, 162, 164, 165, 166, 168, 169, 171, 172, 173, 175, 176, 178, 179, 180
dd 182, 183, 185, 186, 187, 189, 190, 192, 193, 194, 196, 197, 199, 200, 201, 203
dd 204, 206, 207, 208, 210, 211, 213, 214, 215, 217, 218, 219, 221, 222, 224, 225
dd 226, 228, 229, 231, 232, 233, 235, 236, 238, 239, 240, 242, 243, 244, 246, 247
dd 249, 250, 251, 253, 254, 256, 257, 258, 260, 261, 262, 264, 265, 267, 268, 269
dd 271, 272, 273, 275, 276, 278, 279, 280, 282, 283, 284, 286, 287, 289, 290, 291
dd 293, 294, 295, 297, 298, 300, 301, 302, 304, 305, 306, 308, 309, 311, 312, 313
dd 315, 316, 317, 319, 320, 321, 323, 324, 326, 327, 328, 330, 331, 332, 334, 335
dd 336, 338, 339, 341, 342, 343, 345, 346, 347, 349, 350, 351, 353, 354, 356, 357
dd 358, 360, 361, 362, 364, 365, 366, 368, 369, 370, 372, 373, 375, 376, 377, 379
dd 380, 381, 383, 384, 385, 387, 388, 389, 391, 392, 393, 395, 396, 397, 399, 400
dd 402, 403, 404, 406, 407, 408, 410, 411, 412, 414, 415, 416, 418, 419, 420, 422
dd 423, 424, 426, 427, 428, 430, 431, 432, 434, 435, 436, 438, 439, 441, 442, 443
dd 445, 446, 447, 449, 450, 451, 453, 454, 455, 457, 458, 459, 461, 462, 463, 465
dd 466, 467, 469, 470, 471, 473, 474, 475, 477, 478, 479, 481, 482, 483, 485, 486
dd 487, 489, 490, 491, 492, 494, 495, 496, 498, 499, 500, 502, 503, 504, 506, 507
dd 508, 510, 511, 512, 514, 515, 516, 518, 519, 520, 522, 523, 524, 526, 527, 528
dd 530, 531, 532, 533, 535, 536, 537, 539, 540, 541, 543, 544, 545, 547, 548, 549
dd 551, 552, 553, 555, 556, 557, 558, 560, 561, 562, 564, 565, 566, 568, 569, 570
dd 572, 573, 574, 576, 577, 578, 579, 581, 582, 583, 585, 586, 587, 589, 590, 591
dd 593, 594, 595, 596, 598, 599, 600, 602, 603, 604, 606, 607, 608, 609, 611, 612
dd 613, 615, 616, 617, 619, 620, 621, 622, 624, 625, 626, 628, 629, 630, 632, 633
dd 634, 635, 637, 638, 639, 641, 642, 643, 644, 646, 647, 648, 650, 651, 652, 654
dd 655, 656, 657, 659, 660, 661, 663, 664, 665, 666, 668, 669, 670, 672, 673, 674
dd 675, 677, 678, 679, 681, 682, 683, 684, 686, 687, 688, 690, 691, 692, 693, 695
dd 696, 697, 699, 700, 701, 702, 704, 705, 706, 708, 709, 710, 711, 713, 714, 715
dd 716, 718, 719, 720, 722, 723, 724, 725, 727, 728, 729, 731, 732, 733, 734, 736
dd 737, 738, 739, 741, 742, 743, 745, 746, 747, 748, 750, 751, 752, 753, 755, 756
dd 757, 759, 760, 761, 762, 764, 765, 766, 767, 769, 770, 771, 772, 774, 775, 776
dd 778, 779, 780, 781, 783, 784, 785, 786, 788, 789, 790, 791, 793, 794, 795, 796
dd 798, 799, 800, 802, 803, 804, 805, 807, 808, 809, 810, 812, 813, 814, 815, 817
dd 818, 819, 820, 822, 823, 824, 825, 827, 828, 829, 830, 832, 833, 834, 835, 837
dd 838, 839, 840, 842, 843, 844, 845, 847, 848, 849, 850, 852, 853, 854, 855, 857
dd 858, 859, 860, 862, 863, 864, 865, 867, 868, 869, 870, 872, 873, 874, 875, 877
dd 878, 879, 880, 882, 883, 884, 885, 887, 888, 889, 890, 892, 893, 894, 895, 896
dd 898, 899, 900, 901, 903, 904, 905, 906, 908, 909, 910, 911, 913, 914, 915, 916
dd 918, 919, 920, 921, 922, 924, 925, 926, 927, 929, 930, 931, 932, 934, 935, 936
dd 937, 938, 940, 941, 942, 943, 945, 946, 947, 948, 950, 951, 952, 953, 954, 956
dd 957, 958, 959, 961, 962, 963, 964, 965, 967, 968, 969, 970, 972, 973, 974, 975
dd 977, 978, 979, 980, 981, 983, 984, 985, 986, 988, 989, 990, 991, 992, 994, 995
dd 996, 997, 998, 1000, 1001, 1002, 1003, 1005, 1006, 1007, 1008, 1009, 1011, 1012, 1013, 1014
dd 1016, 1017, 1018, 1019, 1020, 1022, 1023, 1024, 1025, 1026, 1028, 1029, 1030, 1031, 1032, 1034
dd 1035, 1036, 1037, 1039, 1040, 1041, 1042, 1043, 1045, 1046, 1047, 1048, 1049, 1051, 1052, 1053
dd 1054, 1055, 1057, 1058, 1059, 1060, 1061, 1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072
dd 1074, 1075, 1076, 1077, 1078, 1080, 1081, 1082, 1083, 1084, 1086, 1087, 1088, 1089, 1090, 1092
dd 1093, 1094, 1095, 1096, 1098, 1099, 1100, 1101, 1102, 1104, 1105, 1106, 1107, 1108, 1110, 1111
dd 1112, 1113, 1114, 1115, 1117, 1118, 1119, 1120, 1121, 1123, 1124, 1125, 1126, 1127, 1129, 1130
dd 1131, 1132, 1133, 1135, 1136, 1137, 1138, 1139, 1141, 1142, 1143, 1144, 1145, 1146, 1148, 1149
dd 1150, 1151, 1152, 1154, 1155, 1156, 1157, 1158, 1160, 1161, 1162, 1163, 1164, 1165, 1167, 1168
dd 1169, 1170, 1171, 1173, 1174, 1175, 1176, 1177, 1178, 1180, 1181, 1182, 1183, 1184, 1186, 1187
dd 1188, 1189, 1190, 1191, 1193, 1194, 1195, 1196, 1197, 1199, 1200, 1201, 1202, 1203, 1204, 1206
dd 1207, 1208, 1209, 1210, 1211, 1213, 1214, 1215, 1216, 1217, 1219, 1220, 1221, 1222, 1223, 1224
dd 1226, 1227, 1228, 1229, 1230, 1231, 1233, 1234, 1235, 1236, 1237, 1238, 1240, 1241, 1242, 1243
dd 1244, 1245, 1247, 1248, 1249, 1250, 1251, 1252, 1254, 1255, 1256, 1257, 1258, 1259, 1261, 1262
dd 1263, 1264, 1265, 1266, 1268, 1269, 1270, 1271, 1272, 1273, 1275, 1276, 1277, 1278, 1279, 1280
dd 1282, 1283, 1284, 1285, 1286, 1287, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1297, 1298, 1299
dd 1300, 1301, 1302, 1304, 1305, 1306, 1307, 1308, 1309, 1311, 1312, 1313, 1314, 1315, 1316, 1317
dd 1319, 1320, 1321, 1322, 1323, 1324, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1334, 1335, 1336
dd 1337, 1338, 1339, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1349, 1350, 1351, 1352, 1353, 1354
dd 1355, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1373
dd 1374, 1375, 1376, 1377, 1378, 1379, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1389, 1390, 1391
dd 1392, 1393, 1394, 1395, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1405, 1406, 1407, 1408, 1409
dd 1410, 1411, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1422, 1423, 1424, 1425, 1426, 1427
dd 1428, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1439, 1440, 1441, 1442, 1443, 1444, 1445
dd 1446, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463
dd 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481
dd 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1493, 1494, 1495, 1496, 1497, 1498, 1499
dd 1500, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1511, 1512, 1513, 1514, 1515, 1516, 1517
dd 1518, 1519, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1531, 1532, 1533, 1534, 1535
dd 1536, 1537, 1538, 1539, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1551, 1552, 1553
dd 1554, 1555, 1556, 1557, 1558, 1559, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1571
dd 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1582, 1583, 1584, 1585, 1586, 1587, 1588
dd 1589, 1590, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1603, 1604, 1605, 1606
dd 1607, 1608, 1609, 1610, 1611, 1612, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623
dd 1624, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1637, 1638, 1639, 1640, 1641
dd 1642, 1643, 1644, 1645, 1646, 1647, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658
dd 1659, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1673, 1674, 1675, 1676
dd 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693
dd 1694, 1695, 1696, 1697, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710
dd 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1726, 1727, 1728
dd 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1740, 1741, 1742, 1743, 1744, 1745
dd 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762
dd 1763, 1764, 1765, 1766, 1767, 1768, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779
dd 1780, 1781, 1782, 1783, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796
dd 1797, 1798, 1799, 1800, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813
dd 1814, 1815, 1816, 1817, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830
dd 1831, 1832, 1833, 1834, 1835, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847
dd 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864
dd 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1881
dd 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1897, 1898
dd 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914
dd 1915, 1916, 1917, 1918, 1919, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931
dd 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1947, 1948
dd 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964
dd 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1976, 1977, 1978, 1979, 1980, 1981
dd 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
dd 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012, 2013, 2014
dd 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030
dd 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046
dd 2047, 2048, 2049, 2050, 2051, 2052, 2053, 2055, 2056, 2057, 2058, 2059, 2060, 2061, 2062, 2063
dd 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079
dd 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095
dd 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111
dd 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127
dd 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141, 2143, 2144
dd 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160
dd 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176
dd 2177, 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2190, 2191
dd 2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207
dd 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223
dd 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239
dd 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255
dd 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270, 2271
dd 2272, 2273, 2274, 2275, 2276, 2277, 2277, 2278, 2279, 2280, 2281, 2282, 2283, 2284, 2285, 2286
dd 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299, 2300, 2301, 2302
dd 2303, 2304, 2305, 2306, 2307, 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318
dd 2319, 2320, 2321, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333
dd 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349
dd 2350, 2351, 2352, 2353, 2354, 2355, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364
dd 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380
dd 2381, 2382, 2383, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395
dd 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2408, 2409, 2410
dd 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426
dd 2427, 2428, 2429, 2430, 2431, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441
dd 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451, 2452, 2452, 2453, 2454, 2455, 2456
dd 2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472
dd 2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2487
dd 2488, 2489, 2490, 2490, 2491, 2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501, 2502
dd 2503, 2504, 2505, 2506, 2507, 2507, 2508, 2509, 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517
dd 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532
dd 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2547
dd 2548, 2549, 2550, 2551, 2552, 2553, 2554, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562
dd 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2577
dd 2578, 2579, 2580, 2581, 2582, 2583, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592
dd 2593, 2594, 2595, 2596, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607
dd 2608, 2609, 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622
dd 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2634, 2635, 2636
dd 2637, 2638, 2639, 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2646, 2647, 2648, 2649, 2650, 2651
dd 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2658, 2659, 2660, 2661, 2662, 2663, 2664, 2665, 2666
dd 2667, 2668, 2669, 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678, 2679, 2680, 2680
dd 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690, 2691, 2691, 2692, 2693, 2694, 2695
dd 2696, 2697, 2698, 2699, 2700, 2701, 2702, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710
dd 2711, 2712, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, 2720, 2721, 2722, 2722, 2723, 2724
dd 2725, 2726, 2727, 2728, 2729, 2730, 2731, 2732, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739
dd 2740, 2741, 2742, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2752, 2753
dd 2754, 2755, 2756, 2757, 2758, 2759, 2760, 2761, 2761, 2762, 2763, 2764, 2765, 2766, 2767, 2768
dd 2769, 2770, 2771, 2771, 2772, 2773, 2774, 2775, 2776, 2777, 2778, 2779, 2780, 2780, 2781, 2782
dd 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797
dd 2798, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2807, 2808, 2809, 2810, 2811
dd 2812, 2813, 2814, 2815, 2815, 2816, 2817, 2818, 2819, 2820, 2821, 2822, 2823, 2824, 2824, 2825
dd 2826, 2827, 2828, 2829, 2830, 2831, 2832, 2832, 2833, 2834, 2835, 2836, 2837, 2838, 2839, 2840
dd 2841, 2841, 2842, 2843, 2844, 2845, 2846, 2847, 2848, 2849, 2849, 2850, 2851, 2852, 2853, 2854
dd 2855, 2856, 2857, 2857, 2858, 2859, 2860, 2861, 2862, 2863, 2864, 2865, 2865, 2866, 2867, 2868
dd 2869, 2870, 2871, 2872, 2873, 2873, 2874, 2875, 2876, 2877, 2878, 2879, 2880, 2881, 2881, 2882
dd 2883, 2884, 2885, 2886, 2887, 2888, 2889, 2889, 2890, 2891, 2892, 2893, 2894, 2895, 2896, 2896
dd 2897, 2898, 2899, 2900, 2901, 2902, 2903, 2904, 2904, 2905, 2906, 2907, 2908, 2909, 2910, 2911
dd 2911, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2919, 2919, 2920, 2921, 2922, 2923, 2924, 2925
dd 2926, 2926, 2927, 2928, 2929, 2930, 2931, 2932, 2933, 2933, 2934, 2935, 2936, 2937, 2938, 2939
dd 2940, 2940, 2941, 2942, 2943, 2944, 2945, 2946, 2947, 2947, 2948, 2949, 2950, 2951, 2952, 2953
dd 2954, 2954, 2955, 2956, 2957, 2958, 2959, 2960, 2961, 2961, 2962, 2963, 2964, 2965, 2966, 2967
dd 2968, 2968, 2969, 2970, 2971, 2972, 2973, 2974, 2975, 2975, 2976, 2977, 2978, 2979, 2980, 2981
dd 2982, 2982, 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2989, 2990, 2991, 2992, 2993, 2994, 2995
dd 2995, 2996, 2997, 2998, 2999, 3000, 3001, 3002, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009
dd 3009, 3010, 3011, 3012, 3013, 3014, 3015, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3021, 3022
dd 3023, 3024, 3025, 3026, 3027, 3028, 3028, 3029, 3030, 3031, 3032, 3033, 3034, 3034, 3035, 3036
dd 3037, 3038, 3039, 3040, 3040, 3041, 3042, 3043, 3044, 3045, 3046, 3047, 3047, 3048, 3049, 3050
dd 3051, 3052, 3053, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3059, 3060, 3061, 3062, 3063, 3064
dd 3065, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3071, 3072, 3073, 3074, 3075, 3076, 3077, 3077
dd 3078, 3079, 3080, 3081, 3082, 3083, 3083, 3084, 3085, 3086, 3087, 3088, 3089, 3089, 3090, 3091
dd 3092, 3093, 3094, 3095, 3095, 3096, 3097, 3098, 3099, 3100, 3101, 3101, 3102, 3103, 3104, 3105
dd 3106, 3107, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3113, 3114, 3115, 3116, 3117, 3118, 3118
dd 3119, 3120, 3121, 3122, 3123, 3124, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3130, 3131, 3132
dd 3133, 3134, 3135, 3135, 3136, 3137, 3138, 3139, 3140, 3141, 3141, 3142, 3143, 3144, 3145, 3146
dd 3146, 3147, 3148, 3149, 3150, 3151, 3152, 3152, 3153, 3154, 3155, 3156, 3157, 3157, 3158, 3159
dd 3160, 3161, 3162, 3163, 3163, 3164, 3165, 3166, 3167, 3168, 3168, 3169, 3170, 3171, 3172, 3173
dd 3174, 3174, 3175, 3176, 3177, 3178, 3179, 3179, 3180, 3181, 3182, 3183, 3184, 3184, 3185, 3186
dd 3187, 3188, 3189, 3190, 3190, 3191, 3192, 3193, 3194, 3195, 3195, 3196, 3197, 3198, 3199, 3200
dd 3200, 3201, 3202, 3203, 3204, 3205, 3205, 3206, 3207, 3208, 3209, 3210, 3211, 3211, 3212, 3213
dd 3214, 3215, 3216, 3216, 3217, 3218, 3219, 3220, 3221, 3221, 3222, 3223, 3224, 3225, 3226, 3226
dd 3227, 3228, 3229, 3230, 3231, 3231, 3232, 3233, 3234, 3235, 3236, 3236, 3237, 3238, 3239, 3240
dd 3241, 3241, 3242, 3243, 3244, 3245, 3246, 3246, 3247, 3248, 3249, 3250, 3251, 3251, 3252, 3253
dd 3254, 3255, 3256, 3256, 3257, 3258, 3259, 3260, 3261, 3261, 3262, 3263, 3264, 3265, 3266, 3266
dd 3267, 3268, 3269, 3270, 3271, 3271, 3272, 3273, 3274, 3275, 3276, 3276, 3277, 3278, 3279, 3280
dd 3280, 3281, 3282, 3283, 3284, 3285, 3285, 3286, 3287, 3288, 3289, 3290, 3290, 3291, 3292, 3293
dd 3294, 3295, 3295, 3296, 3297, 3298, 3299, 3300, 3300, 3301, 3302, 3303, 3304, 3304, 3305, 3306
dd 3307, 3308, 3309, 3309, 3310, 3311, 3312, 3313, 3314, 3314, 3315, 3316, 3317, 3318, 3318, 3319
dd 3320, 3321, 3322, 3323, 3323, 3324, 3325, 3326, 3327, 3327, 3328, 3329, 3330, 3331, 3332, 3332
dd 3333, 3334, 3335, 3336, 3337, 3337, 3338, 3339, 3340, 3341, 3341, 3342, 3343, 3344, 3345, 3346
dd 3346, 3347, 3348, 3349, 3350, 3350, 3351, 3352, 3353, 3354, 3355, 3355, 3356, 3357, 3358, 3359
dd 3359, 3360, 3361, 3362, 3363, 3364, 3364, 3365, 3366, 3367, 3368, 3368, 3369, 3370, 3371, 3372
dd 3373, 3373, 3374, 3375, 3376, 3377, 3377, 3378, 3379, 3380, 3381, 3381, 3382, 3383, 3384, 3385
dd 3386, 3386, 3387, 3388, 3389, 3390, 3390, 3391, 3392, 3393, 3394, 3394, 3395, 3396, 3397, 3398
dd 3399, 3399, 3400, 3401, 3402, 3403, 3403, 3404, 3405, 3406, 3407, 3407, 3408, 3409, 3410, 3411
dd 3412, 3412, 3413, 3414, 3415, 3416, 3416, 3417, 3418, 3419, 3420, 3420, 3421, 3422, 3423, 3424
dd 3424, 3425, 3426, 3427, 3428, 3429, 3429, 3430, 3431, 3432, 3433, 3433, 3434, 3435, 3436, 3437
dd 3437, 3438, 3439, 3440, 3441, 3441, 3442, 3443, 3444, 3445, 3445, 3446, 3447, 3448, 3449, 3449
dd 3450, 3451, 3452, 3453, 3453, 3454, 3455, 3456, 3457, 3458, 3458, 3459, 3460, 3461, 3462, 3462
dd 3463, 3464, 3465, 3466, 3466, 3467, 3468, 3469, 3470, 3470, 3471, 3472, 3473, 3474, 3474, 3475
dd 3476, 3477, 3478, 3478, 3479, 3480, 3481, 3482, 3482, 3483, 3484, 3485, 3486, 3486, 3487, 3488
dd 3489, 3490, 3490, 3491, 3492, 3493, 3494, 3494, 3495, 3496, 3497, 3498, 3498, 3499, 3500, 3501
dd 3502, 3502, 3503, 3504, 3505, 3506, 3506, 3507, 3508, 3509, 3510, 3510, 3511, 3512, 3513, 3513
dd 3514, 3515, 3516, 3517, 3517, 3518, 3519, 3520, 3521, 3521, 3522, 3523, 3524, 3525, 3525, 3526
dd 3527, 3528, 3529, 3529, 3530, 3531, 3532, 3533, 3533, 3534, 3535, 3536, 3537, 3537, 3538, 3539
dd 3540, 3540, 3541, 3542, 3543, 3544, 3544, 3545, 3546, 3547, 3548, 3548, 3549, 3550, 3551, 3552
dd 3552, 3553, 3554, 3555, 3556, 3556, 3557, 3558, 3559, 3559, 3560, 3561, 3562, 3563, 3563, 3564
dd 3565, 3566, 3567, 3567, 3568, 3569, 3570, 3571, 3571, 3572, 3573, 3574, 3574, 3575, 3576, 3577
dd 3578, 3578, 3579, 3580, 3581, 3582, 3582, 3583, 3584, 3585, 3585, 3586, 3587, 3588, 3589, 3589
dd 3590, 3591, 3592, 3593, 3593, 3594, 3595, 3596, 3596, 3597, 3598, 3599, 3600, 3600, 3601, 3602
dd 3603, 3604, 3604, 3605, 3606, 3607, 3607, 3608, 3609, 3610, 3611, 3611, 3612, 3613, 3614, 3615
dd 3615, 3616, 3617, 3618, 3618, 3619, 3620, 3621, 3622, 3622, 3623, 3624, 3625, 3625, 3626, 3627
dd 3628, 3629, 3629, 3630, 3631, 3632, 3632, 3633, 3634, 3635, 3636, 3636, 3637, 3638, 3639, 3640
dd 3640, 3641, 3642, 3643, 3643, 3644, 3645, 3646, 3647, 3647, 3648, 3649, 3650, 3650, 3651, 3652
dd 3653, 3654, 3654, 3655, 3656, 3657, 3657, 3658, 3659, 3660, 3661, 3661, 3662, 3663, 3664, 3664
dd 3665, 3666, 3667, 3668, 3668, 3669, 3670, 3671, 3671, 3672, 3673, 3674, 3674, 3675, 3676, 3677
dd 3678, 3678, 3679, 3680, 3681, 3681, 3682, 3683, 3684, 3685, 3685, 3686, 3687, 3688, 3688, 3689
dd 3690, 3691, 3691, 3692, 3693, 3694, 3695, 3695, 3696, 3697, 3698, 3698, 3699, 3700, 3701, 3702
dd 3702, 3703, 3704, 3705, 3705, 3706, 3707, 3708, 3708, 3709, 3710, 3711, 3712, 3712, 3713, 3714
dd 3715, 3715, 3716, 3717, 3718, 3718, 3719, 3720, 3721, 3722, 3722, 3723, 3724, 3725, 3725, 3726
dd 3727, 3728, 3728, 3729, 3730, 3731, 3732, 3732, 3733, 3734, 3735, 3735, 3736, 3737, 3738, 3738
dd 3739, 3740, 3741, 3741, 3742, 3743, 3744, 3745, 3745, 3746, 3747, 3748, 3748, 3749, 3750, 3751
dd 3751, 3752, 3753, 3754, 3754, 3755, 3756, 3757, 3758, 3758, 3759, 3760, 3761, 3761, 3762, 3763
dd 3764, 3764, 3765, 3766, 3767, 3767, 3768, 3769, 3770, 3771, 3771, 3772, 3773, 3774, 3774, 3775
dd 3776, 3777, 3777, 3778, 3779, 3780, 3780, 3781, 3782, 3783, 3783, 3784, 3785, 3786, 3787, 3787
dd 3788, 3789, 3790, 3790, 3791, 3792, 3793, 3793, 3794, 3795, 3796, 3796, 3797, 3798, 3799, 3799
dd 3800, 3801, 3802, 3802, 3803, 3804, 3805, 3805, 3806, 3807, 3808, 3809, 3809, 3810, 3811, 3812
dd 3812, 3813, 3814, 3815, 3815, 3816, 3817, 3818, 3818, 3819, 3820, 3821, 3821, 3822, 3823, 3824
dd 3824, 3825, 3826, 3827, 3827, 3828, 3829, 3830, 3830, 3831, 3832, 3833, 3833, 3834, 3835, 3836
dd 3836, 3837, 3838, 3839, 3839, 3840, 3841, 3842, 3842, 3843, 3844, 3845, 3846, 3846, 3847, 3848
dd 3849, 3849, 3850, 3851, 3852, 3852, 3853, 3854, 3855, 3855, 3856, 3857, 3858, 3858, 3859, 3860
dd 3861, 3861, 3862, 3863, 3864, 3864, 3865, 3866, 3867, 3867, 3868, 3869, 3870, 3870, 3871, 3872
dd 3873, 3873, 3874, 3875, 3876, 3876, 3877, 3878, 3879, 3879, 3880, 3881, 3882, 3882, 3883, 3884
dd 3885, 3885, 3886, 3887, 3888, 3888, 3889, 3890, 3890, 3891, 3892, 3893, 3893, 3894, 3895, 3896
dd 3896, 3897, 3898, 3899, 3899, 3900, 3901, 3902, 3902, 3903, 3904, 3905, 3905, 3906, 3907, 3908
dd 3908, 3909, 3910, 3911, 3911, 3912, 3913, 3914, 3914, 3915, 3916, 3917, 3917, 3918, 3919, 3920
dd 3920, 3921, 3922, 3923, 3923, 3924, 3925, 3925, 3926, 3927, 3928, 3928, 3929, 3930, 3931, 3931
dd 3932, 3933, 3934, 3934, 3935, 3936, 3937, 3937, 3938, 3939, 3940, 3940, 3941, 3942, 3943, 3943
dd 3944, 3945, 3946, 3946, 3947, 3948, 3948, 3949, 3950, 3951, 3951, 3952, 3953, 3954, 3954, 3955
dd 3956, 3957, 3957, 3958, 3959, 3960, 3960, 3961, 3962, 3962, 3963, 3964, 3965, 3965, 3966, 3967
dd 3968, 3968, 3969, 3970, 3971, 3971, 3972, 3973, 3974, 3974, 3975, 3976, 3976, 3977, 3978, 3979
dd 3979, 3980, 3981, 3982, 3982, 3983, 3984, 3985, 3985, 3986, 3987, 3988, 3988, 3989, 3990, 3990
dd 3991, 3992, 3993, 3993, 3994, 3995, 3996, 3996, 3997, 3998, 3999, 3999, 4000, 4001, 4001, 4002
dd 4003, 4004, 4004, 4005, 4006, 4007, 4007, 4008, 4009, 4010, 4010, 4011, 4012, 4012, 4013, 4014
dd 4015, 4015, 4016, 4017, 4018, 4018, 4019, 4020, 4020, 4021, 4022, 4023, 4023, 4024, 4025, 4026
dd 4026, 4027, 4028, 4029, 4029, 4030, 4031, 4031, 4032, 4033, 4034, 4034, 4035, 4036, 4037, 4037
dd 4038, 4039, 4039, 4040, 4041, 4042, 4042, 4043, 4044, 4045, 4045, 4046, 4047, 4047, 4048, 4049
dd 4050, 4050, 4051, 4052, 4053, 4053, 4054, 4055, 4055, 4056, 4057, 4058, 4058, 4059, 4060, 4061
dd 4061, 4062, 4063, 4063, 4064, 4065, 4066, 4066, 4067, 4068, 4069, 4069, 4070, 4071, 4071, 4072
dd 4073, 4074, 4074, 4075, 4076, 4076, 4077, 4078, 4079, 4079, 4080, 4081, 4082, 4082, 4083, 4084
dd 4084, 4085, 4086, 4087, 4087, 4088, 4089, 4090, 4090, 4091, 4092, 4092, 4093, 4094, 4095, 4095
|
programs/oeis/325/A325459.asm | neoneye/loda | 22 | 245032 | <reponame>neoneye/loda
; A325459: Sum of numbers of nontrivial divisors (greater than 1 and less than k) of k for k = 1..n.
; 0,0,0,0,1,1,3,3,5,6,8,8,12,12,14,16,19,19,23,23,27,29,31,31,37,38,40,42,46,46,52,52,56,58,60,62,69,69,71,73,79,79,85,85,89,93,95,95,103,104,108,110,114,114,120,122,128,130,132,132,142
trn $0,1
mov $2,$0
seq $0,2541 ; a(n) = Sum_{k=1..n-1} floor((n-k)/k).
sub $0,$2
|
programs/oeis/017/A017504.asm | neoneye/loda | 22 | 459 | ; A017504: a(n) = (11*n + 9)^8.
; 43046721,25600000000,852891037441,9682651996416,62259690411361,281474976710656,1001129150390625,2992179271065856,7837433594376961,18509302102818816,40213853471634241,81573072100000000,156225851787813921,284936905588473856,498311414318121121,840221879151902976,1372062286687890625,2177953337809371136,3371031134626313601,5100960362726891776,7562821648920027361,11007531417600000000,15753961211814252001,22202932088065597696,30853268336830129281,42320103423722192896,57355639689187890625,76872571987558646016,101970394089246452641,133964815312812507136,174420523496591010081,225187539062500000000,288441413567621167681,366727534782080679936,463009808974713123841,580723999730940764416,723836011270250390625,896905412873600106496,1105154509674038506081,1354543273706768752896,1651850457757840166401,2004761223193600000000,2421961621595988176961,2913240278671707832576,3489597637546254592801,4163363127196737601536,4948320630420375390625,5859842634378499768576,6915033455398850985921,8132881938361897517056,9534424039639863880321,11142915711200100000000,12984016512127375695841,15085984382462633967616,17479882022898686824161,20199795332516287488256,23283064365386962890625,26770527275511940448256,30706777728209453204161,35140436264705657487616,40124436115327347335841,45716323965337600000000,51978576186098436940321,58978931052887534797056,66790737479338970905921,75493320807120938008576,85172366198106312890625,95920320184934913761536,107836810944509231272801,121029087867608368152576,135612481006447872516961,151710880990656100000000,169457240010780689926401,188994094477081690832896,210474109970010820726081,234060649107419297546496,259928362962179625390625,288263806672549672124416,319266079896250324103841,353147492767870953799936,390134258027859886207681,430467210000000000000000,474402551102912549470081,522212626589775243387136,574186728219083566972641,630631927567927283286016,691873939707897000390625,758258017972378640752896,830149880552636599409281,907936669668729327517696,992027944069944027992001,1082856705628080100000000,1180880460795553919187361,1286582317708940490571776,1400472119727210461133601,1523087616202563929211136,1654995671290405437890625,1796793511613647489662976,1949110013605172869701121,2112607031360929015193856
mul $0,11
add $0,9
pow $0,8
|
agda/BTree/Complete/Alternative.agda | bgbianchi/sorting | 6 | 12674 | <filename>agda/BTree/Complete/Alternative.agda
module BTree.Complete.Alternative {A : Set} where
open import BTree {A}
open import BTree.Equality {A}
data _⋗_ : BTree → BTree → Set where
⋗lf : (x : A)
→ (node x leaf leaf) ⋗ leaf
⋗nd : {l r l' r' : BTree}
→ (x x' : A)
→ l ≃ r
→ l' ≃ r'
→ l ⋗ l'
→ (node x l r) ⋗ (node x' l' r')
mutual
data _⋘_ : BTree → BTree → Set where
lf⋘ : leaf ⋘ leaf
ll⋘ : {l r l' r' : BTree}
→ (x x' : A)
→ (l⋘r : l ⋘ r)
→ (l'≃r' : l' ≃ r')
→ r ≃ l'
→ (node x l r) ⋘ (node x' l' r')
lr⋘ : {l r l' r' : BTree}
→ (x x' : A)
→ (l⋙r : l ⋙ r)
→ (l'≃r' : l' ≃ r')
→ l ⋗ l'
→ (node x l r) ⋘ (node x' l' r')
data _⋙_ : BTree → BTree → Set where
⋙lf : (x : A)
→ (node x leaf leaf) ⋙ leaf
⋙rl : {l r l' r' : BTree}
→ (x x' : A)
→ (l≃r : l ≃ r)
→ (l'⋘r' : l' ⋘ r')
→ l ⋗ r'
→ (node x l r) ⋙ (node x' l' r')
⋙rr : {l r l' r' : BTree}
→ (x x' : A)
→ (l≃r : l ≃ r)
→ (l'⋙r' : l' ⋙ r')
→ l ≃ l'
→ (node x l r) ⋙ (node x' l' r')
data Complete : BTree → Set where
leaf : Complete leaf
left : {l r : BTree}
(x : A)
→ Complete l
→ Complete r
→ l ⋘ r
→ Complete (node x l r)
right : {l r : BTree}
(x : A)
→ Complete l
→ Complete r
→ l ⋙ r
→ Complete (node x l r)
|
3rdParties/src/nasm/nasm-2.15.02/travis/test/movd.asm | blue3k/StormForge | 1 | 100509 | [BITS 32]
movd mm0,eax
movd mm0,[eax]
movd [eax],mm0
movd eax,mm0
movd xmm0,eax
movd xmm0,[eax]
movd [eax],xmm0
movd eax,xmm0
|
programs/oeis/172/A172051.asm | karttu/loda | 1 | 80892 | ; A172051: Decimal expansion of 1/999999.
; 0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0
mod $0,6
mov $1,$0
trn $1,4
|
oeis/226/A226132.asm | neoneye/loda-programs | 11 | 171863 | ; A226132: Expansion of - c(-q) * c(q^2) / 9 in powers of q where c() is a cubic AGM theta function.
; Submitted by <NAME>
; 1,-1,3,-1,6,-3,8,-1,9,-6,12,-3,14,-8,18,-1,18,-9,20,-6,24,-12,24,-3,31,-14,27,-8,30,-18,32,-1,36,-18,48,-9,38,-20,42,-6,42,-24,44,-12,54,-24,48,-3,57,-31,54,-14,54,-27,72,-8,60,-30,60,-18,62,-32,72,-1,84,-36,68,-18,72,-48,72,-9,74,-38,93,-20,96,-42,80,-6,81,-42,84,-24,108,-44,90,-12,90,-54,112,-24,96,-48,120,-3,98,-57,108,-31
mov $2,-1
pow $2,$0
seq $0,121443 ; Sum of divisors d of n which are odd and n/d is not divisible by 3.
mul $0,$2
|
Transynther/x86/_processed/NC/_ht_zr_un_/i3-7100_9_0x84_notsx.log_21829_2878.asm | ljhsiun2/medusa | 9 | 5556 | <gh_stars>1-10
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x8380, %rsi
lea addresses_normal_ht+0xdb08, %rdi
nop
nop
nop
nop
nop
and $47831, %r12
mov $24, %rcx
rep movsl
nop
nop
nop
nop
add %rdi, %rdi
pop %rsi
pop %rdi
pop %rcx
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r15
push %rax
push %rcx
push %rdi
push %rsi
// Store
lea addresses_A+0x12d00, %rsi
nop
nop
and $44837, %r10
mov $0x5152535455565758, %r15
movq %r15, (%rsi)
nop
nop
sub %r10, %r10
// Store
lea addresses_normal+0x9a55, %rdi
nop
nop
nop
nop
and %rsi, %rsi
movw $0x5152, (%rdi)
nop
xor $52442, %r10
// Faulty Load
mov $0xc22cc0000000d00, %r12
nop
nop
nop
nop
nop
cmp %rax, %rax
movups (%r12), %xmm7
vpextrq $1, %xmm7, %rsi
lea oracles, %r15
and $0xff, %rsi
shlq $12, %rsi
mov (%r15,%rsi,1), %rsi
pop %rsi
pop %rdi
pop %rcx
pop %rax
pop %r15
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_NC', 'same': False, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_A', 'same': False, 'size': 8, 'congruent': 9, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_normal', 'same': False, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
[Faulty Load]
{'src': {'type': 'addresses_NC', 'same': True, 'size': 16, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_normal_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM'}
{'b3': 11, '5f': 16, '2a': 4, '44': 3548, '08': 1, '68': 3, '43': 6, '24': 1, '00': 18201, 'ff': 2, '23': 28, '40': 8}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 44 00 00 00 00 00 44 00 44 00 00 00 00 00 00 00 00 00 00 44 00 44 00 44 00 44 00 44 00 00 00 00 00 00 00 00 00 00 00 44 00 44 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 44 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 23 00 00 44 00 00 44 00 00 00 44 00 00 00 44 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 44 00 44 00 00 00 44 00 00 00 00 44 44 43 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 44 00 00 00 00 00 44 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 44 00 44 00 44 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 44 00 44 00 00 00 44 00 44 00 44 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 44 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 44 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 44 00 00 00 00 00 00 00 00 44 00 68 00 00 00 44 00 00 44 00 00 44 00 00 00 00 44 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 44 00 44 00 44 00 44 00 44 00 00 00 00 00 00 44 00 44 00 44 00 00 00 00 00 00 00 00 00 00 44 00 44 00 44 00 00 44 00 44 00 00 44 44 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 44 00 44 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 44 00 00 00 00 00 00 44 00 44 00 00 00 00 00 00 00 00 00 44 00 44 00 00 00 44 43 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 44 40 00 44 00 00 00 00 00 44 44 00 44 00 00 00 00 00 00 00 00 44 00 00 44 00 00 00 44 00 44 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 44 00 44 00 00 44 00 44 00 00 00 00 44 00 44 00 44 00 44 00 00 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
|
Day-11/Trick-of-Ascii_(bit manipulation).asm | MasumBhai/50-Day-challenge-with-Assembly-Language | 1 | 168534 | <reponame>MasumBhai/50-Day-challenge-with-Assembly-Language<filename>Day-11/Trick-of-Ascii_(bit manipulation).asm<gh_stars>1-10
;Day 11 date-20 april,2021
;problem - convert lower case letter to upper case letter or upper case letter to lower case letter
; - without using subtraction , addition (using just bit manipulation)
.model small
.stack 100h
include 'emu8086.inc'
.data
n_line db 0ah,0dh,"$" ;for new line
input_msg db "Input",32d,": $"
output_msg db 0ah,0dh,"Output: $"
stop_msg db "Press 'esc' to stop this programme:",0ah,0dh,"$"
.code
main proc
mov ax,@data
mov ds,ax
lea dx,stop_msg
mov ah,9
int 21h
@input:
lea dx,input_msg
mov ah,9
int 21h
mov ah,1
int 21h
cmp al,27d
je @stop
xor bx,bx ;XOR with self will always retun all zero bit (means clearing a register)
mov bl,al
xor bl,32d ;Here is the trick
;visit - https://catonmat.net/ascii-case-conversion-trick
@output:
lea dx,output_msg
mov ah,9
int 21h
mov dl,bl
mov ah,2
int 21h
lea dx,n_line ;new line
mov ah,9
int 21h
jmp @input
@stop:
mov ah,4ch
int 21h ;terminate with return code
main endp
end main
|
source/amf/mof/cmof/amf-internals-tables-cmof_metamodel-links.ads | svn2github/matreshka | 24 | 22928 | <reponame>svn2github/matreshka
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, <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 Vadim Godunko, 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$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
package AMF.Internals.Tables.CMOF_Metamodel.Links is
procedure Initialize;
private
procedure Initialize_1;
procedure Initialize_2;
procedure Initialize_3;
procedure Initialize_4;
procedure Initialize_5;
procedure Initialize_6;
procedure Initialize_7;
procedure Initialize_8;
procedure Initialize_9;
procedure Initialize_10;
procedure Initialize_11;
procedure Initialize_12;
procedure Initialize_13;
procedure Initialize_14;
procedure Initialize_15;
procedure Initialize_16;
procedure Initialize_17;
procedure Initialize_18;
procedure Initialize_19;
procedure Initialize_20;
procedure Initialize_21;
procedure Initialize_22;
procedure Initialize_23;
procedure Initialize_24;
procedure Initialize_25;
procedure Initialize_26;
procedure Initialize_27;
procedure Initialize_28;
procedure Initialize_29;
procedure Initialize_30;
procedure Initialize_31;
procedure Initialize_32;
procedure Initialize_33;
procedure Initialize_34;
procedure Initialize_35;
procedure Initialize_36;
procedure Initialize_37;
procedure Initialize_38;
procedure Initialize_39;
procedure Initialize_40;
procedure Initialize_41;
procedure Initialize_42;
procedure Initialize_43;
procedure Initialize_44;
procedure Initialize_45;
procedure Initialize_46;
procedure Initialize_47;
procedure Initialize_48;
procedure Initialize_49;
procedure Initialize_50;
procedure Initialize_51;
procedure Initialize_52;
procedure Initialize_53;
procedure Initialize_54;
procedure Initialize_55;
procedure Initialize_56;
procedure Initialize_57;
procedure Initialize_58;
procedure Initialize_59;
procedure Initialize_60;
procedure Initialize_61;
procedure Initialize_62;
procedure Initialize_63;
procedure Initialize_64;
procedure Initialize_65;
procedure Initialize_66;
procedure Initialize_67;
procedure Initialize_68;
procedure Initialize_69;
procedure Initialize_70;
procedure Initialize_71;
procedure Initialize_72;
procedure Initialize_73;
procedure Initialize_74;
procedure Initialize_75;
procedure Initialize_76;
procedure Initialize_77;
procedure Initialize_78;
procedure Initialize_79;
procedure Initialize_80;
procedure Initialize_81;
procedure Initialize_82;
procedure Initialize_83;
procedure Initialize_84;
procedure Initialize_85;
procedure Initialize_86;
procedure Initialize_87;
procedure Initialize_88;
procedure Initialize_89;
procedure Initialize_90;
procedure Initialize_91;
procedure Initialize_92;
procedure Initialize_93;
procedure Initialize_94;
procedure Initialize_95;
procedure Initialize_96;
procedure Initialize_97;
procedure Initialize_98;
procedure Initialize_99;
procedure Initialize_100;
procedure Initialize_101;
procedure Initialize_102;
procedure Initialize_103;
procedure Initialize_104;
procedure Initialize_105;
procedure Initialize_106;
procedure Initialize_107;
procedure Initialize_108;
procedure Initialize_109;
procedure Initialize_110;
procedure Initialize_111;
procedure Initialize_112;
procedure Initialize_113;
procedure Initialize_114;
procedure Initialize_115;
procedure Initialize_116;
procedure Initialize_117;
procedure Initialize_118;
procedure Initialize_119;
procedure Initialize_120;
procedure Initialize_121;
procedure Initialize_122;
procedure Initialize_123;
procedure Initialize_124;
procedure Initialize_125;
procedure Initialize_126;
procedure Initialize_127;
procedure Initialize_128;
procedure Initialize_129;
procedure Initialize_130;
procedure Initialize_131;
procedure Initialize_132;
procedure Initialize_133;
procedure Initialize_134;
procedure Initialize_135;
procedure Initialize_136;
procedure Initialize_137;
procedure Initialize_138;
procedure Initialize_139;
procedure Initialize_140;
procedure Initialize_141;
procedure Initialize_142;
procedure Initialize_143;
procedure Initialize_144;
procedure Initialize_145;
procedure Initialize_146;
procedure Initialize_147;
procedure Initialize_148;
procedure Initialize_149;
procedure Initialize_150;
procedure Initialize_151;
procedure Initialize_152;
procedure Initialize_153;
procedure Initialize_154;
procedure Initialize_155;
procedure Initialize_156;
procedure Initialize_157;
procedure Initialize_158;
procedure Initialize_159;
procedure Initialize_160;
procedure Initialize_161;
procedure Initialize_162;
procedure Initialize_163;
procedure Initialize_164;
procedure Initialize_165;
procedure Initialize_166;
procedure Initialize_167;
procedure Initialize_168;
procedure Initialize_169;
procedure Initialize_170;
procedure Initialize_171;
procedure Initialize_172;
procedure Initialize_173;
procedure Initialize_174;
procedure Initialize_175;
procedure Initialize_176;
procedure Initialize_177;
procedure Initialize_178;
procedure Initialize_179;
procedure Initialize_180;
procedure Initialize_181;
procedure Initialize_182;
procedure Initialize_183;
procedure Initialize_184;
procedure Initialize_185;
procedure Initialize_186;
procedure Initialize_187;
procedure Initialize_188;
procedure Initialize_189;
procedure Initialize_190;
procedure Initialize_191;
procedure Initialize_192;
procedure Initialize_193;
procedure Initialize_194;
procedure Initialize_195;
procedure Initialize_196;
procedure Initialize_197;
procedure Initialize_198;
procedure Initialize_199;
procedure Initialize_200;
procedure Initialize_201;
procedure Initialize_202;
procedure Initialize_203;
procedure Initialize_204;
procedure Initialize_205;
procedure Initialize_206;
procedure Initialize_207;
procedure Initialize_208;
procedure Initialize_209;
procedure Initialize_210;
procedure Initialize_211;
procedure Initialize_212;
procedure Initialize_213;
procedure Initialize_214;
procedure Initialize_215;
procedure Initialize_216;
procedure Initialize_217;
procedure Initialize_218;
procedure Initialize_219;
procedure Initialize_220;
procedure Initialize_221;
procedure Initialize_222;
procedure Initialize_223;
procedure Initialize_224;
procedure Initialize_225;
procedure Initialize_226;
procedure Initialize_227;
procedure Initialize_228;
procedure Initialize_229;
procedure Initialize_230;
procedure Initialize_231;
procedure Initialize_232;
procedure Initialize_233;
procedure Initialize_234;
procedure Initialize_235;
procedure Initialize_236;
procedure Initialize_237;
procedure Initialize_238;
procedure Initialize_239;
procedure Initialize_240;
procedure Initialize_241;
procedure Initialize_242;
procedure Initialize_243;
procedure Initialize_244;
procedure Initialize_245;
procedure Initialize_246;
procedure Initialize_247;
procedure Initialize_248;
procedure Initialize_249;
procedure Initialize_250;
procedure Initialize_251;
procedure Initialize_252;
procedure Initialize_253;
procedure Initialize_254;
procedure Initialize_255;
procedure Initialize_256;
procedure Initialize_257;
procedure Initialize_258;
procedure Initialize_259;
procedure Initialize_260;
procedure Initialize_261;
procedure Initialize_262;
procedure Initialize_263;
procedure Initialize_264;
procedure Initialize_265;
procedure Initialize_266;
procedure Initialize_267;
procedure Initialize_268;
procedure Initialize_269;
procedure Initialize_270;
procedure Initialize_271;
procedure Initialize_272;
procedure Initialize_273;
procedure Initialize_274;
procedure Initialize_275;
procedure Initialize_276;
procedure Initialize_277;
procedure Initialize_278;
procedure Initialize_279;
procedure Initialize_280;
procedure Initialize_281;
procedure Initialize_282;
procedure Initialize_283;
procedure Initialize_284;
procedure Initialize_285;
procedure Initialize_286;
procedure Initialize_287;
procedure Initialize_288;
procedure Initialize_289;
procedure Initialize_290;
procedure Initialize_291;
procedure Initialize_292;
procedure Initialize_293;
procedure Initialize_294;
procedure Initialize_295;
procedure Initialize_296;
procedure Initialize_297;
procedure Initialize_298;
procedure Initialize_299;
procedure Initialize_300;
procedure Initialize_301;
procedure Initialize_302;
procedure Initialize_303;
procedure Initialize_304;
procedure Initialize_305;
procedure Initialize_306;
procedure Initialize_307;
procedure Initialize_308;
procedure Initialize_309;
procedure Initialize_310;
procedure Initialize_311;
procedure Initialize_312;
procedure Initialize_313;
procedure Initialize_314;
procedure Initialize_315;
procedure Initialize_316;
procedure Initialize_317;
procedure Initialize_318;
procedure Initialize_319;
procedure Initialize_320;
procedure Initialize_321;
procedure Initialize_322;
procedure Initialize_323;
procedure Initialize_324;
procedure Initialize_325;
procedure Initialize_326;
procedure Initialize_327;
procedure Initialize_328;
procedure Initialize_329;
procedure Initialize_330;
procedure Initialize_331;
procedure Initialize_332;
procedure Initialize_333;
procedure Initialize_334;
procedure Initialize_335;
procedure Initialize_336;
procedure Initialize_337;
procedure Initialize_338;
procedure Initialize_339;
procedure Initialize_340;
procedure Initialize_341;
procedure Initialize_342;
procedure Initialize_343;
procedure Initialize_344;
procedure Initialize_345;
procedure Initialize_346;
procedure Initialize_347;
procedure Initialize_348;
procedure Initialize_349;
procedure Initialize_350;
procedure Initialize_351;
procedure Initialize_352;
procedure Initialize_353;
procedure Initialize_354;
procedure Initialize_355;
procedure Initialize_356;
procedure Initialize_357;
procedure Initialize_358;
procedure Initialize_359;
procedure Initialize_360;
procedure Initialize_361;
procedure Initialize_362;
procedure Initialize_363;
procedure Initialize_364;
procedure Initialize_365;
procedure Initialize_366;
procedure Initialize_367;
procedure Initialize_368;
procedure Initialize_369;
procedure Initialize_370;
procedure Initialize_371;
procedure Initialize_372;
procedure Initialize_373;
procedure Initialize_374;
procedure Initialize_375;
procedure Initialize_376;
procedure Initialize_377;
procedure Initialize_378;
procedure Initialize_379;
procedure Initialize_380;
procedure Initialize_381;
procedure Initialize_382;
procedure Initialize_383;
procedure Initialize_384;
procedure Initialize_385;
procedure Initialize_386;
procedure Initialize_387;
procedure Initialize_388;
procedure Initialize_389;
procedure Initialize_390;
procedure Initialize_391;
procedure Initialize_392;
procedure Initialize_393;
procedure Initialize_394;
procedure Initialize_395;
procedure Initialize_396;
procedure Initialize_397;
procedure Initialize_398;
procedure Initialize_399;
procedure Initialize_400;
procedure Initialize_401;
procedure Initialize_402;
procedure Initialize_403;
procedure Initialize_404;
procedure Initialize_405;
procedure Initialize_406;
procedure Initialize_407;
procedure Initialize_408;
procedure Initialize_409;
procedure Initialize_410;
procedure Initialize_411;
procedure Initialize_412;
procedure Initialize_413;
procedure Initialize_414;
procedure Initialize_415;
procedure Initialize_416;
procedure Initialize_417;
procedure Initialize_418;
procedure Initialize_419;
procedure Initialize_420;
procedure Initialize_421;
procedure Initialize_422;
procedure Initialize_423;
procedure Initialize_424;
procedure Initialize_425;
procedure Initialize_426;
procedure Initialize_427;
procedure Initialize_428;
procedure Initialize_429;
procedure Initialize_430;
procedure Initialize_431;
procedure Initialize_432;
procedure Initialize_433;
procedure Initialize_434;
procedure Initialize_435;
procedure Initialize_436;
procedure Initialize_437;
procedure Initialize_438;
procedure Initialize_439;
procedure Initialize_440;
procedure Initialize_441;
procedure Initialize_442;
procedure Initialize_443;
procedure Initialize_444;
procedure Initialize_445;
procedure Initialize_446;
procedure Initialize_447;
procedure Initialize_448;
procedure Initialize_449;
procedure Initialize_450;
procedure Initialize_451;
procedure Initialize_452;
procedure Initialize_453;
procedure Initialize_454;
procedure Initialize_455;
procedure Initialize_456;
procedure Initialize_457;
procedure Initialize_458;
procedure Initialize_459;
procedure Initialize_460;
procedure Initialize_461;
procedure Initialize_462;
procedure Initialize_463;
procedure Initialize_464;
procedure Initialize_465;
procedure Initialize_466;
procedure Initialize_467;
procedure Initialize_468;
procedure Initialize_469;
procedure Initialize_470;
procedure Initialize_471;
procedure Initialize_472;
procedure Initialize_473;
procedure Initialize_474;
procedure Initialize_475;
procedure Initialize_476;
procedure Initialize_477;
procedure Initialize_478;
procedure Initialize_479;
procedure Initialize_480;
procedure Initialize_481;
procedure Initialize_482;
procedure Initialize_483;
procedure Initialize_484;
procedure Initialize_485;
procedure Initialize_486;
procedure Initialize_487;
procedure Initialize_488;
procedure Initialize_489;
procedure Initialize_490;
procedure Initialize_491;
procedure Initialize_492;
procedure Initialize_493;
procedure Initialize_494;
procedure Initialize_495;
procedure Initialize_496;
procedure Initialize_497;
procedure Initialize_498;
procedure Initialize_499;
procedure Initialize_500;
procedure Initialize_501;
procedure Initialize_502;
procedure Initialize_503;
procedure Initialize_504;
procedure Initialize_505;
procedure Initialize_506;
procedure Initialize_507;
procedure Initialize_508;
procedure Initialize_509;
procedure Initialize_510;
procedure Initialize_511;
procedure Initialize_512;
procedure Initialize_513;
procedure Initialize_514;
procedure Initialize_515;
procedure Initialize_516;
procedure Initialize_517;
procedure Initialize_518;
procedure Initialize_519;
procedure Initialize_520;
procedure Initialize_521;
procedure Initialize_522;
procedure Initialize_523;
procedure Initialize_524;
procedure Initialize_525;
procedure Initialize_526;
procedure Initialize_527;
procedure Initialize_528;
procedure Initialize_529;
procedure Initialize_530;
procedure Initialize_531;
procedure Initialize_532;
procedure Initialize_533;
procedure Initialize_534;
procedure Initialize_535;
procedure Initialize_536;
procedure Initialize_537;
procedure Initialize_538;
procedure Initialize_539;
procedure Initialize_540;
procedure Initialize_541;
procedure Initialize_542;
procedure Initialize_543;
procedure Initialize_544;
procedure Initialize_545;
procedure Initialize_546;
procedure Initialize_547;
procedure Initialize_548;
procedure Initialize_549;
procedure Initialize_550;
procedure Initialize_551;
procedure Initialize_552;
procedure Initialize_553;
procedure Initialize_554;
procedure Initialize_555;
procedure Initialize_556;
procedure Initialize_557;
procedure Initialize_558;
procedure Initialize_559;
procedure Initialize_560;
procedure Initialize_561;
procedure Initialize_562;
procedure Initialize_563;
procedure Initialize_564;
procedure Initialize_565;
procedure Initialize_566;
procedure Initialize_567;
procedure Initialize_568;
procedure Initialize_569;
procedure Initialize_570;
procedure Initialize_571;
procedure Initialize_572;
procedure Initialize_573;
procedure Initialize_574;
procedure Initialize_575;
procedure Initialize_576;
procedure Initialize_577;
procedure Initialize_578;
procedure Initialize_579;
procedure Initialize_580;
procedure Initialize_581;
procedure Initialize_582;
procedure Initialize_583;
procedure Initialize_584;
procedure Initialize_585;
procedure Initialize_586;
procedure Initialize_587;
procedure Initialize_588;
procedure Initialize_589;
procedure Initialize_590;
procedure Initialize_591;
procedure Initialize_592;
procedure Initialize_593;
procedure Initialize_594;
procedure Initialize_595;
procedure Initialize_596;
procedure Initialize_597;
procedure Initialize_598;
procedure Initialize_599;
procedure Initialize_600;
procedure Initialize_601;
procedure Initialize_602;
procedure Initialize_603;
procedure Initialize_604;
procedure Initialize_605;
procedure Initialize_606;
procedure Initialize_607;
procedure Initialize_608;
procedure Initialize_609;
procedure Initialize_610;
procedure Initialize_611;
procedure Initialize_612;
procedure Initialize_613;
procedure Initialize_614;
procedure Initialize_615;
procedure Initialize_616;
procedure Initialize_617;
procedure Initialize_618;
procedure Initialize_619;
procedure Initialize_620;
procedure Initialize_621;
procedure Initialize_622;
procedure Initialize_623;
procedure Initialize_624;
procedure Initialize_625;
procedure Initialize_626;
procedure Initialize_627;
procedure Initialize_628;
procedure Initialize_629;
procedure Initialize_630;
procedure Initialize_631;
procedure Initialize_632;
procedure Initialize_633;
procedure Initialize_634;
procedure Initialize_635;
procedure Initialize_636;
procedure Initialize_637;
procedure Initialize_638;
procedure Initialize_639;
procedure Initialize_640;
procedure Initialize_641;
procedure Initialize_642;
procedure Initialize_643;
procedure Initialize_644;
procedure Initialize_645;
procedure Initialize_646;
procedure Initialize_647;
procedure Initialize_648;
procedure Initialize_649;
procedure Initialize_650;
procedure Initialize_651;
procedure Initialize_652;
procedure Initialize_653;
procedure Initialize_654;
procedure Initialize_655;
procedure Initialize_656;
procedure Initialize_657;
procedure Initialize_658;
procedure Initialize_659;
procedure Initialize_660;
procedure Initialize_661;
procedure Initialize_662;
procedure Initialize_663;
procedure Initialize_664;
procedure Initialize_665;
procedure Initialize_666;
procedure Initialize_667;
procedure Initialize_668;
procedure Initialize_669;
procedure Initialize_670;
procedure Initialize_671;
procedure Initialize_672;
procedure Initialize_673;
procedure Initialize_674;
procedure Initialize_675;
procedure Initialize_676;
procedure Initialize_677;
procedure Initialize_678;
procedure Initialize_679;
procedure Initialize_680;
procedure Initialize_681;
procedure Initialize_682;
procedure Initialize_683;
procedure Initialize_684;
procedure Initialize_685;
procedure Initialize_686;
procedure Initialize_687;
procedure Initialize_688;
procedure Initialize_689;
procedure Initialize_690;
procedure Initialize_691;
procedure Initialize_692;
procedure Initialize_693;
procedure Initialize_694;
procedure Initialize_695;
procedure Initialize_696;
procedure Initialize_697;
procedure Initialize_698;
procedure Initialize_699;
procedure Initialize_700;
procedure Initialize_701;
procedure Initialize_702;
procedure Initialize_703;
procedure Initialize_704;
procedure Initialize_705;
procedure Initialize_706;
procedure Initialize_707;
procedure Initialize_708;
procedure Initialize_709;
procedure Initialize_710;
procedure Initialize_711;
procedure Initialize_712;
procedure Initialize_713;
procedure Initialize_714;
procedure Initialize_715;
procedure Initialize_716;
procedure Initialize_717;
procedure Initialize_718;
procedure Initialize_719;
procedure Initialize_720;
procedure Initialize_721;
procedure Initialize_722;
procedure Initialize_723;
procedure Initialize_724;
procedure Initialize_725;
procedure Initialize_726;
procedure Initialize_727;
procedure Initialize_728;
procedure Initialize_729;
procedure Initialize_730;
procedure Initialize_731;
procedure Initialize_732;
procedure Initialize_733;
procedure Initialize_734;
procedure Initialize_735;
procedure Initialize_736;
procedure Initialize_737;
procedure Initialize_738;
procedure Initialize_739;
procedure Initialize_740;
procedure Initialize_741;
procedure Initialize_742;
procedure Initialize_743;
procedure Initialize_744;
procedure Initialize_745;
procedure Initialize_746;
procedure Initialize_747;
procedure Initialize_748;
procedure Initialize_749;
procedure Initialize_750;
procedure Initialize_751;
procedure Initialize_752;
procedure Initialize_753;
procedure Initialize_754;
procedure Initialize_755;
procedure Initialize_756;
procedure Initialize_757;
procedure Initialize_758;
procedure Initialize_759;
procedure Initialize_760;
procedure Initialize_761;
procedure Initialize_762;
procedure Initialize_763;
procedure Initialize_764;
procedure Initialize_765;
procedure Initialize_766;
procedure Initialize_767;
procedure Initialize_768;
procedure Initialize_769;
procedure Initialize_770;
procedure Initialize_771;
procedure Initialize_772;
procedure Initialize_773;
procedure Initialize_774;
procedure Initialize_775;
procedure Initialize_776;
procedure Initialize_777;
procedure Initialize_778;
procedure Initialize_779;
procedure Initialize_780;
procedure Initialize_781;
procedure Initialize_782;
procedure Initialize_783;
procedure Initialize_784;
procedure Initialize_785;
procedure Initialize_786;
procedure Initialize_787;
procedure Initialize_788;
procedure Initialize_789;
procedure Initialize_790;
procedure Initialize_791;
procedure Initialize_792;
procedure Initialize_793;
procedure Initialize_794;
procedure Initialize_795;
procedure Initialize_796;
procedure Initialize_797;
procedure Initialize_798;
procedure Initialize_799;
procedure Initialize_800;
end AMF.Internals.Tables.CMOF_Metamodel.Links;
|
src/frontend/Experimental_Ada_ROSE_Connection/parser/lal_adapter/source/lal_adapter_wrapper_h.ads | ouankou/rose | 488 | 1881 | <reponame>ouankou/rose
with Interfaces.C.Extensions;
with Interfaces.C.Strings;
with a_nodes_h;
package lal_adapter_wrapper_h is
function lal_adapter_wrapper
(project_file_name : in Interfaces.C.Strings.chars_ptr;
input_file_name : in Interfaces.C.Strings.chars_ptr;
output_dir_name : in Interfaces.C.Strings.chars_ptr;
process_predefined_units : in Interfaces.C.Extensions.bool;
process_implementation_units : in Interfaces.C.Extensions.bool;
debug : in Interfaces.C.Extensions.bool
)
return a_nodes_h.Nodes_Struct;
pragma Export (C, lal_adapter_wrapper);
private
-- for debugging:
Module_Name : constant String := "lal_adapter_wrapper_h";
end lal_adapter_wrapper_h;
|
sys_signal.asm | thlorenz/lib.asm | 12 | 179021 | ; vim: ft=nasm
section .text
; --------------------------------------------------------------
; sys_signal
; installs a signal handler
;
; args: ebx = the signal number to handle (see signals.mac)
; ecx = the address of the handler
; out : nothing, all registers preserved
; --------------------------------------------------------------
global sys_signal
sys_signal:
push eax
mov eax, 48 ; sys_signal
int 80h
pop eax
ret
;-------+
; TESTS ;
;-------+
%ifenv sys_signal
extern sys_write_stdout
;;;
%include "signals.mac"
section .text
sig_int_handler:
mov ecx, caught_sigint
mov edx, caught_sigint_len
call sys_write_stdout
jmp exit
sig_term_handler:
mov ecx, caught_sigterm
mov edx, caught_sigterm_len
call sys_write_stdout
jmp exit
;;;
sig_hup_handler:
mov ecx, caught_sighup
mov edx, caught_sighup_len
call sys_write_stdout
jmp exit
exit:
mov eax, 1
mov ebx, 0
int 80H
global _start
_start:
mov ecx, instructions ; Instructions
mov edx, instructions_len
call sys_write_stdout
;;;
mov ebx, SIGINT ; install SIGINT handler (Ctrl-C)
mov ecx, sig_int_handler
call sys_signal
mov ebx, SIGTERM ; install SIGTERM handler (kill <pid>)
mov ecx, sig_term_handler
call sys_signal
;;;
mov ebx, SIGHUP ; install SIGHUP handler (kill -HUP <pid>)
mov ecx, sig_hup_handler
call sys_signal
.wait: ; spin in endless loop
mov ecx, period ; print . to show we're still alive
mov edx, period_len
call sys_write_stdout
mov ecx, 0afffffh
.delay:
mov eax, 0aah
mov ebx, 0bbh
div eax
loop .delay
jmp .wait
section .data
period: db "."
period_len equ $-period
instructions: db "Press Ctrl-C to exit or kill the process, i.e. kill `pgrep sys_signal`",10
instructions_len equ $-instructions
caught_sigint: db 10,"Caught SIGINT, exiting ...",10
caught_sigint_len equ $-caught_sigint
caught_sigterm: db 10,"Caught SIGTERM, exiting ...",10
caught_sigterm_len equ $-caught_sigterm
caught_sighup: db 10,"Caught SIGHUP, exiting ...",10
caught_sighup_len equ $-caught_sighup
%endif
|
models/tests/test52.als | transclosure/Amalgam | 4 | 3556 | <reponame>transclosure/Amalgam
module tests/test52 -- example created by <NAME>
sig Peg {}
sig Red, Green, Blue, Yellow, White, Black extends Peg {}
abstract sig Pin {}
sig BlackPin, WhitePin extends Pin {}
sig Round {}
sig Game {
solution: set Peg,
guess: solution -> one Peg -> Round
} {
all r: Round {
no Peg.guess.r & guess.Peg.r
#solution.r = 4 // This line should give a "cannot perform relational join" error
#(solution.r).(guess.r) = 4
}
}
pred nodups (s: seq univ) {
no disj i, j: Int | i.s = j.s and some i.s
}
run {some Game} for 8 but 1 Game
|
gyak/gyak4/sorok/sorok.ads | balintsoos/LearnAda | 0 | 9345 | <filename>gyak/gyak4/sorok/sorok.ads
package Sorok is
subtype Elem is Integer;
type Sor( Max: Positive ) is limited private;
procedure Hiext( S: in out Sor; E: in Elem );
procedure Lopop( S: in out Sor; E: out Elem );
function Lov( S: Sor ) return Elem;
function Is_Empty( S: Sor ) return Boolean;
function Is_Full( S: Sor ) return Boolean;
function Size( S: Sor ) return Natural;
private
type Tomb is array ( Integer range <> ) of Elem;
type Sor( Max: Positive ) is record
Adatok: Tomb(1..Max);
Size: Natural := 0;
end record;
end Sorok;
|
dasm/src/test/negative.asm | zeh/dasmjs | 16 | 86603 | <gh_stars>10-100
; $Id: negative.asm 327 2014-02-09 13:06:55Z adavie $
;
; Test negative literals.
;
; This came about because of the "-1 bug" in 2.20.10 and
; will hopefully ensure that no such bug ever returns to
; haunt us again...
;
; <NAME>
; phf at acm dot org
.processor 6502
.org 0
lda #0
; lda #+0 ;syntax error? needs a FIX as well :-)
lda #-0
lda #1
lda #-1
lda #127
lda #128
lda #129
lda #-127
lda #-128
lda #-129
lda #254
lda #255
lda #256 ; should fail? does fail!
lda #-254
lda #-255
lda #-256 ; should fail? does NOT yet fail?
lda #1024 ; should fail? does fail!
lda #-1024 ; should fail? does NOT yet fail?
.end
|
yasm-1.3.0/modules/arch/x86/tests/avx16.asm | xu5343/ffmpegtoolkit_CentOS7 | 2,151 | 16300 | [bits 16]
extractps eax, xmm1, 5
vextractps eax, xmm1, 5
pextrb eax, xmm1, 5
vpextrb eax, xmm1, 5
pextrw eax, xmm1, 5
vpextrw eax, xmm1, 5
pextrd eax, xmm1, 5
vpextrd eax, xmm1, 5
vpinsrd xmm1, xmm2, eax, 5
|
ADL/drivers/stm32g474/stm32-lptimers.ads | JCGobbi/Nucleo-STM32G474RE | 0 | 12247 |
pragma Restrictions (No_Elaboration_Code);
with STM32_SVD.LPTIM; use STM32_SVD.LPTIM;
package STM32.LPTimers is
type LPTimer is limited private;
procedure Enable (This : in out LPTimer)
with Post => Enabled (This);
procedure Disable (This : in out LPTimer)
with Post => not Enabled (This);
function Enabled (This : LPTimer) return Boolean;
type LPTimer_Prescaler is
(Div_1,
Div_2,
Div_4,
Div_8,
Div_16,
Div_32,
Div_64,
Div_128)
with Size => 3;
procedure Configure_Prescaler
(This : in out LPTimer;
Prescaler : LPTimer_Prescaler)
with Pre => not Enabled (This),
Post => Current_Prescaler (This) = Prescaler;
-- Configure the division factor.
function Current_Prescaler (This : LPTimer) return LPTimer_Prescaler;
procedure Set_Compare_Value
(This : in out LPTimer;
Value : UInt16)
with
Post => Current_Compare_Value (This) = Value;
function Current_Compare_Value (This : LPTimer) return UInt16;
procedure Set_Autoreload_Value
(This : in out LPTimer;
Value : UInt16)
with
Post => Current_Autoreload (This) = Value;
function Current_Autoreload (This : LPTimer) return UInt16;
procedure Configure
(This : in out LPTimer;
Prescaler : LPTimer_Prescaler;
Period : UInt16)
with Pre => not Enabled (This),
Post => Current_Prescaler (This) = Prescaler and
Current_Autoreload (This) = Period;
procedure Compute_Prescaler_And_Period
(This : LPTimer;
Requested_Frequency : UInt32;
Prescaler : out LPTimer_Prescaler;
Period : out UInt32)
with Pre => Requested_Frequency > 0;
-- Computes the minimum prescaler and thus the maximum resolution for the
-- given timer, based on the system clocks and the requested frequency.
-- Computes the period required for the requested frequency.
Invalid_Request : exception;
-- Raised when the requested frequency is too high or too low for the given
-- timer and system clocks.
type LPTimer_Clock_Source is (Internal, External);
-- LPTIM is clocked by internal clock source (APB clock or any of the
-- embedded oscillators) or by an external clock source through the LPTIM
-- external Input1.
procedure Set_Counter_Clock_Source
(This : in out LPTimer;
Mode : LPTimer_Clock_Source)
with Pre => not Enabled (This);
-- Select which clock source is used to clock the counter.
procedure Set_Counter_Value
(This : in out LPTimer;
Value : UInt16)
with Post => Current_Counter (This) = Value;
function Current_Counter (This : LPTimer) return UInt16;
type LPTimer_Counter_Reset_Mode is (After_Read_Counter, Now);
procedure Set_Counter_Reset_Mode
(This : in out LPTimer;
Mode : LPTimer_Counter_Reset_Mode;
Enable : Boolean := True)
with Pre => (if Mode = Now then Enable);
type LPTimer_Preload_Mode is (After_APB_Bus_Write, End_Current_Period);
procedure Set_Preload_Mode
(This : in out LPTimer;
Mode : LPTimer_Preload_Mode)
with Pre => not Enabled (This);
-- Autoreload and the Compare registers are updated after each APB bus
-- write access or at the end of the current LPTIM period.
type LPTimer_Interrupt is
(Compare_Match,
Autorreload_Match,
External_Trigger_Valid_Edge,
Compare_Register_Update_Ok,
Autorreload_Register_Update_Ok,
Direction_Change_To_Up,
Direction_Change_To_Down);
procedure Enable_Interrupt
(This : in out LPTimer;
Source : LPTimer_Interrupt)
with Post => Interrupt_Enabled (This, Source);
type LPTimer_Interrupt_List is array (Positive range <>) of LPTimer_Interrupt;
procedure Enable_Interrupt
(This : in out LPTimer;
Sources : LPTimer_Interrupt_List)
with Post => (for all Source of Sources => Interrupt_Enabled (This, Source));
procedure Disable_Interrupt
(This : in out LPTimer;
Source : LPTimer_Interrupt)
with Post => not Interrupt_Enabled (This, Source);
procedure Clear_Pending_Interrupt
(This : in out LPTimer;
Source : LPTimer_Interrupt);
function Interrupt_Enabled
(This : LPTimer;
Source : LPTimer_Interrupt)
return Boolean;
type LPTimer_Status_Flag is new LPTimer_Interrupt;
function Status (This : LPTimer;
Flag : LPTimer_Status_Flag) return Boolean;
procedure Clear_Status (This : in out LPTimer; Flag : LPTimer_Status_Flag);
procedure Select_Clock_Source
(This : in out LPTimer;
Source : LPTimer_Clock_Source);
-- LPTIM is clocked by internal clock source (APB clock or any of the
-- embedded oscillators) or by an external clock source through the LPTIM
-- external Input1.
function Get_Clock_Source (This : LPTimer) return LPTimer_Clock_Source;
type LPTimer_External_Clock_Polarity is
(Rising_Edge,
Falling_Edge,
Both_Rising_Falling_Edges)
with Size => 2;
-- When the LPTIM is clocked by an external clock source, CKPOL bits is
-- used to configure the active edge or edges used by the counter.
type LPTimer_Digital_Filter is
(Any_Level_Change,
Stable_2_Clock_Periods,
Stable_4_Clock_Periods,
Stable_8_Clock_Periods)
with Size => 2;
-- Sets the number of consecutive equal samples that should be detected
-- when a level change occurs on an external clock signal before it is
-- considered as a valid level transition. An internal clock source must
-- be present to use this feature.
procedure Configure_External_Clock
(This : in out LPTimer;
Polarity : LPTimer_External_Clock_Polarity;
Filter : LPTimer_Digital_Filter);
type LPTimer_Input_Clock_Enum is
(Option_1,
Option_2,
Option_3,
Option_4)
with Size => 2;
-- Option Input 1 Input 2
-- 1 COMP2 COMP1
-- 2 COMP4 COMP3
-- 3 COMP6 COMP5
-- 4 COMP6 COMP7
-- See RM0440 rev 6 Chapter 32.4.2 "LPTIM input and trigger mapping".
type LPTimer_Input_Clock is record
Internal : Boolean := True;
Value : LPTimer_Input_Clock_Enum := LPTimer_Input_Clock_Enum'First;
end record;
-- LPTimer input 1 or input 2 connected to COMP output (Internal = True)
-- or to GPIO (Internal = False).
for LPTimer_Input_Clock use record
Internal at 0 range 2 .. 2;
Value at 0 range 0 .. 1;
end record;
type LPTimer_Input is (Input_1, Input_2);
procedure Configure_Input_Clock
(This : in out LPTimer;
Input : LPTimer_Input;
Clock : LPTimer_Input_Clock);
-- LPTimer input 1 or input 2 connected to COMP output (Internal = True)
-- or to GPIO (Internal = False).
-- See RM0440 rev 6 Chapter 32.4.2 "LPTIM input and trigger mapping" and
-- Chapter 32.4.1 "LPTIM block diagram".
type LPTimer_Trigger_Source is
(GPIO,
RTC_ALARMA,
RTC_ALARMB,
RTC_TAMP1_OUT,
RTC_TAMP2_OUT,
RTC_TAMP3_OUT,
COMP1_OUT,
COMP2_OUT,
COMP3_OUT,
COMP4_OUT,
COMP5_OUT,
COMP6_OUT,
COMP7_OUT)
with Size => 4;
-- See RM0440 rev 6 Chapter 32.4.2 "LPTIM input and trigger mapping".
procedure Select_Trigger_Source
(This : in out LPTimer;
Source : LPTimer_Trigger_Source);
procedure Select_Trigger_Filter
(This : in out LPTimer;
Filter : LPTimer_Digital_Filter);
procedure Set_Trigger_Timeout
(This : in out LPTimer;
Enable : Boolean)
with Pre => not Enabled (This);
-- A trigger event arriving when the timer is already started will be
-- ignored (timeout) or will reset and restart the counter.
procedure Configure_Trigger
(This : in out LPTimer;
Source : LPTimer_Trigger_Source;
Filter : LPTimer_Digital_Filter;
Timeout : Boolean);
type LPTimer_Pulse_Mode is (Repetitive, Single);
procedure Select_Pulse_Mode
(This : in out LPTimer;
Mode : LPTimer_Pulse_Mode)
with Pre => Enabled (This);
-- In case of software start (TRIGEN[1:0] = ‘00’), setting this bit starts
-- the LPTIM in Continuous or Single mode. If the software start is disabled
-- (TRIGEN[1:0] different than ‘00’), setting this bit starts the timer in
-- Continuous or Single mode as soon as an external trigger is detected.
-- If this bit is set when a single pulse mode counting is ongoing or in
-- continuous mode, then the LPTIM will not stop at the next match between
-- the LPTIM_ARR and LPTIM_CNT registers and the LPTIM counter keeps
-- counting in Continuous or single mode.
type LPTimer_Waveform_Shape is (PWM_One_Pulse, Set_Once);
procedure Set_Waveform_Shape
(This : in out LPTimer;
Shape : LPTimer_Waveform_Shape)
with Pre => not Enabled (This);
type LPTimer_Waveform_Polarity is (Direct, Inverse);
procedure Set_Waveform_Polarity
(This : in out LPTimer;
Polarity : LPTimer_Waveform_Polarity)
with Pre => not Enabled (This);
procedure Configure_Waveform_Shape
(This : in out LPTimer;
Shape : LPTimer_Waveform_Shape;
Polarity : LPTimer_Waveform_Polarity)
with Pre => not Enabled (This);
-- Two 16-bit registers, the LPTIM_ARR (autoreload register) and LPTIM_CMP
-- (compare register), are used to generate several different waveforms on
-- LPTIM output. The timer can generate the following waveforms:
-- • The PWM mode: the LPTIM output is set as soon as the counter value in
-- LPTIM_CNT exceeds the compare value in LPTIM_CMP. The LPTIM output is
-- reset as soon as a match occurs between the LPTIM_ARR and the LPTIM_CNT
-- registers.
-- • The One-pulse mode: the output waveform is similar to the one of the
-- PWM mode for the first pulse, then the output is permanently reset.
-- • The Set-once mode: the output waveform is similar to the One-pulse
-- mode except that the output is kept to the last signal level (depends
-- on the output configured polarity).
-- See section 32.4.9 RM0440 rev 6 for waveform generation.
procedure Set_Encoder_Mode
(This : in out LPTimer;
Enable : Boolean)
with Pre => not Enabled (This);
-- This mode allows handling signals from quadrature encoders used to detect
-- angular position of rotary elements. Encoder interface mode acts simply
-- as an external clock with direction selection. This means that the
-- counter just counts continuously between 0 and the auto-reload value
-- programmed into the LPTIM_ARR register (0 up to ARR or ARR down to 0
-- depending on the direction). Therefore LPTIM_ARR must be configured
-- before starting.
-- From the two external input signals, Input1 and Input2, a clock signal is
-- generated to clock the LPTIM counter. The phase between those two signals
-- determines the counting direction.Direction change is signalized by the
-- two Down and Up flags in the LPTIM_ISR register. Also, an interrupt can
-- be generated for both direction change events if enabled through the
-- DOWNIE bit.
-- See section 32.4.14 RM0440 rev 6 for encoder scenarios.
private
type LPTimer is new LPTIMER1_Peripheral;
end STM32.LPTimers;
|
oeis/038/A038503.asm | neoneye/loda-programs | 11 | 175608 | <filename>oeis/038/A038503.asm
; A038503: Sum of every 4th entry of row n in Pascal's triangle, starting at "n choose 0".
; 1,1,1,1,2,6,16,36,72,136,256,496,992,2016,4096,8256,16512,32896,65536,130816,261632,523776,1048576,2098176,4196352,8390656,16777216,33550336,67100672,134209536,268435456,536887296,1073774592,2147516416,4294967296,8589869056,17179738112,34359607296,68719476736,137439215616,274878431232,549756338176,1099511627776,2199022206976,4398044413952,8796090925056,17592186044416,35184376283136,70368752566272,140737496743936,281474976710656,562949936644096,1125899873288192,2251799780130816,4503599627370496
mov $3,$0
lpb $0
sub $0,4
mov $2,$3
bin $2,$0
add $1,$2
lpe
add $1,1
mov $0,$1
|
src/kernel/user.asm | thomtl/Alpha-OS | 1 | 161462 | [bits 16]
init_user:
lea ax, [ret_prg]
mov word [0x510], ax
ret
call_program:
mov ax, 0x0
mov es, ax
mov bx, 0x1000
mov ax, 4
mov cx, 1
call read_disk
lea ax, [0x1000]
jmp ax
ret_prg:
ret |
examples/dump_tree/def_name.adb | reznikmm/gela | 0 | 9311 | <filename>examples/dump_tree/def_name.adb
-- SPDX-FileCopyrightText: 2019-2021 <NAME> <<EMAIL>>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
with Ada.Characters.Conversions;
with Ada.Command_Line;
with Ada.Wide_Wide_Text_IO;
with Program.Compilation_Unit_Vectors;
with Program.Compilation_Units;
with Program.Element_Iterators;
with Program.Element_Visitors;
with Program.Elements.Character_Literals;
with Program.Elements.Defining_Identifiers;
with Program.Elements.Defining_Operator_Symbols;
with Program.Elements.Identifiers;
with Program.Elements.Operator_Symbols;
with Program.Elements.Procedure_Body_Declarations;
with Program.Lexical_Elements;
with Program.Plain_Contexts;
with Program.Storage_Pools.Instance;
pragma Unreferenced (Program.Storage_Pools.Instance);
with Errors;
procedure Def_Name is
package Dump_Names is
type Visitor is new Program.Element_Visitors.Element_Visitor with record
Level : Natural := 0;
End_Name : Program.Elements.Element_Access;
end record;
procedure Identifier
(Self : in out Visitor;
Element : not null Program.Elements.Identifiers.Identifier_Access);
procedure Operator_Symbol
(Self : in out Visitor;
Element : not null Program.Elements.Operator_Symbols
.Operator_Symbol_Access);
procedure Character_Literal
(Self : in out Visitor;
Element : not null Program.Elements.Character_Literals
.Character_Literal_Access);
overriding procedure Procedure_Body_Declaration
(Self : in out Visitor;
Element : not null Program.Elements.Procedure_Body_Declarations
.Procedure_Body_Declaration_Access);
end Dump_Names;
procedure Process_Units
(List : Program.Compilation_Unit_Vectors.Compilation_Unit_Vector_Access;
Spec : Boolean);
procedure Process_Unit
(Unit : Program.Compilation_Units.Compilation_Unit_Access;
Spec : Boolean);
procedure Traverse
(Element : Program.Elements.Element_Access;
End_Name : Program.Elements.Element_Access);
procedure Enclosing_Unit_Name
(Element : access Program.Elements.Element'Class;
Position : Wide_Wide_String);
package body Dump_Names is
----------------
-- Identifier --
----------------
procedure Identifier
(Self : in out Visitor;
Element : not null Program.Elements.Identifiers.Identifier_Access)
is
use type Program.Elements.Element_Access;
Text : Program.Elements.Identifiers.Identifier_Text_Access;
Token : Program.Lexical_Elements.Lexical_Element_Access;
Def : Program.Elements.Defining_Identifiers
.Defining_Identifier_Access;
Def_Text : Program.Elements.Defining_Identifiers.
Defining_Identifier_Text_Access;
begin
if Self.End_Name = Program.Elements.Element_Access (Element) then
null;
elsif not Element.Is_Part_Of_Implicit then
Text := Element.To_Identifier_Text;
Token := Text.Identifier_Token;
Ada.Wide_Wide_Text_IO.Put (Token.Image);
Ada.Wide_Wide_Text_IO.Put (" ");
Ada.Wide_Wide_Text_IO.Put (Token.From_Image);
Ada.Wide_Wide_Text_IO.Put (" => ");
Def := Element.Corresponding_Defining_Identifier;
if not Def.Assigned then
Ada.Wide_Wide_Text_IO.Put_Line ("-");
elsif Def.Is_Part_Of_Implicit then
Ada.Wide_Wide_Text_IO.Put_Line (" implicit");
else
Def_Text := Def.To_Defining_Identifier_Text;
Token := Def_Text.Identifier_Token;
Enclosing_Unit_Name (Def, Token.From_Image);
Ada.Wide_Wide_Text_IO.New_Line;
end if;
end if;
end Identifier;
---------------------
-- Operator_Symbol --
---------------------
procedure Operator_Symbol
(Self : in out Visitor;
Element : not null Program.Elements.Operator_Symbols
.Operator_Symbol_Access)
is
use type Program.Elements.Element_Access;
Text : Program.Elements.Operator_Symbols.Operator_Symbol_Text_Access;
Token : Program.Lexical_Elements.Lexical_Element_Access;
Def : Program.Elements.Defining_Operator_Symbols
.Defining_Operator_Symbol_Access;
Def_Text : Program.Elements.Defining_Operator_Symbols.
Defining_Operator_Symbol_Text_Access;
begin
if Self.End_Name = Program.Elements.Element_Access (Element) then
null;
elsif not Element.Is_Part_Of_Implicit then
Text := Element.To_Operator_Symbol_Text;
Token := Text.Operator_Symbol_Token;
Ada.Wide_Wide_Text_IO.Put (Token.Image);
Ada.Wide_Wide_Text_IO.Put (" ");
Ada.Wide_Wide_Text_IO.Put (Token.From_Image);
Ada.Wide_Wide_Text_IO.Put (" => ");
Def := Element.Corresponding_Defining_Operator_Symbol;
if not Def.Assigned then
Ada.Wide_Wide_Text_IO.Put_Line ("-");
elsif Def.Is_Part_Of_Implicit then
Ada.Wide_Wide_Text_IO.Put_Line (" implicit");
else
Def_Text := Def.To_Defining_Operator_Symbol_Text;
Token := Def_Text.Operator_Symbol_Token;
Enclosing_Unit_Name (Def, Token.From_Image);
Ada.Wide_Wide_Text_IO.New_Line;
end if;
end if;
end Operator_Symbol;
-----------------------
-- Character_Literal --
-----------------------
procedure Character_Literal
(Self : in out Visitor;
Element : not null Program.Elements.Character_Literals
.Character_Literal_Access) is
begin
null;
end Character_Literal;
overriding procedure Procedure_Body_Declaration
(Self : in out Visitor;
Element : not null Program.Elements.Procedure_Body_Declarations
.Procedure_Body_Declaration_Access)
is
begin
Self.End_Name := Program.Elements.Element_Access (Element.End_Name);
end Procedure_Body_Declaration;
end Dump_Names;
procedure Process_Unit
(Unit : Program.Compilation_Units.Compilation_Unit_Access;
Spec : Boolean) is
begin
for J in 1 .. Ada.Command_Line.Argument_Count loop
if Unit.Compilation.Text_Name =
Ada.Characters.Conversions.To_Wide_Wide_String
(Ada.Command_Line.Argument (J))
then
if Spec then
Ada.Wide_Wide_Text_IO.Put ("spec");
else
Ada.Wide_Wide_Text_IO.Put ("body");
end if;
Ada.Wide_Wide_Text_IO.Put (" ");
Ada.Wide_Wide_Text_IO.Put_Line (Unit.Full_Name);
for Item in Unit.Context_Clause_Elements.Each_Element loop
Traverse (Item.Element, null);
end loop;
Traverse (Unit.Unit_Declaration, null);
exit;
end if;
end loop;
end Process_Unit;
procedure Process_Units
(List : Program.Compilation_Unit_Vectors.Compilation_Unit_Vector_Access;
Spec : Boolean) is
begin
for Cursor in List.Each_Unit loop
Process_Unit (Cursor.Unit, Spec);
end loop;
end Process_Units;
procedure Traverse
(Element : Program.Elements.Element_Access;
End_Name : Program.Elements.Element_Access)
is
Printer : Dump_Names.Visitor;
begin
Printer.End_Name := End_Name;
Element.Visit (Printer);
for Cursor in Element.Each_Child loop
Traverse (Cursor.Element, Printer.End_Name);
end loop;
end Traverse;
Ctx : aliased Program.Plain_Contexts.Context;
procedure Enclosing_Unit_Name
(Element : access Program.Elements.Element'Class;
Position : Wide_Wide_String)
is
use type Program.Elements.Element_Access;
Parent : Program.Elements.Element_Access := Element;
begin
while Parent.Enclosing_Element.Assigned loop
Parent := Parent.Enclosing_Element;
end loop;
for Cursor in Ctx.Library_Unit_Declarations.Each_Unit loop
if Cursor.Unit.Unit_Declaration = Parent then
if Cursor.Unit.Full_Name = "" then
Ada.Wide_Wide_Text_IO.Put ("[Standard]");
return; -- Don't print slocs in Standard (they could change)
else
Ada.Wide_Wide_Text_IO.Put (Cursor.Unit.Full_Name);
exit;
end if;
end if;
end loop;
for Cursor in Ctx.Compilation_Unit_Bodies.Each_Unit loop
if Cursor.Unit.Unit_Declaration = Parent then
Ada.Wide_Wide_Text_IO.Put (Cursor.Unit.Full_Name);
exit;
end if;
end loop;
Ada.Wide_Wide_Text_IO.Put (" ");
Ada.Wide_Wide_Text_IO.Put (Position);
end Enclosing_Unit_Name;
Err : aliased Errors.Error_Listener;
begin
Ctx.Initialize (Err'Unchecked_Access);
for J in 1 .. Ada.Command_Line.Argument_Count loop
declare
Arg : constant Wide_Wide_String :=
Ada.Characters.Conversions.To_Wide_Wide_String
(Ada.Command_Line.Argument (J));
begin
if Arg'Length > 2 and then Arg (1 .. 2) = "-I" then
Ctx.Add_Search_Directory (Arg (3 .. Arg'Last));
else
Ctx.Parse_File (Arg);
end if;
end;
end loop;
Ctx.Complete_Analysis;
Process_Units (Ctx.Library_Unit_Declarations, True);
Process_Units (Ctx.Compilation_Unit_Bodies, False);
end Def_Name;
|
oeis/161/A161712.asm | neoneye/loda-programs | 11 | 6329 | <reponame>neoneye/loda-programs
; A161712: a(n) = (4*n^3 - 6*n^2 + 8*n + 3)/3.
; 1,3,9,27,65,131,233,379,577,835,1161,1563,2049,2627,3305,4091,4993,6019,7177,8475,9921,11523,13289,15227,17345,19651,22153,24859,27777,30915,34281,37883,41729,45827,50185,54811,59713,64899,70377,76155,82241,88643,95369,102427,109825,117571,125673,134139,142977,152195,161801,171803,182209,193027,204265,215931,228033,240579,253577,267035,280961,295363,310249,325627,341505,357891,374793,392219,410177,428675,447721,467323,487489,508227,529545,551451,573953,597059,620777,645115,670081,695683,721929
mul $0,2
mov $1,$0
add $0,1
bin $1,3
add $0,$1
|
Groups/Actions/Definition.agda | Smaug123/agdaproofs | 4 | 9566 | {-# OPTIONS --safe --warning=error --without-K #-}
open import Setoids.Setoids
open import Agda.Primitive using (Level; lzero; lsuc; _⊔_)
open import Groups.Definition
module Groups.Actions.Definition where
record GroupAction {m n o p : _} {A : Set m} {S : Setoid {m} {o} A} {_·_ : A → A → A} {B : Set n} (G : Group S _·_) (X : Setoid {n} {p} B) : Set (m ⊔ n ⊔ o ⊔ p) where
open Group G
open Setoid S renaming (_∼_ to _∼G_)
open Setoid X renaming (_∼_ to _∼X_)
field
action : A → B → B
actionWellDefined1 : {g h : A} → {x : B} → (g ∼G h) → action g x ∼X action h x
actionWellDefined2 : {g : A} → {x y : B} → (x ∼X y) → action g x ∼X action g y
identityAction : {x : B} → action 0G x ∼X x
associativeAction : {x : B} → {g h : A} → action (g · h) x ∼X action g (action h x)
|
libsupcs/x86_64_arith.asm | jncronin/tysila | 6 | 19256 | <filename>libsupcs/x86_64_arith.asm<gh_stars>1-10
global __signbits_r8
global __signbits_r4
global _conv_u4_r8
extern __halt
__signbits_r8: dq 0x8000000000000000, 0x8000000000000000
__signbits_r4: dq 0x8000000080000000, 0x8000000080000000
_conv_u4_r8:
call __halt
|
gnu/gcc/gcc/config/mt/crtn.asm | ArrogantWombatics/openbsd-src | 105 | 176541 | # crtn.asm for mt
# Copyright (C) 2005 Free Software Foundation, Inc.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2, or (at your option) any
# later version.
#
# In addition to the permissions in the GNU General Public License, the
# Free Software Foundation gives you unlimited permission to link the
# compiled version of this file with other programs, and to distribute
# those programs without any restriction coming from the use of this
# file. (The General Public License restrictions do apply in other
# respects; for example, they cover modification of the file, and
# distribution when not linked into another program.)
#
# This file 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
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GCC; see the file COPYING. If not, write to the Free
# Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
#
# As a special exception, if you link this library with files
# compiled with GCC to produce an executable, this does not cause
# the resulting executable to be covered by the GNU General Public License.
# This exception does not however invalidate any other reasons why
# the executable file might be covered by the GNU General Public License.
#
# This file just makes sure that the .fini and .init sections do in
# fact return. Users may put any desired instructions in those sections.
# This file is the last thing linked into any executable.
.file "crtn.asm"
.section ".init"
.align 4
ldw r14, sp, #0
addi sp, sp, #4
nop
jal r0, r14
or r0, r0, r0
.section ".fini"
.align 4
ldw r14, sp, #0
addi sp, sp, #4
nop
jal r0, r14
or r0, r0, r0
|
source/runtime/generated/google-protobuf-any.ads | mgrojo/protobuf | 12 | 12304 | with Ada.Finalization;
with Ada.Streams;
with League.Stream_Element_Vectors;
with League.Strings;
package Google.Protobuf.Any is
type Any_Vector is tagged private
with Variable_Indexing => Get_Any_Variable_Reference,
Constant_Indexing => Get_Any_Constant_Reference;
type Any is
record
Type_Url : League.Strings.Universal_String;
Value : League.Stream_Element_Vectors.Stream_Element_Vector;
end record;
type Optional_Any (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Google.Protobuf.Any.Any;
when False =>
null;
end case;
end record;
function Length (Self : Any_Vector) return Natural;
procedure Clear (Self : in out Any_Vector);
procedure Append (Self : in out Any_Vector; V : Any);
type Any_Variable_Reference (Element : not null access Any) is null record
with Implicit_Dereference => Element;
not overriding function Get_Any_Variable_Reference
(Self : aliased in out Any_Vector;
Index : Positive)
return Any_Variable_Reference
with Inline;
type Any_Constant_Reference (Element : not null access constant Any) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Any_Constant_Reference
(Self : aliased Any_Vector;
Index : Positive)
return Any_Constant_Reference
with Inline;
private
procedure Read_Any
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Any);
procedure Write_Any
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Any);
for Any'Read use Read_Any;
for Any'Write use Write_Any;
type Any_Array is array (Positive range <>) of aliased Any;
type Any_Array_Access is access Any_Array;
type Any_Vector is
new Ada.Finalization.Controlled
with record
Data : Any_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Any_Vector);
overriding procedure Finalize (Self : in out Any_Vector);
end Google.Protobuf.Any; |
source/slim-players-displays.adb | reznikmm/slimp | 0 | 4033 | -- Copyright (c) 2019 <NAME> <<EMAIL>>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Slim.Messages.grfe;
package body Slim.Players.Displays is
-----------
-- Clear --
-----------
procedure Clear (Self : in out Display) is
begin
Self.Buffer := (1 .. Self.Size => 0);
end Clear;
---------------
-- Draw_Text --
---------------
procedure Draw_Text
(Self : in out Display;
X, Y : Positive;
Font : Slim.Fonts.Font;
Text : League.Strings.Universal_String)
is
procedure Draw_Pixel (X, Y : Positive);
procedure Draw_Pixel (X, Y : Positive) is
begin
Draw_Pixel (Self, X, Y);
end Draw_Pixel;
procedure Draw_Text is new Slim.Fonts.Draw_Text
(Coordinate => Integer,
Draw_Pixel => Draw_Pixel);
Line : League.Strings.Universal_String := Text;
begin
while Fonts.Size (Font, Line).Right + X - 1 > 160 loop
Line := Line.Head_To (Line.Length - 1);
end loop;
Draw_Text (Font, Line, X - 1, Y - 1);
end Draw_Text;
----------------
-- Draw_Pixel --
----------------
procedure Draw_Pixel
(Self : in out Display;
X, Y : Positive;
Set : Boolean := True)
is
use type Ada.Streams.Stream_Element;
Index : constant Ada.Streams.Stream_Element_Offset :=
Ada.Streams.Stream_Element_Offset ((X - 1) * 4 + (32 - Y) / 8 + 1);
Mask : constant Ada.Streams.Stream_Element :=
2 ** ((Y - 1) mod 8);
begin
if Set then
Self.Buffer (Index) := Self.Buffer (Index) or Mask;
else
Self.Buffer (Index) := Self.Buffer (Index) and not Mask;
end if;
end Draw_Pixel;
----------------
-- Initialize --
----------------
procedure Initialize
(Self : in out Display;
Player : Players.Player) is
begin
Self.Socket := Player.Socket;
end Initialize;
------------------
-- Send_Message --
------------------
procedure Send_Message
(Self : Display;
Transition : Transition_Kind := None;
Offset : Natural := 0)
is
Grfe : Slim.Messages.grfe.Grfe_Message;
begin
Grfe.Initialize (Self.Buffer, Transition, Offset);
Write_Message (Self.Socket, Grfe);
end Send_Message;
end Slim.Players.Displays;
|
programs/oeis/017/A017187.asm | neoneye/loda | 22 | 244564 | <gh_stars>10-100
; A017187: a(n) = (9*n + 2)^3.
; 8,1331,8000,24389,54872,103823,175616,274625,405224,571787,778688,1030301,1331000,1685159,2097152,2571353,3112136,3723875,4410944,5177717,6028568,6967871,8000000,9129329,10360232,11697083,13144256,14706125,16387064,18191447,20123648,22188041,24389000,26730899,29218112,31855013,34645976,37595375,40707584,43986977,47437928,51064811,54872000,58863869,63044792,67419143,71991296,76765625,81746504,86938307,92345408,97972181,103823000,109902239,116214272,122763473,129554216,136590875,143877824,151419437,159220088,167284151,175616000,184220009,193100552,202262003,211708736,221445125,231475544,241804367,252435968,263374721,274625000,286191179,298077632,310288733,322828856,335702375,348913664,362467097,376367048,390617891,405224000,420189749,435519512,451217663,467288576,483736625,500566184,517781627,535387328,553387661,571787000,590589719,609800192,629422793,649461896,669921875,690807104,712121957
mul $0,9
add $0,2
pow $0,3
|
Top Racer 2 (Japan).asm | snaphat/oc_snes_patches | 2 | 177762 | ; Fix race condition on NTSC/PAL check.
org $81f8fd
db $80
; Fix race condition on APU port read.
org $9ffbc4
nop
; Fix race condition on APU port read.
org $9ffd58
nop
|
tier-1/gmp/source/thin/gmp_c-mpq_srcptr.ads | charlie5/cBound | 2 | 15432 | -- This file is generated by SWIG. Please do *not* modify by hand.
--
with gmp_c.a_a_mpq_struct;
with Interfaces.C;
package gmp_c.mpq_srcptr is
-- Item
--
subtype Item is gmp_c.a_a_mpq_struct.Pointer;
-- Items
--
type Items is
array (Interfaces.C.size_t range <>) of aliased gmp_c.mpq_srcptr.Item;
-- Pointer
--
type Pointer is access all gmp_c.mpq_srcptr.Item;
-- Pointers
--
type Pointers is
array (Interfaces.C.size_t range <>) of aliased gmp_c.mpq_srcptr.Pointer;
-- Pointer_Pointer
--
type Pointer_Pointer is access all gmp_c.mpq_srcptr.Pointer;
end gmp_c.mpq_srcptr;
|
stdlib-exts/Data/Unit/Instance.agda | WhatisRT/meta-cedille | 35 | 13315 | module Data.Unit.Instance where
open import Class.Monoid
open import Data.Unit.Polymorphic
instance
Unit-Monoid : ∀ {a} → Monoid {a} ⊤
Unit-Monoid = record { mzero = tt ; _+_ = λ _ _ -> tt }
|
test/asset/agda-stdlib-1.0/Data/Product/Function/Dependent/Setoid/WithK.agda | omega12345/agda-mode | 0 | 15731 | <reponame>omega12345/agda-mode
------------------------------------------------------------------------
-- The Agda standard library
--
-- Dependent product combinators for setoid equality preserving
-- functions
------------------------------------------------------------------------
{-# OPTIONS --with-K --safe #-}
module Data.Product.Function.Dependent.Setoid.WithK where
open import Data.Product
open import Data.Product.Function.Dependent.Setoid using (surjection)
open import Data.Product.Relation.Binary.Pointwise.Dependent
open import Relation.Binary
open import Function
open import Function.Equality as F using (_⟶_; _⟨$⟩_)
open import Function.Equivalence as Eq
using (Equivalence; _⇔_; module Equivalence)
open import Function.Injection as Inj
using (Injection; Injective; _↣_; module Injection)
open import Function.Inverse as Inv
using (Inverse; _↔_; module Inverse)
open import Function.LeftInverse as LeftInv
using (LeftInverse; _↞_; _LeftInverseOf_; _RightInverseOf_; module LeftInverse)
open import Function.Surjection as Surj
using (Surjection; _↠_; module Surjection)
open import Relation.Binary as B
open import Relation.Binary.Indexed.Heterogeneous
using (IndexedSetoid)
open import Relation.Binary.Indexed.Heterogeneous.Construct.At
using (_atₛ_)
open import Relation.Binary.PropositionalEquality as P using (_≡_)
------------------------------------------------------------------------
-- Combinator for Inverse
module _ {a₁ a₂ b₁ b₁′ b₂ b₂′} {A₁ : Set a₁} {A₂ : Set a₂} where
inverse : {B₁ : IndexedSetoid A₁ b₁ b₁′} (B₂ : IndexedSetoid A₂ b₂ b₂′) →
(A₁↔A₂ : A₁ ↔ A₂) →
(∀ {x} → Inverse (B₁ atₛ x) (B₂ atₛ (Inverse.to A₁↔A₂ ⟨$⟩ x))) →
Inverse (setoid (P.setoid A₁) B₁) (setoid (P.setoid A₂) B₂)
inverse {B₁} B₂ A₁↔A₂ B₁↔B₂ = record
{ to = Surjection.to surj
; from = Surjection.from surj
; inverse-of = record
{ left-inverse-of = left
; right-inverse-of = Surjection.right-inverse-of surj
}
}
where
surj = surjection B₂ (Inverse.surjection A₁↔A₂)
(Inverse.surjection B₁↔B₂)
left : Surjection.from surj LeftInverseOf Surjection.to surj
left (x , y) =
Inverse.left-inverse-of A₁↔A₂ x ,
IndexedSetoid.trans B₁
(lemma (P.sym (Inverse.left-inverse-of A₁↔A₂ x))
(P.sym (Inverse.right-inverse-of A₁↔A₂
(Inverse.to A₁↔A₂ ⟨$⟩ x))))
(Inverse.left-inverse-of B₁↔B₂ y)
where
lemma :
∀ {x x′ y} → x ≡ x′ →
(eq : (Inverse.to A₁↔A₂ ⟨$⟩ x) ≡ (Inverse.to A₁↔A₂ ⟨$⟩ x′)) →
IndexedSetoid._≈_ B₁
(Inverse.from B₁↔B₂ ⟨$⟩ P.subst (IndexedSetoid.Carrier B₂) eq y)
(Inverse.from B₁↔B₂ ⟨$⟩ y)
lemma P.refl P.refl = IndexedSetoid.refl B₁
|
binary16_test/test.asm | DW0RKiN/Floating-point-Library-for-Z80 | 12 | 92346 | <gh_stars>10-100
INCLUDE finit.asm
IF (true)
MANT_BITS EQU 000A
MANT_MASK_HI EQU 0003
IMPBIT_MASK EQU 0004
MANT_MASK_IMP_HI EQU 0007
BIT_ALWAYS_ONE EQU 0002
SIGN_MASK EQU 0080
SIGN_BIT EQU 000F
EXP_BITS EQU 0005
EXP_MASK EQU 007C
EXP_PLUS_ONE EQU 0004
BIAS EQU 003C
FM256 EQU DC00
FM255 EQU DBF8
FM254 EQU DBF0
FM253 EQU DBE8
FM252 EQU DBE0
FM251 EQU DBD8
FM250 EQU DBD0
FM249 EQU DBC8
FM248 EQU DBC0
FM247 EQU DBB8
FM246 EQU DBB0
FM245 EQU DBA8
FM244 EQU DBA0
FM243 EQU DB98
FM242 EQU DB90
FM241 EQU DB88
FM240 EQU DB80
FM239 EQU DB78
FM238 EQU DB70
FM237 EQU DB68
FM236 EQU DB60
FM235 EQU DB58
FM234 EQU DB50
FM233 EQU DB48
FM232 EQU DB40
FM231 EQU DB38
FM230 EQU DB30
FM229 EQU DB28
FM228 EQU DB20
FM227 EQU DB18
FM226 EQU DB10
FM225 EQU DB08
FM224 EQU DB00
FM223 EQU DAF8
FM222 EQU DAF0
FM221 EQU DAE8
FM220 EQU DAE0
FM219 EQU DAD8
FM218 EQU DAD0
FM217 EQU DAC8
FM216 EQU DAC0
FM215 EQU DAB8
FM214 EQU DAB0
FM213 EQU DAA8
FM212 EQU DAA0
FM211 EQU DA98
FM210 EQU DA90
FM209 EQU DA88
FM208 EQU DA80
FM207 EQU DA78
FM206 EQU DA70
FM205 EQU DA68
FM204 EQU DA60
FM203 EQU DA58
FM202 EQU DA50
FM201 EQU DA48
FM200 EQU DA40
FM199 EQU DA38
FM198 EQU DA30
FM197 EQU DA28
FM196 EQU DA20
FM195 EQU DA18
FM194 EQU DA10
FM193 EQU DA08
FM192 EQU DA00
FM191 EQU D9F8
FM190 EQU D9F0
FM189 EQU D9E8
FM188 EQU D9E0
FM187 EQU D9D8
FM186 EQU D9D0
FM185 EQU D9C8
FM184 EQU D9C0
FM183 EQU D9B8
FM182 EQU D9B0
FM181 EQU D9A8
FM180 EQU D9A0
FM179 EQU D998
FM178 EQU D990
FM177 EQU D988
FM176 EQU D980
FM175 EQU D978
FM174 EQU D970
FM173 EQU D968
FM172 EQU D960
FM171 EQU D958
FM170 EQU D950
FM169 EQU D948
FM168 EQU D940
FM167 EQU D938
FM166 EQU D930
FM165 EQU D928
FM164 EQU D920
FM163 EQU D918
FM162 EQU D910
FM161 EQU D908
FM160 EQU D900
FM159 EQU D8F8
FM158 EQU D8F0
FM157 EQU D8E8
FM156 EQU D8E0
FM155 EQU D8D8
FM154 EQU D8D0
FM153 EQU D8C8
FM152 EQU D8C0
FM151 EQU D8B8
FM150 EQU D8B0
FM149 EQU D8A8
FM148 EQU D8A0
FM147 EQU D898
FM146 EQU D890
FM145 EQU D888
FM144 EQU D880
FM143 EQU D878
FM142 EQU D870
FM141 EQU D868
FM140 EQU D860
FM139 EQU D858
FM138 EQU D850
FM137 EQU D848
FM136 EQU D840
FM135 EQU D838
FM134 EQU D830
FM133 EQU D828
FM132 EQU D820
FM131 EQU D818
FM130 EQU D810
FM129 EQU D808
FM128 EQU D800
FM127 EQU D7F0
FM126 EQU D7E0
FM125 EQU D7D0
FM124 EQU D7C0
FM123 EQU D7B0
FM122 EQU D7A0
FM121 EQU D790
FM120 EQU D780
FM119 EQU D770
FM118 EQU D760
FM117 EQU D750
FM116 EQU D740
FM115 EQU D730
FM114 EQU D720
FM113 EQU D710
FM112 EQU D700
FM111 EQU D6F0
FM110 EQU D6E0
FM109 EQU D6D0
FM108 EQU D6C0
FM107 EQU D6B0
FM106 EQU D6A0
FM105 EQU D690
FM104 EQU D680
FM103 EQU D670
FM102 EQU D660
FM101 EQU D650
FM100 EQU D640
FM99 EQU D630
FM98 EQU D620
FM97 EQU D610
FM96 EQU D600
FM95 EQU D5F0
FM94 EQU D5E0
FM93 EQU D5D0
FM92 EQU D5C0
FM91 EQU D5B0
FM90 EQU D5A0
FM89 EQU D590
FM88 EQU D580
FM87 EQU D570
FM86 EQU D560
FM85 EQU D550
FM84 EQU D540
FM83 EQU D530
FM82 EQU D520
FM81 EQU D510
FM80 EQU D500
FM79 EQU D4F0
FM78 EQU D4E0
FM77 EQU D4D0
FM76 EQU D4C0
FM75 EQU D4B0
FM74 EQU D4A0
FM73 EQU D490
FM72 EQU D480
FM71 EQU D470
FM70 EQU D460
FM69 EQU D450
FM68 EQU D440
FM67 EQU D430
FM66 EQU D420
FM65 EQU D410
FM64 EQU D400
FM63 EQU D3E0
FM62 EQU D3C0
FM61 EQU D3A0
FM60 EQU D380
FM59 EQU D360
FM58 EQU D340
FM57 EQU D320
FM56 EQU D300
FM55 EQU D2E0
FM54 EQU D2C0
FM53 EQU D2A0
FM52 EQU D280
FM51 EQU D260
FM50 EQU D240
FM49 EQU D220
FM48 EQU D200
FM47 EQU D1E0
FM46 EQU D1C0
FM45 EQU D1A0
FM44 EQU D180
FM43 EQU D160
FM42 EQU D140
FM41 EQU D120
FM40 EQU D100
FM39 EQU D0E0
FM38 EQU D0C0
FM37 EQU D0A0
FM36 EQU D080
FM35 EQU D060
FM34 EQU D040
FM33 EQU D020
FM32 EQU D000
FM31 EQU CFC0
FM30 EQU CF80
FM29 EQU CF40
FM28 EQU CF00
FM27 EQU CEC0
FM26 EQU CE80
FM25 EQU CE40
FM24 EQU CE00
FM23 EQU CDC0
FM22 EQU CD80
FM21 EQU CD40
FM20 EQU CD00
FM19 EQU CCC0
FM18 EQU CC80
FM17 EQU CC40
FM16 EQU CC00
FM15 EQU CB80
FM14 EQU CB00
FM13 EQU CA80
FM12 EQU CA00
FM11 EQU C980
FM10 EQU C900
FM9 EQU C880
FM8 EQU C800
FM7 EQU C700
FM6 EQU C600
FM5 EQU C500
FM4 EQU C400
FM3 EQU C200
FM2 EQU C000
FM1 EQU BC00
FM0_9 EQU BB33
FM0_8 EQU BA66
FM0_7 EQU B99A
FM0_6 EQU B8CD
FM0_5 EQU B800
FM0_4 EQU B666
FM0_3 EQU B4CD
FM0_2 EQU B266
FM0_1 EQU AE66
FP0_1 EQU 2E66
FP0_2 EQU 3266
FP0_3 EQU 34CD
FP0_4 EQU 3666
FP0_5 EQU 3800
FP0_6 EQU 38CD
FP0_7 EQU 399A
FP0_8 EQU 3A66
FP0_9 EQU 3B33
FP1 EQU 3C00
FP2 EQU 4000
FP3 EQU 4200
FP4 EQU 4400
FP5 EQU 4500
FP6 EQU 4600
FP7 EQU 4700
FP8 EQU 4800
FP9 EQU 4880
FP10 EQU 4900
FP11 EQU 4980
FP12 EQU 4A00
FP13 EQU 4A80
FP14 EQU 4B00
FP15 EQU 4B80
FP16 EQU 4C00
FP17 EQU 4C40
FP18 EQU 4C80
FP19 EQU 4CC0
FP20 EQU 4D00
FP21 EQU 4D40
FP22 EQU 4D80
FP23 EQU 4DC0
FP24 EQU 4E00
FP25 EQU 4E40
FP26 EQU 4E80
FP27 EQU 4EC0
FP28 EQU 4F00
FP29 EQU 4F40
FP30 EQU 4F80
FP31 EQU 4FC0
FP32 EQU 5000
FP33 EQU 5020
FP34 EQU 5040
FP35 EQU 5060
FP36 EQU 5080
FP37 EQU 50A0
FP38 EQU 50C0
FP39 EQU 50E0
FP40 EQU 5100
FP41 EQU 5120
FP42 EQU 5140
FP43 EQU 5160
FP44 EQU 5180
FP45 EQU 51A0
FP46 EQU 51C0
FP47 EQU 51E0
FP48 EQU 5200
FP49 EQU 5220
FP50 EQU 5240
FP51 EQU 5260
FP52 EQU 5280
FP53 EQU 52A0
FP54 EQU 52C0
FP55 EQU 52E0
FP56 EQU 5300
FP57 EQU 5320
FP58 EQU 5340
FP59 EQU 5360
FP60 EQU 5380
FP61 EQU 53A0
FP62 EQU 53C0
FP63 EQU 53E0
FP64 EQU 5400
FP65 EQU 5410
FP66 EQU 5420
FP67 EQU 5430
FP68 EQU 5440
FP69 EQU 5450
FP70 EQU 5460
FP71 EQU 5470
FP72 EQU 5480
FP73 EQU 5490
FP74 EQU 54A0
FP75 EQU 54B0
FP76 EQU 54C0
FP77 EQU 54D0
FP78 EQU 54E0
FP79 EQU 54F0
FP80 EQU 5500
FP81 EQU 5510
FP82 EQU 5520
FP83 EQU 5530
FP84 EQU 5540
FP85 EQU 5550
FP86 EQU 5560
FP87 EQU 5570
FP88 EQU 5580
FP89 EQU 5590
FP90 EQU 55A0
FP91 EQU 55B0
FP92 EQU 55C0
FP93 EQU 55D0
FP94 EQU 55E0
FP95 EQU 55F0
FP96 EQU 5600
FP97 EQU 5610
FP98 EQU 5620
FP99 EQU 5630
FP100 EQU 5640
FP101 EQU 5650
FP102 EQU 5660
FP103 EQU 5670
FP104 EQU 5680
FP105 EQU 5690
FP106 EQU 56A0
FP107 EQU 56B0
FP108 EQU 56C0
FP109 EQU 56D0
FP110 EQU 56E0
FP111 EQU 56F0
FP112 EQU 5700
FP113 EQU 5710
FP114 EQU 5720
FP115 EQU 5730
FP116 EQU 5740
FP117 EQU 5750
FP118 EQU 5760
FP119 EQU 5770
FP120 EQU 5780
FP121 EQU 5790
FP122 EQU 57A0
FP123 EQU 57B0
FP124 EQU 57C0
FP125 EQU 57D0
FP126 EQU 57E0
FP127 EQU 57F0
FP128 EQU 5800
FP129 EQU 5808
FP130 EQU 5810
FP131 EQU 5818
FP132 EQU 5820
FP133 EQU 5828
FP134 EQU 5830
FP135 EQU 5838
FP136 EQU 5840
FP137 EQU 5848
FP138 EQU 5850
FP139 EQU 5858
FP140 EQU 5860
FP141 EQU 5868
FP142 EQU 5870
FP143 EQU 5878
FP144 EQU 5880
FP145 EQU 5888
FP146 EQU 5890
FP147 EQU 5898
FP148 EQU 58A0
FP149 EQU 58A8
FP150 EQU 58B0
FP151 EQU 58B8
FP152 EQU 58C0
FP153 EQU 58C8
FP154 EQU 58D0
FP155 EQU 58D8
FP156 EQU 58E0
FP157 EQU 58E8
FP158 EQU 58F0
FP159 EQU 58F8
FP160 EQU 5900
FP161 EQU 5908
FP162 EQU 5910
FP163 EQU 5918
FP164 EQU 5920
FP165 EQU 5928
FP166 EQU 5930
FP167 EQU 5938
FP168 EQU 5940
FP169 EQU 5948
FP170 EQU 5950
FP171 EQU 5958
FP172 EQU 5960
FP173 EQU 5968
FP174 EQU 5970
FP175 EQU 5978
FP176 EQU 5980
FP177 EQU 5988
FP178 EQU 5990
FP179 EQU 5998
FP180 EQU 59A0
FP181 EQU 59A8
FP182 EQU 59B0
FP183 EQU 59B8
FP184 EQU 59C0
FP185 EQU 59C8
FP186 EQU 59D0
FP187 EQU 59D8
FP188 EQU 59E0
FP189 EQU 59E8
FP190 EQU 59F0
FP191 EQU 59F8
FP192 EQU 5A00
FP193 EQU 5A08
FP194 EQU 5A10
FP195 EQU 5A18
FP196 EQU 5A20
FP197 EQU 5A28
FP198 EQU 5A30
FP199 EQU 5A38
FP200 EQU 5A40
FP201 EQU 5A48
FP202 EQU 5A50
FP203 EQU 5A58
FP204 EQU 5A60
FP205 EQU 5A68
FP206 EQU 5A70
FP207 EQU 5A78
FP208 EQU 5A80
FP209 EQU 5A88
FP210 EQU 5A90
FP211 EQU 5A98
FP212 EQU 5AA0
FP213 EQU 5AA8
FP214 EQU 5AB0
FP215 EQU 5AB8
FP216 EQU 5AC0
FP217 EQU 5AC8
FP218 EQU 5AD0
FP219 EQU 5AD8
FP220 EQU 5AE0
FP221 EQU 5AE8
FP222 EQU 5AF0
FP223 EQU 5AF8
FP224 EQU 5B00
FP225 EQU 5B08
FP226 EQU 5B10
FP227 EQU 5B18
FP228 EQU 5B20
FP229 EQU 5B28
FP230 EQU 5B30
FP231 EQU 5B38
FP232 EQU 5B40
FP233 EQU 5B48
FP234 EQU 5B50
FP235 EQU 5B58
FP236 EQU 5B60
FP237 EQU 5B68
FP238 EQU 5B70
FP239 EQU 5B78
FP240 EQU 5B80
FP241 EQU 5B88
FP242 EQU 5B90
FP243 EQU 5B98
FP244 EQU 5BA0
FP245 EQU 5BA8
FP246 EQU 5BB0
FP247 EQU 5BB8
FP248 EQU 5BC0
FP249 EQU 5BC8
FP250 EQU 5BD0
FP251 EQU 5BD8
FP252 EQU 5BE0
FP253 EQU 5BE8
FP254 EQU 5BF0
FP255 EQU 5BF8
FP256 EQU 5C00
ROOT2F EQU 3DA8
FPMIN EQU 0000
FMMIN EQU 8000
FM0 EQU 8000
FP0 EQU 0000
FMMAX EQU FFFF
FPMAX EQU 7FFF
FM0_01875 EQU A4CD
FM0_0375 EQU A8CD
FM0_0625 EQU AC00
FM0_075 EQU ACCD
FM0_15 EQU B0CD
FM0_25 EQU B400
FP0_000156 EQU 091F
FP0_001406 EQU 15C3
FP0_0025 EQU 191F
FP0_01 EQU 211F
FP0_0125 EQU 2266
FP0_0225 EQU 25C3
FP0_03125 EQU 2800
FP0_0375 EQU 28CD
FP0_04 EQU 291F
FP0_05 EQU 2A66
FP0_09 EQU 2DC3
FP0_125 EQU 3000
FP0_15 EQU 30CD
FP0_1875 EQU 3200
FP0_25 EQU 3400
FP0_75 EQU 3A00
FP0_36 EQU 35C3
FP1_5 EQU 3E00
FP18_75 EQU 4CB0
FP300 EQU 5CB0
ENDIF
End of INCLUDE
color_flow_warning EQU 0001
carry_flow_warning EQU 0001
fix_ln EQU 0001
DATA_ADR EQU 6000
TEXT_ADR EQU E000
ORG 6000
6000:00000000 DEFW of 2 words
INCLUDE test_fsin.dat
6004:03B4F1B3 DEFW of 2 words
6008:04B4F2B3 DEFW of 2 words
600C:05B4F4B3 DEFW of 2 words
6010:0334F133 DEFW of 2 words
6014:ABB868B8 DEFW of 2 words
6018:55353C35 DEFW of 2 words
601C:62AF5EAF DEFW of 2 words
6020:D7B2CAB2 DEFW of 2 words
6024:B6AAB5AA DEFW of 2 words
6028:202F1C2F DEFW of 2 words
602C:7F373A37 DEFW of 2 words
6030:C50AC50A DEFW of 2 words
6034:1038C837 DEFW of 2 words
6038:91B285B2 DEFW of 2 words
603C:8ABDDDBB DEFW of 2 words
6040:18320F32 DEFW of 2 words
6044:C8B5A8B5 DEFW of 2 words
6048:3A2D392D DEFW of 2 words
604C:2FAB2EAB DEFW of 2 words
6050:EA2DE82D DEFW of 2 words
6054:00B1FBB0 DEFW of 2 words
6058:8EB282B2 DEFW of 2 words
605C:862D842D DEFW of 2 words
6060:C22AC12A DEFW of 2 words
6064:E0B5BEB5 DEFW of 2 words
6068:A6393139 DEFW of 2 words
606C:9EAD9CAD DEFW of 2 words
6070:AF06AF06 DEFW of 2 words
6074:17B308B3 DEFW of 2 words
6078:A7ACA6AC DEFW of 2 words
607C:BD368A36 DEFW of 2 words
6080:3F332F33 DEFW of 2 words
6084:D2B3BEB3 DEFW of 2 words
6088:4EAB4DAB DEFW of 2 words
608C:F730F230 DEFW of 2 words
6090:442F402F DEFW of 2 words
6094:992A982A DEFW of 2 words
6098:21B11BB1 DEFW of 2 words
609C:1B3A8839 DEFW of 2 words
60A0:16B013B0 DEFW of 2 words
60A4:0F2D0E2D DEFW of 2 words
60A8:8DB47DB4 DEFW of 2 words
60AC:302C2F2C DEFW of 2 words
60B0:C6AAC5AA DEFW of 2 words
60B4:89BDDCBB DEFW of 2 words
60B8:AB386838 DEFW of 2 words
60BC:54BB58BA DEFW of 2 words
60C0:60AC5FAC DEFW of 2 words
60C4:4BB43EB4 DEFW of 2 words
60C8:5CAF58AF DEFW of 2 words
60CC:87B659B6 DEFW of 2 words
60D0:97B487B4 DEFW of 2 words
60D4:DE2ADD2A DEFW of 2 words
60D8:36B130B1 DEFW of 2 words
60DC:A3319C31 DEFW of 2 words
60E0:E734D334 DEFW of 2 words
60E4:E31DE31D DEFW of 2 words
60E8:49B620B6 DEFW of 2 words
60EC:C332B632 DEFW of 2 words
60F0:B9ADB7AD DEFW of 2 words
60F4:713AC539 DEFW of 2 words
60F8:762F722F DEFW of 2 words
60FC:95392439 DEFW of 2 words
6100:19301630 DEFW of 2 words
6104:412B402B DEFW of 2 words
6108:59324E32 DEFW of 2 words
610C:F5B7A2B7 DEFW of 2 words
6110:2DB31EB3 DEFW of 2 words
6114:2D38FA37 DEFW of 2 words
6118:402D3E2D DEFW of 2 words
611C:153EFD3B DEFW of 2 words
6120:052F012F DEFW of 2 words
6124:F3A9F2A9 DEFW of 2 words
6128:ED2BEC2B DEFW of 2 words
612C:5DBAB7B9 DEFW of 2 words
6130:302A2F2A DEFW of 2 words
6134:BFABBEAB DEFW of 2 words
6138:64AA63AA DEFW of 2 words
613C:28B8F2B7 DEFW of 2 words
6140:E43BAC3A DEFW of 2 words
6144:03AC02AC DEFW of 2 words
6148:AD376237 DEFW of 2 words
614C:2F37F236 DEFW of 2 words
6150:21B7E5B6 DEFW of 2 words
6154:BE368B36 DEFW of 2 words
6158:9A338833 DEFW of 2 words
615C:5FB828B8 DEFW of 2 words
6160:A0B757B7 DEFW of 2 words
6164:E7B796B7 DEFW of 2 words
6168:DC3BA83A DEFW of 2 words
616C:02B5EDB4 DEFW of 2 words
6170:0C300930 DEFW of 2 words
6174:253DAE3B DEFW of 2 words
6178:25B50EB5 DEFW of 2 words
617C:50A050A0 DEFW of 2 words
6180:16AE14AE DEFW of 2 words
6184:D3B4C0B4 DEFW of 2 words
6188:6DBB68BA DEFW of 2 words
618C:51BAAEB9 DEFW of 2 words
6190:1936F335 DEFW of 2 words
6194:E733D333 DEFW of 2 words
6198:2D2D2C2D DEFW of 2 words
619C:36AD35AD DEFW of 2 words
61A0:403DBC3B DEFW of 2 words
61A4:45304230 DEFW of 2 words
61A8:3FAA3EAA DEFW of 2 words
61AC:EABBAFBA DEFW of 2 words
61B0:BF368C36 DEFW of 2 words
61B4:9E309A30 DEFW of 2 words
61B8:50AE4DAE DEFW of 2 words
61BC:DABBA7BA DEFW of 2 words
61C0:3E313831 DEFW of 2 words
61C4:CA3DF03B DEFW of 2 words
61C8:8D3DDE3B DEFW of 2 words
61CC:1639C038 DEFW of 2 words
61D0:A2B19BB1 DEFW of 2 words
61D4:8B318431 DEFW of 2 words
61D8:67B82FB8 DEFW of 2 words
61DC:C3BDEFBB DEFW of 2 words
61E0:283EFF3B DEFW of 2 words
61E4:522E4F2E DEFW of 2 words
61E8:6EB835B8 DEFW of 2 words
61EC:ED2CEC2C DEFW of 2 words
61F0:AFB86CB8 DEFW of 2 words
61F4:2F3DB33B DEFW of 2 words
61F8:B630B230 DEFW of 2 words
61FC:CD33B933 DEFW of 2 words
6200:8AB743B7 DEFW of 2 words
6204:F12EEE2E DEFW of 2 words
6208:E9B1E0B1 DEFW of 2 words
620C:20B8E4B7 DEFW of 2 words
6210:13B5FDB4 DEFW of 2 words
6214:7E317731 DEFW of 2 words
6218:29B41DB4 DEFW of 2 words
621C:A1BC53BB DEFW of 2 words
6220:362F322F DEFW of 2 words
6224:2D2C2C2C DEFW of 2 words
6228:BD33AA33 DEFW of 2 words
622C:52B81DB8 DEFW of 2 words
6230:3237F536 DEFW of 2 words
6234:6CAD6AAD DEFW of 2 words
6238:45AA44AA DEFW of 2 words
623C:43323932 DEFW of 2 words
6240:772E742E DEFW of 2 words
6244:79B55EB5 DEFW of 2 words
6248:44352C35 DEFW of 2 words
624C:ECBDF8BB DEFW of 2 words
6250:B9368736 DEFW of 2 words
6254:D90BD90B DEFW of 2 words
6258:3A2E372E DEFW of 2 words
625C:8C328032 DEFW of 2 words
6260:55B53CB5 DEFW of 2 words
6264:E3B95FB9 DEFW of 2 words
6268:C9B5A9B5 DEFW of 2 words
626C:FD2EF92E DEFW of 2 words
6270:E133CD33 DEFW of 2 words
6274:C32AC22A DEFW of 2 words
6278:41B529B5 DEFW of 2 words
627C:81AE7EAE DEFW of 2 words
6280:F1B5CEB5 DEFW of 2 words
6284:CEA9CDA9 DEFW of 2 words
6288:88B65AB6 DEFW of 2 words
628C:B32AB22A DEFW of 2 words
6290:36B805B8 DEFW of 2 words
6294:49AB48AB DEFW of 2 words
6298:5BBB5DBA DEFW of 2 words
629C:AC386938 DEFW of 2 words
62A0:39933993 DEFW of 2 words
62A4:6BBB66BA DEFW of 2 words
62A8:153DA43B DEFW of 2 words
62AC:4CBDC2BB DEFW of 2 words
62B0:92B08EB0 DEFW of 2 words
62B4:20BEFEBB DEFW of 2 words
62B8:7A2A792A DEFW of 2 words
62BC:CE388538 DEFW of 2 words
62C0:3B323132 DEFW of 2 words
62C4:2E351735 DEFW of 2 words
62C8:3B3A9F39 DEFW of 2 words
62CC:983ADF39 DEFW of 2 words
62D0:C93A003A DEFW of 2 words
62D4:193EFE3B DEFW of 2 words
62D8:A32F9E2F DEFW of 2 words
62DC:52324832 DEFW of 2 words
62E0:B02BAF2B DEFW of 2 words
62E4:42B9E3B8 DEFW of 2 words
62E8:22BB3ABA DEFW of 2 words
62EC:E3B5C1B5 DEFW of 2 words
62F0:DDBA0DBA DEFW of 2 words
62F4:E0AFDBAF DEFW of 2 words
62F8:D7B6A2B6 DEFW of 2 words
62FC:4C353335 DEFW of 2 words
6300:C52AC42A DEFW of 2 words
6304:0F8E0F8E DEFW of 2 words
6308:D4B69FB6 DEFW of 2 words
630C:D131C931 DEFW of 2 words
6310:3FA73FA7 DEFW of 2 words
6314:8EB37CB3 DEFW of 2 words
6318:D629D529 DEFW of 2 words
631C:10B8C8B7 DEFW of 2 words
6320:D736A236 DEFW of 2 words
6324:50B04DB0 DEFW of 2 words
6328:0335EE34 DEFW of 2 words
632C:7FB563B5 DEFW of 2 words
6330:E934D534 DEFW of 2 words
6334:EBBA16BA DEFW of 2 words
6338:38BDB8BB DEFW of 2 words
633C:6DAC6CAC DEFW of 2 words
6340:113A8039 DEFW of 2 words
6344:B82DB62D DEFW of 2 words
6348:8A3C403B DEFW of 2 words
634C:04B5EFB4 DEFW of 2 words
6350:83AF7FAF DEFW of 2 words
6354:17B20EB2 DEFW of 2 words
6358:5CAD5AAD DEFW of 2 words
635C:25AE23AE DEFW of 2 words
6360:A02B9F2B DEFW of 2 words
6364:4A3B523A DEFW of 2 words
6368:4F362536 DEFW of 2 words
636C:95AA94AA DEFW of 2 words
6370:C735A735 DEFW of 2 words
6374:B0B592B5 DEFW of 2 words
6378:67B160B1 DEFW of 2 words
637C:93BB7EBA DEFW of 2 words
6380:6CAC6BAC DEFW of 2 words
6384:70B644B6 DEFW of 2 words
6388:5AB824B8 DEFW of 2 words
638C:CFABCEAB DEFW of 2 words
6390:72336133 DEFW of 2 words
6394:7C2F782F DEFW of 2 words
6398:2D2F292F DEFW of 2 words
639C:98375037 DEFW of 2 words
63A0:CBACCAAC DEFW of 2 words
63A4:7FB73AB7 DEFW of 2 words
63A8:D6ABD5AB DEFW of 2 words
63AC:BC2ABB2A DEFW of 2 words
63B0:8DB089B0 DEFW of 2 words
63B4:343CF13A DEFW of 2 words
63B8:1E2A1D2A DEFW of 2 words
63BC:4AB9E9B8 DEFW of 2 words
63C0:033B263A DEFW of 2 words
63C4:EB30E630 DEFW of 2 words
63C8:C48DC48D DEFW of 2 words
63CC:BD3B963A DEFW of 2 words
63D0:F0B5CDB5 DEFW of 2 words
63D4:50B246B2 DEFW of 2 words
63D8:DEBA0EBA DEFW of 2 words
63DC:58BB5BBA DEFW of 2 words
63E0:CCBC74BB DEFW of 2 words
63E4:7A346B34 DEFW of 2 words
63E8:B4B4A3B4 DEFW of 2 words
63EC:D8B5B7B5 DEFW of 2 words
63F0:C4BAFDB9 DEFW of 2 words
63F4:05AD04AD DEFW of 2 words
63F8:B0359235 DEFW of 2 words
63FC:2FAF2BAF DEFW of 2 words
6400:97BC4BBB DEFW of 2 words
6404:3F380D38 DEFW of 2 words
6408:95289528 DEFW of 2 words
640C:42B52AB5 DEFW of 2 words
6410:FE38AD38 DEFW of 2 words
6414:BA3B953A DEFW of 2 words
6418:26B8EEB7 DEFW of 2 words
641C:FB29FA29 DEFW of 2 words
6420:C52FC02F DEFW of 2 words
6424:FDBC96BB DEFW of 2 words
6428:02B7C9B6 DEFW of 2 words
642C:318D318D DEFW of 2 words
6430:0C2F082F DEFW of 2 words
6434:E83A143A DEFW of 2 words
6438:57AB56AB DEFW of 2 words
643C:B7BB93BA DEFW of 2 words
6440:87374137 DEFW of 2 words
6444:5CAB5BAB DEFW of 2 words
6448:38AE35AE DEFW of 2 words
644C:6C345E34 DEFW of 2 words
6450:70827082 DEFW of 2 words
6454:0C3EFC3B DEFW of 2 words
6458:97B190B1 DEFW of 2 words
645C:24321A32 DEFW of 2 words
6460:D703D703 DEFW of 2 words
6464:1235FC34 DEFW of 2 words
6468:C63B9B3A DEFW of 2 words
646C:933C483B DEFW of 2 words
6470:B53C633B DEFW of 2 words
6474:329A329A DEFW of 2 words
6478:7B384038 DEFW of 2 words
647C:2A37ED36 DEFW of 2 words
6480:69306530 DEFW of 2 words
6484:75316E31 DEFW of 2 words
6488:4D304A30 DEFW of 2 words
648C:CFB3BBB3 DEFW of 2 words
6490:67AB66AB DEFW of 2 words
6494:B29EB29E DEFW of 2 words
6498:F33C8F3B DEFW of 2 words
649C:FABDFABB DEFW of 2 words
64A0:97AF92AF DEFW of 2 words
64A4:2AAC29AC DEFW of 2 words
64A8:8FBDDEBB DEFW of 2 words
64AC:0B3A7C39 DEFW of 2 words
64B0:C0ACBFAC DEFW of 2 words
64B4:A3B862B8 DEFW of 2 words
64B8:088F088F DEFW of 2 words
64BC:EC2CEB2C DEFW of 2 words
64C0:63B721B7 DEFW of 2 words
64C4:2F2A2E2A DEFW of 2 words
64C8:69390239 DEFW of 2 words
64CC:7AAA79AA DEFW of 2 words
64D0:CFBA04BA DEFW of 2 words
64D4:533C0F3B DEFW of 2 words
64D8:BA376E37 DEFW of 2 words
64DC:C9369536 DEFW of 2 words
64E0:98949894 DEFW of 2 words
64E4:FDB972B9 DEFW of 2 words
64E8:882E852E DEFW of 2 words
64EC:BAB4A8B4 DEFW of 2 words
64F0:1F311931 DEFW of 2 words
64F4:1F301C30 DEFW of 2 words
64F8:D533C133 DEFW of 2 words
64FC:FCB6C4B6 DEFW of 2 words
6500:39313331 DEFW of 2 words
6504:E5B4D2B4 DEFW of 2 words
6508:3E3E003C DEFW of 2 words
650C:F233DD33 DEFW of 2 words
6510:B832AB32 DEFW of 2 words
6514:B8BAF5B9 DEFW of 2 words
6518:40343334 DEFW of 2 words
651C:4C2D4A2D DEFW of 2 words
6520:8A3DDD3B DEFW of 2 words
6524:F52FF02F DEFW of 2 words
6528:302F2C2F DEFW of 2 words
652C:D33BA33A DEFW of 2 words
6530:6BBDD0BB DEFW of 2 words
6534:2FB320B3 DEFW of 2 words
6538:DC3DF53B DEFW of 2 words
653C:31B227B2 DEFW of 2 words
6540:EB3BB03A DEFW of 2 words
6544:C434B234 DEFW of 2 words
6548:EABDF7BB DEFW of 2 words
654C:94374C37 DEFW of 2 words
6550:F532E732 DEFW of 2 words
6554:24222422 DEFW of 2 words
6558:B834A734 DEFW of 2 words
655C:C6B693B6 DEFW of 2 words
6560:EBAFE6AF DEFW of 2 words
6564:6BB63FB6 DEFW of 2 words
6568:75AF71AF DEFW of 2 words
656C:B5B871B8 DEFW of 2 words
6570:40B330B3 DEFW of 2 words
6574:5A0C5A0C DEFW of 2 words
6578:A9B867B8 DEFW of 2 words
657C:77BC30BB DEFW of 2 words
6580:4C3B543A DEFW of 2 words
6584:50B340B3 DEFW of 2 words
6588:41323732 DEFW of 2 words
658C:1EBCDBBA DEFW of 2 words
6590:3ABB48BA DEFW of 2 words
6594:AAAEA7AE DEFW of 2 words
6598:C7BDF0BB DEFW of 2 words
659C:D6ACD5AC DEFW of 2 words
65A0:1ABCD7BA DEFW of 2 words
65A4:D833C433 DEFW of 2 words
65A8:B93B943A DEFW of 2 words
65AC:29B21FB2 DEFW of 2 words
65B0:162C152C DEFW of 2 words
65B4:03180318 DEFW of 2 words
65B8:8C347C34 DEFW of 2 words
65BC:CCB3B8B3 DEFW of 2 words
65C0:34AE32AE DEFW of 2 words
65C4:FC3BB93A DEFW of 2 words
65C8:59B349B3 DEFW of 2 words
65CC:B2BDEABB DEFW of 2 words
65D0:B2B0AEB0 DEFW of 2 words
65D4:BC22BC22 DEFW of 2 words
65D8:903C453B DEFW of 2 words
65DC:3B2E382E DEFW of 2 words
65E0:11B406B4 DEFW of 2 words
65E4:3CB614B6 DEFW of 2 words
65E8:183DA63B DEFW of 2 words
65EC:7D2C7C2C DEFW of 2 words
65F0:16350035 DEFW of 2 words
65F4:B4BC62BB DEFW of 2 words
65F8:FF2EFB2E DEFW of 2 words
65FC:2438EB37 DEFW of 2 words
6600:B7AEB4AE DEFW of 2 words
6604:41AA40AA DEFW of 2 words
6608:A7AFA2AF DEFW of 2 words
660C:6E136E13 DEFW of 2 words
6610:64325932 DEFW of 2 words
6614:19971997 DEFW of 2 words
6618:62B257B2 DEFW of 2 words
661C:F22DF02D DEFW of 2 words
6620:AF2AAE2A DEFW of 2 words
6624:47AB46AB DEFW of 2 words
6628:D4388A38 DEFW of 2 words
662C:E7B3D3B3 DEFW of 2 words
6630:41B331B3 DEFW of 2 words
6634:113DA23B DEFW of 2 words
6638:442E412E DEFW of 2 words
663C:C2ADC0AD DEFW of 2 words
6640:FA36C236 DEFW of 2 words
6644:D4AFCFAF DEFW of 2 words
6648:E833D333 DEFW of 2 words
664C:49AE46AE DEFW of 2 words
6650:B0AFABAF DEFW of 2 words
6654:1BBB35BA DEFW of 2 words
6658:532A522A DEFW of 2 words
665C:B33AF139 DEFW of 2 words
6660:2FB423B4 DEFW of 2 words
6664:43370437 DEFW of 2 words
6668:7FB913B9 DEFW of 2 words
666C:AEB86BB8 DEFW of 2 words
6670:A1338F33 DEFW of 2 words
6674:C62DC42D DEFW of 2 words
6678:0134ED33 DEFW of 2 words
667C:83317C31 DEFW of 2 words
6680:FE36C636 DEFW of 2 words
6684:6CB904B9 DEFW of 2 words
6688:4D2F492F DEFW of 2 words
668C:D9A9D8A9 DEFW of 2 words
6690:19AE17AE DEFW of 2 words
6694:902C8F2C DEFW of 2 words
6698:55B820B8 DEFW of 2 words
669C:96309230 DEFW of 2 words
66A0:7EBC36BB DEFW of 2 words
66A4:A82EA52E DEFW of 2 words
66A8:47B61EB6 DEFW of 2 words
66AC:4BAE48AE DEFW of 2 words
66B0:72316B31 DEFW of 2 words
66B4:B62EB32E DEFW of 2 words
66B8:993DE23B DEFW of 2 words
66BC:7ABC33BB DEFW of 2 words
66C0:89347A34 DEFW of 2 words
66C4:18BDA6BB DEFW of 2 words
66C8:20B9C8B8 DEFW of 2 words
66CC:30312A31 DEFW of 2 words
66D0:86AE83AE DEFW of 2 words
66D4:62325732 DEFW of 2 words
66D8:72B463B4 DEFW of 2 words
66DC:00ADFFAC DEFW of 2 words
66E0:ACB2A0B2 DEFW of 2 words
66E4:A7329B32 DEFW of 2 words
66E8:299B299B DEFW of 2 words
66EC:4FB149B1 DEFW of 2 words
66F0:0AAB09AB DEFW of 2 words
66F4:04B8B3B7 DEFW of 2 words
66F8:EB29EA29 DEFW of 2 words
66FC:1E3DAA3B DEFW of 2 words
6700:49BC06BB DEFW of 2 words
6704:DA3C7E3B DEFW of 2 words
6708:BF3AF939 DEFW of 2 words
670C:37351F35 DEFW of 2 words
6710:EAB0E5B0 DEFW of 2 words
6714:BD359E35 DEFW of 2 words
6718:07AE05AE DEFW of 2 words
671C:B7ABB6AB DEFW of 2 words
6720:E22FDD2F DEFW of 2 words
6724:B9AFB4AF DEFW of 2 words
6728:CBB5ABB5 DEFW of 2 words
672C:153CD23A DEFW of 2 words
6730:72BB6BBA DEFW of 2 words
6734:093EFC3B DEFW of 2 words
6738:84B917B9 DEFW of 2 words
673C:CE378037 DEFW of 2 words
6740:D2B1CAB1 DEFW of 2 words
6744:2D802D80 DEFW of 2 words
6748:BB2CBA2C DEFW of 2 words
674C:84288428 DEFW of 2 words
6750:71B16AB1 DEFW of 2 words
6754:A82AA72A DEFW of 2 words
6758:67372437 DEFW of 2 words
675C:902B8F2B DEFW of 2 words
6760:1ABEFEBB DEFW of 2 words
6764:C933B533 DEFW of 2 words
6768:41B80EB8 DEFW of 2 words
676C:53BC0FBB DEFW of 2 words
6770:43B13DB1 DEFW of 2 words
6774:ABB868B8 DEFW of 2 words
6778:40313A31 DEFW of 2 words
677C:8F374837 DEFW of 2 words
6780:62AB61AB DEFW of 2 words
6784:59AC58AC DEFW of 2 words
6788:CF2FCA2F DEFW of 2 words
678C:712E6E2E DEFW of 2 words
6790:9CB929B9 DEFW of 2 words
6794:942E912E DEFW of 2 words
6798:E0BDF5BB DEFW of 2 words
679C:61315B31 DEFW of 2 words
67A0:28BA91B9 DEFW of 2 words
67A4:0B33FC32 DEFW of 2 words
67A8:F3B1EAB1 DEFW of 2 words
67AC:7E197E19 DEFW of 2 words
67B0:7F2E7C2E DEFW of 2 words
67B4:D701D701 DEFW of 2 words
67B8:E5BA12BA DEFW of 2 words
67BC:2C39D238 DEFW of 2 words
67C0:D735B635 DEFW of 2 words
67C4:56BC12BB DEFW of 2 words
67C8:E6BBADBA DEFW of 2 words
67CC:9D2C9C2C DEFW of 2 words
67D0:F8B7A5B7 DEFW of 2 words
67D4:48370837 DEFW of 2 words
67D8:81AD7FAD DEFW of 2 words
67DC:44BB4FBA DEFW of 2 words
67E0:9EAF99AF DEFW of 2 words
67E4:3E361636 DEFW of 2 words
67E8:9D358035 DEFW of 2 words
67EC:DAB0D5B0 DEFW of 2 words
67F0:AE2FA92F DEFW of 2 words
67F4:AEBB8EBA DEFW of 2 words
67F8:A3BDE5BB DEFW of 2 words
67FC:CD89CD89 DEFW of 2 words
6800:B72FB22F DEFW of 2 words
6804:B6ABB5AB DEFW of 2 words
6808:4FB536B5 DEFW of 2 words
680C:4C39EB38 DEFW of 2 words
6810:CEB69AB6 DEFW of 2 words
6814:8AAA89AA DEFW of 2 words
6818:E02BDF2B DEFW of 2 words
681C:A5B494B4 DEFW of 2 words
6820:BFB879B8 DEFW of 2 words
6824:2AB603B6 DEFW of 2 words
6828:F3B96AB9 DEFW of 2 words
682C:973ADF39 DEFW of 2 words
6830:30213021 DEFW of 2 words
6834:F7BBB6BA DEFW of 2 words
6838:2BBA93B9 DEFW of 2 words
683C:3939DC38 DEFW of 2 words
6840:DCBDF5BB DEFW of 2 words
6844:792C782C DEFW of 2 words
6848:85BC3CBB DEFW of 2 words
684C:E1ACE0AC DEFW of 2 words
6850:9D3B843A DEFW of 2 words
6854:B6359735 DEFW of 2 words
6858:8BB087B0 DEFW of 2 words
685C:1837DD36 DEFW of 2 words
6860:34B803B8 DEFW of 2 words
6864:29B9CFB8 DEFW of 2 words
6868:582D562D DEFW of 2 words
686C:08850885 DEFW of 2 words
6870:323E003C DEFW of 2 words
6874:CABA01BA DEFW of 2 words
6878:58B44AB4 DEFW of 2 words
687C:9CAC9BAC DEFW of 2 words
6880:9A219A21 DEFW of 2 words
6884:48B045B0 DEFW of 2 words
6888:D22FCD2F DEFW of 2 words
688C:57AD55AD DEFW of 2 words
6890:16BDA5BB DEFW of 2 words
6894:F933E433 DEFW of 2 words
6898:28BDAFBB DEFW of 2 words
689C:60363536 DEFW of 2 words
68A0:5C363136 DEFW of 2 words
68A4:6B3DD03B DEFW of 2 words
68A8:60BB60BA DEFW of 2 words
68AC:34BB45BA DEFW of 2 words
68B0:FE2DFC2D DEFW of 2 words
68B4:C1BC6CBB DEFW of 2 words
68B8:54AB53AB DEFW of 2 words
68BC:89374237 DEFW of 2 words
68C0:D633C233 DEFW of 2 words
68C4:72AE6FAE DEFW of 2 words
68C8:84BC3BBB DEFW of 2 words
68CC:E52DE32D DEFW of 2 words
68D0:A72EA42E DEFW of 2 words
68D4:68335733 DEFW of 2 words
68D8:4F3AAD39 DEFW of 2 words
68DC:3AAA39AA DEFW of 2 words
68E0:4CB33CB3 DEFW of 2 words
68E4:DEB1D6B1 DEFW of 2 words
68E8:E031D831 DEFW of 2 words
68EC:D1BDF2BB DEFW of 2 words
68F0:B22EAF2E DEFW of 2 words
68F4:7EB843B8 DEFW of 2 words
68F8:76B072B0 DEFW of 2 words
68FC:3DAE3AAE DEFW of 2 words
6900:6CAA6BAA DEFW of 2 words
6904:C3B5A3B5 DEFW of 2 words
6908:2C351535 DEFW of 2 words
690C:892B882B DEFW of 2 words
6910:A7ABA6AB DEFW of 2 words
6914:E035BE35 DEFW of 2 words
6918:58BDC8BB DEFW of 2 words
691C:E03BAA3A DEFW of 2 words
6920:20331133 DEFW of 2 words
6924:27AB26AB DEFW of 2 words
6928:44BAA5B9 DEFW of 2 words
692C:09320032 DEFW of 2 words
6930:5FB05CB0 DEFW of 2 words
6934:0E2A0D2A DEFW of 2 words
6938:BD3C693B DEFW of 2 words
693C:CF2DCD2D DEFW of 2 words
6940:92AB91AB DEFW of 2 words
6944:79336833 DEFW of 2 words
6948:66A466A4 DEFW of 2 words
694C:6A3AC039 DEFW of 2 words
6950:60AE5DAE DEFW of 2 words
6954:07B4F8B3 DEFW of 2 words
6958:182C172C DEFW of 2 words
695C:0EBDA0BB DEFW of 2 words
6960:F8B96EB9 DEFW of 2 words
6964:E22DE02D DEFW of 2 words
6968:52AB51AB DEFW of 2 words
696C:82A882A8 DEFW of 2 words
6970:B8BB93BA DEFW of 2 words
6974:C12FBC2F DEFW of 2 words
6978:8E2D8C2D DEFW of 2 words
697C:F12CF02C DEFW of 2 words
6980:1FB215B2 DEFW of 2 words
6984:8DB186B1 DEFW of 2 words
6988:2EA12EA1 DEFW of 2 words
698C:C52DC32D DEFW of 2 words
6990:87AA86AA DEFW of 2 words
6994:B030AC30 DEFW of 2 words
6998:78B83DB8 DEFW of 2 words
699C:C930C430 DEFW of 2 words
69A0:642F602F DEFW of 2 words
69A4:F0B79EB7 DEFW of 2 words
69A8:B1ADAFAD DEFW of 2 words
69AC:9DAC9CAC DEFW of 2 words
69B0:C9ACC8AC DEFW of 2 words
69B4:3B380938 DEFW of 2 words
69B8:A82CA72C DEFW of 2 words
69BC:2AAD29AD DEFW of 2 words
69C0:9A3B823A DEFW of 2 words
69C4:B7B76BB7 DEFW of 2 words
69C8:423DBD3B DEFW of 2 words
69CC:2B3CE83A DEFW of 2 words
69D0:C8B3B4B3 DEFW of 2 words
69D4:80BC38BB DEFW of 2 words
69D8:C4AEC1AE DEFW of 2 words
69DC:54B344B3 DEFW of 2 words
69E0:E536AF36 DEFW of 2 words
69E4:77317031 DEFW of 2 words
69E8:98189818 DEFW of 2 words
69EC:AA329E32 DEFW of 2 words
69F0:E730E230 DEFW of 2 words
69F4:85327932 DEFW of 2 words
69F8:11AF0DAF DEFW of 2 words
69FC:77B468B4 DEFW of 2 words
6A00:B9B874B8 DEFW of 2 words
6A04:57BC13BB DEFW of 2 words
6A08:B63DEB3B DEFW of 2 words
6A0C:FE30F930 DEFW of 2 words
6A10:A4392F39 DEFW of 2 words
6A14:5EAD5CAD DEFW of 2 words
6A18:A7375D37 DEFW of 2 words
6A1C:4D333D33 DEFW of 2 words
6A20:F9B3E4B3 DEFW of 2 words
6A24:80838083 DEFW of 2 words
6A28:3E2A3D2A DEFW of 2 words
6A2C:022A012A DEFW of 2 words
6A30:AF3DE93B DEFW of 2 words
6A34:F335D035 DEFW of 2 words
6A38:DC31D431 DEFW of 2 words
6A3C:82BDDABB DEFW of 2 words
6A40:C6B5A6B5 DEFW of 2 words
6A44:572F532F DEFW of 2 words
6A48:512C502C DEFW of 2 words
6A4C:82347334 DEFW of 2 words
6A50:5D2E5A2E DEFW of 2 words
6A54:3AAC39AC DEFW of 2 words
6A58:42343534 DEFW of 2 words
6A5C:DAADD8AD DEFW of 2 words
6A60:B7BC65BB DEFW of 2 words
6A64:293A9239 DEFW of 2 words
6A68:262D252D DEFW of 2 words
6A6C:363E003C DEFW of 2 words
6A70:3AB522B5 DEFW of 2 words
6A74:47370737 DEFW of 2 words
6A78:EDB79BB7 DEFW of 2 words
6A7C:7FBACEB9 DEFW of 2 words
6A80:EBB6B4B6 DEFW of 2 words
6A84:5DB252B2 DEFW of 2 words
6A88:5FAD5DAD DEFW of 2 words
6A8C:DAB3C6B3 DEFW of 2 words
6A90:3E2F3A2F DEFW of 2 words
6A94:1737DC36 DEFW of 2 words
6A98:CBB94DB9 DEFW of 2 words
6A9C:A1B758B7 DEFW of 2 words
6AA0:16AA15AA DEFW of 2 words
6AA4:44333433 DEFW of 2 words
6AA8:722C712C DEFW of 2 words
6AAC:C0BAFAB9 DEFW of 2 words
6AB0:5D2A5C2A DEFW of 2 words
6AB4:F33BB43A DEFW of 2 words
6AB8:AA17AA17 DEFW of 2 words
6ABC:E0B6AAB6 DEFW of 2 words
6AC0:AC376237 DEFW of 2 words
6AC4:25B022B0 DEFW of 2 words
6AC8:6DB905B9 DEFW of 2 words
6ACC:7BBC34BB DEFW of 2 words
6AD0:4C381838 DEFW of 2 words
6AD4:95899589 DEFW of 2 words
6AD8:7C356135 DEFW of 2 words
6ADC:5D2F592F DEFW of 2 words
6AE0:382A372A DEFW of 2 words
6AE4:EBADE9AD DEFW of 2 words
6AE8:A8B29CB2 DEFW of 2 words
6AEC:5AB9F6B8 DEFW of 2 words
6AF0:C8ADC6AD DEFW of 2 words
6AF4:E632D832 DEFW of 2 words
6AF8:91392139 DEFW of 2 words
6AFC:A8BB8ABA DEFW of 2 words
6B00:D229D129 DEFW of 2 words
6B04:C633B233 DEFW of 2 words
6B08:DC2BDB2B DEFW of 2 words
6B0C:753DD43B DEFW of 2 words
6B10:F92FF42F DEFW of 2 words
6B14:153B313A DEFW of 2 words
6B18:C034AE34 DEFW of 2 words
6B1C:C43C6E3B DEFW of 2 words
6B20:C1BAFBB9 DEFW of 2 words
6B24:26AE24AE DEFW of 2 words
6B28:28B122B1 DEFW of 2 words
6B2C:E6B1DDB1 DEFW of 2 words
6B30:98B386B3 DEFW of 2 words
6B34:FE29FD29 DEFW of 2 words
6B38:82B17BB1 DEFW of 2 words
6B3C:DA34C734 DEFW of 2 words
6B40:C4B777B7 DEFW of 2 words
6B44:B8BDECBB DEFW of 2 words
6B48:D831D031 DEFW of 2 words
6B4C:AAB1A2B1 DEFW of 2 words
6B50:A61CA61C DEFW of 2 words
6B54:0DBB2CBA DEFW of 2 words
6B58:543AB039 DEFW of 2 words
6B5C:63B9FDB8 DEFW of 2 words
6B60:24AD23AD DEFW of 2 words
6B64:D1BA05BA DEFW of 2 words
6B68:29341D34 DEFW of 2 words
6B6C:002AFF29 DEFW of 2 words
6B70:4E304B30 DEFW of 2 words
6B74:533DC53B DEFW of 2 words
6B78:08AA07AA DEFW of 2 words
6B7C:2C360536 DEFW of 2 words
6B80:7CBACCB9 DEFW of 2 words
6B84:AC3AED39 DEFW of 2 words
6B88:4EA84EA8 DEFW of 2 words
6B8C:53AD51AD DEFW of 2 words
6B90:933DE03B DEFW of 2 words
6B94:7C317531 DEFW of 2 words
6B98:FB2FF62F DEFW of 2 words
6B9C:5D0A5D0A DEFW of 2 words
6BA0:3CAC3BAC DEFW of 2 words
6BA4:EBAEE8AE DEFW of 2 words
6BA8:4F344234 DEFW of 2 words
6BAC:16BEFEBB DEFW of 2 words
6BB0:07AC06AC DEFW of 2 words
6BB4:24B50DB5 DEFW of 2 words
6BB8:D4378537 DEFW of 2 words
6BBC:82373C37 DEFW of 2 words
6BC0:ADAFA8AF DEFW of 2 words
6BC4:DAB88FB8 DEFW of 2 words
6BC8:8CB65EB6 DEFW of 2 words
6BCC:D7378837 DEFW of 2 words
6BD0:B333A033 DEFW of 2 words
6BD4:FFB8ADB8 DEFW of 2 words
6BD8:72917291 DEFW of 2 words
6BDC:6EA86EA8 DEFW of 2 words
6BE0:6E3AC239 DEFW of 2 words
6BE4:2CB420B4 DEFW of 2 words
6BE8:933ADC39 DEFW of 2 words
6BEC:753C2E3B DEFW of 2 words
6BF0:D536A036 DEFW of 2 words
6BF4:B0367F36 DEFW of 2 words
6BF8:26BEFFBB DEFW of 2 words
6BFC:6ABAC0B9 DEFW of 2 words
6C00:27341B34 DEFW of 2 words
6C04:2CB029B0 DEFW of 2 words
6C08:26B600B6 DEFW of 2 words
6C0C:57344934 DEFW of 2 words
6C10:53BB58BA DEFW of 2 words
6C14:72BC2CBB DEFW of 2 words
6C18:EF2FEA2F DEFW of 2 words
6C1C:48B23EB2 DEFW of 2 words
6C20:A5ABA4AB DEFW of 2 words
6C24:D43A073A DEFW of 2 words
6C28:78B469B4 DEFW of 2 words
6C2C:8BB744B7 DEFW of 2 words
6C30:47B141B1 DEFW of 2 words
6C34:93B08FB0 DEFW of 2 words
6C38:FFB2F1B2 DEFW of 2 words
6C3C:D5A9D4A9 DEFW of 2 words
6C40:522F4E2F DEFW of 2 words
6C44:B794B794 DEFW of 2 words
6C48:02BB25BA DEFW of 2 words
6C4C:452A442A DEFW of 2 words
6C50:A3AEA0AE DEFW of 2 words
6C54:6E2C6D2C DEFW of 2 words
6C58:482E452E DEFW of 2 words
6C5C:15B5FFB4 DEFW of 2 words
6C60:A2367236 DEFW of 2 words
6C64:40303D30 DEFW of 2 words
6C68:7E391239 DEFW of 2 words
6C6C:61371F37 DEFW of 2 words
6C70:303CED3A DEFW of 2 words
6C74:FAB8A9B8 DEFW of 2 words
6C78:39352135 DEFW of 2 words
6C7C:ED2EEA2E DEFW of 2 words
6C80:D42FCF2F DEFW of 2 words
6C84:2ABDB0BB DEFW of 2 words
6C88:77B26CB2 DEFW of 2 words
6C8C:4E2D4C2D DEFW of 2 words
6C90:D5B6A0B6 DEFW of 2 words
6C94:C1ABC0AB DEFW of 2 words
6C98:66B062B0 DEFW of 2 words
6C9C:EEBC8CBB DEFW of 2 words
6CA0:EDAAECAA DEFW of 2 words
6CA4:54AA53AA DEFW of 2 words
6CA8:CC3DF13B DEFW of 2 words
6CAC:12340734 DEFW of 2 words
6CB0:E629E529 DEFW of 2 words
6CB4:5AB349B3 DEFW of 2 words
6CB8:5C315631 DEFW of 2 words
6CBC:B9AAB8AA DEFW of 2 words
6CC0:54AC53AC DEFW of 2 words
6CC4:0F330033 DEFW of 2 words
6CC8:563B5A3A DEFW of 2 words
6CCC:7C2E792E DEFW of 2 words
6CD0:3ABA9EB9 DEFW of 2 words
6CD4:E22AE12A DEFW of 2 words
6CD8:D936A436 DEFW of 2 words
6CDC:CD30C830 DEFW of 2 words
6CE0:17AE15AE DEFW of 2 words
6CE4:25B419B4 DEFW of 2 words
6CE8:693DCF3B DEFW of 2 words
6CEC:8E318731 DEFW of 2 words
6CF0:38BB47BA DEFW of 2 words
6CF4:D6B5B5B5 DEFW of 2 words
6CF8:7F3DD83B DEFW of 2 words
6CFC:9CA19CA1 DEFW of 2 words
6D00:43B436B4 DEFW of 2 words
6D04:513B573A DEFW of 2 words
6D08:C4B4B2B4 DEFW of 2 words
6D0C:532D512D DEFW of 2 words
6D10:AFB0ABB0 DEFW of 2 words
6D14:F5B2E7B2 DEFW of 2 words
6D18:6C355235 DEFW of 2 words
6D1C:12BB2FBA DEFW of 2 words
6D20:43AA42AA DEFW of 2 words
6D24:5D39F838 DEFW of 2 words
6D28:28B511B5 DEFW of 2 words
6D2C:32B323B3 DEFW of 2 words
6D30:42303F30 DEFW of 2 words
6D34:2DAA2CAA DEFW of 2 words
6D38:56353D35 DEFW of 2 words
6D3C:ACB935B9 DEFW of 2 words
6D40:D4B88AB8 DEFW of 2 words
6D44:6A383238 DEFW of 2 words
6D48:ABAAAAAA DEFW of 2 words
6D4C:43B040B0 DEFW of 2 words
6D50:B3AAB2AA DEFW of 2 words
6D54:542A532A DEFW of 2 words
6D58:0D35F834 DEFW of 2 words
6D5C:FDB4E8B4 DEFW of 2 words
6D60:21BB39BA DEFW of 2 words
6D64:963C4A3B DEFW of 2 words
6D68:E72DE52D DEFW of 2 words
6D6C:782E752E DEFW of 2 words
6D70:21BDABBB DEFW of 2 words
6D74:9D2B9C2B DEFW of 2 words
6D78:89391B39 DEFW of 2 words
6D7C:96B384B3 DEFW of 2 words
6D80:C6394939 DEFW of 2 words
6D84:D1B2C4B2 DEFW of 2 words
6D88:AD3AED39 DEFW of 2 words
6D8C:66306230 DEFW of 2 words
6D90:16B9C0B8 DEFW of 2 words
6D94:15BEFDBB DEFW of 2 words
6D98:7AB55FB5 DEFW of 2 words
6D9C:44AA43AA DEFW of 2 words
6DA0:B82FB32F DEFW of 2 words
6DA4:5B354235 DEFW of 2 words
6DA8:67AA66AA DEFW of 2 words
6DAC:92B922B9 DEFW of 2 words
6DB0:CC8ECC8E DEFW of 2 words
6DB4:C0AFBBAF DEFW of 2 words
6DB8:A3B75AB7 DEFW of 2 words
6DBC:8CBB7ABA DEFW of 2 words
6DC0:2BB9D1B8 DEFW of 2 words
6DC4:BB359C35 DEFW of 2 words
6DC8:FCB1F3B1 DEFW of 2 words
6DCC:57B821B8 DEFW of 2 words
6DD0:E4B0DFB0 DEFW of 2 words
6DD4:C43B9A3A DEFW of 2 words
6DD8:473C043B DEFW of 2 words
6DDC:57B449B4 DEFW of 2 words
6DE0:7AAD78AD DEFW of 2 words
6DE4:6A3B663A DEFW of 2 words
6DE8:A9349834 DEFW of 2 words
6DEC:2AB027B0 DEFW of 2 words
6DF0:7A317331 DEFW of 2 words
6DF4:95BADDB9 DEFW of 2 words
6DF8:C02BBF2B DEFW of 2 words
6DFC:C0368D36 DEFW of 2 words
6E00:9B392839 DEFW of 2 words
6E04:19B503B5 DEFW of 2 words
6E08:1AB211B2 DEFW of 2 words
6E0C:1ABB34BA DEFW of 2 words
6E10:2CBCE9BA DEFW of 2 words
6E14:39332933 DEFW of 2 words
6E18:65966596 DEFW of 2 words
6E1C:B52AB42A DEFW of 2 words
6E20:142F102F DEFW of 2 words
6E24:4E3C0B3B DEFW of 2 words
6E28:D4B0CFB0 DEFW of 2 words
6E2C:203EFE3B DEFW of 2 words
6E30:5BB155B1 DEFW of 2 words
6E34:953DE13B DEFW of 2 words
6E38:8C357035 DEFW of 2 words
6E3C:26B120B1 DEFW of 2 words
6E40:7EAE7BAE DEFW of 2 words
6E44:64B54AB5 DEFW of 2 words
6E48:E2ADE0AD DEFW of 2 words
6E4C:95B666B6 DEFW of 2 words
6E50:CAB3B6B3 DEFW of 2 words
6E54:27AC26AC DEFW of 2 words
6E58:AB376137 DEFW of 2 words
6E5C:263DAE3B DEFW of 2 words
6E60:D53C7B3B DEFW of 2 words
6E64:CD388538 DEFW of 2 words
6E68:6BAC6AAC DEFW of 2 words
6E6C:CC369836 DEFW of 2 words
6E70:E3BA11BA DEFW of 2 words
6E74:81AF7DAF DEFW of 2 words
6E78:932B922B DEFW of 2 words
6E7C:37B42BB4 DEFW of 2 words
6E80:4C343F34 DEFW of 2 words
6E84:90337E33 DEFW of 2 words
6E88:B7B872B8 DEFW of 2 words
6E8C:0E33FF32 DEFW of 2 words
6E90:0BAF07AF DEFW of 2 words
6E94:97385838 DEFW of 2 words
6E98:50362636 DEFW of 2 words
6E9C:C63DEF3B DEFW of 2 words
6EA0:A03C533B DEFW of 2 words
6EA4:62B15CB1 DEFW of 2 words
6EA8:9BB753B7 DEFW of 2 words
6EAC:34312E31 DEFW of 2 words
6EB0:E435C235 DEFW of 2 words
6EB4:0EB6E9B5 DEFW of 2 words
6EB8:372E352E DEFW of 2 words
6EBC:E3B2D5B2 DEFW of 2 words
6EC0:B2B1AAB1 DEFW of 2 words
6EC4:BAB688B6 DEFW of 2 words
6EC8:3BB523B5 DEFW of 2 words
6ECC:3DB03AB0 DEFW of 2 words
6ED0:56B346B3 DEFW of 2 words
6ED4:122A112A DEFW of 2 words
6ED8:CE30C930 DEFW of 2 words
6EDC:84AF80AF DEFW of 2 words
6EE0:ADB39AB3 DEFW of 2 words
6EE4:B8B0B4B0 DEFW of 2 words
6EE8:14B305B3 DEFW of 2 words
6EEC:45BE00BC DEFW of 2 words
6EF0:6B3AC039 DEFW of 2 words
6EF4:BF3C6B3B DEFW of 2 words
6EF8:80347134 DEFW of 2 words
6EFC:92879287 DEFW of 2 words
6F00:9F2D9D2D DEFW of 2 words
6F04:EE36B736 DEFW of 2 words
6F08:53324832 DEFW of 2 words
6F0C:FEACFDAC DEFW of 2 words
6F10:68306430 DEFW of 2 words
6F14:A22E9F2E DEFW of 2 words
6F18:E635C435 DEFW of 2 words
6F1C:CE31C631 DEFW of 2 words
6F20:B22BB12B DEFW of 2 words
6F24:67325C32 DEFW of 2 words
6F28:103EFD3B DEFW of 2 words
6F2C:FFB5DBB5 DEFW of 2 words
6F30:D2369E36 DEFW of 2 words
6F34:093CC53A DEFW of 2 words
6F38:C23DEE3B DEFW of 2 words
6F3C:892F852F DEFW of 2 words
6F40:F1B2E3B2 DEFW of 2 words
6F44:1CAC1BAC DEFW of 2 words
6F48:A0BAE5B9 DEFW of 2 words
6F4C:A1375837 DEFW of 2 words
6F50:40AD3EAD DEFW of 2 words
6F54:99338733 DEFW of 2 words
6F58:F738A738 DEFW of 2 words
6F5C:16320D32 DEFW of 2 words
6F60:EABA16BA DEFW of 2 words
6F64:013EFB3B DEFW of 2 words
6F68:38B328B3 DEFW of 2 words
6F6C:C82EC52E DEFW of 2 words
6F70:BC34AA34 DEFW of 2 words
6F74:E5B6AFB6 DEFW of 2 words
6F78:3A332A33 DEFW of 2 words
6F7C:49B143B1 DEFW of 2 words
6F80:79326E32 DEFW of 2 words
6F84:243A8E39 DEFW of 2 words
6F88:92BADBB9 DEFW of 2 words
6F8C:47B23DB2 DEFW of 2 words
6F90:6EAF6AAF DEFW of 2 words
6F94:E62DE42D DEFW of 2 words
6F98:61345334 DEFW of 2 words
6F9C:40B80EB8 DEFW of 2 words
6FA0:4B362236 DEFW of 2 words
6FA4:F9396F39 DEFW of 2 words
6FA8:3D332D33 DEFW of 2 words
6FAC:48B814B8 DEFW of 2 words
6FB0:65325A32 DEFW of 2 words
6FB4:38313231 DEFW of 2 words
6FB8:123EFD3B DEFW of 2 words
6FBC:9B375337 DEFW of 2 words
6FC0:ECB4D8B4 DEFW of 2 words
6FC4:5E39F938 DEFW of 2 words
6FC8:B32EB02E DEFW of 2 words
6FCC:F2B6BBB6 DEFW of 2 words
6FD0:63AC62AC DEFW of 2 words
6FD4:1EB6F8B5 DEFW of 2 words
6FD8:48BAA8B9 DEFW of 2 words
6FDC:FCBDFABB DEFW of 2 words
6FE0:7D307930 DEFW of 2 words
6FE4:6BB903B9 DEFW of 2 words
6FE8:83384738 DEFW of 2 words
6FEC:67363C36 DEFW of 2 words
6FF0:3DAA3CAA DEFW of 2 words
6FF4:16AD15AD DEFW of 2 words
6FF8:B62FB12F DEFW of 2 words
6FFC:39AC38AC DEFW of 2 words
7000:D73A093A DEFW of 2 words
7004:54381F38 DEFW of 2 words
7008:5A2F562F DEFW of 2 words
700C:84365636 DEFW of 2 words
7010:742B732B DEFW of 2 words
7014:F129F029 DEFW of 2 words
7018:13AA12AA DEFW of 2 words
701C:AEBAEEB9 DEFW of 2 words
7020:573B5A3A DEFW of 2 words
7024:682B672B DEFW of 2 words
7028:2B38F737 DEFW of 2 words
702C:BBB4A9B4 DEFW of 2 words
7030:82B915B9 DEFW of 2 words
7034:6AB727B7 DEFW of 2 words
7038:13AC12AC DEFW of 2 words
703C:81307D30 DEFW of 2 words
7040:A2392E39 DEFW of 2 words
7044:0DAA0CAA DEFW of 2 words
7048:1F3B383A DEFW of 2 words
704C:22BCDFBA DEFW of 2 words
7050:032B022B DEFW of 2 words
7054:F2BBB4BA DEFW of 2 words
7058:6B326032 DEFW of 2 words
705C:252B242B DEFW of 2 words
7060:5EAF5AAF DEFW of 2 words
7064:5A1E5A1E DEFW of 2 words
7068:67AD65AD DEFW of 2 words
706C:1A2B192B DEFW of 2 words
7070:1B2C1A2C DEFW of 2 words
7074:4EB33EB3 DEFW of 2 words
7078:383DB83B DEFW of 2 words
707C:44304130 DEFW of 2 words
7080:652C642C DEFW of 2 words
7084:38352035 DEFW of 2 words
7088:C73DF03B DEFW of 2 words
708C:8E2E8B2E DEFW of 2 words
7090:56305330 DEFW of 2 words
7094:6E3DD23B DEFW of 2 words
7098:BE33AB33 DEFW of 2 words
709C:D93BA63A DEFW of 2 words
70A0:553AB139 DEFW of 2 words
70A4:FD20FD20 DEFW of 2 words
70A8:C6BB9BBA DEFW of 2 words
70AC:393CF63A DEFW of 2 words
70B0:63305F30 DEFW of 2 words
70B4:6EB06AB0 DEFW of 2 words
70B8:CE369A36 DEFW of 2 words
70BC:233CE03A DEFW of 2 words
70C0:35AE33AE DEFW of 2 words
70C4:5E9A5E9A DEFW of 2 words
70C8:8B347B34 DEFW of 2 words
70CC:59305630 DEFW of 2 words
70D0:8EB747B7 DEFW of 2 words
70D4:59334933 DEFW of 2 words
70D8:29B123B1 DEFW of 2 words
70DC:14B20BB2 DEFW of 2 words
70E0:78247824 DEFW of 2 words
70E4:5C344E34 DEFW of 2 words
70E8:682C672C DEFW of 2 words
70EC:2A39D038 DEFW of 2 words
70F0:52BDC5BB DEFW of 2 words
70F4:452F412F DEFW of 2 words
70F8:A8393239 DEFW of 2 words
70FC:9CAD9AAD DEFW of 2 words
7100:0F37D536 DEFW of 2 words
7104:BEACBDAC DEFW of 2 words
7108:0A2B092B DEFW of 2 words
710C:DC395939 DEFW of 2 words
7110:5AB24FB2 DEFW of 2 words
7114:F7B8A7B8 DEFW of 2 words
7118:5AAC59AC DEFW of 2 words
711C:F734E334 DEFW of 2 words
7120:19B210B2 DEFW of 2 words
7124:812A802A DEFW of 2 words
7128:44313E31 DEFW of 2 words
712C:41AE3EAE DEFW of 2 words
7130:3DB525B5 DEFW of 2 words
7134:B4359535 DEFW of 2 words
7138:FFBBBBBA DEFW of 2 words
713C:C9394B39 DEFW of 2 words
7140:413B4D3A DEFW of 2 words
7144:39183918 DEFW of 2 words
7148:FD3DFA3B DEFW of 2 words
714C:D6BC7BBB DEFW of 2 words
7150:3C313631 DEFW of 2 words
7154:89AC88AC DEFW of 2 words
7158:34AC33AC DEFW of 2 words
715C:BEB878B8 DEFW of 2 words
7160:92089208 DEFW of 2 words
7164:6DAA6CAA DEFW of 2 words
7168:11AE0FAE DEFW of 2 words
716C:013A7539 DEFW of 2 words
7170:3FB527B5 DEFW of 2 words
7174:14330533 DEFW of 2 words
7178:C13B983A DEFW of 2 words
717C:22341634 DEFW of 2 words
7180:F9BBB8BA DEFW of 2 words
7184:B7AAB6AA DEFW of 2 words
7188:FFB3EAB3 DEFW of 2 words
718C:5FBB5FBA DEFW of 2 words
7190:433C003B DEFW of 2 words
7194:48AD46AD DEFW of 2 words
7198:07BB28BA DEFW of 2 words
719C:35B032B0 DEFW of 2 words
71A0:78336733 DEFW of 2 words
71A4:68B830B8 DEFW of 2 words
71A8:E0BBAABA DEFW of 2 words
71AC:15B6F0B5 DEFW of 2 words
71B0:2DAF29AF DEFW of 2 words
71B4:8B337933 DEFW of 2 words
71B8:7B3ACB39 DEFW of 2 words
71BC:A1B671B6 DEFW of 2 words
71C0:C7B4B5B4 DEFW of 2 words
71C4:45BB4FBA DEFW of 2 words
71C8:A1AE9EAE DEFW of 2 words
71CC:F631ED31 DEFW of 2 words
71D0:67B459B4 DEFW of 2 words
71D4:C5BC6FBB DEFW of 2 words
71D8:49304630 DEFW of 2 words
71DC:763DD53B DEFW of 2 words
71E0:3AAB39AB DEFW of 2 words
71E4:DFB78FB7 DEFW of 2 words
71E8:75B83BB8 DEFW of 2 words
71EC:8DAA8CAA DEFW of 2 words
71F0:2F3B423A DEFW of 2 words
71F4:B5B2A8B2 DEFW of 2 words
71F8:B7359835 DEFW of 2 words
71FC:4D3C0A3B DEFW of 2 words
7200:DA36A536 DEFW of 2 words
7204:44B13EB1 DEFW of 2 words
7208:76BB6DBA DEFW of 2 words
720C:EDBDF8BB DEFW of 2 words
7210:B8AFB3AF DEFW of 2 words
7214:EE29ED29 DEFW of 2 words
7218:2A3B3F3A DEFW of 2 words
721C:843DDA3B DEFW of 2 words
7220:CDB5ADB5 DEFW of 2 words
7224:3CBA9FB9 DEFW of 2 words
7228:E535C335 DEFW of 2 words
722C:1BB212B2 DEFW of 2 words
7230:B690B690 DEFW of 2 words
7234:4DB624B6 DEFW of 2 words
7238:3EB7FFB6 DEFW of 2 words
723C:292D282D DEFW of 2 words
7240:652A642A DEFW of 2 words
7244:CF2ACE2A DEFW of 2 words
7248:60334F33 DEFW of 2 words
724C:7BBDD7BB DEFW of 2 words
7250:B9B1B1B1 DEFW of 2 words
7254:EBA9EAA9 DEFW of 2 words
7258:FE31F531 DEFW of 2 words
725C:EF2EEC2E DEFW of 2 words
7260:D0B887B8 DEFW of 2 words
7264:A42EA12E DEFW of 2 words
7268:7C2C7B2C DEFW of 2 words
726C:D8ABD7AB DEFW of 2 words
7270:FA2CF92C DEFW of 2 words
7274:80336E33 DEFW of 2 words
7278:EC389E38 DEFW of 2 words
727C:D529D429 DEFW of 2 words
7280:FF32F132 DEFW of 2 words
7284:4ABC07BB DEFW of 2 words
7288:B530B130 DEFW of 2 words
728C:62BC1DBB DEFW of 2 words
7290:23B314B3 DEFW of 2 words
7294:31AA30AA DEFW of 2 words
7298:1C3A8839 DEFW of 2 words
729C:9B2A9A2A DEFW of 2 words
72A0:3DB9DFB8 DEFW of 2 words
72A4:28B601B6 DEFW of 2 words
72A8:2A2C292C DEFW of 2 words
72AC:49AD47AD DEFW of 2 words
72B0:6C372937 DEFW of 2 words
72B4:51B247B2 DEFW of 2 words
72B8:0CB009B0 DEFW of 2 words
72BC:232A222A DEFW of 2 words
72C0:FA397039 DEFW of 2 words
72C4:6FB168B1 DEFW of 2 words
72C8:84327832 DEFW of 2 words
72CC:84AC83AC DEFW of 2 words
72D0:C4B1BCB1 DEFW of 2 words
72D4:56B24BB2 DEFW of 2 words
72D8:A2386138 DEFW of 2 words
72DC:64315D31 DEFW of 2 words
72E0:F7AFF2AF DEFW of 2 words
72E4:E6B899B8 DEFW of 2 words
72E8:6F3DD23B DEFW of 2 words
72EC:76336533 DEFW of 2 words
72F0:BBAFB6AF DEFW of 2 words
72F4:F0BA1ABA DEFW of 2 words
72F8:8AB086B0 DEFW of 2 words
72FC:2B3B3F3A DEFW of 2 words
7300:EF3A193A DEFW of 2 words
7304:2B302830 DEFW of 2 words
7308:5C3DCA3B DEFW of 2 words
730C:A7AAA6AA DEFW of 2 words
7310:F12FEC2F DEFW of 2 words
7314:10AE0EAE DEFW of 2 words
7318:083D9D3B DEFW of 2 words
731C:60BC1BBB DEFW of 2 words
7320:AEAFA9AF DEFW of 2 words
7324:46B52EB5 DEFW of 2 words
7328:81384538 DEFW of 2 words
732C:5F2A5E2A DEFW of 2 words
7330:8D2C8C2C DEFW of 2 words
7334:91AB90AB DEFW of 2 words
7338:A8B932B9 DEFW of 2 words
733C:0DB5F8B4 DEFW of 2 words
7340:643C1F3B DEFW of 2 words
7344:A52AA42A DEFW of 2 words
7348:B130AD30 DEFW of 2 words
734C:9E3DE43B DEFW of 2 words
7350:3D2A3C2A DEFW of 2 words
7354:38BA9CB9 DEFW of 2 words
7358:C7B1BFB1 DEFW of 2 words
735C:3EB80CB8 DEFW of 2 words
7360:32312C31 DEFW of 2 words
7364:AEB49DB4 DEFW of 2 words
7368:9B3C4E3B DEFW of 2 words
736C:DF3A0F3A DEFW of 2 words
7370:282D272D DEFW of 2 words
7374:7A2C792C DEFW of 2 words
7378:B632A932 DEFW of 2 words
737C:CD377F37 DEFW of 2 words
7380:3B39DE38 DEFW of 2 words
7384:9BAB9AAB DEFW of 2 words
7388:512D4F2D DEFW of 2 words
738C:4CBB54BA DEFW of 2 words
7390:68BB65BA DEFW of 2 words
7394:65056505 DEFW of 2 words
7398:1FAD1EAD DEFW of 2 words
739C:B5393C39 DEFW of 2 words
73A0:6DB262B2 DEFW of 2 words
73A4:8BB56FB5 DEFW of 2 words
73A8:78AB77AB DEFW of 2 words
73AC:50BAADB9 DEFW of 2 words
73B0:33AB32AB DEFW of 2 words
73B4:ECB5CAB5 DEFW of 2 words
73B8:CCAEC9AE DEFW of 2 words
73BC:7A2F762F DEFW of 2 words
73C0:48AB47AB DEFW of 2 words
73C4:2DB606B6 DEFW of 2 words
73C8:63B549B5 DEFW of 2 words
73CC:FBA9FAA9 DEFW of 2 words
73D0:94385538 DEFW of 2 words
73D4:68B25DB2 DEFW of 2 words
73D8:613B603A DEFW of 2 words
73DC:D5395439 DEFW of 2 words
73E0:FAADF8AD DEFW of 2 words
73E4:33BDB5BB DEFW of 2 words
73E8:3B3B493A DEFW of 2 words
73EC:7BB64EB6 DEFW of 2 words
73F0:65876587 DEFW of 2 words
73F4:2D2E2B2E DEFW of 2 words
73F8:1B341034 DEFW of 2 words
73FC:D030CB30 DEFW of 2 words
7400:CE3C763B DEFW of 2 words
7404:2B331C33 DEFW of 2 words
7408:5E2C5D2C DEFW of 2 words
740C:5DB44FB4 DEFW of 2 words
7410:0FB00CB0 DEFW of 2 words
7414:C32DC12D DEFW of 2 words
7418:FD31F431 DEFW of 2 words
741C:F02AEF2A DEFW of 2 words
7420:342B332B DEFW of 2 words
7424:B33C623B DEFW of 2 words
7428:D8B4C5B4 DEFW of 2 words
742C:342D332D DEFW of 2 words
7430:1C2A1B2A DEFW of 2 words
7434:1E3CDB3A DEFW of 2 words
7438:EA379837 DEFW of 2 words
743C:D32DD12D DEFW of 2 words
7440:CEB2C1B2 DEFW of 2 words
7444:283DAF3B DEFW of 2 words
7448:EA31E131 DEFW of 2 words
744C:3CAA3BAA DEFW of 2 words
7450:20BB38BA DEFW of 2 words
7454:62BB61BA DEFW of 2 words
7458:45B23BB2 DEFW of 2 words
745C:42333233 DEFW of 2 words
7460:91BC46BB DEFW of 2 words
7464:382F342F DEFW of 2 words
7468:A63B893A DEFW of 2 words
746C:3339D738 DEFW of 2 words
7470:E53C863B DEFW of 2 words
7474:AA30A630 DEFW of 2 words
7478:35BA9AB9 DEFW of 2 words
747C:01B8ADB7 DEFW of 2 words
7480:113CCD3A DEFW of 2 words
7484:9F309B30 DEFW of 2 words
7488:5EB34DB3 DEFW of 2 words
748C:4DB9ECB8 DEFW of 2 words
7490:02B2F9B1 DEFW of 2 words
7494:DE35BD35 DEFW of 2 words
7498:593B5B3A DEFW of 2 words
749C:23AD22AD DEFW of 2 words
74A0:87AB86AB DEFW of 2 words
74A4:BDB4ABB4 DEFW of 2 words
74A8:3039D538 DEFW of 2 words
74AC:6E2F6A2F DEFW of 2 words
74B0:402E3D2E DEFW of 2 words
74B4:35B12FB1 DEFW of 2 words
74B8:C8B77AB7 DEFW of 2 words
74BC:A3375A37 DEFW of 2 words
74C0:D7B956B9 DEFW of 2 words
74C4:39B036B0 DEFW of 2 words
74C8:65AE62AE DEFW of 2 words
74CC:78B171B1 DEFW of 2 words
74D0:EAB3D5B3 DEFW of 2 words
74D4:0F36EA35 DEFW of 2 words
74D8:743C2D3B DEFW of 2 words
74DC:AB339833 DEFW of 2 words
74E0:0634F633 DEFW of 2 words
74E4:CBA9CAA9 DEFW of 2 words
74E8:34B031B0 DEFW of 2 words
74EC:FB36C336 DEFW of 2 words
74F0:48084808 DEFW of 2 words
74F4:62315C31 DEFW of 2 words
74F8:D9ABD8AB DEFW of 2 words
74FC:57324C32 DEFW of 2 words
7500:C1AEBEAE DEFW of 2 words
7504:67AE64AE DEFW of 2 words
7508:F7AEF3AE DEFW of 2 words
750C:9AB85AB8 DEFW of 2 words
7510:15AC14AC DEFW of 2 words
7514:EA3BAF3A DEFW of 2 words
7518:A52DA32D DEFW of 2 words
751C:793C323B DEFW of 2 words
7520:D1AFCCAF DEFW of 2 words
7524:5E3B5F3A DEFW of 2 words
7528:31BCEEBA DEFW of 2 words
752C:A2B759B7 DEFW of 2 words
7530:67B63CB6 DEFW of 2 words
7534:40B03DB0 DEFW of 2 words
7538:E33DF63B DEFW of 2 words
753C:4AB43DB4 DEFW of 2 words
7540:3DB80BB8 DEFW of 2 words
7544:D8ACD7AC DEFW of 2 words
7548:0233F432 DEFW of 2 words
754C:C53B9B3A DEFW of 2 words
7550:8CAF88AF DEFW of 2 words
7554:DEACDDAC DEFW of 2 words
7558:CB3B9E3A DEFW of 2 words
755C:CEB0C9B0 DEFW of 2 words
7560:47AE44AE DEFW of 2 words
7564:5D325232 DEFW of 2 words
7568:2BB7EEB6 DEFW of 2 words
756C:1DBB36BA DEFW of 2 words
7570:E9B5C7B5 DEFW of 2 words
7574:1CAE1AAE DEFW of 2 words
7578:D2378337 DEFW of 2 words
757C:71AD6FAD DEFW of 2 words
7580:0DB402B4 DEFW of 2 words
7584:3D3AA039 DEFW of 2 words
7588:2A341E34 DEFW of 2 words
758C:8F347F34 DEFW of 2 words
7590:BE2CBD2C DEFW of 2 words
7594:1FAF1BAF DEFW of 2 words
7598:D02DCE2D DEFW of 2 words
759C:68B63DB6 DEFW of 2 words
75A0:87308330 DEFW of 2 words
75A4:19AB18AB DEFW of 2 words
75A8:15B20CB2 DEFW of 2 words
75AC:79B734B7 DEFW of 2 words
75B0:F7B4E3B4 DEFW of 2 words
75B4:922E8F2E DEFW of 2 words
75B8:0538B437 DEFW of 2 words
75BC:FC2DFA2D DEFW of 2 words
75C0:D433C033 DEFW of 2 words
75C4:AC367B36 DEFW of 2 words
75C8:C6B3B2B3 DEFW of 2 words
75CC:669D669D DEFW of 2 words
75D0:A1329532 DEFW of 2 words
75D4:5AB44CB4 DEFW of 2 words
75D8:31BEFFBB DEFW of 2 words
75DC:F8AEF4AE DEFW of 2 words
75E0:FFBDFBBB DEFW of 2 words
75E4:973B803A DEFW of 2 words
75E8:F72FF22F DEFW of 2 words
75EC:423CFF3A DEFW of 2 words
75F0:CA369636 DEFW of 2 words
75F4:49BDC1BB DEFW of 2 words
75F8:21321732 DEFW of 2 words
75FC:68316131 DEFW of 2 words
7600:792F752F DEFW of 2 words
7604:54B713B7 DEFW of 2 words
7608:BEB943B9 DEFW of 2 words
760C:38B035B0 DEFW of 2 words
7610:93A993A9 DEFW of 2 words
7614:2EA92EA9 DEFW of 2 words
7618:E8396239 DEFW of 2 words
761C:E636B036 DEFW of 2 words
7620:53371237 DEFW of 2 words
7624:F92EF52E DEFW of 2 words
7628:E92DE72D DEFW of 2 words
762C:1FAB1EAB DEFW of 2 words
7630:CA3A013A DEFW of 2 words
7634:1DAD1CAD DEFW of 2 words
7638:91BB7DBA DEFW of 2 words
763C:BB394139 DEFW of 2 words
7640:CC2CCB2C DEFW of 2 words
7644:2D3B403A DEFW of 2 words
7648:802F7C2F DEFW of 2 words
764C:CF31C731 DEFW of 2 words
7650:3C2C3B2C DEFW of 2 words
7654:82384638 DEFW of 2 words
7658:29B8F3B7 DEFW of 2 words
765C:C8ABC7AB DEFW of 2 words
7660:24341834 DEFW of 2 words
7664:23350D35 DEFW of 2 words
7668:CC394E39 DEFW of 2 words
766C:5AA25AA2 DEFW of 2 words
7670:163B323A DEFW of 2 words
7674:36BDB7BB DEFW of 2 words
7678:C4369136 DEFW of 2 words
767C:D52DD32D DEFW of 2 words
7680:69B065B0 DEFW of 2 words
7684:9B1A9B1A DEFW of 2 words
7688:ED2AEC2A DEFW of 2 words
768C:29AE27AE DEFW of 2 words
7690:993C4D3B DEFW of 2 words
7694:8A356E35 DEFW of 2 words
7698:9FB92BB9 DEFW of 2 words
769C:1CB8DDB7 DEFW of 2 words
76A0:A62AA52A DEFW of 2 words
76A4:BDBB96BA DEFW of 2 words
76A8:C5A9C4A9 DEFW of 2 words
76AC:3EBE00BC DEFW of 2 words
76B0:A0B85FB8 DEFW of 2 words
76B4:CBAACAAA DEFW of 2 words
76B8:99AF94AF DEFW of 2 words
76BC:AC32A032 DEFW of 2 words
76C0:58362E36 DEFW of 2 words
76C4:DD3C803B DEFW of 2 words
76C8:DB31D331 DEFW of 2 words
76CC:5EAE5BAE DEFW of 2 words
76D0:80373A37 DEFW of 2 words
76D4:C6BDEFBB DEFW of 2 words
76D8:8A384D38 DEFW of 2 words
76DC:B3B1ABB1 DEFW of 2 words
76E0:B9376D37 DEFW of 2 words
76E4:FAAFF5AF DEFW of 2 words
76E8:71372D37 DEFW of 2 words
76EC:30A030A0 DEFW of 2 words
76F0:77B55CB5 DEFW of 2 words
76F4:7DAE7AAE DEFW of 2 words
76F8:132B122B DEFW of 2 words
76FC:F2ADF0AD DEFW of 2 words
7700:4EB535B5 DEFW of 2 words
7704:4EB148B1 DEFW of 2 words
7708:EC3A173A DEFW of 2 words
770C:CEAECBAE DEFW of 2 words
7710:1C3DA83B DEFW of 2 words
7714:56324B32 DEFW of 2 words
7718:1939C238 DEFW of 2 words
771C:04BB26BA DEFW of 2 words
7720:9D329132 DEFW of 2 words
7724:FCB7A8B7 DEFW of 2 words
7728:A0358335 DEFW of 2 words
772C:EABC89BB DEFW of 2 words
7730:49370937 DEFW of 2 words
7734:9CAE99AE DEFW of 2 words
7738:2D2A2C2A DEFW of 2 words
773C:0C35F734 DEFW of 2 words
7740:52314C31 DEFW of 2 words
7744:C9B2BCB2 DEFW of 2 words
7748:C2BC6DBB DEFW of 2 words
774C:4AB621B6 DEFW of 2 words
7750:40323632 DEFW of 2 words
7754:063CC23A DEFW of 2 words
7758:6D2B6C2B DEFW of 2 words
775C:35B804B8 DEFW of 2 words
7760:ECBA17BA DEFW of 2 words
7764:0CB107B1 DEFW of 2 words
7768:50AB4FAB DEFW of 2 words
776C:F4ADF2AD DEFW of 2 words
7770:2036FA35 DEFW of 2 words
7774:20AA1FAA DEFW of 2 words
7778:3EB138B1 DEFW of 2 words
777C:C02EBD2E DEFW of 2 words
7780:7FAE7CAE DEFW of 2 words
7784:0D340234 DEFW of 2 words
7788:24B9CBB8 DEFW of 2 words
778C:B7393E39 DEFW of 2 words
7790:E431DB31 DEFW of 2 words
7794:952F902F DEFW of 2 words
7798:432D412D DEFW of 2 words
779C:7F336D33 DEFW of 2 words
77A0:E233CE33 DEFW of 2 words
77A4:F43BB53A DEFW of 2 words
77A8:64335333 DEFW of 2 words
77AC:442B432B DEFW of 2 words
77B0:93B922B9 DEFW of 2 words
77B4:B0349F34 DEFW of 2 words
77B8:A1AF9CAF DEFW of 2 words
77BC:70AA6FAA DEFW of 2 words
77C0:75B071B0 DEFW of 2 words
77C4:9EB292B2 DEFW of 2 words
77C8:82391539 DEFW of 2 words
77CC:5C2A5B2A DEFW of 2 words
77D0:83B07FB0 DEFW of 2 words
77D4:E93BAF3A DEFW of 2 words
77D8:BDBAF8B9 DEFW of 2 words
77DC:0839B538 DEFW of 2 words
77E0:89B377B3 DEFW of 2 words
77E4:99B387B3 DEFW of 2 words
77E8:AD2FA82F DEFW of 2 words
77EC:CEBBA0BA DEFW of 2 words
77F0:082D072D DEFW of 2 words
77F4:DA3A0B3A DEFW of 2 words
77F8:423E003C DEFW of 2 words
77FC:1A191A19 DEFW of 2 words
7800:7A2E772E DEFW of 2 words
7804:33BA99B9 DEFW of 2 words
7808:58A458A4 DEFW of 2 words
780C:B3B3A0B3 DEFW of 2 words
7810:DCADDAAD DEFW of 2 words
7814:302D2F2D DEFW of 2 words
7818:D1BBA1BA DEFW of 2 words
781C:B0B1A8B1 DEFW of 2 words
7820:2EAD2DAD DEFW of 2 words
7824:3E303B30 DEFW of 2 words
7828:0DAD0CAD DEFW of 2 words
782C:F9B5D6B5 DEFW of 2 words
7830:45343834 DEFW of 2 words
7834:D329D229 DEFW of 2 words
7838:37B60FB6 DEFW of 2 words
783C:ECACEBAC DEFW of 2 words
7840:23B9CAB8 DEFW of 2 words
7844:E129E029 DEFW of 2 words
7848:072E052E DEFW of 2 words
784C:1A39C338 DEFW of 2 words
7850:8C3C423B DEFW of 2 words
7854:0BBD9EBB DEFW of 2 words
7858:D1B1C9B1 DEFW of 2 words
785C:80356435 DEFW of 2 words
7860:C1ADBFAD DEFW of 2 words
7864:71B72DB7 DEFW of 2 words
7868:8F828F82 DEFW of 2 words
786C:BBB689B6 DEFW of 2 words
7870:25350E35 DEFW of 2 words
7874:9E2B9D2B DEFW of 2 words
7878:683ABE39 DEFW of 2 words
787C:27BB3DBA DEFW of 2 words
7880:68AF64AF DEFW of 2 words
7884:FC37A837 DEFW of 2 words
7888:08300530 DEFW of 2 words
788C:F33A1C3A DEFW of 2 words
7890:502E4D2E DEFW of 2 words
7894:AF31A731 DEFW of 2 words
7898:E835C635 DEFW of 2 words
789C:A5319E31 DEFW of 2 words
78A0:07B6E3B5 DEFW of 2 words
78A4:30AB2FAB DEFW of 2 words
78A8:24BEFFBB DEFW of 2 words
78AC:D7388D38 DEFW of 2 words
78B0:1636F135 DEFW of 2 words
78B4:75BAC7B9 DEFW of 2 words
78B8:EA36B336 DEFW of 2 words
78BC:6E016E01 DEFW of 2 words
78C0:20BDABBB DEFW of 2 words
78C4:B7368536 DEFW of 2 words
78C8:6AB63EB6 DEFW of 2 words
78CC:16B307B3 DEFW of 2 words
78D0:553DC63B DEFW of 2 words
78D4:C1B1B9B1 DEFW of 2 words
78D8:D2A6D2A6 DEFW of 2 words
78DC:5EB71CB7 DEFW of 2 words
78E0:4A381638 DEFW of 2 words
78E4:AB3AEC39 DEFW of 2 words
78E8:BDB59EB5 DEFW of 2 words
78EC:9DB92AB9 DEFW of 2 words
78F0:AB2AAA2A DEFW of 2 words
78F4:F9B1F0B1 DEFW of 2 words
78F8:5EB05BB0 DEFW of 2 words
78FC:2AB220B2 DEFW of 2 words
7900:BEADBCAD DEFW of 2 words
7904:54362A36 DEFW of 2 words
7908:24311E31 DEFW of 2 words
790C:783DD63B DEFW of 2 words
7910:BA1BBA1B DEFW of 2 words
7914:C73AFF39 DEFW of 2 words
7918:E22BE12B DEFW of 2 words
791C:8F328332 DEFW of 2 words
7920:37303430 DEFW of 2 words
7924:5C3C183B DEFW of 2 words
7928:0C3B2C3A DEFW of 2 words
792C:C832BB32 DEFW of 2 words
7930:A5BB88BA DEFW of 2 words
7934:6E2E6B2E DEFW of 2 words
7938:FFABFEAB DEFW of 2 words
793C:7CB911B9 DEFW of 2 words
7940:4E3B553A DEFW of 2 words
7944:41AC40AC DEFW of 2 words
7948:EDAFE8AF DEFW of 2 words
794C:00A400A4 DEFW of 2 words
7950:2A3DB03B DEFW of 2 words
7954:ADBC5DBB DEFW of 2 words
7958:28AE26AE DEFW of 2 words
795C:A9B933B9 DEFW of 2 words
7960:24B8EBB7 DEFW of 2 words
7964:32302F30 DEFW of 2 words
7968:C8377A37 DEFW of 2 words
796C:3D361536 DEFW of 2 words
7970:99385938 DEFW of 2 words
7974:C131B931 DEFW of 2 words
7978:223B3A3A DEFW of 2 words
797C:92B74AB7 DEFW of 2 words
7980:852F812F DEFW of 2 words
7984:E7B962B9 DEFW of 2 words
7988:98BB81BA DEFW of 2 words
798C:4B381738 DEFW of 2 words
7990:90939093 DEFW of 2 words
7994:4B054B05 DEFW of 2 words
7998:63325832 DEFW of 2 words
799C:F935D635 DEFW of 2 words
79A0:2839CE38 DEFW of 2 words
79A4:2E3CEB3A DEFW of 2 words
79A8:0A320132 DEFW of 2 words
79AC:C42CC32C DEFW of 2 words
79B0:603B603A DEFW of 2 words
79B4:112B102B DEFW of 2 words
79B8:9C3B833A DEFW of 2 words
79BC:2837EC36 DEFW of 2 words
79C0:F537A237 DEFW of 2 words
79C4:C935A935 DEFW of 2 words
79C8:8ABC40BB DEFW of 2 words
79CC:65AB64AB DEFW of 2 words
79D0:9A375237 DEFW of 2 words
79D4:3C3DBA3B DEFW of 2 words
79D8:AA349934 DEFW of 2 words
79DC:22AC21AC DEFW of 2 words
79E0:433DBE3B DEFW of 2 words
79E4:70AE6DAE DEFW of 2 words
79E8:03B6DFB5 DEFW of 2 words
79EC:74B83AB8 DEFW of 2 words
79F0:ED2FE82F DEFW of 2 words
79F4:E23A113A DEFW of 2 words
79F8:69B831B8 DEFW of 2 words
79FC:AC31A431 DEFW of 2 words
7A00:A6367536 DEFW of 2 words
7A04:73AF6FAF DEFW of 2 words
7A08:B42CB32C DEFW of 2 words
7A0C:28B41CB4 DEFW of 2 words
7A10:61AD5FAD DEFW of 2 words
7A14:2CBA94B9 DEFW of 2 words
7A18:F5ADF3AD DEFW of 2 words
7A1C:68B064B0 DEFW of 2 words
7A20:E9BDF7BB DEFW of 2 words
7A24:F72CF62C DEFW of 2 words
7A28:343DB63B DEFW of 2 words
7A2C:7EB273B2 DEFW of 2 words
7A30:1D3A8939 DEFW of 2 words
7A34:223CDF3A DEFW of 2 words
7A38:B4B1ACB1 DEFW of 2 words
7A3C:9FBC52BB DEFW of 2 words
7A40:812F7D2F DEFW of 2 words
7A44:9FAA9EAA DEFW of 2 words
7A48:682D662D DEFW of 2 words
7A4C:A831A031 DEFW of 2 words
7A50:48314231 DEFW of 2 words
7A54:503B563A DEFW of 2 words
7A58:F5BBB5BA DEFW of 2 words
7A5C:81317A31 DEFW of 2 words
7A60:0F3EFD3B DEFW of 2 words
7A64:DC29DB29 DEFW of 2 words
7A68:77390D39 DEFW of 2 words
7A6C:773B6E3A DEFW of 2 words
7A70:1BB115B1 DEFW of 2 words
7A74:85AA84AA DEFW of 2 words
7A78:483B513A DEFW of 2 words
7A7C:1D3CDA3A DEFW of 2 words
7A80:DFBC82BB DEFW of 2 words
7A84:1DBA89B9 DEFW of 2 words
7A88:A6BAE9B9 DEFW of 2 words
7A8C:2CB515B5 DEFW of 2 words
7A90:CCB77EB7 DEFW of 2 words
7A94:173B333A DEFW of 2 words
7A98:D503D503 DEFW of 2 words
7A9C:8F2B8E2B DEFW of 2 words
7AA0:8B365D36 DEFW of 2 words
7AA4:F8B1EFB1 DEFW of 2 words
7AA8:75390B39 DEFW of 2 words
7AAC:B1368036 DEFW of 2 words
7AB0:702A6F2A DEFW of 2 words
7AB4:C8AEC5AE DEFW of 2 words
7AB8:CBB1C3B1 DEFW of 2 words
7ABC:EE34DA34 DEFW of 2 words
7AC0:A2B390B3 DEFW of 2 words
7AC4:DD395A39 DEFW of 2 words
7AC8:3AB808B8 DEFW of 2 words
7ACC:3E332E33 DEFW of 2 words
7AD0:233EFF3B DEFW of 2 words
7AD4:F82BF72B DEFW of 2 words
7AD8:0532FC31 DEFW of 2 words
7ADC:C6AEC3AE DEFW of 2 words
7AE0:F03BB33A DEFW of 2 words
7AE4:0B2D0A2D DEFW of 2 words
7AE8:C9388138 DEFW of 2 words
7AEC:F436BD36 DEFW of 2 words
7AF0:FC32EE32 DEFW of 2 words
7AF4:452E422E DEFW of 2 words
7AF8:D02ECD2E DEFW of 2 words
7AFC:812B802B DEFW of 2 words
7B00:00AEFEAD DEFW of 2 words
7B04:41B619B6 DEFW of 2 words
7B08:9F319831 DEFW of 2 words
7B0C:08B005B0 DEFW of 2 words
7B10:3E380C38 DEFW of 2 words
7B14:D8ADD6AD DEFW of 2 words
7B18:EE3BB23A DEFW of 2 words
7B1C:35303230 DEFW of 2 words
7B20:05B8B4B7 DEFW of 2 words
7B24:52381D38 DEFW of 2 words
7B28:3BB809B8 DEFW of 2 words
7B2C:603DCB3B DEFW of 2 words
7B30:1BAF17AF DEFW of 2 words
7B34:4B39EA38 DEFW of 2 words
7B38:DF389338 DEFW of 2 words
7B3C:7CB078B0 DEFW of 2 words
7B40:4A2A492A DEFW of 2 words
7B44:D9AED6AE DEFW of 2 words
7B48:4F370F37 DEFW of 2 words
7B4C:B0B765B7 DEFW of 2 words
7B50:5E3AB739 DEFW of 2 words
7B54:83365536 DEFW of 2 words
7B58:16BCD3BA DEFW of 2 words
7B5C:0EB00BB0 DEFW of 2 words
7B60:3DB233B2 DEFW of 2 words
7B64:B4B595B5 DEFW of 2 words
7B68:D0B4BEB4 DEFW of 2 words
7B6C:F0379E37 DEFW of 2 words
7B70:A6ACA5AC DEFW of 2 words
7B74:F82CF72C DEFW of 2 words
7B78:87B478B4 DEFW of 2 words
7B7C:1FB413B4 DEFW of 2 words
7B80:35AF31AF DEFW of 2 words
7B84:97B093B0 DEFW of 2 words
7B88:4D014D01 DEFW of 2 words
7B8C:6F390639 DEFW of 2 words
7B90:FA2DF82D DEFW of 2 words
7B94:7A147A14 DEFW of 2 words
7B98:28B7ECB6 DEFW of 2 words
7B9C:E330DE30 DEFW of 2 words
7BA0:B72EB42E DEFW of 2 words
7BA4:0EB403B4 DEFW of 2 words
7BA8:95AE92AE DEFW of 2 words
7BAC:3D3E003C DEFW of 2 words
7BB0:103CCC3A DEFW of 2 words
7BB4:E2AFDDAF DEFW of 2 words
7BB8:95B578B5 DEFW of 2 words
7BBC:A73DE73B DEFW of 2 words
7BC0:70AC6FAC DEFW of 2 words
7BC4:45AE42AE DEFW of 2 words
7BC8:1FB8E2B7 DEFW of 2 words
7BCC:C031B831 DEFW of 2 words
7BD0:FE3A233A DEFW of 2 words
7BD4:7CB841B8 DEFW of 2 words
7BD8:9AB28EB2 DEFW of 2 words
7BDC:23AA22AA DEFW of 2 words
7BE0:1E301B30 DEFW of 2 words
7BE4:98BDE2BB DEFW of 2 words
7BE8:8DBC43BB DEFW of 2 words
7BEC:A03AE539 DEFW of 2 words
7BF0:992E962E DEFW of 2 words
7BF4:B13AF039 DEFW of 2 words
7BF8:A02E9D2E DEFW of 2 words
7BFC:70372C37 DEFW of 2 words
7C00:DB2CDA2C DEFW of 2 words
7C04:E7B4D3B4 DEFW of 2 words
7C08:EEACEDAC DEFW of 2 words
7C0C:15BCD2BA DEFW of 2 words
7C10:78346934 DEFW of 2 words
7C14:41AD3FAD DEFW of 2 words
7C18:E030DB30 DEFW of 2 words
7C1C:D283D283 DEFW of 2 words
7C20:CEB5AEB5 DEFW of 2 words
7C24:713B6A3A DEFW of 2 words
7C28:F13C8E3B DEFW of 2 words
7C2C:C1387B38 DEFW of 2 words
7C30:CF32C232 DEFW of 2 words
7C34:553B593A DEFW of 2 words
7C38:09AB08AB DEFW of 2 words
7C3C:732C722C DEFW of 2 words
7C40:94B665B6 DEFW of 2 words
7C44:87337533 DEFW of 2 words
7C48:843AD239 DEFW of 2 words
7C4C:0137C836 DEFW of 2 words
7C50:493C063B DEFW of 2 words
7C54:79AE76AE DEFW of 2 words
7C58:4FB04CB0 DEFW of 2 words
7C5C:EB3C8A3B DEFW of 2 words
7C60:EBB89DB8 DEFW of 2 words
7C64:A7BDE7BB DEFW of 2 words
7C68:A62CA52C DEFW of 2 words
7C6C:133B303A DEFW of 2 words
7C70:E8B2DAB2 DEFW of 2 words
7C74:C293C293 DEFW of 2 words
7C78:4F353635 DEFW of 2 words
7C7C:7BB910B9 DEFW of 2 words
7C80:02AC01AC DEFW of 2 words
7C84:EEB4DAB4 DEFW of 2 words
7C88:1EAF1AAF DEFW of 2 words
7C8C:6F316831 DEFW of 2 words
7C90:5A3C163B DEFW of 2 words
7C94:7DB46EB4 DEFW of 2 words
7C98:D432C732 DEFW of 2 words
7C9C:29BEFFBB DEFW of 2 words
7CA0:543DC63B DEFW of 2 words
7CA4:A0BB86BA DEFW of 2 words
7CA8:FF29FE29 DEFW of 2 words
7CAC:37B22DB2 DEFW of 2 words
7CB0:AF359135 DEFW of 2 words
7CB4:B4368236 DEFW of 2 words
7CB8:01B7C8B6 DEFW of 2 words
7CBC:AEACADAC DEFW of 2 words
7CC0:02250225 DEFW of 2 words
7CC4:16340B34 DEFW of 2 words
7CC8:EB396539 DEFW of 2 words
7CCC:EA2CE92C DEFW of 2 words
7CD0:4A362136 DEFW of 2 words
7CD4:43304030 DEFW of 2 words
7CD8:89848984 DEFW of 2 words
7CDC:47AA46AA DEFW of 2 words
7CE0:F9ABF8AB DEFW of 2 words
7CE4:73346434 DEFW of 2 words
7CE8:43B61AB6 DEFW of 2 words
7CEC:00ACFFAB DEFW of 2 words
7CF0:CAACC9AC DEFW of 2 words
7CF4:FE34E934 DEFW of 2 words
7CF8:77BDD5BB DEFW of 2 words
7CFC:D73DF33B DEFW of 2 words
7D00:89B182B1 DEFW of 2 words
7D04:18B309B3 DEFW of 2 words
7D08:B43DEB3B DEFW of 2 words
7D0C:1E2D1D2D DEFW of 2 words
7D10:FC34E734 DEFW of 2 words
7D14:833C3A3B DEFW of 2 words
7D18:172A162A DEFW of 2 words
7D1C:54B53BB5 DEFW of 2 words
7D20:9DAE9AAE DEFW of 2 words
7D24:9BBDE3BB DEFW of 2 words
7D28:9F329332 DEFW of 2 words
7D2C:4B314531 DEFW of 2 words
7D30:8F318831 DEFW of 2 words
7D34:832B822B DEFW of 2 words
7D38:85B657B6 DEFW of 2 words
7D3C:A2BAE6B9 DEFW of 2 words
7D40:30B12AB1 DEFW of 2 words
7D44:40370137 DEFW of 2 words
7D48:2EAA2DAA DEFW of 2 words
7D4C:A930A530 DEFW of 2 words
7D50:9CBAE2B9 DEFW of 2 words
7D54:79AD77AD DEFW of 2 words
7D58:9DBC50BB DEFW of 2 words
7D5C:683DCF3B DEFW of 2 words
7D60:193B343A DEFW of 2 words
7D64:E6BA13BA DEFW of 2 words
7D68:47314131 DEFW of 2 words
7D6C:F4B7A1B7 DEFW of 2 words
7D70:1C2C1B2C DEFW of 2 words
7D74:DFBDF5BB DEFW of 2 words
7D78:AFAFAAAF DEFW of 2 words
7D7C:FFADFDAD DEFW of 2 words
7D80:84308030 DEFW of 2 words
7D84:B434A334 DEFW of 2 words
7D88:CC2ACB2A DEFW of 2 words
7D8C:46352E35 DEFW of 2 words
7D90:F031E731 DEFW of 2 words
7D94:E0A9DFA9 DEFW of 2 words
7D98:E9AFE4AF DEFW of 2 words
7D9C:A9B0A5B0 DEFW of 2 words
7DA0:2CB9D2B8 DEFW of 2 words
7DA4:90B573B5 DEFW of 2 words
7DA8:9CAF97AF DEFW of 2 words
7DAC:FB2AFA2A DEFW of 2 words
7DB0:113B2F3A DEFW of 2 words
7DB4:8D391E39 DEFW of 2 words
7DB8:43343634 DEFW of 2 words
7DBC:DFAEDCAE DEFW of 2 words
7DC0:F8ADF6AD DEFW of 2 words
7DC4:0231FD30 DEFW of 2 words
7DC8:F9BA1FBA DEFW of 2 words
7DCC:BA2DB82D DEFW of 2 words
7DD0:46894689 DEFW of 2 words
7DD4:B9BAF5B9 DEFW of 2 words
7DD8:EF34DB34 DEFW of 2 words
7DDC:162D152D DEFW of 2 words
7DE0:CF395039 DEFW of 2 words
7DE4:AFB2A3B2 DEFW of 2 words
7DE8:5CBC18BB DEFW of 2 words
7DEC:14AB13AB DEFW of 2 words
7DF0:63B455B4 DEFW of 2 words
7DF4:83B474B4 DEFW of 2 words
7DF8:27B121B1 DEFW of 2 words
7DFC:4DBAABB9 DEFW of 2 words
7E00:3EAD3CAD DEFW of 2 words
7E04:E72CE62C DEFW of 2 words
7E08:53AB52AB DEFW of 2 words
7E0C:C7BB9CBA DEFW of 2 words
7E10:7E2C7D2C DEFW of 2 words
7E14:27BEFFBB DEFW of 2 words
7E18:BBABBAAB DEFW of 2 words
7E1C:2CAA2BAA DEFW of 2 words
7E20:E4B4D1B4 DEFW of 2 words
7E24:F2BDF9BB DEFW of 2 words
7E28:B02DAE2D DEFW of 2 words
7E2C:6CB552B5 DEFW of 2 words
7E30:DF3C823B DEFW of 2 words
7E34:A53AE839 DEFW of 2 words
7E38:023A7539 DEFW of 2 words
7E3C:7E307A30 DEFW of 2 words
7E40:50B9EEB8 DEFW of 2 words
7E44:13B8CDB7 DEFW of 2 words
7E48:B9B59AB5 DEFW of 2 words
7E4C:E1BA10BA DEFW of 2 words
7E50:FEBBBABA DEFW of 2 words
7E54:87365936 DEFW of 2 words
7E58:BB2FB62F DEFW of 2 words
7E5C:453C023B DEFW of 2 words
7E60:61363636 DEFW of 2 words
7E64:BE30BA30 DEFW of 2 words
7E68:7E3ACD39 DEFW of 2 words
7E6C:FB31F231 DEFW of 2 words
7E70:35BCF2BA DEFW of 2 words
7E74:B72CB62C DEFW of 2 words
7E78:F332E532 DEFW of 2 words
7E7C:C4AAC3AA DEFW of 2 words
7E80:CC30C730 DEFW of 2 words
7E84:8FAA8EAA DEFW of 2 words
7E88:78B26DB2 DEFW of 2 words
7E8C:70B837B8 DEFW of 2 words
7E90:783B6E3A DEFW of 2 words
7E94:FFB4EAB4 DEFW of 2 words
7E98:48AF44AF DEFW of 2 words
7E9C:F638A638 DEFW of 2 words
7EA0:01B1FCB0 DEFW of 2 words
7EA4:F3B8A4B8 DEFW of 2 words
7EA8:51334133 DEFW of 2 words
7EAC:FA29F929 DEFW of 2 words
7EB0:A2B584B5 DEFW of 2 words
7EB4:2239CA38 DEFW of 2 words
7EB8:C230BE30 DEFW of 2 words
7EBC:D72AD62A DEFW of 2 words
7EC0:7EB912B9 DEFW of 2 words
7EC4:6CAE69AE DEFW of 2 words
7EC8:AA9AAA9A DEFW of 2 words
7ECC:75355A35 DEFW of 2 words
7ED0:A83C593B DEFW of 2 words
7ED4:662C652C DEFW of 2 words
7ED8:40AB3FAB DEFW of 2 words
7EDC:CBBC74BB DEFW of 2 words
7EE0:14BDA4BB DEFW of 2 words
7EE4:052C042C DEFW of 2 words
7EE8:3A342D34 DEFW of 2 words
7EEC:B8B76CB7 DEFW of 2 words
7EF0:DB2DD92D DEFW of 2 words
7EF4:57BAB2B9 DEFW of 2 words
7EF8:B8B873B8 DEFW of 2 words
7EFC:562E532E DEFW of 2 words
7F00:D829D729 DEFW of 2 words
7F04:60B546B5 DEFW of 2 words
7F08:BF2FBA2F DEFW of 2 words
7F0C:97348734 DEFW of 2 words
7F10:662F622F DEFW of 2 words
7F14:2139C938 DEFW of 2 words
7F18:8FAD8DAD DEFW of 2 words
7F1C:62345434 DEFW of 2 words
7F20:6B2F672F DEFW of 2 words
7F24:9C3DE33B DEFW of 2 words
7F28:B8B3A5B3 DEFW of 2 words
7F2C:FB3DFA3B DEFW of 2 words
7F30:8AB27EB2 DEFW of 2 words
7F34:99B489B4 DEFW of 2 words
7F38:D2B952B9 DEFW of 2 words
7F3C:94B090B0 DEFW of 2 words
7F40:A0AC9FAC DEFW of 2 words
7F44:41313B31 DEFW of 2 words
7F48:78AC77AC DEFW of 2 words
7F4C:B52DB32D DEFW of 2 words
7F50:522A512A DEFW of 2 words
7F54:DBACDAAC DEFW of 2 words
7F58:7D3DD83B DEFW of 2 words
7F5C:14AE12AE DEFW of 2 words
7F60:3FB432B4 DEFW of 2 words
7F64:A5BC57BB DEFW of 2 words
7F68:E829E729 DEFW of 2 words
7F6C:57305430 DEFW of 2 words
7F70:71364536 DEFW of 2 words
7F74:17311231 DEFW of 2 words
7F78:17BDA6BB DEFW of 2 words
7F7C:C831C031 DEFW of 2 words
7F80:74364836 DEFW of 2 words
7F84:C03B983A DEFW of 2 words
7F88:7E346F34 DEFW of 2 words
7F8C:70BDD2BB DEFW of 2 words
7F90:412D3F2D DEFW of 2 words
7F94:31312B31 DEFW of 2 words
7F98:A9ADA7AD DEFW of 2 words
7F9C:CFACCEAC DEFW of 2 words
7FA0:5B3DC93B DEFW of 2 words
7FA4:24B11EB1 DEFW of 2 words
7FA8:433B4E3A DEFW of 2 words
7FAC:8E357235 DEFW of 2 words
7FB0:94B382B3 DEFW of 2 words
7FB4:DCB1D4B1 DEFW of 2 words
7FB8:25B7E9B6 DEFW of 2 words
7FBC:CC99CC99 DEFW of 2 words
7FC0:61B453B4 DEFW of 2 words
7FC4:E7B0E2B0 DEFW of 2 words
7FC8:3F303C30 DEFW of 2 words
7FCC:83BAD1B9 DEFW of 2 words
7FD0:ADB762B7 DEFW of 2 words
7FD4:91B853B8 DEFW of 2 words
7FD8:D4B785B7 DEFW of 2 words
7FDC:B9B93FB9 DEFW of 2 words
7FE0:A80AA80A DEFW of 2 words
7FE4:E135BF35 DEFW of 2 words
7FE8:80BDD9BB DEFW of 2 words
7FEC:DD15DD15 DEFW of 2 words
7FF0:262C252C DEFW of 2 words
7FF4:92338033 DEFW of 2 words
7FF8:74AA73AA DEFW of 2 words
7FFC:BA33A733 DEFW of 2 words
8000:63B82CB8 DEFW of 2 words
8004:8EBB7BBA DEFW of 2 words
8008:E6B6B0B6 DEFW of 2 words
800C:0F39BA38 DEFW of 2 words
8010:6EB642B6 DEFW of 2 words
8014:BCB941B9 DEFW of 2 words
8018:ABB1A3B1 DEFW of 2 words
801C:EA389C38 DEFW of 2 words
8020:B22DB02D DEFW of 2 words
8024:D9B5B8B5 DEFW of 2 words
8028:00B8ACB7 DEFW of 2 words
802C:1BAC1AAC DEFW of 2 words
8030:A72FA22F DEFW of 2 words
8034:48333833 DEFW of 2 words
8038:872B862B DEFW of 2 words
803C:EB2CEA2C DEFW of 2 words
8040:B930B530 DEFW of 2 words
8044:D3AAD2AA DEFW of 2 words
8048:47BDC0BB DEFW of 2 words
804C:D82BD72B DEFW of 2 words
8050:A830A430 DEFW of 2 words
8054:BC2EB92E DEFW of 2 words
8058:02BCBDBA DEFW of 2 words
805C:2D39D238 DEFW of 2 words
8060:18301530 DEFW of 2 words
8064:F8BA1FBA DEFW of 2 words
8068:57AC56AC DEFW of 2 words
806C:90AA8FAA DEFW of 2 words
8070:EEB6B7B6 DEFW of 2 words
8074:AF367E36 DEFW of 2 words
8078:EF32E132 DEFW of 2 words
807C:73336233 DEFW of 2 words
8080:F531EC31 DEFW of 2 words
8084:8DAC8CAC DEFW of 2 words
8088:69BDCFBB DEFW of 2 words
808C:03B2FAB1 DEFW of 2 words
8090:1FB6F9B5 DEFW of 2 words
8094:1EB412B4 DEFW of 2 words
8098:40B13AB1 DEFW of 2 words
809C:662B652B DEFW of 2 words
80A0:45313F31 DEFW of 2 words
80A4:0FB7D5B6 DEFW of 2 words
80A8:B932AC32 DEFW of 2 words
80AC:1A36F435 DEFW of 2 words
80B0:222B212B DEFW of 2 words
80B4:FC2FF72F DEFW of 2 words
80B8:C587C587 DEFW of 2 words
80BC:E5AAE4AA DEFW of 2 words
80C0:D2B4BFB4 DEFW of 2 words
80C4:602A5F2A DEFW of 2 words
80C8:F6B3E1B3 DEFW of 2 words
80CC:BB3B953A DEFW of 2 words
80D0:D9B4C6B4 DEFW of 2 words
80D4:2BAD2AAD DEFW of 2 words
80D8:D031C831 DEFW of 2 words
80DC:83B655B6 DEFW of 2 words
80E0:FDB7A9B7 DEFW of 2 words
80E4:54353B35 DEFW of 2 words
80E8:EDBBB1BA DEFW of 2 words
80EC:1CB410B4 DEFW of 2 words
80F0:58AB57AB DEFW of 2 words
80F4:F4B3DFB3 DEFW of 2 words
80F8:81373B37 DEFW of 2 words
80FC:89B085B0 DEFW of 2 words
8100:F832EA32 DEFW of 2 words
8104:57BDC7BB DEFW of 2 words
8108:3FAE3CAE DEFW of 2 words
810C:ADBDE8BB DEFW of 2 words
8110:36B326B3 DEFW of 2 words
8114:633B623A DEFW of 2 words
8118:633ABB39 DEFW of 2 words
811C:55AB54AB DEFW of 2 words
8120:DD36A836 DEFW of 2 words
8124:532C522C DEFW of 2 words
8128:15320C32 DEFW of 2 words
812C:E8B1DFB1 DEFW of 2 words
8130:D6B88CB8 DEFW of 2 words
8134:C030BC30 DEFW of 2 words
8138:2E2D2D2D DEFW of 2 words
813C:FAB1F1B1 DEFW of 2 words
8140:F2B8A3B8 DEFW of 2 words
8144:97AA96AA DEFW of 2 words
8148:3E2E3B2E DEFW of 2 words
814C:D2AECFAE DEFW of 2 words
8150:48381438 DEFW of 2 words
8154:13B7D9B6 DEFW of 2 words
8158:7D3ACD39 DEFW of 2 words
815C:2E331F33 DEFW of 2 words
8160:E7396239 DEFW of 2 words
8164:7DB738B7 DEFW of 2 words
8168:4F304C30 DEFW of 2 words
816C:98BADFB9 DEFW of 2 words
8170:66315F31 DEFW of 2 words
8174:6E3C283B DEFW of 2 words
8178:7E365136 DEFW of 2 words
817C:B100B100 DEFW of 2 words
8180:42BDBDBB DEFW of 2 words
8184:F72AF62A DEFW of 2 words
8188:10B7D6B6 DEFW of 2 words
818C:3EB03BB0 DEFW of 2 words
8190:0332FA31 DEFW of 2 words
8194:AA2CA92C DEFW of 2 words
8198:72B06EB0 DEFW of 2 words
819C:FE32F032 DEFW of 2 words
81A0:F4B8A5B8 DEFW of 2 words
81A4:7BB46CB4 DEFW of 2 words
81A8:AAB58CB5 DEFW of 2 words
81AC:55BDC6BB DEFW of 2 words
81B0:60B71EB7 DEFW of 2 words
81B4:17320E32 DEFW of 2 words
81B8:06BA78B9 DEFW of 2 words
81BC:3B2D3A2D DEFW of 2 words
81C0:43BDBEBB DEFW of 2 words
81C4:C93DF03B DEFW of 2 words
81C8:8A3AD639 DEFW of 2 words
81CC:5BB250B2 DEFW of 2 words
81D0:172D162D DEFW of 2 words
81D4:85B848B8 DEFW of 2 words
81D8:70355535 DEFW of 2 words
81DC:20301D30 DEFW of 2 words
81E0:30AE2EAE DEFW of 2 words
81E4:51BDC4BB DEFW of 2 words
81E8:81B276B2 DEFW of 2 words
81EC:ECB0E7B0 DEFW of 2 words
81F0:7A336933 DEFW of 2 words
81F4:4EB81AB8 DEFW of 2 words
81F8:FC30F730 DEFW of 2 words
81FC:BA31B231 DEFW of 2 words
8200:96374E37 DEFW of 2 words
8204:44B52CB5 DEFW of 2 words
8208:CB33B733 DEFW of 2 words
820C:5BB631B6 DEFW of 2 words
8210:6FAB6EAB DEFW of 2 words
8214:B02EAD2E DEFW of 2 words
8218:98B926B9 DEFW of 2 words
821C:E2BC84BB DEFW of 2 words
8220:FEB7AAB7 DEFW of 2 words
8224:A2AE9FAE DEFW of 2 words
8228:A42CA32C DEFW of 2 words
822C:B9BB94BA DEFW of 2 words
8230:F0B3DBB3 DEFW of 2 words
8234:60166016 DEFW of 2 words
8238:95B924B9 DEFW of 2 words
823C:59B056B0 DEFW of 2 words
8240:22B6FCB5 DEFW of 2 words
8244:FD33E833 DEFW of 2 words
8248:4D134D13 DEFW of 2 words
824C:62B637B6 DEFW of 2 words
8250:8DAF89AF DEFW of 2 words
8254:8BAB8AAB DEFW of 2 words
8258:582A572A DEFW of 2 words
825C:E2B2D4B2 DEFW of 2 words
8260:A92EA62E DEFW of 2 words
8264:0AB201B2 DEFW of 2 words
8268:BFBDEEBB DEFW of 2 words
826C:0B340034 DEFW of 2 words
8270:A4BC56BB DEFW of 2 words
8274:79364C36 DEFW of 2 words
8278:4F2E4C2E DEFW of 2 words
827C:55AC54AC DEFW of 2 words
8280:D7B88DB8 DEFW of 2 words
8284:72B267B2 DEFW of 2 words
8288:67B356B3 DEFW of 2 words
828C:B0BDE9BB DEFW of 2 words
8290:3FB80DB8 DEFW of 2 words
8294:8E3B7B3A DEFW of 2 words
8298:18330933 DEFW of 2 words
829C:D4B1CCB1 DEFW of 2 words
82A0:27AE25AE DEFW of 2 words
82A4:66BABDB9 DEFW of 2 words
82A8:9B357E35 DEFW of 2 words
82AC:7A383F38 DEFW of 2 words
82B0:84B73EB7 DEFW of 2 words
82B4:B62BB52B DEFW of 2 words
82B8:45B438B4 DEFW of 2 words
82BC:DC378C37 DEFW of 2 words
82C0:2FBA96B9 DEFW of 2 words
82C4:59382338 DEFW of 2 words
82C8:ED31E431 DEFW of 2 words
82CC:B1BB8FBA DEFW of 2 words
82D0:042D032D DEFW of 2 words
82D4:BF33AC33 DEFW of 2 words
82D8:B7A8B7A8 DEFW of 2 words
82DC:2EBDB3BB DEFW of 2 words
82E0:A4B92FB9 DEFW of 2 words
82E4:453AA639 DEFW of 2 words
82E8:AEB0AAB0 DEFW of 2 words
82EC:51B710B7 DEFW of 2 words
82F0:FAABF9AB DEFW of 2 words
82F4:AB358D35 DEFW of 2 words
82F8:8A365C36 DEFW of 2 words
82FC:A82FA32F DEFW of 2 words
8300:77AF73AF DEFW of 2 words
8304:C92CC82C DEFW of 2 words
8308:E52FE02F DEFW of 2 words
830C:B1B1A9B1 DEFW of 2 words
8310:EDACECAC DEFW of 2 words
8314:93B664B6 DEFW of 2 words
8318:1E311831 DEFW of 2 words
831C:6AB903B9 DEFW of 2 words
8320:51AE4EAE DEFW of 2 words
8324:80B07CB0 DEFW of 2 words
8328:9FAC9EAC DEFW of 2 words
832C:61B256B2 DEFW of 2 words
8330:20AB1FAB DEFW of 2 words
8334:0B300830 DEFW of 2 words
8338:BBB0B7B0 DEFW of 2 words
833C:7E384338 DEFW of 2 words
8340:F534E134 DEFW of 2 words
8344:09300630 DEFW of 2 words
8348:FF3A233A DEFW of 2 words
834C:F6396D39 DEFW of 2 words
8350:22321832 DEFW of 2 words
8354:CC388438 DEFW of 2 words
8358:F62EF22E DEFW of 2 words
835C:D9388E38 DEFW of 2 words
8360:1F2A1E2A DEFW of 2 words
8364:5F363436 DEFW of 2 words
8368:05230523 DEFW of 2 words
836C:3D3B4A3A DEFW of 2 words
8370:CDADCBAD DEFW of 2 words
8374:49362036 DEFW of 2 words
8378:9CBC4FBB DEFW of 2 words
837C:C3B2B6B2 DEFW of 2 words
8380:1A2D192D DEFW of 2 words
8384:1EB30FB3 DEFW of 2 words
8388:9CB38AB3 DEFW of 2 words
838C:3F370037 DEFW of 2 words
8390:9FAD9DAD DEFW of 2 words
8394:CA2FC52F DEFW of 2 words
8398:033D993B DEFW of 2 words
839C:9BAF96AF DEFW of 2 words
83A0:4ABB52BA DEFW of 2 words
83A4:143B313A DEFW of 2 words
83A8:583C143B DEFW of 2 words
83AC:17B6F2B5 DEFW of 2 words
83B0:12BCCFBA DEFW of 2 words
83B4:B12FAC2F DEFW of 2 words
83B8:87B27BB2 DEFW of 2 words
83BC:41303E30 DEFW of 2 words
83C0:69936993 DEFW of 2 words
83C4:2F2D2E2D DEFW of 2 words
83C8:A4329832 DEFW of 2 words
83CC:5FB545B5 DEFW of 2 words
83D0:4EAC4DAC DEFW of 2 words
83D4:102C0F2C DEFW of 2 words
83D8:412E3E2E DEFW of 2 words
83DC:24BA8EB9 DEFW of 2 words
83E0:E32CE22C DEFW of 2 words
83E4:873AD439 DEFW of 2 words
83E8:052E032E DEFW of 2 words
83EC:34B22AB2 DEFW of 2 words
83F0:1C3B363A DEFW of 2 words
83F4:59B9F5B8 DEFW of 2 words
83F8:D9B789B7 DEFW of 2 words
83FC:BC1BBC1B DEFW of 2 words
8400:FCACFBAC DEFW of 2 words
8404:57B347B3 DEFW of 2 words
8408:05A705A7 DEFW of 2 words
840C:A4349334 DEFW of 2 words
8410:2CAB2BAB DEFW of 2 words
8414:76307230 DEFW of 2 words
8418:7A027A02 DEFW of 2 words
841C:24331533 DEFW of 2 words
8420:A6ADA4AD DEFW of 2 words
8424:BE3C6A3B DEFW of 2 words
8428:193DA73B DEFW of 2 words
842C:E532D732 DEFW of 2 words
8430:0B2A0A2A DEFW of 2 words
8434:D9B0D4B0 DEFW of 2 words
8438:7CB64FB6 DEFW of 2 words
843C:BEB4ACB4 DEFW of 2 words
8440:ECABEBAB DEFW of 2 words
8444:96B857B8 DEFW of 2 words
8448:83AC82AC DEFW of 2 words
844C:4DB243B2 DEFW of 2 words
8450:EE3C8C3B DEFW of 2 words
8454:922D902D DEFW of 2 words
8458:37322D32 DEFW of 2 words
845C:D230CD30 DEFW of 2 words
8460:723AC539 DEFW of 2 words
8464:13BDA3BB DEFW of 2 words
8468:E3B0DEB0 DEFW of 2 words
846C:123B2F3A DEFW of 2 words
8470:692F652F DEFW of 2 words
8474:732A722A DEFW of 2 words
8478:9C2D9A2D DEFW of 2 words
847C:9EB92BB9 DEFW of 2 words
8480:57B151B1 DEFW of 2 words
8484:9F385E38 DEFW of 2 words
8488:9FB09BB0 DEFW of 2 words
848C:993B823A DEFW of 2 words
8490:00BCBBBA DEFW of 2 words
8494:F93A1F3A DEFW of 2 words
8498:26B21CB2 DEFW of 2 words
849C:37B327B3 DEFW of 2 words
84A0:2EBEFFBB DEFW of 2 words
84A4:C4B87DB8 DEFW of 2 words
84A8:95B289B2 DEFW of 2 words
84AC:022E002E DEFW of 2 words
84B0:94AD92AD DEFW of 2 words
84B4:FDB1F4B1 DEFW of 2 words
84B8:CB394D39 DEFW of 2 words
84BC:D2A7D2A7 DEFW of 2 words
84C0:A7B932B9 DEFW of 2 words
84C4:58BC14BB DEFW of 2 words
84C8:BD2CBC2C DEFW of 2 words
84CC:552F512F DEFW of 2 words
84D0:C3B3B0B3 DEFW of 2 words
84D4:152B142B DEFW of 2 words
84D8:EFB79DB7 DEFW of 2 words
84DC:A5B675B6 DEFW of 2 words
84E0:7E2E7B2E DEFW of 2 words
84E4:C9A7C9A7 DEFW of 2 words
84E8:3CBCF9BA DEFW of 2 words
84EC:ED396639 DEFW of 2 words
84F0:09B8BCB7 DEFW of 2 words
84F4:932D912D DEFW of 2 words
84F8:E13C833B DEFW of 2 words
84FC:0234EF33 DEFW of 2 words
8500:1239BD38 DEFW of 2 words
8504:41B237B2 DEFW of 2 words
8508:C9AFC4AF DEFW of 2 words
850C:B3359435 DEFW of 2 words
8510:0AAE08AE DEFW of 2 words
8514:E1B4CEB4 DEFW of 2 words
8518:A1309D30 DEFW of 2 words
851C:8DAD8BAD DEFW of 2 words
8520:E7379637 DEFW of 2 words
8524:F8BC92BB DEFW of 2 words
8528:D8B789B7 DEFW of 2 words
852C:EE396739 DEFW of 2 words
8530:92357535 DEFW of 2 words
8534:76B467B4 DEFW of 2 words
8538:3BB42EB4 DEFW of 2 words
853C:DD3DF53B DEFW of 2 words
8540:17BCD4BA DEFW of 2 words
8544:67BDCFBB DEFW of 2 words
8548:AC3C5C3B DEFW of 2 words
854C:59362F36 DEFW of 2 words
8550:F4ACF3AC DEFW of 2 words
8554:3A352235 DEFW of 2 words
8558:95328932 DEFW of 2 words
855C:60AB5FAB DEFW of 2 words
8560:67306330 DEFW of 2 words
8564:FA37A637 DEFW of 2 words
8568:CFA9CEA9 DEFW of 2 words
856C:CF33BB33 DEFW of 2 words
8570:E602E602 DEFW of 2 words
8574:42323832 DEFW of 2 words
8578:473DC03B DEFW of 2 words
857C:5AB718B7 DEFW of 2 words
8580:42B435B4 DEFW of 2 words
8584:E8389B38 DEFW of 2 words
8588:9AB66AB6 DEFW of 2 words
858C:A12AA02A DEFW of 2 words
8590:87B741B7 DEFW of 2 words
8594:16AF12AF DEFW of 2 words
8598:FC1BFC1B DEFW of 2 words
859C:C3AEC0AE DEFW of 2 words
85A0:B531AD31 DEFW of 2 words
85A4:06B4F6B3 DEFW of 2 words
85A8:A43DE63B DEFW of 2 words
85AC:95AD93AD DEFW of 2 words
85B0:AC3B8D3A DEFW of 2 words
85B4:7C3ACC39 DEFW of 2 words
85B8:02BEFBBB DEFW of 2 words
85BC:73306F30 DEFW of 2 words
85C0:7AB64DB6 DEFW of 2 words
85C4:6A363E36 DEFW of 2 words
85C8:C81FC81F DEFW of 2 words
85CC:918D918D DEFW of 2 words
85D0:0EAD0DAD DEFW of 2 words
85D4:203B383A DEFW of 2 words
85D8:12B209B2 DEFW of 2 words
85DC:43BB4EBA DEFW of 2 words
85E0:092A082A DEFW of 2 words
85E4:062B052B DEFW of 2 words
85E8:C932BC32 DEFW of 2 words
85EC:D32ED02E DEFW of 2 words
85F0:7F327432 DEFW of 2 words
85F4:AE30AA30 DEFW of 2 words
85F8:C2368F36 DEFW of 2 words
85FC:1A3A8739 DEFW of 2 words
8600:503C0C3B DEFW of 2 words
8604:A8375E37 DEFW of 2 words
8608:A4B391B3 DEFW of 2 words
860C:BEB68BB6 DEFW of 2 words
8610:9F366F36 DEFW of 2 words
8614:4C333C33 DEFW of 2 words
8618:F931F031 DEFW of 2 words
861C:C5B948B9 DEFW of 2 words
8620:0031FB30 DEFW of 2 words
8624:3BAB3AAB DEFW of 2 words
8628:7CAB7BAB DEFW of 2 words
862C:3A3CF73A DEFW of 2 words
8630:F224F224 DEFW of 2 words
8634:312C302C DEFW of 2 words
8638:C6B2B9B2 DEFW of 2 words
863C:4C2B4B2B DEFW of 2 words
8640:882B872B DEFW of 2 words
8644:7C2B7B2B DEFW of 2 words
8648:2BB125B1 DEFW of 2 words
864C:E831DF31 DEFW of 2 words
8650:762A752A DEFW of 2 words
8654:F3ADF1AD DEFW of 2 words
8658:CF3BA03A DEFW of 2 words
865C:95B383B3 DEFW of 2 words
8660:81278127 DEFW of 2 words
8664:50B537B5 DEFW of 2 words
8668:24AC23AC DEFW of 2 words
866C:15340A34 DEFW of 2 words
8670:5DB71BB7 DEFW of 2 words
8674:C5BAFDB9 DEFW of 2 words
8678:903ADA39 DEFW of 2 words
867C:EF29EE29 DEFW of 2 words
8680:07B102B1 DEFW of 2 words
8684:1DB01AB0 DEFW of 2 words
8688:BF394439 DEFW of 2 words
868C:3FAD3DAD DEFW of 2 words
8690:EEBA18BA DEFW of 2 words
8694:8B9E8B9E DEFW of 2 words
8698:6EAB6DAB DEFW of 2 words
869C:0F2E0D2E DEFW of 2 words
86A0:58B055B0 DEFW of 2 words
86A4:C82BC72B DEFW of 2 words
86A8:B5B3A2B3 DEFW of 2 words
86AC:67B063B0 DEFW of 2 words
86B0:89327D32 DEFW of 2 words
86B4:B432A732 DEFW of 2 words
86B8:6A355035 DEFW of 2 words
86BC:E333CF33 DEFW of 2 words
86C0:1035FA34 DEFW of 2 words
86C4:E534D234 DEFW of 2 words
86C8:52AA51AA DEFW of 2 words
86CC:AE349D34 DEFW of 2 words
86D0:00BEFBBB DEFW of 2 words
86D4:2C3A9439 DEFW of 2 words
86D8:29AC28AC DEFW of 2 words
86DC:332E312E DEFW of 2 words
86E0:55314F31 DEFW of 2 words
86E4:4EBDC3BB DEFW of 2 words
86E8:90B189B1 DEFW of 2 words
86EC:78317131 DEFW of 2 words
86F0:AB2EA82E DEFW of 2 words
86F4:E732D932 DEFW of 2 words
86F8:00BD98BB DEFW of 2 words
86FC:3DB430B4 DEFW of 2 words
8700:C4387D38 DEFW of 2 words
8704:BC3AF739 DEFW of 2 words
8708:4F2F4B2F DEFW of 2 words
870C:9CAB9BAB DEFW of 2 words
8710:7C2A7B2A DEFW of 2 words
8714:D0395039 DEFW of 2 words
8718:C8394B39 DEFW of 2 words
871C:94AC93AC DEFW of 2 words
8720:A3A0A3A0 DEFW of 2 words
8724:2C2A2B2A DEFW of 2 words
8728:69B54FB5 DEFW of 2 words
872C:8B2C8A2C DEFW of 2 words
8730:FDAEF9AE DEFW of 2 words
8734:DE2DDC2D DEFW of 2 words
8738:FCB971B9 DEFW of 2 words
873C:DD2EDA2E DEFW of 2 words
8740:91869186 DEFW of 2 words
8744:BBB941B9 DEFW of 2 words
8748:962A952A DEFW of 2 words
874C:87BC3EBB DEFW of 2 words
8750:12AD11AD DEFW of 2 words
8754:27B21DB2 DEFW of 2 words
8758:20B311B3 DEFW of 2 words
875C:B800B800 DEFW of 2 words
8760:CBADC9AD DEFW of 2 words
8764:80B73AB7 DEFW of 2 words
8768:218F218F DEFW of 2 words
876C:FA32EC32 DEFW of 2 words
8770:B2386E38 DEFW of 2 words
8774:A03B863A DEFW of 2 words
8778:E6396139 DEFW of 2 words
877C:A12D9F2D DEFW of 2 words
8780:AA2BA92B DEFW of 2 words
8784:1135FB34 DEFW of 2 words
8788:E43DF63B DEFW of 2 words
878C:FEB6C6B6 DEFW of 2 words
8790:ED34D934 DEFW of 2 words
8794:572B562B DEFW of 2 words
8798:282F242F DEFW of 2 words
879C:B0B938B9 DEFW of 2 words
87A0:D82CD72C DEFW of 2 words
87A4:42B332B3 DEFW of 2 words
87A8:82B277B2 DEFW of 2 words
87AC:9FAB9EAB DEFW of 2 words
87B0:0938BC37 DEFW of 2 words
87B4:832F7F2F DEFW of 2 words
87B8:D6B4C3B4 DEFW of 2 words
87BC:65363A36 DEFW of 2 words
87C0:AE3B8E3A DEFW of 2 words
87C4:65AD63AD DEFW of 2 words
87C8:23AB22AB DEFW of 2 words
87CC:E5B960B9 DEFW of 2 words
87D0:D4B3C0B3 DEFW of 2 words
87D4:772F732F DEFW of 2 words
87D8:E4AFDFAF DEFW of 2 words
87DC:2C2B2B2B DEFW of 2 words
87E0:C835A835 DEFW of 2 words
87E4:6639FF38 DEFW of 2 words
87E8:0CB6E7B5 DEFW of 2 words
87EC:0C2B0B2B DEFW of 2 words
87F0:50381B38 DEFW of 2 words
87F4:19BA86B9 DEFW of 2 words
87F8:88318131 DEFW of 2 words
87FC:43AB42AB DEFW of 2 words
8800:85384838 DEFW of 2 words
8804:26321C32 DEFW of 2 words
8808:0E2D0D2D DEFW of 2 words
880C:333B443A DEFW of 2 words
8810:8CBDDDBB DEFW of 2 words
8814:5D3DCA3B DEFW of 2 words
8818:598A598A DEFW of 2 words
881C:DAB78AB7 DEFW of 2 words
8820:3CBB4ABA DEFW of 2 words
8824:9FBDE4BB DEFW of 2 words
8828:92BC47BB DEFW of 2 words
882C:69345B34 DEFW of 2 words
8830:822E7F2E DEFW of 2 words
8834:DFB5BDB5 DEFW of 2 words
8838:163EFE3B DEFW of 2 words
883C:472D452D DEFW of 2 words
8840:F1ABF0AB DEFW of 2 words
8844:B132A532 DEFW of 2 words
8848:EE2BED2B DEFW of 2 words
884C:CEB4BCB4 DEFW of 2 words
8850:57315131 DEFW of 2 words
8854:8EAA8DAA DEFW of 2 words
8858:DEADDCAD DEFW of 2 words
885C:D1AECEAE DEFW of 2 words
8860:23B50DB5 DEFW of 2 words
8864:F9B96FB9 DEFW of 2 words
8868:84317D31 DEFW of 2 words
886C:1C3EFE3B DEFW of 2 words
8870:583AB339 DEFW of 2 words
8874:0E35F934 DEFW of 2 words
8878:96AC95AC DEFW of 2 words
887C:B7ACB6AC DEFW of 2 words
8880:333CF03A DEFW of 2 words
8884:E530E030 DEFW of 2 words
8888:0439B238 DEFW of 2 words
888C:71BDD3BB DEFW of 2 words
8890:44B23AB2 DEFW of 2 words
8894:382B372B DEFW of 2 words
8898:92B575B5 DEFW of 2 words
889C:2E37F136 DEFW of 2 words
88A0:293DB03B DEFW of 2 words
88A4:C22BC12B DEFW of 2 words
88A8:7DB36CB3 DEFW of 2 words
88AC:96B74EB7 DEFW of 2 words
88B0:653DCE3B DEFW of 2 words
88B4:2D351635 DEFW of 2 words
88B8:352B342B DEFW of 2 words
88BC:8A308630 DEFW of 2 words
88C0:DCBA0DBA DEFW of 2 words
88C4:E1389538 DEFW of 2 words
88C8:0EAE0CAE DEFW of 2 words
88CC:29B512B5 DEFW of 2 words
88D0:C2394639 DEFW of 2 words
88D4:96AB95AB DEFW of 2 words
88D8:DEABDDAB DEFW of 2 words
88DC:8DBB7BBA DEFW of 2 words
88E0:E59BE59B DEFW of 2 words
88E4:99279927 DEFW of 2 words
88E8:02AD01AD DEFW of 2 words
88EC:5AB057B0 DEFW of 2 words
88F0:0EB5F9B4 DEFW of 2 words
88F4:AF2DAD2D DEFW of 2 words
88F8:D029CF29 DEFW of 2 words
88FC:73B06FB0 DEFW of 2 words
8900:D12FCC2F DEFW of 2 words
8904:EA30E530 DEFW of 2 words
8908:6C390439 DEFW of 2 words
890C:232D222D DEFW of 2 words
8910:BAADB8AD DEFW of 2 words
8914:F5AEF1AE DEFW of 2 words
8918:8BB65DB6 DEFW of 2 words
891C:79AB78AB DEFW of 2 words
8920:25B21BB2 DEFW of 2 words
8924:6EBB68BA DEFW of 2 words
8928:373DB73B DEFW of 2 words
892C:D22CD12C DEFW of 2 words
8930:902D8E2D DEFW of 2 words
8934:E23BAB3A DEFW of 2 words
8938:270D270D DEFW of 2 words
893C:6CB068B0 DEFW of 2 words
8940:62BABAB9 DEFW of 2 words
8944:1AB30BB3 DEFW of 2 words
8948:3BAD3AAD DEFW of 2 words
894C:30AF2CAF DEFW of 2 words
8950:A0BC53BB DEFW of 2 words
8954:6FB35EB3 DEFW of 2 words
8958:4E39ED38 DEFW of 2 words
895C:44AE41AE DEFW of 2 words
8960:90A090A0 DEFW of 2 words
8964:BCACBBAC DEFW of 2 words
8968:0939B638 DEFW of 2 words
896C:6C364036 DEFW of 2 words
8970:D9ACD8AC DEFW of 2 words
8974:F029EF29 DEFW of 2 words
8978:60345234 DEFW of 2 words
897C:74390A39 DEFW of 2 words
8980:66B355B3 DEFW of 2 words
8984:A5358735 DEFW of 2 words
8988:9F3DE43B DEFW of 2 words
898C:A3367336 DEFW of 2 words
8990:6CAF68AF DEFW of 2 words
8994:47323D32 DEFW of 2 words
8998:84347534 DEFW of 2 words
899C:063D9B3B DEFW of 2 words
89A0:86365836 DEFW of 2 words
89A4:27BA90B9 DEFW of 2 words
89A8:12B5FCB4 DEFW of 2 words
89AC:B5B4A4B4 DEFW of 2 words
89B0:BC3C683B DEFW of 2 words
89B4:1EAC1DAC DEFW of 2 words
89B8:ECB1E3B1 DEFW of 2 words
89BC:6C316531 DEFW of 2 words
89C0:742E712E DEFW of 2 words
89C4:42B13CB1 DEFW of 2 words
89C8:91374A37 DEFW of 2 words
89CC:8C2A8B2A DEFW of 2 words
89D0:80BB73BA DEFW of 2 words
89D4:23321932 DEFW of 2 words
89D8:61325632 DEFW of 2 words
89DC:AF3B8E3A DEFW of 2 words
89E0:692B682B DEFW of 2 words
89E4:EF2DED2D DEFW of 2 words
89E8:949A949A DEFW of 2 words
89EC:96B28AB2 DEFW of 2 words
89F0:8DB84FB8 DEFW of 2 words
89F4:CDBB9FBA DEFW of 2 words
89F8:67335633 DEFW of 2 words
89FC:4D362436 DEFW of 2 words
8A00:25AF21AF DEFW of 2 words
8A04:D52CD42C DEFW of 2 words
8A08:1BB410B4 DEFW of 2 words
8A0C:AAB397B3 DEFW of 2 words
8A10:31B51AB5 DEFW of 2 words
8A14:748F748F DEFW of 2 words
8A18:3FAB3EAB DEFW of 2 words
8A1C:FE2BFD2B DEFW of 2 words
8A20:96BADEB9 DEFW of 2 words
8A24:0D2E0B2E DEFW of 2 words
8A28:A5B930B9 DEFW of 2 words
8A2C:F2B0EDB0 DEFW of 2 words
8A30:F6BC91BB DEFW of 2 words
8A34:6B345D34 DEFW of 2 words
8A38:0E320532 DEFW of 2 words
8A3C:943ADD39 DEFW of 2 words
8A40:34B9D8B8 DEFW of 2 words
8A44:14B7D9B6 DEFW of 2 words
8A48:52B445B4 DEFW of 2 words
8A4C:F1379F37 DEFW of 2 words
8A50:262E242E DEFW of 2 words
8A54:363DB73B DEFW of 2 words
8A58:EEAAEDAA DEFW of 2 words
8A5C:5F2D5D2D DEFW of 2 words
8A60:0035EB34 DEFW of 2 words
8A64:FEAAFDAA DEFW of 2 words
8A68:183CD53A DEFW of 2 words
8A6C:F131E831 DEFW of 2 words
8A70:86B082B0 DEFW of 2 words
8A74:CE394F39 DEFW of 2 words
8A78:DE395B39 DEFW of 2 words
8A7C:E935C735 DEFW of 2 words
8A80:3DBE00BC DEFW of 2 words
8A84:42AA41AA DEFW of 2 words
8A88:CFAACEAA DEFW of 2 words
8A8C:47B43AB4 DEFW of 2 words
8A90:EFB1E6B1 DEFW of 2 words
8A94:D0ACCFAC DEFW of 2 words
8A98:C3B776B7 DEFW of 2 words
8A9C:2938F337 DEFW of 2 words
8AA0:B2B93AB9 DEFW of 2 words
8AA4:EE3DF83B DEFW of 2 words
8AA8:E5B5C3B5 DEFW of 2 words
8AAC:7A326F32 DEFW of 2 words
8AB0:81336F33 DEFW of 2 words
8AB4:AD31A531 DEFW of 2 words
8AB8:FE33E933 DEFW of 2 words
8ABC:BBACBAAC DEFW of 2 words
8AC0:F6B5D3B5 DEFW of 2 words
8AC4:79A179A1 DEFW of 2 words
8AC8:603AB939 DEFW of 2 words
8ACC:0331FE30 DEFW of 2 words
8AD0:90AF8BAF DEFW of 2 words
8AD4:1AA71AA7 DEFW of 2 words
8AD8:CAA6CAA6 DEFW of 2 words
8ADC:E7B2D9B2 DEFW of 2 words
8AE0:E2B6ACB6 DEFW of 2 words
8AE4:0A35F534 DEFW of 2 words
8AE8:1D38DE37 DEFW of 2 words
8AEC:5B305830 DEFW of 2 words
8AF0:B72AB62A DEFW of 2 words
8AF4:97B385B3 DEFW of 2 words
8AF8:E12AE02A DEFW of 2 words
8AFC:7BAB7AAB DEFW of 2 words
8B00:E03A0F3A DEFW of 2 words
8B04:0733F932 DEFW of 2 words
8B08:67BABEB9 DEFW of 2 words
8B0C:87B083B0 DEFW of 2 words
8B10:FA30F530 DEFW of 2 words
8B14:76B83CB8 DEFW of 2 words
8B18:433AA439 DEFW of 2 words
8B1C:1B301830 DEFW of 2 words
8B20:492F452F DEFW of 2 words
8B24:633DCD3B DEFW of 2 words
8B28:13310E31 DEFW of 2 words
8B2C:03B5EEB4 DEFW of 2 words
8B30:18BCD5BA DEFW of 2 words
8B34:77346834 DEFW of 2 words
8B38:80AA7FAA DEFW of 2 words
8B3C:97B668B6 DEFW of 2 words
8B40:D406D406 DEFW of 2 words
8B44:77AD75AD DEFW of 2 words
8B48:63BDCDBB DEFW of 2 words
8B4C:B8ABB7AB DEFW of 2 words
8B50:B12DAF2D DEFW of 2 words
8B54:76B732B7 DEFW of 2 words
8B58:C330BF30 DEFW of 2 words
8B5C:05A905A9 DEFW of 2 words
8B60:BC3DED3B DEFW of 2 words
8B64:ED3C8B3B DEFW of 2 words
8B68:552A542A DEFW of 2 words
8B6C:F6BDF9BB DEFW of 2 words
8B70:373E003C DEFW of 2 words
8B74:D3B2C6B2 DEFW of 2 words
8B78:9B2E982E DEFW of 2 words
8B7C:572A562A DEFW of 2 words
8B80:1FB9C7B8 DEFW of 2 words
8B84:952A942A DEFW of 2 words
8B88:99BDE2BB DEFW of 2 words
8B8C:C2B5A2B5 DEFW of 2 words
8B90:AE9DAE9D DEFW of 2 words
8B94:02AB01AB DEFW of 2 words
8B98:33B60CB6 DEFW of 2 words
8B9C:75B26AB2 DEFW of 2 words
8BA0:293B3E3A DEFW of 2 words
8BA4:9DBAE3B9 DEFW of 2 words
8BA8:BB387638 DEFW of 2 words
8BAC:F5B96CB9 DEFW of 2 words
8BB0:9DB48DB4 DEFW of 2 words
8BB4:D1369D36 DEFW of 2 words
8BB8:EB36B436 DEFW of 2 words
8BBC:7EB07AB0 DEFW of 2 words
8BC0:EAABE9AB DEFW of 2 words
8BC4:E385E385 DEFW of 2 words
8BC8:58AC57AC DEFW of 2 words
8BCC:2236FC35 DEFW of 2 words
8BD0:DDB2D0B2 DEFW of 2 words
8BD4:4B2D492D DEFW of 2 words
8BD8:7E373937 DEFW of 2 words
8BDC:FA38A938 DEFW of 2 words
8BE0:B1B86DB8 DEFW of 2 words
8BE4:1C350635 DEFW of 2 words
8BE8:4C304930 DEFW of 2 words
8BEC:FDBA22BA DEFW of 2 words
8BF0:DC2DDA2D DEFW of 2 words
8BF4:D3378437 DEFW of 2 words
8BF8:E8B4D4B4 DEFW of 2 words
8BFC:50AA4FAA DEFW of 2 words
8C00:1838D637 DEFW of 2 words
8C04:0735F234 DEFW of 2 words
8C08:5B344D34 DEFW of 2 words
8C0C:F8A9F7A9 DEFW of 2 words
8C10:9AB928B9 DEFW of 2 words
8C14:313A9739 DEFW of 2 words
8C18:DEBDF5BB DEFW of 2 words
8C1C:DA395839 DEFW of 2 words
8C20:ADADABAD DEFW of 2 words
8C24:C5ABC4AB DEFW of 2 words
8C28:05B5F0B4 DEFW of 2 words
8C2C:EE38A038 DEFW of 2 words
8C30:3FAC3EAC DEFW of 2 words
8C34:0FBEFDBB DEFW of 2 words
8C38:5CB34BB3 DEFW of 2 words
8C3C:363B463A DEFW of 2 words
8C40:B82CB72C DEFW of 2 words
8C44:AB329F32 DEFW of 2 words
8C48:6EAE6BAE DEFW of 2 words
8C4C:0535F034 DEFW of 2 words
8C50:1AB7DFB6 DEFW of 2 words
8C54:B2ABB1AB DEFW of 2 words
8C58:3EB431B4 DEFW of 2 words
8C5C:6FBAC3B9 DEFW of 2 words
8C60:A630A230 DEFW of 2 words
8C64:50B81BB8 DEFW of 2 words
8C68:92249224 DEFW of 2 words
8C6C:FBADF9AD DEFW of 2 words
8C70:88356C35 DEFW of 2 words
8C74:D72BD62B DEFW of 2 words
8C78:7EAA7DAA DEFW of 2 words
8C7C:0032F731 DEFW of 2 words
8C80:5C382638 DEFW of 2 words
8C84:C5369236 DEFW of 2 words
8C88:1337D936 DEFW of 2 words
8C8C:853C3C3B DEFW of 2 words
8C90:8B3B793A DEFW of 2 words
8C94:A4386238 DEFW of 2 words
8C98:87BDDCBB DEFW of 2 words
8C9C:A73B8A3A DEFW of 2 words
8CA0:45AB44AB DEFW of 2 words
8CA4:D834C534 DEFW of 2 words
8CA8:2E302B30 DEFW of 2 words
8CAC:99AC98AC DEFW of 2 words
8CB0:F3B5D0B5 DEFW of 2 words
8CB4:19B016B0 DEFW of 2 words
8CB8:CEBC76BB DEFW of 2 words
8CBC:E1B5BFB5 DEFW of 2 words
8CC0:2EBA95B9 DEFW of 2 words
8CC4:BEABBDAB DEFW of 2 words
8CC8:1FBA8BB9 DEFW of 2 words
8CCC:0BB8BFB7 DEFW of 2 words
8CD0:A9393339 DEFW of 2 words
8CD4:4339E438 DEFW of 2 words
8CD8:71390839 DEFW of 2 words
8CDC:56BB5ABA DEFW of 2 words
8CE0:0DB9B9B8 DEFW of 2 words
8CE4:2FAD2EAD DEFW of 2 words
8CE8:64BC1FBB DEFW of 2 words
8CEC:60315A31 DEFW of 2 words
8CF0:032C022C DEFW of 2 words
8CF4:9D3DE33B DEFW of 2 words
8CF8:E42AE32A DEFW of 2 words
8CFC:46BDBFBB DEFW of 2 words
8D00:4A3C073B DEFW of 2 words
8D04:D7BC7CBB DEFW of 2 words
8D08:E52CE42C DEFW of 2 words
8D0C:8A948A94 DEFW of 2 words
8D10:36AE34AE DEFW of 2 words
8D14:DD3BA83A DEFW of 2 words
8D18:96BDE1BB DEFW of 2 words
8D1C:2D3DB23B DEFW of 2 words
8D20:2A2B292B DEFW of 2 words
8D24:D2ADD0AD DEFW of 2 words
8D28:403CFD3A DEFW of 2 words
8D2C:92348234 DEFW of 2 words
8D30:0FAE0DAE DEFW of 2 words
8D34:F7AAF6AA DEFW of 2 words
8D38:21AA20AA DEFW of 2 words
8D3C:5F885F88 DEFW of 2 words
8D40:74BAC7B9 DEFW of 2 words
8D44:71B266B2 DEFW of 2 words
8D48:94BADDB9 DEFW of 2 words
8D4C:483E003C DEFW of 2 words
8D50:6BBC25BB DEFW of 2 words
8D54:092D082D DEFW of 2 words
8D58:53B343B3 DEFW of 2 words
8D5C:2FB9D4B8 DEFW of 2 words
8D60:8E2A8D2A DEFW of 2 words
8D64:003B243A DEFW of 2 words
8D68:59315331 DEFW of 2 words
8D6C:13330433 DEFW of 2 words
8D70:6F3C293B DEFW of 2 words
8D74:3C2A3B2A DEFW of 2 words
8D78:0F38C637 DEFW of 2 words
8D7C:D4BC7ABB DEFW of 2 words
8D80:9EAE9BAE DEFW of 2 words
8D84:D333BF33 DEFW of 2 words
8D88:CC2EC92E DEFW of 2 words
8D8C:513AAE39 DEFW of 2 words
8D90:3B332B33 DEFW of 2 words
8D94:37B51FB5 DEFW of 2 words
8D98:98139813 DEFW of 2 words
8D9C:543C103B DEFW of 2 words
8DA0:76B26BB2 DEFW of 2 words
8DA4:292F252F DEFW of 2 words
8DA8:612D5F2D DEFW of 2 words
8DAC:902E8D2E DEFW of 2 words
8DB0:EC35CA35 DEFW of 2 words
8DB4:5A363036 DEFW of 2 words
8DB8:81AA80AA DEFW of 2 words
8DBC:DA388F38 DEFW of 2 words
8DC0:9C392939 DEFW of 2 words
8DC4:B1339E33 DEFW of 2 words
8DC8:463B503A DEFW of 2 words
8DCC:E032D232 DEFW of 2 words
8DD0:B22AB12A DEFW of 2 words
8DD4:08B9B5B8 DEFW of 2 words
8DD8:9F3B853A DEFW of 2 words
8DDC:2C3EFF3B DEFW of 2 words
8DE0:DAB5B9B5 DEFW of 2 words
8DE4:F7BC92BB DEFW of 2 words
8DE8:802E7D2E DEFW of 2 words
8DEC:98B57BB5 DEFW of 2 words
8DF0:DFBA0FBA DEFW of 2 words
8DF4:0737CE36 DEFW of 2 words
8DF8:E8B797B7 DEFW of 2 words
8DFC:C533B233 DEFW of 2 words
8E00:2539CC38 DEFW of 2 words
8E04:0D3DA03B DEFW of 2 words
8E08:282E262E DEFW of 2 words
8E0C:A8329C32 DEFW of 2 words
8E10:4B2F472F DEFW of 2 words
8E14:9F358235 DEFW of 2 words
8E18:863B763A DEFW of 2 words
8E1C:7C3C343B DEFW of 2 words
8E20:9D3C503B DEFW of 2 words
8E24:31342534 DEFW of 2 words
8E28:1F321532 DEFW of 2 words
8E2C:0D2D0C2D DEFW of 2 words
8E30:0B310631 DEFW of 2 words
8E34:91AC90AC DEFW of 2 words
8E38:A2B09EB0 DEFW of 2 words
8E3C:8E3C443B DEFW of 2 words
8E40:D1B4BEB4 DEFW of 2 words
8E44:B1393939 DEFW of 2 words
8E48:42BAA4B9 DEFW of 2 words
8E4C:2FB129B1 DEFW of 2 words
8E50:0837CF36 DEFW of 2 words
8E54:4D39EC38 DEFW of 2 words
8E58:D835B735 DEFW of 2 words
8E5C:94B288B2 DEFW of 2 words
8E60:0B2F072F DEFW of 2 words
8E64:BFB5A0B5 DEFW of 2 words
8E68:21B6FBB5 DEFW of 2 words
8E6C:AE359035 DEFW of 2 words
8E70:29B7ECB6 DEFW of 2 words
8E74:0833FA32 DEFW of 2 words
8E78:56B715B7 DEFW of 2 words
8E7C:DB2ED82E DEFW of 2 words
8E80:BCBB96BA DEFW of 2 words
8E84:943DE03B DEFW of 2 words
8E88:1EB7E3B6 DEFW of 2 words
8E8C:23B020B0 DEFW of 2 words
8E90:A8AFA3AF DEFW of 2 words
8E94:96B18FB1 DEFW of 2 words
8E98:56344834 DEFW of 2 words
8E9C:162F122F DEFW of 2 words
8EA0:21B217B2 DEFW of 2 words
8EA4:74346534 DEFW of 2 words
8EA8:EFAFEAAF DEFW of 2 words
8EAC:72B361B3 DEFW of 2 words
8EB0:9BBC4EBB DEFW of 2 words
8EB4:9BBB83BA DEFW of 2 words
8EB8:05AF01AF DEFW of 2 words
8EBC:882D862D DEFW of 2 words
8EC0:AAB29EB2 DEFW of 2 words
8EC4:00B5EBB4 DEFW of 2 words
8EC8:1938D737 DEFW of 2 words
8ECC:232C222C DEFW of 2 words
8ED0:6EBDD2BB DEFW of 2 words
8ED4:573C133B DEFW of 2 words
8ED8:ABB935B9 DEFW of 2 words
8EDC:F932EB32 DEFW of 2 words
8EE0:383CF53A DEFW of 2 words
8EE4:9FAE9CAE DEFW of 2 words
8EE8:09B9B6B8 DEFW of 2 words
8EEC:93B74BB7 DEFW of 2 words
8EF0:B6BC64BB DEFW of 2 words
8EF4:0337CA36 DEFW of 2 words
8EF8:93318C31 DEFW of 2 words
8EFC:20B50AB5 DEFW of 2 words
8F00:FABC94BB DEFW of 2 words
8F04:42B80FB8 DEFW of 2 words
8F08:65AA64AA DEFW of 2 words
8F0C:35AA34AA DEFW of 2 words
8F10:1D39C638 DEFW of 2 words
8F14:EAAAE9AA DEFW of 2 words
8F18:89BAD5B9 DEFW of 2 words
8F1C:17BB33BA DEFW of 2 words
8F20:8E374737 DEFW of 2 words
8F24:F0ABEFAB DEFW of 2 words
8F28:DB36A636 DEFW of 2 words
8F2C:4A39E938 DEFW of 2 words
8F30:D1B5B0B5 DEFW of 2 words
8F34:1BAD1AAD DEFW of 2 words
8F38:379F379F DEFW of 2 words
8F3C:23BEFFBB DEFW of 2 words
8F40:62372037 DEFW of 2 words
8F44:DA2CD92C DEFW of 2 words
8F48:EC2DEA2D DEFW of 2 words
8F4C:0FB404B4 DEFW of 2 words
8F50:7E2A7D2A DEFW of 2 words
8F54:2A312431 DEFW of 2 words
8F58:8D038D03 DEFW of 2 words
8F5C:7DAC7CAC DEFW of 2 words
8F60:33173317 DEFW of 2 words
8F64:85308130 DEFW of 2 words
8F68:4C3DC23B DEFW of 2 words
8F6C:FA3DFA3B DEFW of 2 words
8F70:D23C793B DEFW of 2 words
8F74:9A392839 DEFW of 2 words
8F78:9A2D982D DEFW of 2 words
8F7C:213B393A DEFW of 2 words
8F80:2C8E2C8E DEFW of 2 words
8F84:89B27DB2 DEFW of 2 words
8F88:F5396C39 DEFW of 2 words
8F8C:17340C34 DEFW of 2 words
8F90:052D042D DEFW of 2 words
8F94:F5B6BDB6 DEFW of 2 words
8F98:CB29CA29 DEFW of 2 words
8F9C:5D3B5E3A DEFW of 2 words
8FA0:90374937 DEFW of 2 words
8FA4:E32FDE2F DEFW of 2 words
8FA8:B93AF539 DEFW of 2 words
8FAC:E8B89BB8 DEFW of 2 words
8FB0:40BCFDBA DEFW of 2 words
8FB4:362B352B DEFW of 2 words
8FB8:6A390339 DEFW of 2 words
8FBC:33B9D7B8 DEFW of 2 words
8FC0:FEBA23BA DEFW of 2 words
8FC4:562B552B DEFW of 2 words
8FC8:5FBDCBBB DEFW of 2 words
8FCC:68BDCFBB DEFW of 2 words
8FD0:31BA97B9 DEFW of 2 words
8FD4:1CBA88B9 DEFW of 2 words
8FD8:D4A9D3A9 DEFW of 2 words
8FDC:85268526 DEFW of 2 words
8FE0:2EAB2DAB DEFW of 2 words
8FE4:64B060B0 DEFW of 2 words
8FE8:EC2EE92E DEFW of 2 words
8FEC:5F3B5F3A DEFW of 2 words
8FF0:8FB660B6 DEFW of 2 words
8FF4:92AF8DAF DEFW of 2 words
8FF8:8F366036 DEFW of 2 words
8FFC:69325E32 DEFW of 2 words
9000:B93DEC3B DEFW of 2 words
9004:94929492 DEFW of 2 words
9008:CAB0C5B0 DEFW of 2 words
900C:77AC76AC DEFW of 2 words
9010:CC2BCB2B DEFW of 2 words
9014:90366136 DEFW of 2 words
9018:4DBB54BA DEFW of 2 words
901C:2FBEFFBB DEFW of 2 words
9020:E6B4D3B4 DEFW of 2 words
9024:742A732A DEFW of 2 words
9028:6D3DD13B DEFW of 2 words
902C:27AD26AD DEFW of 2 words
9030:D38DD38D DEFW of 2 words
9034:632F5F2F DEFW of 2 words
9038:2337E736 DEFW of 2 words
903C:07310231 DEFW of 2 words
9040:28331933 DEFW of 2 words
9044:0F3A7F39 DEFW of 2 words
9048:32342634 DEFW of 2 words
904C:91839183 DEFW of 2 words
9050:65335433 DEFW of 2 words
9054:E83C883B DEFW of 2 words
9058:85A585A5 DEFW of 2 words
905C:AE0EAE0E DEFW of 2 words
9060:3F3B4C3A DEFW of 2 words
9064:A13B863A DEFW of 2 words
9068:612E5E2E DEFW of 2 words
906C:652F612F DEFW of 2 words
9070:6E316731 DEFW of 2 words
9074:CEB94FB9 DEFW of 2 words
9078:42BB4DBA DEFW of 2 words
907C:73B464B4 DEFW of 2 words
9080:F7B7A4B7 DEFW of 2 words
9084:E134CE34 DEFW of 2 words
9088:2F3A9639 DEFW of 2 words
908C:FA2AF92A DEFW of 2 words
9090:45333533 DEFW of 2 words
9094:7B987B98 DEFW of 2 words
9098:E9AEE6AE DEFW of 2 words
909C:59354035 DEFW of 2 words
90A0:14340934 DEFW of 2 words
90A4:C52BC42B DEFW of 2 words
90A8:EEB1E5B1 DEFW of 2 words
90AC:2FAE2DAE DEFW of 2 words
90B0:CB30C630 DEFW of 2 words
90B4:5F3C1A3B DEFW of 2 words
90B8:B1BDEABB DEFW of 2 words
90BC:63382C38 DEFW of 2 words
90C0:1DB213B2 DEFW of 2 words
90C4:C435A435 DEFW of 2 words
90C8:35BB45BA DEFW of 2 words
90CC:45BAA6B9 DEFW of 2 words
90D0:15301230 DEFW of 2 words
90D4:442C432C DEFW of 2 words
90D8:E23C843B DEFW of 2 words
90DC:E82CE72C DEFW of 2 words
90E0:25922592 DEFW of 2 words
90E4:92374A37 DEFW of 2 words
90E8:BAB3A7B3 DEFW of 2 words
90EC:022B012B DEFW of 2 words
90F0:953C4A3B DEFW of 2 words
90F4:E3B4D0B4 DEFW of 2 words
90F8:B230AE30 DEFW of 2 words
90FC:1AAE18AE DEFW of 2 words
9100:F83BB73A DEFW of 2 words
9104:1DB30EB3 DEFW of 2 words
9108:6D3C273B DEFW of 2 words
910C:78B367B3 DEFW of 2 words
9110:5BB9F7B8 DEFW of 2 words
9114:34342834 DEFW of 2 words
9118:6BB832B8 DEFW of 2 words
911C:D13A053A DEFW of 2 words
9120:7BA27BA2 DEFW of 2 words
9124:5A305730 DEFW of 2 words
9128:5CAA5BAA DEFW of 2 words
912C:B5387138 DEFW of 2 words
9130:1A330B33 DEFW of 2 words
9134:96338433 DEFW of 2 words
9138:1A311431 DEFW of 2 words
913C:B83B933A DEFW of 2 words
9140:DA29D929 DEFW of 2 words
9144:0C38C137 DEFW of 2 words
9148:74336333 DEFW of 2 words
914C:2E312831 DEFW of 2 words
9150:992F942F DEFW of 2 words
9154:99AD97AD DEFW of 2 words
9158:F3ACF2AC DEFW of 2 words
915C:9F338D33 DEFW of 2 words
9160:0CB203B2 DEFW of 2 words
9164:E9B0E4B0 DEFW of 2 words
9168:D3369F36 DEFW of 2 words
916C:B12EAE2E DEFW of 2 words
9170:C3A6C3A6 DEFW of 2 words
9174:A52EA22E DEFW of 2 words
9178:91AA90AA DEFW of 2 words
917C:D733C333 DEFW of 2 words
9180:81347234 DEFW of 2 words
9184:1AB114B1 DEFW of 2 words
9188:B42DB22D DEFW of 2 words
918C:603C1B3B DEFW of 2 words
9190:12B7D8B6 DEFW of 2 words
9194:E433D033 DEFW of 2 words
9198:FEAFF9AF DEFW of 2 words
919C:303DB43B DEFW of 2 words
91A0:EE3A183A DEFW of 2 words
91A4:B2368036 DEFW of 2 words
91A8:649F649F DEFW of 2 words
91AC:94328832 DEFW of 2 words
91B0:5E2B5D2B DEFW of 2 words
91B4:CABB9EBA DEFW of 2 words
91B8:33322932 DEFW of 2 words
91BC:1538D037 DEFW of 2 words
91C0:F1B3DCB3 DEFW of 2 words
91C4:D3A9D2A9 DEFW of 2 words
91C8:DAB958B9 DEFW of 2 words
91CC:4C2F482F DEFW of 2 words
91D0:88978897 DEFW of 2 words
91D4:512E4E2E DEFW of 2 words
91D8:ECA9EBA9 DEFW of 2 words
91DC:B53DEB3B DEFW of 2 words
91E0:6EBAC2B9 DEFW of 2 words
91E4:A82BA72B DEFW of 2 words
91E8:9A2E972E DEFW of 2 words
91EC:572D552D DEFW of 2 words
91F0:6DB729B7 DEFW of 2 words
91F4:1D2D1C2D DEFW of 2 words
91F8:9F0E9F0E DEFW of 2 words
91FC:583B5B3A DEFW of 2 words
9200:4F3DC43B DEFW of 2 words
9204:94B18DB1 DEFW of 2 words
9208:42AD40AD DEFW of 2 words
920C:ABACAAAC DEFW of 2 words
9210:C3B690B6 DEFW of 2 words
9214:BD2FB82F DEFW of 2 words
9218:94348434 DEFW of 2 words
921C:C3B87CB8 DEFW of 2 words
9220:17AB16AB DEFW of 2 words
9224:A1B09DB0 DEFW of 2 words
9228:33B229B2 DEFW of 2 words
922C:B1B4A0B4 DEFW of 2 words
9230:38B610B6 DEFW of 2 words
9234:023CBD3A DEFW of 2 words
9238:48B708B7 DEFW of 2 words
923C:ACBAEDB9 DEFW of 2 words
9240:80B564B5 DEFW of 2 words
9244:B2ADB0AD DEFW of 2 words
9248:B232A632 DEFW of 2 words
924C:CA2CC92C DEFW of 2 words
9250:0933FB32 DEFW of 2 words
9254:0135EC34 DEFW of 2 words
9258:1D36F735 DEFW of 2 words
925C:20802080 DEFW of 2 words
9260:022C012C DEFW of 2 words
9264:ECB6B5B6 DEFW of 2 words
9268:24B6FEB5 DEFW of 2 words
926C:C3394739 DEFW of 2 words
9270:62382B38 DEFW of 2 words
9274:A1358335 DEFW of 2 words
9278:1D37E236 DEFW of 2 words
927C:752C742C DEFW of 2 words
9280:B6B2A9B2 DEFW of 2 words
9284:A6AFA1AF DEFW of 2 words
9288:C6B779B7 DEFW of 2 words
928C:64AD62AD DEFW of 2 words
9290:E13DF63B DEFW of 2 words
9294:E4BBACBA DEFW of 2 words
9298:D8B3C4B3 DEFW of 2 words
929C:A3309F30 DEFW of 2 words
92A0:B52EB22E DEFW of 2 words
92A4:9F2A9E2A DEFW of 2 words
92A8:FC31F331 DEFW of 2 words
92AC:B8376C37 DEFW of 2 words
92B0:4D3DC33B DEFW of 2 words
92B4:AF339C33 DEFW of 2 words
92B8:1A340F34 DEFW of 2 words
92BC:3C2F382F DEFW of 2 words
92C0:83373D37 DEFW of 2 words
92C4:A2ABA1AB DEFW of 2 words
92C8:3DAB3CAB DEFW of 2 words
92CC:08B103B1 DEFW of 2 words
92D0:19B8D7B7 DEFW of 2 words
92D4:46AF42AF DEFW of 2 words
92D8:06B3F8B2 DEFW of 2 words
92DC:81B17AB1 DEFW of 2 words
92E0:C235A235 DEFW of 2 words
92E4:D8378937 DEFW of 2 words
92E8:C5B692B6 DEFW of 2 words
92EC:0936E535 DEFW of 2 words
92F0:FB9FFB9F DEFW of 2 words
92F4:24B7E8B6 DEFW of 2 words
92F8:0BAE09AE DEFW of 2 words
92FC:20BCDDBA DEFW of 2 words
9300:5ABC16BB DEFW of 2 words
9304:37313131 DEFW of 2 words
9308:E832DA32 DEFW of 2 words
930C:C6387F38 DEFW of 2 words
9310:D1A1D1A1 DEFW of 2 words
9314:612C602C DEFW of 2 words
9318:B0376537 DEFW of 2 words
931C:AF349E34 DEFW of 2 words
9320:7DB911B9 DEFW of 2 words
9324:B73DEB3B DEFW of 2 words
9328:7EBDD8BB DEFW of 2 words
932C:02AFFEAE DEFW of 2 words
9330:CABDF0BB DEFW of 2 words
9334:19101910 DEFW of 2 words
9338:8D968D96 DEFW of 2 words
933C:0DB204B2 DEFW of 2 words
9340:A8AAA7AA DEFW of 2 words
9344:F2B5CFB5 DEFW of 2 words
9348:86B658B6 DEFW of 2 words
934C:9C3AE239 DEFW of 2 words
9350:7DAD7BAD DEFW of 2 words
9354:54324932 DEFW of 2 words
9358:B9B2ACB2 DEFW of 2 words
935C:9AAB99AB DEFW of 2 words
9360:11B5FBB4 DEFW of 2 words
9364:FD35D935 DEFW of 2 words
9368:213A8C39 DEFW of 2 words
936C:EA33D533 DEFW of 2 words
9370:BA2CB92C DEFW of 2 words
9374:31AC30AC DEFW of 2 words
9378:33BE00BC DEFW of 2 words
937C:562F522F DEFW of 2 words
9380:B5376A37 DEFW of 2 words
9384:FCB2EEB2 DEFW of 2 words
9388:BC359D35 DEFW of 2 words
938C:CAB882B8 DEFW of 2 words
9390:06AF02AF DEFW of 2 words
9394:4B324132 DEFW of 2 words
9398:98357B35 DEFW of 2 words
939C:C5BDEFBB DEFW of 2 words
93A0:ACB58EB5 DEFW of 2 words
93A4:D632C932 DEFW of 2 words
93A8:F52DF32D DEFW of 2 words
93AC:322E302E DEFW of 2 words
93B0:6CBAC1B9 DEFW of 2 words
93B4:25BEFFBB DEFW of 2 words
93B8:08B7CFB6 DEFW of 2 words
93BC:6D345F34 DEFW of 2 words
93C0:CCB2BFB2 DEFW of 2 words
93C4:C5AEC2AE DEFW of 2 words
93C8:5339F138 DEFW of 2 words
93CC:CAB4B8B4 DEFW of 2 words
93D0:2E342234 DEFW of 2 words
93D4:B0393839 DEFW of 2 words
93D8:2E2B2D2B DEFW of 2 words
93DC:E6AFE1AF DEFW of 2 words
93E0:9AB193B1 DEFW of 2 words
93E4:2C2C2B2C DEFW of 2 words
93E8:A7BC58BB DEFW of 2 words
93EC:22262226 DEFW of 2 words
93F0:DA2AD92A DEFW of 2 words
93F4:502A4F2A DEFW of 2 words
93F8:BAB1B2B1 DEFW of 2 words
93FC:4FB9EDB8 DEFW of 2 words
9400:AAB499B4 DEFW of 2 words
9404:093D9D3B DEFW of 2 words
9408:3038FF37 DEFW of 2 words
940C:5F2E5C2E DEFW of 2 words
9410:13B6EEB5 DEFW of 2 words
9414:B1ACB0AC DEFW of 2 words
9418:6B3B663A DEFW of 2 words
941C:0CAE0AAE DEFW of 2 words
9420:62AA61AA DEFW of 2 words
9424:AD349C34 DEFW of 2 words
9428:81B36FB3 DEFW of 2 words
942C:C82FC32F DEFW of 2 words
9430:9A328E32 DEFW of 2 words
9434:F1AFECAF DEFW of 2 words
9438:9EBAE3B9 DEFW of 2 words
943C:77AB76AB DEFW of 2 words
9440:F6B96DB9 DEFW of 2 words
9444:71AF6DAF DEFW of 2 words
9448:F2B4DEB4 DEFW of 2 words
944C:60354635 DEFW of 2 words
9450:AB2CAA2C DEFW of 2 words
9454:4DB70DB7 DEFW of 2 words
9458:E5BDF6BB DEFW of 2 words
945C:BBB76FB7 DEFW of 2 words
9460:25AB24AB DEFW of 2 words
9464:03B7CAB6 DEFW of 2 words
9468:BE2DBC2D DEFW of 2 words
946C:3F39E138 DEFW of 2 words
9470:23AE21AE DEFW of 2 words
9474:3FB700B7 DEFW of 2 words
9478:90348034 DEFW of 2 words
947C:9C338A33 DEFW of 2 words
9480:E92AE82A DEFW of 2 words
9484:A42BA32B DEFW of 2 words
9488:75307130 DEFW of 2 words
948C:882F842F DEFW of 2 words
9490:A5339233 DEFW of 2 words
9494:7E3C363B DEFW of 2 words
9498:FBABFAAB DEFW of 2 words
949C:A32DA12D DEFW of 2 words
94A0:DCB959B9 DEFW of 2 words
94A4:B5ABB4AB DEFW of 2 words
94A8:012EFF2D DEFW of 2 words
94AC:DFB893B8 DEFW of 2 words
94B0:EC2BEB2B DEFW of 2 words
94B4:25341934 DEFW of 2 words
94B8:DC2ADB2A DEFW of 2 words
94BC:8FB851B8 DEFW of 2 words
94C0:F5BC90BB DEFW of 2 words
94C4:FBB0F6B0 DEFW of 2 words
94C8:DDABDCAB DEFW of 2 words
94CC:14B10FB1 DEFW of 2 words
94D0:DA3DF43B DEFW of 2 words
94D4:26341A34 DEFW of 2 words
94D8:31332233 DEFW of 2 words
94DC:0138AD37 DEFW of 2 words
94E0:201A201A DEFW of 2 words
94E4:C72EC42E DEFW of 2 words
94E8:13AD12AD DEFW of 2 words
94EC:323CEF3A DEFW of 2 words
94F0:6B2B6A2B DEFW of 2 words
94F4:B4393B39 DEFW of 2 words
94F8:842B832B DEFW of 2 words
94FC:ACB49BB4 DEFW of 2 words
9500:6D956D95 DEFW of 2 words
9504:ADB49CB4 DEFW of 2 words
9508:11300E30 DEFW of 2 words
950C:03B9B1B8 DEFW of 2 words
9510:CDB1C5B1 DEFW of 2 words
9514:712D6F2D DEFW of 2 words
9518:D534C234 DEFW of 2 words
951C:DEB6A9B6 DEFW of 2 words
9520:C4BDEFBB DEFW of 2 words
9524:D6B955B9 DEFW of 2 words
9528:BDBC69BB DEFW of 2 words
952C:C8A9C7A9 DEFW of 2 words
9530:7D3C353B DEFW of 2 words
9534:25302230 DEFW of 2 words
9538:D9ADD7AD DEFW of 2 words
953C:8C391D39 DEFW of 2 words
9540:E2B1DAB1 DEFW of 2 words
9544:DFABDEAB DEFW of 2 words
9548:BCB2AFB2 DEFW of 2 words
954C:21B312B3 DEFW of 2 words
9550:81868186 DEFW of 2 words
9554:1C36F635 DEFW of 2 words
9558:19BDA7BB DEFW of 2 words
955C:25AD24AD DEFW of 2 words
9560:08BA7AB9 DEFW of 2 words
9564:38AF34AF DEFW of 2 words
9568:EC95EC95 DEFW of 2 words
956C:B0386D38 DEFW of 2 words
9570:393B483A DEFW of 2 words
9574:753B6C3A DEFW of 2 words
9578:E5B1DCB1 DEFW of 2 words
957C:30342434 DEFW of 2 words
9580:ACB762B7 DEFW of 2 words
9584:3B352335 DEFW of 2 words
9588:5B315531 DEFW of 2 words
958C:2237E636 DEFW of 2 words
9590:0B35F634 DEFW of 2 words
9594:E2ABE1AB DEFW of 2 words
9598:2A2D292D DEFW of 2 words
959C:1BA31BA3 DEFW of 2 words
95A0:D23BA23A DEFW of 2 words
95A4:E336AD36 DEFW of 2 words
95A8:912D8F2D DEFW of 2 words
95AC:B8AAB7AA DEFW of 2 words
95B0:10B00DB0 DEFW of 2 words
95B4:A6B393B3 DEFW of 2 words
95B8:EEBDF8BB DEFW of 2 words
95BC:75346634 DEFW of 2 words
95C0:87384A38 DEFW of 2 words
95C4:7EAB7DAB DEFW of 2 words
95C8:312D302D DEFW of 2 words
95CC:93338133 DEFW of 2 words
95D0:ACBDE8BB DEFW of 2 words
95D4:D42BD32B DEFW of 2 words
95D8:F338A438 DEFW of 2 words
95DC:40BAA2B9 DEFW of 2 words
95E0:14AD13AD DEFW of 2 words
95E4:C62FC12F DEFW of 2 words
95E8:6C3DD13B DEFW of 2 words
95EC:6EB263B2 DEFW of 2 words
95F0:0A3A7B39 DEFW of 2 words
95F4:72AC71AC DEFW of 2 words
95F8:B6B4A5B4 DEFW of 2 words
95FC:BE2EBB2E DEFW of 2 words
9600:E234CF34 DEFW of 2 words
9604:AE9FAE9F DEFW of 2 words
9608:CEB3BAB3 DEFW of 2 words
960C:9D2A9C2A DEFW of 2 words
9610:71316A31 DEFW of 2 words
9614:723C2C3B DEFW of 2 words
9618:1AAB19AB DEFW of 2 words
961C:69363D36 DEFW of 2 words
9620:EAACE9AC DEFW of 2 words
9624:FDABFCAB DEFW of 2 words
9628:1AB504B5 DEFW of 2 words
962C:CD3B9F3A DEFW of 2 words
9630:8E108E10 DEFW of 2 words
9634:0D39B938 DEFW of 2 words
9638:C219C219 DEFW of 2 words
963C:85BAD2B9 DEFW of 2 words
9640:203CDD3A DEFW of 2 words
9644:FFB7ABB7 DEFW of 2 words
9648:72167216 DEFW of 2 words
964C:79B46AB4 DEFW of 2 words
9650:E1B1D9B1 DEFW of 2 words
9654:6AB550B5 DEFW of 2 words
9658:2BAF27AF DEFW of 2 words
965C:EB33D633 DEFW of 2 words
9660:FDB2EFB2 DEFW of 2 words
9664:29312331 DEFW of 2 words
9668:DBB6A6B6 DEFW of 2 words
966C:6E335D33 DEFW of 2 words
9670:5B1F5B1F DEFW of 2 words
9674:74B363B3 DEFW of 2 words
9678:38B132B1 DEFW of 2 words
967C:E0B4CDB4 DEFW of 2 words
9680:C2ACC1AC DEFW of 2 words
9684:51B81CB8 DEFW of 2 words
9688:F6ADF4AD DEFW of 2 words
968C:D3BBA3BA DEFW of 2 words
9690:503AAD39 DEFW of 2 words
9694:8D374637 DEFW of 2 words
9698:34B7F6B6 DEFW of 2 words
969C:7BB174B1 DEFW of 2 words
96A0:0A39B638 DEFW of 2 words
96A4:623ABA39 DEFW of 2 words
96A8:DE2BDD2B DEFW of 2 words
96AC:EAB89CB8 DEFW of 2 words
96B0:252A242A DEFW of 2 words
96B4:DE378E37 DEFW of 2 words
96B8:58B717B7 DEFW of 2 words
96BC:2DBDB2BB DEFW of 2 words
96C0:D8AED5AE DEFW of 2 words
96C4:EAADE8AD DEFW of 2 words
96C8:D52BD42B DEFW of 2 words
96CC:352E332E DEFW of 2 words
96D0:A7339433 DEFW of 2 words
96D4:4A2B492B DEFW of 2 words
96D8:70BC2ABB DEFW of 2 words
96DC:26AF22AF DEFW of 2 words
96E0:72B72EB7 DEFW of 2 words
96E4:8C365E36 DEFW of 2 words
96E8:CB3DF13B DEFW of 2 words
96EC:2C2E2A2E DEFW of 2 words
96F0:3F2B3E2B DEFW of 2 words
96F4:EF3BB23A DEFW of 2 words
96F8:6CB640B6 DEFW of 2 words
96FC:9CBDE3BB DEFW of 2 words
9700:96B092B0 DEFW of 2 words
9704:B8368636 DEFW of 2 words
9708:F435D135 DEFW of 2 words
970C:7F2C7E2C DEFW of 2 words
9710:CD394E39 DEFW of 2 words
9714:8FAC8EAC DEFW of 2 words
9718:84384838 DEFW of 2 words
971C:1BB30CB3 DEFW of 2 words
9720:6D2C6C2C DEFW of 2 words
9724:B0ABAFAB DEFW of 2 words
9728:38322E32 DEFW of 2 words
972C:5C371A37 DEFW of 2 words
9730:2BBDB1BB DEFW of 2 words
9734:2F2E2D2E DEFW of 2 words
9738:98338633 DEFW of 2 words
973C:DD2DDB2D DEFW of 2 words
9740:85B73FB7 DEFW of 2 words
9744:E9A6E9A6 DEFW of 2 words
9748:6B363F36 DEFW of 2 words
974C:6EB553B5 DEFW of 2 words
9750:39AD38AD DEFW of 2 words
9754:57BB5ABA DEFW of 2 words
9758:823C3A3B DEFW of 2 words
975C:00B0FBAF DEFW of 2 words
9760:2439CB38 DEFW of 2 words
9764:C5AFC0AF DEFW of 2 words
9768:72390939 DEFW of 2 words
976C:FD37A937 DEFW of 2 words
9770:1039BB38 DEFW of 2 words
9774:430A430A DEFW of 2 words
9778:7A390F39 DEFW of 2 words
977C:F1B0ECB0 DEFW of 2 words
9780:B5AEB2AE DEFW of 2 words
9784:132F0F2F DEFW of 2 words
9788:02BD99BB DEFW of 2 words
978C:C72BC62B DEFW of 2 words
9790:89318231 DEFW of 2 words
9794:56AD54AD DEFW of 2 words
9798:A3339033 DEFW of 2 words
979C:8D2F892F DEFW of 2 words
97A0:F1B79FB7 DEFW of 2 words
97A4:C3387C38 DEFW of 2 words
97A8:01B5ECB4 DEFW of 2 words
97AC:2CBDB1BB DEFW of 2 words
97B0:22B50CB5 DEFW of 2 words
97B4:DFAFDAAF DEFW of 2 words
97B8:5D2C5C2C DEFW of 2 words
97BC:C732BA32 DEFW of 2 words
97C0:46BB50BA DEFW of 2 words
97C4:5DB9F8B8 DEFW of 2 words
97C8:3F2E3C2E DEFW of 2 words
97CC:D532C832 DEFW of 2 words
97D0:F1BC8EBB DEFW of 2 words
97D4:4EAA4DAA DEFW of 2 words
97D8:ACADAAAD DEFW of 2 words
97DC:551C551C DEFW of 2 words
97E0:C629C529 DEFW of 2 words
97E4:B83AF539 DEFW of 2 words
97E8:9A385A38 DEFW of 2 words
97EC:1F350935 DEFW of 2 words
97F0:D8388E38 DEFW of 2 words
97F4:C23C6D3B DEFW of 2 words
97F8:D9BA0BBA DEFW of 2 words
97FC:7CB46DB4 DEFW of 2 words
9800:85317E31 DEFW of 2 words
9804:99309530 DEFW of 2 words
9808:DB2BDA2B DEFW of 2 words
980C:45AF41AF DEFW of 2 words
9810:F636BE36 DEFW of 2 words
9814:C0AEBDAE DEFW of 2 words
9818:B532A832 DEFW of 2 words
981C:27AA26AA DEFW of 2 words
9820:DE30D930 DEFW of 2 words
9824:1D330E33 DEFW of 2 words
9828:4F844F84 DEFW of 2 words
982C:99B095B0 DEFW of 2 words
9830:4AB047B0 DEFW of 2 words
9834:71346234 DEFW of 2 words
9838:61B05EB0 DEFW of 2 words
983C:41B702B7 DEFW of 2 words
9840:0133F332 DEFW of 2 words
9844:5D363236 DEFW of 2 words
9848:99BB82BA DEFW of 2 words
984C:5F315931 DEFW of 2 words
9850:74AD72AD DEFW of 2 words
9854:A3B297B2 DEFW of 2 words
9858:BBBAF7B9 DEFW of 2 words
985C:59BAB4B9 DEFW of 2 words
9860:1F341334 DEFW of 2 words
9864:CCB4BAB4 DEFW of 2 words
9868:A2ACA1AC DEFW of 2 words
986C:7BBACBB9 DEFW of 2 words
9870:3F2C3E2C DEFW of 2 words
9874:D7ABD6AB DEFW of 2 words
9878:AB3DE83B DEFW of 2 words
987C:FFB1F6B1 DEFW of 2 words
9880:5A344C34 DEFW of 2 words
9884:552E522E DEFW of 2 words
9888:9BB389B3 DEFW of 2 words
988C:C33C6E3B DEFW of 2 words
9890:FD2CFC2C DEFW of 2 words
9894:6AAE67AE DEFW of 2 words
9898:2E3EFF3B DEFW of 2 words
989C:B031A831 DEFW of 2 words
98A0:34303130 DEFW of 2 words
98A4:5ABDC9BB DEFW of 2 words
98A8:1CBDA8BB DEFW of 2 words
98AC:E716E716 DEFW of 2 words
98B0:EE32E032 DEFW of 2 words
98B4:26AB25AB DEFW of 2 words
98B8:74B269B2 DEFW of 2 words
98BC:96B486B4 DEFW of 2 words
98C0:A704A704 DEFW of 2 words
98C4:52B9F0B8 DEFW of 2 words
98C8:233A8D39 DEFW of 2 words
98CC:8F3C453B DEFW of 2 words
98D0:A5B299B2 DEFW of 2 words
98D4:D0B3BCB3 DEFW of 2 words
98D8:453E003C DEFW of 2 words
98DC:71AC70AC DEFW of 2 words
98E0:7C336B33 DEFW of 2 words
98E4:21301E30 DEFW of 2 words
98E8:5E371C37 DEFW of 2 words
98EC:61AF5DAF DEFW of 2 words
98F0:0232F931 DEFW of 2 words
98F4:44B705B7 DEFW of 2 words
98F8:48353035 DEFW of 2 words
98FC:CDB77FB7 DEFW of 2 words
9900:D1B782B7 DEFW of 2 words
9904:F331EA31 DEFW of 2 words
9908:9ABB82BA DEFW of 2 words
990C:13BA82B9 DEFW of 2 words
9910:D3BA07BA DEFW of 2 words
9914:91B18AB1 DEFW of 2 words
9918:6C3B673A DEFW of 2 words
991C:0B2C0A2C DEFW of 2 words
9920:88391A39 DEFW of 2 words
9924:71AE6EAE DEFW of 2 words
9928:09310431 DEFW of 2 words
992C:31B801B8 DEFW of 2 words
9930:90B284B2 DEFW of 2 words
9934:81AB80AB DEFW of 2 words
9938:8AB91BB9 DEFW of 2 words
993C:3E2D3C2D DEFW of 2 words
9940:30BEFFBB DEFW of 2 words
9944:1CB213B2 DEFW of 2 words
9948:32332333 DEFW of 2 words
994C:AEB937B9 DEFW of 2 words
9950:4AB144B1 DEFW of 2 words
9954:342C332C DEFW of 2 words
9958:2C132C13 DEFW of 2 words
995C:1A2C192C DEFW of 2 words
9960:76B649B6 DEFW of 2 words
9964:64AB63AB DEFW of 2 words
9968:883DDC3B DEFW of 2 words
996C:06BD9BBB DEFW of 2 words
9970:1F2D1E2D DEFW of 2 words
9974:F4BA1CBA DEFW of 2 words
9978:C6369336 DEFW of 2 words
997C:97BB80BA DEFW of 2 words
9980:4F3C0B3B DEFW of 2 words
9984:21341534 DEFW of 2 words
9988:83B567B5 DEFW of 2 words
998C:22B01FB0 DEFW of 2 words
9990:B334A234 DEFW of 2 words
9994:41B9E2B8 DEFW of 2 words
9998:61B82AB8 DEFW of 2 words
999C:832A822A DEFW of 2 words
99A0:EC396539 DEFW of 2 words
99A4:5DB543B5 DEFW of 2 words
99A8:6E3B683A DEFW of 2 words
99AC:63354935 DEFW of 2 words
99B0:6B306730 DEFW of 2 words
99B4:FBBBB9BA DEFW of 2 words
99B8:EB3A163A DEFW of 2 words
99BC:FC29FB29 DEFW of 2 words
99C0:543B583A DEFW of 2 words
99C4:6F3B693A DEFW of 2 words
99C8:A2ADA0AD DEFW of 2 words
99CC:AAABA9AB DEFW of 2 words
99D0:AFB49EB4 DEFW of 2 words
99D4:0C37D236 DEFW of 2 words
99D8:A4B862B8 DEFW of 2 words
99DC:D22DD02D DEFW of 2 words
99E0:4F3B553A DEFW of 2 words
99E4:B934A834 DEFW of 2 words
99E8:9A366A36 DEFW of 2 words
99EC:76390C39 DEFW of 2 words
99F0:B5ADB3AD DEFW of 2 words
99F4:0BBB2BBA DEFW of 2 words
99F8:6C2F682F DEFW of 2 words
99FC:2DBCEABA DEFW of 2 words
9A00:10AB0FAB DEFW of 2 words
9A04:26B41AB4 DEFW of 2 words
9A08:913DDF3B DEFW of 2 words
9A0C:05AA04AA DEFW of 2 words
9A10:60286028 DEFW of 2 words
9A14:16AB15AB DEFW of 2 words
9A18:4739E738 DEFW of 2 words
9A1C:15BA83B9 DEFW of 2 words
9A20:54845484 DEFW of 2 words
9A24:EEBBB2BA DEFW of 2 words
9A28:3ABCF7BA DEFW of 2 words
9A2C:79B368B3 DEFW of 2 words
9A30:6D364136 DEFW of 2 words
9A34:19071907 DEFW of 2 words
9A38:772C762C DEFW of 2 words
9A3C:68B161B1 DEFW of 2 words
9A40:FB397039 DEFW of 2 words
9A44:E136AB36 DEFW of 2 words
9A48:9E358135 DEFW of 2 words
9A4C:39AB38AB DEFW of 2 words
9A50:E62CE52C DEFW of 2 words
9A54:74AE71AE DEFW of 2 words
9A58:19B6F3B5 DEFW of 2 words
9A5C:2FB8FEB7 DEFW of 2 words
9A60:49333933 DEFW of 2 words
9A64:FD2BFC2B DEFW of 2 words
9A68:C5ACC4AC DEFW of 2 words
9A6C:D0B781B7 DEFW of 2 words
9A70:6DAE6AAE DEFW of 2 words
9A74:6FB264B2 DEFW of 2 words
9A78:402C3F2C DEFW of 2 words
9A7C:D13C783B DEFW of 2 words
9A80:532F4F2F DEFW of 2 words
9A84:7C364F36 DEFW of 2 words
9A88:06B6E2B5 DEFW of 2 words
9A8C:03AFFFAE DEFW of 2 words
9A90:FB30F630 DEFW of 2 words
9A94:8DB281B2 DEFW of 2 words
9A98:A9ABA8AB DEFW of 2 words
9A9C:8D365F36 DEFW of 2 words
9AA0:43AE40AE DEFW of 2 words
9AA4:A33AE739 DEFW of 2 words
9AA8:8CAC8BAC DEFW of 2 words
9AAC:E5B898B8 DEFW of 2 words
9AB0:5739F438 DEFW of 2 words
9AB4:A8339533 DEFW of 2 words
9AB8:FDADFBAD DEFW of 2 words
9ABC:94366536 DEFW of 2 words
9AC0:43AF3FAF DEFW of 2 words
9AC4:9A309630 DEFW of 2 words
9AC8:36BCF3BA DEFW of 2 words
9ACC:BC30B830 DEFW of 2 words
9AD0:AE01AE01 DEFW of 2 words
9AD4:202C1F2C DEFW of 2 words
9AD8:23311D31 DEFW of 2 words
9ADC:74BDD4BB DEFW of 2 words
9AE0:092C082C DEFW of 2 words
9AE4:3AB612B6 DEFW of 2 words
9AE8:403B4C3A DEFW of 2 words
9AEC:2A3CE73A DEFW of 2 words
9AF0:B9BC66BB DEFW of 2 words
9AF4:D9BDF4BB DEFW of 2 words
9AF8:1F2B1E2B DEFW of 2 words
9AFC:0E3EFD3B DEFW of 2 words
9B00:D72CD62C DEFW of 2 words
9B04:772A762A DEFW of 2 words
9B08:2EB8FCB7 DEFW of 2 words
9B0C:76AC75AC DEFW of 2 words
9B10:A52BA42B DEFW of 2 words
9B14:DF3DF53B DEFW of 2 words
9B18:81BB73BA DEFW of 2 words
9B1C:CE35AE35 DEFW of 2 words
9B20:8EBAD8B9 DEFW of 2 words
9B24:673C223B DEFW of 2 words
9B28:71B556B5 DEFW of 2 words
9B2C:F8ACF7AC DEFW of 2 words
9B30:4BBC08BB DEFW of 2 words
9B34:D8AAD7AA DEFW of 2 words
9B38:D7B5B6B5 DEFW of 2 words
9B3C:1DBCDABA DEFW of 2 words
9B40:F735D435 DEFW of 2 words
9B44:D129D029 DEFW of 2 words
9B48:BBB3A8B3 DEFW of 2 words
9B4C:6DB834B8 DEFW of 2 words
9B50:A6BDE6BB DEFW of 2 words
9B54:6DBDD1BB DEFW of 2 words
9B58:32983298 DEFW of 2 words
9B5C:5EAB5DAB DEFW of 2 words
9B60:35BDB6BB DEFW of 2 words
9B64:E6AEE3AE DEFW of 2 words
9B68:87BB77BA DEFW of 2 words
9B6C:EF396839 DEFW of 2 words
9B70:192A182A DEFW of 2 words
9B74:E82DE62D DEFW of 2 words
9B78:7E3B723A DEFW of 2 words
9B7C:24BB3BBA DEFW of 2 words
9B80:A2BC54BB DEFW of 2 words
9B84:21BA8CB9 DEFW of 2 words
9B88:DFB6A9B6 DEFW of 2 words
9B8C:7B3B703A DEFW of 2 words
9B90:BFBB97BA DEFW of 2 words
9B94:A32BA22B DEFW of 2 words
9B98:FCB8ABB8 DEFW of 2 words
9B9C:C72FC22F DEFW of 2 words
9BA0:F934E534 DEFW of 2 words
9BA4:B9B4A8B4 DEFW of 2 words
9BA8:32AF2EAF DEFW of 2 words
9BAC:03B3F5B2 DEFW of 2 words
9BB0:15981598 DEFW of 2 words
9BB4:2737EB36 DEFW of 2 words
9BB8:C7B2BAB2 DEFW of 2 words
9BBC:74AF70AF DEFW of 2 words
9BC0:75B364B3 DEFW of 2 words
9BC4:3AB7FCB6 DEFW of 2 words
9BC8:ABB398B3 DEFW of 2 words
9BCC:B2B680B6 DEFW of 2 words
9BD0:99AA98AA DEFW of 2 words
9BD4:902F8B2F DEFW of 2 words
9BD8:CEBDF1BB DEFW of 2 words
9BDC:B3B681B6 DEFW of 2 words
9BE0:F2AEEFAE DEFW of 2 words
9BE4:31BB43BA DEFW of 2 words
9BE8:241B241B DEFW of 2 words
9BEC:372D362D DEFW of 2 words
9BF0:33BCF0BA DEFW of 2 words
9BF4:92BB7DBA DEFW of 2 words
9BF8:72364636 DEFW of 2 words
9BFC:9CB290B2 DEFW of 2 words
9C00:25BDAEBB DEFW of 2 words
9C04:F033DB33 DEFW of 2 words
9C08:4F333F33 DEFW of 2 words
9C0C:74307030 DEFW of 2 words
9C10:18AC17AC DEFW of 2 words
9C14:86AD84AD DEFW of 2 words
9C18:9E385D38 DEFW of 2 words
9C1C:32223222 DEFW of 2 words
9C20:34380338 DEFW of 2 words
9C24:39342C34 DEFW of 2 words
9C28:C12CC02C DEFW of 2 words
9C2C:01AEFFAD DEFW of 2 words
9C30:81356535 DEFW of 2 words
9C34:FBB2EDB2 DEFW of 2 words
9C38:55362B36 DEFW of 2 words
9C3C:1D3B363A DEFW of 2 words
9C40:2037E436 DEFW of 2 words
9C44:BCB770B7 DEFW of 2 words
9C48:5A2E572E DEFW of 2 words
9C4C:DBAADAAA DEFW of 2 words
9C50:B619B619 DEFW of 2 words
9C54:083A7A39 DEFW of 2 words
9C58:0C2E0A2E DEFW of 2 words
9C5C:D2395239 DEFW of 2 words
9C60:A3386238 DEFW of 2 words
9C64:DA2ED72E DEFW of 2 words
9C68:3437F636 DEFW of 2 words
9C6C:09AC08AC DEFW of 2 words
9C70:1638D237 DEFW of 2 words
9C74:4E3DC33B DEFW of 2 words
9C78:91308D30 DEFW of 2 words
9C7C:8DB91EB9 DEFW of 2 words
9C80:78B074B0 DEFW of 2 words
9C84:A6B931B9 DEFW of 2 words
9C88:082A072A DEFW of 2 words
9C8C:28341C34 DEFW of 2 words
9C90:B82EB52E DEFW of 2 words
9C94:66AC65AC DEFW of 2 words
9C98:E4395F39 DEFW of 2 words
9C9C:33312D31 DEFW of 2 words
9CA0:2D342134 DEFW of 2 words
9CA4:4B3C083B DEFW of 2 words
9CA8:98B488B4 DEFW of 2 words
9CAC:0CBB2CBA DEFW of 2 words
9CB0:68372537 DEFW of 2 words
9CB4:DBB2CEB2 DEFW of 2 words
9CB8:37B131B1 DEFW of 2 words
9CBC:B734A634 DEFW of 2 words
9CC0:48323E32 DEFW of 2 words
9CC4:A29FA29F DEFW of 2 words
9CC8:45361C36 DEFW of 2 words
9CCC:06AC05AC DEFW of 2 words
9CD0:283A9139 DEFW of 2 words
9CD4:0ABCC6BA DEFW of 2 words
9CD8:A12F9C2F DEFW of 2 words
9CDC:ACAFA7AF DEFW of 2 words
9CE0:79355E35 DEFW of 2 words
9CE4:D4ACD3AC DEFW of 2 words
9CE8:4CAE49AE DEFW of 2 words
9CEC:743AC739 DEFW of 2 words
9CF0:D8AFD3AF DEFW of 2 words
9CF4:D8B1D0B1 DEFW of 2 words
9CF8:10AA0FAA DEFW of 2 words
9CFC:38BCF5BA DEFW of 2 words
9D00:B8BC65BB DEFW of 2 words
9D04:243CE13A DEFW of 2 words
9D08:1A3CD73A DEFW of 2 words
9D0C:6CAB6BAB DEFW of 2 words
9D10:0536E135 DEFW of 2 words
9D14:D4AED1AE DEFW of 2 words
9D18:1FB01CB0 DEFW of 2 words
9D1C:8F308B30 DEFW of 2 words
9D20:0B36E635 DEFW of 2 words
9D24:7CBB70BA DEFW of 2 words
9D28:D5ADD3AD DEFW of 2 words
9D2C:5E2A5D2A DEFW of 2 words
9D30:F82DF62D DEFW of 2 words
9D34:623DCC3B DEFW of 2 words
9D38:2BB604B6 DEFW of 2 words
9D3C:A7ADA5AD DEFW of 2 words
9D40:5939F538 DEFW of 2 words
9D44:C13AFB39 DEFW of 2 words
9D48:CFB950B9 DEFW of 2 words
9D4C:24B021B0 DEFW of 2 words
9D50:BCAABBAA DEFW of 2 words
9D54:56AF52AF DEFW of 2 words
9D58:6D355335 DEFW of 2 words
9D5C:C0B0BCB0 DEFW of 2 words
9D60:3CB136B1 DEFW of 2 words
9D64:FDA9FCA9 DEFW of 2 words
9D68:15BB31BA DEFW of 2 words
9D6C:CD2DCB2D DEFW of 2 words
9D70:B7B2AAB2 DEFW of 2 words
9D74:492E462E DEFW of 2 words
9D78:93366436 DEFW of 2 words
9D7C:23AF1FAF DEFW of 2 words
9D80:8B3AD639 DEFW of 2 words
9D84:3A043A04 DEFW of 2 words
9D88:3CB42FB4 DEFW of 2 words
9D8C:6F372B37 DEFW of 2 words
9D90:8EAC8DAC DEFW of 2 words
9D94:43B52BB5 DEFW of 2 words
9D98:B0B2A4B2 DEFW of 2 words
9D9C:0EB8C4B7 DEFW of 2 words
9DA0:2CBB40BA DEFW of 2 words
9DA4:D8B6A3B6 DEFW of 2 words
9DA8:D2BA06BA DEFW of 2 words
9DAC:342E322E DEFW of 2 words
9DB0:8E391E39 DEFW of 2 words
9DB4:9E909E90 DEFW of 2 words
9DB8:A6375C37 DEFW of 2 words
9DBC:D09BD09B DEFW of 2 words
9DC0:F2AFEDAF DEFW of 2 words
9DC4:FEB5DAB5 DEFW of 2 words
9DC8:0B3CC73A DEFW of 2 words
9DCC:032A022A DEFW of 2 words
9DD0:DFADDDAD DEFW of 2 words
9DD4:9E3C513B DEFW of 2 words
9DD8:CA35AA35 DEFW of 2 words
9DDC:61335033 DEFW of 2 words
9DE0:7C373737 DEFW of 2 words
9DE4:072A062A DEFW of 2 words
9DE8:92318B31 DEFW of 2 words
9DEC:9ABDE2BB DEFW of 2 words
9DF0:62B548B5 DEFW of 2 words
9DF4:0AAD09AD DEFW of 2 words
9DF8:9EBC51BB DEFW of 2 words
9DFC:4D370D37 DEFW of 2 words
9E00:322F2E2F DEFW of 2 words
9E04:52AD50AD DEFW of 2 words
9E08:CE3BA03A DEFW of 2 words
9E0C:732D712D DEFW of 2 words
9E10:51AD4FAD DEFW of 2 words
9E14:A5ACA4AC DEFW of 2 words
9E18:FC36C436 DEFW of 2 words
9E1C:5A324F32 DEFW of 2 words
9E20:B03DE93B DEFW of 2 words
9E24:FD32EF32 DEFW of 2 words
9E28:53BDC5BB DEFW of 2 words
9E2C:C3AFBEAF DEFW of 2 words
9E30:65896589 DEFW of 2 words
9E34:21AD20AD DEFW of 2 words
9E38:E933D433 DEFW of 2 words
9E3C:DB389038 DEFW of 2 words
9E40:B3368136 DEFW of 2 words
9E44:A93DE73B DEFW of 2 words
9E48:32AA31AA DEFW of 2 words
9E4C:CEACCDAC DEFW of 2 words
9E50:2B2F272F DEFW of 2 words
9E54:5FBAB8B9 DEFW of 2 words
9E58:DD30D830 DEFW of 2 words
9E5C:B6B76AB7 DEFW of 2 words
9E60:A7349634 DEFW of 2 words
9E64:72B557B5 DEFW of 2 words
9E68:D22ECF2E DEFW of 2 words
9E6C:FCAEF8AE DEFW of 2 words
9E70:6F2E6C2E DEFW of 2 words
9E74:E29EE29E DEFW of 2 words
9E78:F6B7A3B7 DEFW of 2 words
9E7C:8C2B8B2B DEFW of 2 words
9E80:36B7F8B6 DEFW of 2 words
9E84:1CBB36BA DEFW of 2 words
9E88:14B409B4 DEFW of 2 words
9E8C:2EB128B1 DEFW of 2 words
9E90:4AAB49AB DEFW of 2 words
9E94:5D305A30 DEFW of 2 words
9E98:2BAC2AAC DEFW of 2 words
9E9C:113EFD3B DEFW of 2 words
9EA0:C3ADC1AD DEFW of 2 words
9EA4:23331433 DEFW of 2 words
9EA8:C734B534 DEFW of 2 words
9EAC:BE2BBD2B DEFW of 2 words
9EB0:31B425B4 DEFW of 2 words
9EB4:8C384E38 DEFW of 2 words
9EB8:F3396A39 DEFW of 2 words
9EBC:EE33D933 DEFW of 2 words
9EC0:DD83DD83 DEFW of 2 words
9EC4:B8B599B5 DEFW of 2 words
9EC8:A783A783 DEFW of 2 words
9ECC:3BBA9FB9 DEFW of 2 words
9ED0:1335FD34 DEFW of 2 words
9ED4:D5AAD4AA DEFW of 2 words
9ED8:3F343234 DEFW of 2 words
9EDC:9AB388B3 DEFW of 2 words
9EE0:4AAE47AE DEFW of 2 words
9EE4:1BB505B5 DEFW of 2 words
9EE8:6D383438 DEFW of 2 words
9EEC:9C2F972F DEFW of 2 words
9EF0:D03BA13A DEFW of 2 words
9EF4:A6B0A2B0 DEFW of 2 words
9EF8:AA26AA26 DEFW of 2 words
9EFC:F835D535 DEFW of 2 words
9F00:6EB167B1 DEFW of 2 words
9F04:102B0F2B DEFW of 2 words
9F08:212C202C DEFW of 2 words
9F0C:B73C653B DEFW of 2 words
9F10:4E2F4A2F DEFW of 2 words
9F14:73BC2CBB DEFW of 2 words
9F18:9C385C38 DEFW of 2 words
9F1C:013CBC3A DEFW of 2 words
9F20:94392339 DEFW of 2 words
9F24:8AB47AB4 DEFW of 2 words
9F28:873DDC3B DEFW of 2 words
9F2C:D1ACD0AC DEFW of 2 words
9F30:08B2FFB1 DEFW of 2 words
9F34:81BDD9BB DEFW of 2 words
9F38:663ABD39 DEFW of 2 words
9F3C:FFB0FAB0 DEFW of 2 words
9F40:37B7F9B6 DEFW of 2 words
9F44:8C2D8A2D DEFW of 2 words
9F48:672D652D DEFW of 2 words
9F4C:FE3DFB3B DEFW of 2 words
9F50:CD32C032 DEFW of 2 words
9F54:6B916B91 DEFW of 2 words
9F58:4EBC0BBB DEFW of 2 words
9F5C:50371037 DEFW of 2 words
9F60:7BAD79AD DEFW of 2 words
9F64:8CBAD7B9 DEFW of 2 words
9F68:F8BDFABB DEFW of 2 words
9F6C:66BDCEBB DEFW of 2 words
9F70:87AE84AE DEFW of 2 words
9F74:15330633 DEFW of 2 words
9F78:1AAD19AD DEFW of 2 words
9F7C:C63AFE39 DEFW of 2 words
9F80:4EBB55BA DEFW of 2 words
9F84:91AF8CAF DEFW of 2 words
9F88:FAB4E6B4 DEFW of 2 words
9F8C:EBBDF7BB DEFW of 2 words
9F90:9E348E34 DEFW of 2 words
9F94:563C123B DEFW of 2 words
9F98:D608D608 DEFW of 2 words
9F9C:57382138 DEFW of 2 words
9FA0:51B444B4 DEFW of 2 words
9FA4:60B9FBB8 DEFW of 2 words
9FA8:82AD80AD DEFW of 2 words
9FAC:FDBDFABB DEFW of 2 words
9FB0:A12E9E2E DEFW of 2 words
9FB4:34B12EB1 DEFW of 2 words
9FB8:CF369B36 DEFW of 2 words
9FBC:AA2EA72E DEFW of 2 words
9FC0:42361936 DEFW of 2 words
9FC4:862C852C DEFW of 2 words
9FC8:272C262C DEFW of 2 words
9FCC:F62BF52B DEFW of 2 words
9FD0:5FAA5EAA DEFW of 2 words
9FD4:513C0D3B DEFW of 2 words
9FD8:9DAD9BAD DEFW of 2 words
9FDC:332C322C DEFW of 2 words
9FE0:BC387638 DEFW of 2 words
9FE4:28BCE5BA DEFW of 2 words
9FE8:203DAB3B DEFW of 2 words
9FEC:6D326232 DEFW of 2 words
9FF0:A5AFA0AF DEFW of 2 words
9FF4:E631DD31 DEFW of 2 words
9FF8:89B742B7 DEFW of 2 words
9FFC:C2B0BEB0 DEFW of 2 words
A000:DAAAD9AA DEFW of 2 words
A004:18BA85B9 DEFW of 2 words
A008:26B317B3 DEFW of 2 words
A00C:7C391139 DEFW of 2 words
A010:A92CA82C DEFW of 2 words
A014:4B3B533A DEFW of 2 words
A018:DD2CDC2C DEFW of 2 words
A01C:852D832D DEFW of 2 words
A020:6B3C253B DEFW of 2 words
A024:B0B0ACB0 DEFW of 2 words
A028:A3392F39 DEFW of 2 words
A02C:752A742A DEFW of 2 words
A030:70B06CB0 DEFW of 2 words
A034:7ABB6FBA DEFW of 2 words
A038:78AF74AF DEFW of 2 words
A03C:41B03EB0 DEFW of 2 words
A040:92AD90AD DEFW of 2 words
A044:4D2C4C2C DEFW of 2 words
A048:5EAC5DAC DEFW of 2 words
A04C:34AD33AD DEFW of 2 words
A050:65BDCEBB DEFW of 2 words
A054:A0BDE4BB DEFW of 2 words
A058:F030EB30 DEFW of 2 words
A05C:51B14BB1 DEFW of 2 words
A060:33B7F5B6 DEFW of 2 words
A064:CDB2C0B2 DEFW of 2 words
A068:84BB75BA DEFW of 2 words
A06C:90099009 DEFW of 2 words
A070:86391839 DEFW of 2 words
A074:32BCEFBA DEFW of 2 words
A078:B2B593B5 DEFW of 2 words
A07C:F9ADF7AD DEFW of 2 words
A080:EDB4D9B4 DEFW of 2 words
A084:CAAFC5AF DEFW of 2 words
A088:5BB825B8 DEFW of 2 words
A08C:C23AFB39 DEFW of 2 words
A090:BBAABAAA DEFW of 2 words
A094:26AC25AC DEFW of 2 words
A098:CBBDF1BB DEFW of 2 words
A09C:60B34FB3 DEFW of 2 words
A0A0:CE3A033A DEFW of 2 words
A0A4:693C243B DEFW of 2 words
A0A8:0DB3FEB2 DEFW of 2 words
A0AC:AA80AA80 DEFW of 2 words
A0B0:18350235 DEFW of 2 words
A0B4:EA396439 DEFW of 2 words
A0B8:F42BF32B DEFW of 2 words
A0BC:63372137 DEFW of 2 words
A0C0:93385438 DEFW of 2 words
A0C4:B7387238 DEFW of 2 words
A0C8:9B2F962F DEFW of 2 words
A0CC:B9ACB8AC DEFW of 2 words
A0D0:D4ABD3AB DEFW of 2 words
A0D4:9B385B38 DEFW of 2 words
A0D8:87318031 DEFW of 2 words
A0DC:5CB156B1 DEFW of 2 words
A0E0:C02FBB2F DEFW of 2 words
A0E4:7C3DD73B DEFW of 2 words
A0E8:F529F429 DEFW of 2 words
A0EC:0A2A092A DEFW of 2 words
A0F0:E8B962B9 DEFW of 2 words
A0F4:40352835 DEFW of 2 words
A0F8:492B482B DEFW of 2 words
A0FC:683B653A DEFW of 2 words
A100:9F2F9A2F DEFW of 2 words
A104:9D2E9A2E DEFW of 2 words
A108:A92FA42F DEFW of 2 words
A10C:0FB8C6B7 DEFW of 2 words
A110:4DB04AB0 DEFW of 2 words
A114:E335C135 DEFW of 2 words
A118:DB2FD62F DEFW of 2 words
A11C:5A2A592A DEFW of 2 words
A120:6E2A6D2A DEFW of 2 words
A124:90357335 DEFW of 2 words
A128:33B12DB1 DEFW of 2 words
A12C:563DC73B DEFW of 2 words
A130:B732AA32 DEFW of 2 words
A134:29331A33 DEFW of 2 words
A138:D3395339 DEFW of 2 words
A13C:A83DE73B DEFW of 2 words
A140:A9B75FB7 DEFW of 2 words
A144:95BC4ABB DEFW of 2 words
A148:A2309E30 DEFW of 2 words
A14C:A4ACA3AC DEFW of 2 words
A150:B5B0B1B0 DEFW of 2 words
A154:4AAC49AC DEFW of 2 words
A158:9BB097B0 DEFW of 2 words
A15C:3C39DE38 DEFW of 2 words
A160:01AC00AC DEFW of 2 words
A164:36B51FB5 DEFW of 2 words
A168:DEB78EB7 DEFW of 2 words
A16C:17330833 DEFW of 2 words
A170:42BCFFBA DEFW of 2 words
A174:ED2DEB2D DEFW of 2 words
A178:CEABCDAB DEFW of 2 words
A17C:33342734 DEFW of 2 words
A180:BB2BBA2B DEFW of 2 words
A184:EDB5CBB5 DEFW of 2 words
A188:BFB68CB6 DEFW of 2 words
A18C:B134A034 DEFW of 2 words
A190:7FBB72BA DEFW of 2 words
A194:54AF50AF DEFW of 2 words
A198:D2A9D1A9 DEFW of 2 words
A19C:20BA8BB9 DEFW of 2 words
A1A0:F8B6C0B6 DEFW of 2 words
A1A4:992B982B DEFW of 2 words
A1A8:3BBB49BA DEFW of 2 words
A1AC:2AAA29AA DEFW of 2 words
A1B0:3DAD3CAD DEFW of 2 words
A1B4:90AB8FAB DEFW of 2 words
A1B8:10BA80B9 DEFW of 2 words
A1BC:1F37E336 DEFW of 2 words
A1C0:2A360336 DEFW of 2 words
A1C4:D5B0D0B0 DEFW of 2 words
A1C8:19B9C2B8 DEFW of 2 words
A1CC:432C422C DEFW of 2 words
A1D0:A2AAA1AA DEFW of 2 words
A1D4:94AA93AA DEFW of 2 words
A1D8:23B417B4 DEFW of 2 words
A1DC:9C319531 DEFW of 2 words
A1E0:BABB95BA DEFW of 2 words
A1E4:E02CDF2C DEFW of 2 words
A1E8:B72BB62B DEFW of 2 words
A1EC:913C463B DEFW of 2 words
A1F0:B3A3B3A3 DEFW of 2 words
A1F4:E4A9E3A9 DEFW of 2 words
A1F8:8CB745B7 DEFW of 2 words
A1FC:64AE61AE DEFW of 2 words
A200:C3B0BFB0 DEFW of 2 words
A204:E430DF30 DEFW of 2 words
A208:1535FF34 DEFW of 2 words
A20C:BCADBAAD DEFW of 2 words
A210:91366236 DEFW of 2 words
A214:2738F037 DEFW of 2 words
A218:65382D38 DEFW of 2 words
A21C:A1319A31 DEFW of 2 words
A220:980A980A DEFW of 2 words
A224:6B355135 DEFW of 2 words
A228:C72CC62C DEFW of 2 words
A22C:56362C36 DEFW of 2 words
A230:E729E629 DEFW of 2 words
A234:7F347034 DEFW of 2 words
A238:D931D131 DEFW of 2 words
A23C:2F38FE37 DEFW of 2 words
A240:FEA1FEA1 DEFW of 2 words
A244:F7A9F6A9 DEFW of 2 words
A248:7FB36DB3 DEFW of 2 words
A24C:B131A931 DEFW of 2 words
A250:E42BE32B DEFW of 2 words
A254:4FBC0BBB DEFW of 2 words
A258:ECAFE7AF DEFW of 2 words
A25C:33380238 DEFW of 2 words
A260:01B9AFB8 DEFW of 2 words
A264:1E3B373A DEFW of 2 words
A268:E3B6ADB6 DEFW of 2 words
A26C:B62CB52C DEFW of 2 words
A270:F4BDF9BB DEFW of 2 words
A274:4DB534B5 DEFW of 2 words
A278:1EAE1CAE DEFW of 2 words
A27C:B7B3A4B3 DEFW of 2 words
A280:46314031 DEFW of 2 words
A284:75BB6CBA DEFW of 2 words
A288:7A3ACB39 DEFW of 2 words
A28C:8ABAD6B9 DEFW of 2 words
A290:D43DF33B DEFW of 2 words
A294:69316231 DEFW of 2 words
A298:B5BDEBBB DEFW of 2 words
A29C:0FBA7FB9 DEFW of 2 words
A2A0:4BAA4AAA DEFW of 2 words
A2A4:D93C7E3B DEFW of 2 words
A2A8:B83C653B DEFW of 2 words
A2AC:54B62AB6 DEFW of 2 words
A2B0:F8B8A8B8 DEFW of 2 words
A2B4:292A282A DEFW of 2 words
A2B8:9A348A34 DEFW of 2 words
A2BC:262A252A DEFW of 2 words
A2C0:63AE60AE DEFW of 2 words
A2C4:21932193 DEFW of 2 words
A2C8:8BB27FB2 DEFW of 2 words
A2CC:1E3A8A39 DEFW of 2 words
A2D0:C2ABC1AB DEFW of 2 words
A2D4:172C162C DEFW of 2 words
A2D8:C9B3B5B3 DEFW of 2 words
A2DC:1CB019B0 DEFW of 2 words
A2E0:17AD16AD DEFW of 2 words
A2E4:8AAF86AF DEFW of 2 words
A2E8:7F356335 DEFW of 2 words
A2EC:82BB74BA DEFW of 2 words
A2F0:5AB541B5 DEFW of 2 words
A2F4:CD87CD87 DEFW of 2 words
A2F8:9DBB84BA DEFW of 2 words
A2FC:E12CE02C DEFW of 2 words
A300:90392039 DEFW of 2 words
A304:9A3C4E3B DEFW of 2 words
A308:70326532 DEFW of 2 words
A30C:E53BAD3A DEFW of 2 words
A310:03B8B1B7 DEFW of 2 words
A314:250E250E DEFW of 2 words
A318:BDB3AAB3 DEFW of 2 words
A31C:903B7C3A DEFW of 2 words
A320:BB368936 DEFW of 2 words
A324:75336433 DEFW of 2 words
A328:F132E332 DEFW of 2 words
A32C:D2BC79BB DEFW of 2 words
A330:1FAC1EAC DEFW of 2 words
A334:332F2F2F DEFW of 2 words
A338:67382F38 DEFW of 2 words
A33C:62B720B7 DEFW of 2 words
A340:84391739 DEFW of 2 words
A344:0CB3FDB2 DEFW of 2 words
A348:3A361236 DEFW of 2 words
A34C:E63C863B DEFW of 2 words
A350:D830D330 DEFW of 2 words
A354:30BB42BA DEFW of 2 words
A358:CA29C929 DEFW of 2 words
A35C:173A8539 DEFW of 2 words
A360:D0378137 DEFW of 2 words
A364:D5ABD4AB DEFW of 2 words
A368:37AA36AA DEFW of 2 words
A36C:FCB4E7B4 DEFW of 2 words
A370:99BC4DBB DEFW of 2 words
A374:C0387A38 DEFW of 2 words
A378:DE92DE92 DEFW of 2 words
A37C:DBADD9AD DEFW of 2 words
A380:91AD8FAD DEFW of 2 words
A384:B2BC61BB DEFW of 2 words
A388:E4B3D0B3 DEFW of 2 words
A38C:30B02DB0 DEFW of 2 words
A390:97AE94AE DEFW of 2 words
A394:0A3D9E3B DEFW of 2 words
A398:68B45AB4 DEFW of 2 words
A39C:4D3AAB39 DEFW of 2 words
A3A0:09BA7BB9 DEFW of 2 words
A3A4:47BC04BB DEFW of 2 words
A3A8:DD35BC35 DEFW of 2 words
A3AC:B3ADB1AD DEFW of 2 words
A3B0:1537DA36 DEFW of 2 words
A3B4:5E345034 DEFW of 2 words
A3B8:2BB221B2 DEFW of 2 words
A3BC:60B452B4 DEFW of 2 words
A3C0:2C322232 DEFW of 2 words
A3C4:0CBD9FBB DEFW of 2 words
A3C8:F433DF33 DEFW of 2 words
A3CC:0336DF35 DEFW of 2 words
A3D0:9E2C9D2C DEFW of 2 words
A3D4:CBBA01BA DEFW of 2 words
A3D8:EC3BB03A DEFW of 2 words
A3DC:C989C989 DEFW of 2 words
A3E0:9A357D35 DEFW of 2 words
A3E4:7CAE79AE DEFW of 2 words
A3E8:6E306A30 DEFW of 2 words
A3EC:7AA17AA1 DEFW of 2 words
A3F0:AD2DAB2D DEFW of 2 words
A3F4:39B7FBB6 DEFW of 2 words
A3F8:38332833 DEFW of 2 words
A3FC:68116811 DEFW of 2 words
A400:8CBC42BB DEFW of 2 words
A404:55B14FB1 DEFW of 2 words
A408:188B188B DEFW of 2 words
A40C:94B74CB7 DEFW of 2 words
A410:57B62DB6 DEFW of 2 words
A414:15AD14AD DEFW of 2 words
A418:D032C332 DEFW of 2 words
A41C:968E968E DEFW of 2 words
A420:C634B434 DEFW of 2 words
A424:98B750B7 DEFW of 2 words
A428:672F632F DEFW of 2 words
A42C:DC34C934 DEFW of 2 words
A430:BEB1B6B1 DEFW of 2 words
A434:C233AF33 DEFW of 2 words
A438:5DB157B1 DEFW of 2 words
A43C:27302430 DEFW of 2 words
A440:CFB69BB6 DEFW of 2 words
A444:C0BDEEBB DEFW of 2 words
A448:F5BDF9BB DEFW of 2 words
A44C:6F326432 DEFW of 2 words
A450:EC1BEC1B DEFW of 2 words
A454:88AC87AC DEFW of 2 words
A458:D3B69FB6 DEFW of 2 words
A45C:B3BB91BA DEFW of 2 words
A460:1A301730 DEFW of 2 words
A464:8AB183B1 DEFW of 2 words
A468:A7367636 DEFW of 2 words
A46C:F007F007 DEFW of 2 words
A470:80B653B6 DEFW of 2 words
A474:A53DE63B DEFW of 2 words
A478:DCBBA8BA DEFW of 2 words
A47C:372B362B DEFW of 2 words
A480:B03C5F3B DEFW of 2 words
A484:CA3C733B DEFW of 2 words
A488:FD2DFB2D DEFW of 2 words
A48C:782D762D DEFW of 2 words
A490:BF35A035 DEFW of 2 words
A494:9BB85BB8 DEFW of 2 words
A498:443AA539 DEFW of 2 words
A49C:62BDCCBB DEFW of 2 words
A4A0:232F1F2F DEFW of 2 words
A4A4:E83DF73B DEFW of 2 words
A4A8:2DBEFFBB DEFW of 2 words
A4AC:E82AE72A DEFW of 2 words
A4B0:3EBB4BBA DEFW of 2 words
A4B4:BA3DEC3B DEFW of 2 words
A4B8:7D2A7C2A DEFW of 2 words
A4BC:40B433B4 DEFW of 2 words
A4C0:4EB9EDB8 DEFW of 2 words
A4C4:C1B68EB6 DEFW of 2 words
A4C8:96BC4ABB DEFW of 2 words
A4CC:82AF7EAF DEFW of 2 words
A4D0:D02ACF2A DEFW of 2 words
A4D4:4C3C093B DEFW of 2 words
A4D8:90328432 DEFW of 2 words
A4DC:E2B896B8 DEFW of 2 words
A4E0:F62CF52C DEFW of 2 words
A4E4:703B693A DEFW of 2 words
A4E8:37AE35AE DEFW of 2 words
A4EC:09B006B0 DEFW of 2 words
A4F0:9D338B33 DEFW of 2 words
A4F4:EA29E929 DEFW of 2 words
A4F8:B1AAB0AA DEFW of 2 words
A4FC:62B454B4 DEFW of 2 words
A500:15841584 DEFW of 2 words
A504:2DB223B2 DEFW of 2 words
A508:862E832E DEFW of 2 words
A50C:C5AAC4AA DEFW of 2 words
A510:FCB5D9B5 DEFW of 2 words
A514:A1BAE5B9 DEFW of 2 words
A518:6FBC29BB DEFW of 2 words
A51C:4FAE4CAE DEFW of 2 words
A520:45B52DB5 DEFW of 2 words
A524:1BB7E0B6 DEFW of 2 words
A528:2A3EFF3B DEFW of 2 words
A52C:BCB876B8 DEFW of 2 words
A530:AD358F35 DEFW of 2 words
A534:FC3C953B DEFW of 2 words
A538:91BDDFBB DEFW of 2 words
A53C:70316931 DEFW of 2 words
A540:7CAA7BAA DEFW of 2 words
A544:EB2BEA2B DEFW of 2 words
A548:5BB34AB3 DEFW of 2 words
A54C:E0BA0FBA DEFW of 2 words
A550:5C2E592E DEFW of 2 words
A554:682F642F DEFW of 2 words
A558:393A9D39 DEFW of 2 words
A55C:1E38E037 DEFW of 2 words
A560:22AD21AD DEFW of 2 words
A564:A93C5A3B DEFW of 2 words
A568:0C39B838 DEFW of 2 words
A56C:1BB8DBB7 DEFW of 2 words
A570:CC34BA34 DEFW of 2 words
A574:10AD0FAD DEFW of 2 words
A578:86374037 DEFW of 2 words
A57C:413E003C DEFW of 2 words
A580:2336FD35 DEFW of 2 words
A584:FAB970B9 DEFW of 2 words
A588:DCBC80BB DEFW of 2 words
A58C:E0ABDFAB DEFW of 2 words
A590:772D752D DEFW of 2 words
A594:282B272B DEFW of 2 words
A598:33BB44BA DEFW of 2 words
A59C:F9BDFABB DEFW of 2 words
A5A0:A7AEA4AE DEFW of 2 words
A5A4:5E325332 DEFW of 2 words
A5A8:B42AB32A DEFW of 2 words
A5AC:B987B987 DEFW of 2 words
A5B0:9BAC9AAC DEFW of 2 words
A5B4:52AC51AC DEFW of 2 words
A5B8:EB2DE92D DEFW of 2 words
A5BC:6F2C6E2C DEFW of 2 words
A5C0:B12AB02A DEFW of 2 words
A5C4:70B907B9 DEFW of 2 words
A5C8:9F2E9C2E DEFW of 2 words
A5CC:7B2F772F DEFW of 2 words
A5D0:65B722B7 DEFW of 2 words
A5D4:47B707B7 DEFW of 2 words
A5D8:69B358B3 DEFW of 2 words
A5DC:C2AFBDAF DEFW of 2 words
A5E0:71BC2BBB DEFW of 2 words
A5E4:F62FF12F DEFW of 2 words
A5E8:C1B4AFB4 DEFW of 2 words
A5EC:063A7839 DEFW of 2 words
A5F0:78364B36 DEFW of 2 words
A5F4:4E2A4D2A DEFW of 2 words
A5F8:962D942D DEFW of 2 words
A5FC:FE2FF92F DEFW of 2 words
A600:F8B4E4B4 DEFW of 2 words
A604:61AA60AA DEFW of 2 words
A608:D03A053A DEFW of 2 words
A60C:38B807B8 DEFW of 2 words
A610:0B38BF37 DEFW of 2 words
A614:80B844B8 DEFW of 2 words
A618:DA31D231 DEFW of 2 words
A61C:B02AAF2A DEFW of 2 words
A620:6A316331 DEFW of 2 words
A624:69372637 DEFW of 2 words
A628:E332D532 DEFW of 2 words
A62C:432B422B DEFW of 2 words
A630:AC2AAB2A DEFW of 2 words
A634:52B628B6 DEFW of 2 words
A638:C2B1BAB1 DEFW of 2 words
A63C:AE2AAD2A DEFW of 2 words
A640:AA2FA52F DEFW of 2 words
A644:65AC64AC DEFW of 2 words
A648:56AB55AB DEFW of 2 words
A64C:17821782 DEFW of 2 words
A650:60B829B8 DEFW of 2 words
A654:843B753A DEFW of 2 words
A658:353DB63B DEFW of 2 words
A65C:9EAC9DAC DEFW of 2 words
A660:DCABDBAB DEFW of 2 words
A664:A9BB8BBA DEFW of 2 words
A668:9E2F992F DEFW of 2 words
A66C:8B2D892D DEFW of 2 words
A670:6A166A16 DEFW of 2 words
A674:7AB83FB8 DEFW of 2 words
A678:C5B5A5B5 DEFW of 2 words
A67C:D63A093A DEFW of 2 words
A680:06300330 DEFW of 2 words
A684:ED35CB35 DEFW of 2 words
A688:3F361736 DEFW of 2 words
A68C:70217021 DEFW of 2 words
A690:1B2E192E DEFW of 2 words
A694:672B662B DEFW of 2 words
A698:9ABAE1B9 DEFW of 2 words
A69C:ED30E830 DEFW of 2 words
A6A0:E7B89AB8 DEFW of 2 words
A6A4:E7AAE6AA DEFW of 2 words
A6A8:FCA9FBA9 DEFW of 2 words
A6AC:40B701B7 DEFW of 2 words
A6B0:FB2DF92D DEFW of 2 words
A6B4:09BB2ABA DEFW of 2 words
A6B8:4D324332 DEFW of 2 words
A6BC:F437A137 DEFW of 2 words
A6C0:EBBC8ABB DEFW of 2 words
A6C4:632D612D DEFW of 2 words
A6C8:D1B69DB6 DEFW of 2 words
A6CC:C7A9C6A9 DEFW of 2 words
A6D0:5DAA5CAA DEFW of 2 words
A6D4:D1388838 DEFW of 2 words
A6D8:D0B0CBB0 DEFW of 2 words
A6DC:88BAD4B9 DEFW of 2 words
A6E0:C0AABFAA DEFW of 2 words
A6E4:B8A3B8A3 DEFW of 2 words
A6E8:CCB884B8 DEFW of 2 words
A6EC:A3349234 DEFW of 2 words
A6F0:F73BB63A DEFW of 2 words
A6F4:8BB184B1 DEFW of 2 words
A6F8:AAA5AAA5 DEFW of 2 words
A6FC:BA3C673B DEFW of 2 words
A700:5FAB5EAB DEFW of 2 words
A704:83BDDABB DEFW of 2 words
A708:A8BDE7BB DEFW of 2 words
A70C:04BEFBBB DEFW of 2 words
A710:BBBB95BA DEFW of 2 words
A714:6DB069B0 DEFW of 2 words
A718:A0385F38 DEFW of 2 words
A71C:383E003C DEFW of 2 words
A720:A4B298B2 DEFW of 2 words
A724:993AE039 DEFW of 2 words
A728:8FB37DB3 DEFW of 2 words
A72C:A3ABA2AB DEFW of 2 words
A730:63B15CB1 DEFW of 2 words
A734:DFB0DAB0 DEFW of 2 words
A738:60BAB9B9 DEFW of 2 words
A73C:313EFF3B DEFW of 2 words
A740:0E2F0A2F DEFW of 2 words
A744:E7ADE5AD DEFW of 2 words
A748:BE3AF939 DEFW of 2 words
A74C:042F002F DEFW of 2 words
A750:A93B8B3A DEFW of 2 words
A754:C0377337 DEFW of 2 words
A758:F12BF02B DEFW of 2 words
A75C:DA378A37 DEFW of 2 words
A760:01B0FDAF DEFW of 2 words
A764:E736B136 DEFW of 2 words
A768:D3ABD2AB DEFW of 2 words
A76C:D0BC77BB DEFW of 2 words
A770:AF386C38 DEFW of 2 words
A774:702F6C2F DEFW of 2 words
A778:71383738 DEFW of 2 words
A77C:BDB942B9 DEFW of 2 words
A780:3F3CFC3A DEFW of 2 words
A784:2AB41EB4 DEFW of 2 words
A788:2338E937 DEFW of 2 words
A78C:F6AFF1AF DEFW of 2 words
A790:D32AD22A DEFW of 2 words
A794:86BB76BA DEFW of 2 words
A798:3C332C33 DEFW of 2 words
A79C:E029DF29 DEFW of 2 words
A7A0:E7BDF7BB DEFW of 2 words
A7A4:943B7F3A DEFW of 2 words
A7A8:D8B956B9 DEFW of 2 words
A7AC:57353E35 DEFW of 2 words
A7B0:FD36C536 DEFW of 2 words
A7B4:7E9B7E9B DEFW of 2 words
A7B8:FE35DA35 DEFW of 2 words
A7BC:6EB906B9 DEFW of 2 words
A7C0:82327732 DEFW of 2 words
A7C4:49AC48AC DEFW of 2 words
A7C8:E5BC86BB DEFW of 2 words
A7CC:D3AFCEAF DEFW of 2 words
A7D0:EBB2DDB2 DEFW of 2 words
A7D4:0333F532 DEFW of 2 words
A7D8:BB34A934 DEFW of 2 words
A7DC:B42BB32B DEFW of 2 words
A7E0:51344434 DEFW of 2 words
A7E4:65B54BB5 DEFW of 2 words
A7E8:25BCE2BA DEFW of 2 words
A7EC:6C3AC139 DEFW of 2 words
A7F0:E12EDE2E DEFW of 2 words
A7F4:F831EF31 DEFW of 2 words
A7F8:83327832 DEFW of 2 words
A7FC:ABB49AB4 DEFW of 2 words
A800:A82DA62D DEFW of 2 words
A804:A63C573B DEFW of 2 words
A808:F830F330 DEFW of 2 words
A80C:DC3C803B DEFW of 2 words
A810:98328C32 DEFW of 2 words
A814:1FB7E3B6 DEFW of 2 words
A818:E32EE02E DEFW of 2 words
A81C:64306030 DEFW of 2 words
A820:D3B953B9 DEFW of 2 words
A824:643DCD3B DEFW of 2 words
A828:172B162B DEFW of 2 words
A82C:33183318 DEFW of 2 words
A830:F3B2E5B2 DEFW of 2 words
A834:0130FD2F DEFW of 2 words
A838:9D366D36 DEFW of 2 words
A83C:EEAFE9AF DEFW of 2 words
A840:F9B0F4B0 DEFW of 2 words
A844:79BC32BB DEFW of 2 words
A848:B4387038 DEFW of 2 words
A84C:CFB0CAB0 DEFW of 2 words
A850:2D322332 DEFW of 2 words
A854:3B303830 DEFW of 2 words
A858:E32DE12D DEFW of 2 words
A85C:95357835 DEFW of 2 words
A860:5B3C173B DEFW of 2 words
A864:15AF11AF DEFW of 2 words
A868:952D932D DEFW of 2 words
A86C:962E932E DEFW of 2 words
A870:9A2A992A DEFW of 2 words
A874:2B3A9339 DEFW of 2 words
A878:102D0F2D DEFW of 2 words
A87C:4DA74DA7 DEFW of 2 words
A880:C7BC71BB DEFW of 2 words
A884:2F2F2B2F DEFW of 2 words
A888:7BAC7AAC DEFW of 2 words
A88C:BABDECBB DEFW of 2 words
A890:B23B903A DEFW of 2 words
A894:2CB31DB3 DEFW of 2 words
A898:DBBDF4BB DEFW of 2 words
A89C:DAAED7AE DEFW of 2 words
A8A0:EF3DF83B DEFW of 2 words
A8A4:70364436 DEFW of 2 words
A8A8:C82DC62D DEFW of 2 words
A8AC:47B814B8 DEFW of 2 words
A8B0:42B703B7 DEFW of 2 words
A8B4:C433B133 DEFW of 2 words
A8B8:88B84BB8 DEFW of 2 words
A8BC:5FB159B1 DEFW of 2 words
A8C0:523DC53B DEFW of 2 words
A8C4:D2B5B1B5 DEFW of 2 words
A8C8:D62BD52B DEFW of 2 words
A8CC:85356935 DEFW of 2 words
A8D0:312E2F2E DEFW of 2 words
A8D4:46AD44AD DEFW of 2 words
A8D8:7F391339 DEFW of 2 words
A8DC:2EB607B6 DEFW of 2 words
A8E0:9C366C36 DEFW of 2 words
A8E4:D33DF33B DEFW of 2 words
A8E8:4F1E4F1E DEFW of 2 words
A8EC:F42DF22D DEFW of 2 words
A8F0:7CB737B7 DEFW of 2 words
A8F4:AF07AF07 DEFW of 2 words
A8F8:68B725B7 DEFW of 2 words
A8FC:63B638B6 DEFW of 2 words
A900:12BEFDBB DEFW of 2 words
A904:0132F831 DEFW of 2 words
A908:A92DA72D DEFW of 2 words
A90C:1C321332 DEFW of 2 words
A910:1C981C98 DEFW of 2 words
A914:12B6EDB5 DEFW of 2 words
A918:C7ACC6AC DEFW of 2 words
A91C:21B8E5B7 DEFW of 2 words
A920:4839E838 DEFW of 2 words
A924:65BABCB9 DEFW of 2 words
A928:98B858B8 DEFW of 2 words
A92C:6539FF38 DEFW of 2 words
A930:17B40CB4 DEFW of 2 words
A934:E232D432 DEFW of 2 words
A938:66B15FB1 DEFW of 2 words
A93C:F03DF83B DEFW of 2 words
A940:F632E832 DEFW of 2 words
A944:802D7E2D DEFW of 2 words
A948:ACABABAB DEFW of 2 words
A94C:FB2BFA2B DEFW of 2 words
A950:46AE43AE DEFW of 2 words
A954:DBB4C8B4 DEFW of 2 words
A958:30AD2FAD DEFW of 2 words
A95C:E8BBAEBA DEFW of 2 words
A960:B5B596B5 DEFW of 2 words
A964:A3AAA2AA DEFW of 2 words
A968:0436E035 DEFW of 2 words
A96C:C52EC22E DEFW of 2 words
A970:1F2E1D2E DEFW of 2 words
A974:10BDA1BB DEFW of 2 words
A978:0F3DA13B DEFW of 2 words
A97C:E72EE42E DEFW of 2 words
A980:FBB970B9 DEFW of 2 words
A984:4CB623B6 DEFW of 2 words
A988:21B9C9B8 DEFW of 2 words
A98C:5DB826B8 DEFW of 2 words
A990:ACB869B8 DEFW of 2 words
A994:C4B5A4B5 DEFW of 2 words
A998:A007A007 DEFW of 2 words
A99C:6139FC38 DEFW of 2 words
A9A0:EFB968B9 DEFW of 2 words
A9A4:D8BA0ABA DEFW of 2 words
A9A8:D83BA53A DEFW of 2 words
A9AC:31AE2FAE DEFW of 2 words
A9B0:F8AAF7AA DEFW of 2 words
A9B4:3A2F362F DEFW of 2 words
A9B8:90B08CB0 DEFW of 2 words
A9BC:5A885A88 DEFW of 2 words
A9C0:86BAD3B9 DEFW of 2 words
A9C4:9CB195B1 DEFW of 2 words
A9C8:EEA9EDA9 DEFW of 2 words
A9CC:AE15AE15 DEFW of 2 words
A9D0:ADABACAB DEFW of 2 words
A9D4:79B26EB2 DEFW of 2 words
A9D8:D2388938 DEFW of 2 words
A9DC:F4B5D1B5 DEFW of 2 words
A9E0:BFAFBAAF DEFW of 2 words
A9E4:343B453A DEFW of 2 words
A9E8:5C39F838 DEFW of 2 words
A9EC:88365A36 DEFW of 2 words
A9F0:2DB421B4 DEFW of 2 words
A9F4:53AF4FAF DEFW of 2 words
A9F8:5EAA5DAA DEFW of 2 words
A9FC:5F334E33 DEFW of 2 words
AA00:CCADCAAD DEFW of 2 words
AA04:8A2E872E DEFW of 2 words
AA08:972C962C DEFW of 2 words
AA0C:542C532C DEFW of 2 words
AA10:47304430 DEFW of 2 words
AA14:DD378D37 DEFW of 2 words
AA18:76AF72AF DEFW of 2 words
AA1C:0537CC36 DEFW of 2 words
AA20:B83DEC3B DEFW of 2 words
AA24:CA2EC72E DEFW of 2 words
AA28:B6B3A3B3 DEFW of 2 words
AA2C:EF38A038 DEFW of 2 words
AA30:952E922E DEFW of 2 words
AA34:39303630 DEFW of 2 words
AA38:E9BBAFBA DEFW of 2 words
AA3C:C03C6B3B DEFW of 2 words
AA40:F117F117 DEFW of 2 words
AA44:5AAD58AD DEFW of 2 words
AA48:80365336 DEFW of 2 words
AA4C:E1A9E0A9 DEFW of 2 words
AA50:F52CF42C DEFW of 2 words
AA54:A4BAE7B9 DEFW of 2 words
AA58:0C320332 DEFW of 2 words
AA5C:722E6F2E DEFW of 2 words
AA60:C8369436 DEFW of 2 words
AA64:D7395639 DEFW of 2 words
AA68:2A351335 DEFW of 2 words
AA6C:883AD439 DEFW of 2 words
AA70:95B856B8 DEFW of 2 words
AA74:6439FE38 DEFW of 2 words
AA78:F1B4DDB4 DEFW of 2 words
AA7C:B8359935 DEFW of 2 words
AA80:CEB885B8 DEFW of 2 words
AA84:95B091B0 DEFW of 2 words
AA88:A23C543B DEFW of 2 words
AA8C:95309130 DEFW of 2 words
AA90:3B342E34 DEFW of 2 words
AA94:C4ABC3AB DEFW of 2 words
AA98:68AC67AC DEFW of 2 words
AA9C:7D2B7C2B DEFW of 2 words
AAA0:0D2B0C2B DEFW of 2 words
AAA4:8E3DDE3B DEFW of 2 words
AAA8:70BB69BA DEFW of 2 words
AAAC:47343A34 DEFW of 2 words
AAB0:702C6F2C DEFW of 2 words
AAB4:1B2D1A2D DEFW of 2 words
AAB8:8FB47FB4 DEFW of 2 words
AABC:57371637 DEFW of 2 words
AAC0:87B180B1 DEFW of 2 words
AAC4:81BC39BB DEFW of 2 words
AAC8:8C318531 DEFW of 2 words
AACC:592B582B DEFW of 2 words
AAD0:89308530 DEFW of 2 words
AAD4:922A912A DEFW of 2 words
AAD8:45AC44AC DEFW of 2 words
AADC:1D3DA93B DEFW of 2 words
AAE0:2E38FC37 DEFW of 2 words
AAE4:872A862A DEFW of 2 words
AAE8:712A702A DEFW of 2 words
AAEC:1DB507B5 DEFW of 2 words
AAF0:D2BBA2BA DEFW of 2 words
AAF4:D0ABCFAB DEFW of 2 words
AAF8:0E38C437 DEFW of 2 words
AAFC:3EB32EB3 DEFW of 2 words
AB00:BD2EBA2E DEFW of 2 words
AB04:55BC11BB DEFW of 2 words
AB08:BC394139 DEFW of 2 words
AB0C:512B502B DEFW of 2 words
AB10:8D2B8C2B DEFW of 2 words
AB14:9FB48FB4 DEFW of 2 words
AB18:F7ADF5AD DEFW of 2 words
AB1C:73B16CB1 DEFW of 2 words
AB20:08BCC4BA DEFW of 2 words
AB24:BF387938 DEFW of 2 words
AB28:EAB5C8B5 DEFW of 2 words
AB2C:3AB32AB3 DEFW of 2 words
AB30:C1B5A1B5 DEFW of 2 words
AB34:962F912F DEFW of 2 words
AB38:99357C35 DEFW of 2 words
AB3C:C02DBE2D DEFW of 2 words
AB40:6FBB69BA DEFW of 2 words
AB44:A83AEA39 DEFW of 2 words
AB48:A42F9F2F DEFW of 2 words
AB4C:832C822C DEFW of 2 words
AB50:EAAFE5AF DEFW of 2 words
AB54:562A552A DEFW of 2 words
AB58:8C1F8C1F DEFW of 2 words
AB5C:0435EF34 DEFW of 2 words
AB60:CDABCCAB DEFW of 2 words
AB64:4D353435 DEFW of 2 words
AB68:D12DCF2D DEFW of 2 words
AB6C:E8BA14BA DEFW of 2 words
AB70:97AC96AC DEFW of 2 words
AB74:1EB01BB0 DEFW of 2 words
AB78:F0AFEBAF DEFW of 2 words
AB7C:3CAE39AE DEFW of 2 words
AB80:1D350735 DEFW of 2 words
AB84:EAB2DCB2 DEFW of 2 words
AB88:B1B39EB3 DEFW of 2 words
AB8C:0D2F092F DEFW of 2 words
AB90:69BABFB9 DEFW of 2 words
AB94:C9AEC6AE DEFW of 2 words
AB98:69AF65AF DEFW of 2 words
AB9C:22AA21AA DEFW of 2 words
ABA0:9A2C992C DEFW of 2 words
ABA4:47381438 DEFW of 2 words
ABA8:98392639 DEFW of 2 words
ABAC:2ABA92B9 DEFW of 2 words
ABB0:FDB3E8B3 DEFW of 2 words
ABB4:46361D36 DEFW of 2 words
ABB8:0DBDA0BB DEFW of 2 words
ABBC:F6AEF2AE DEFW of 2 words
ABC0:43B704B7 DEFW of 2 words
ABC4:5DB34CB3 DEFW of 2 words
ABC8:FE16FE16 DEFW of 2 words
ABCC:5E363336 DEFW of 2 words
ABD0:1B321232 DEFW of 2 words
ABD4:B98BB98B DEFW of 2 words
ABD8:6A3C243B DEFW of 2 words
ABDC:91348134 DEFW of 2 words
ABE0:AFABAEAB DEFW of 2 words
ABE4:84B080B0 DEFW of 2 words
ABE8:F5AFF0AF DEFW of 2 words
ABEC:3DBDBBBB DEFW of 2 words
ABF0:72306E30 DEFW of 2 words
ABF4:6CBC26BB DEFW of 2 words
ABF8:E5ACE4AC DEFW of 2 words
ABFC:A5349434 DEFW of 2 words
AC00:9E392B39 DEFW of 2 words
AC04:D4369F36 DEFW of 2 words
AC08:76326B32 DEFW of 2 words
AC0C:6FBDD2BB DEFW of 2 words
AC10:6BAF67AF DEFW of 2 words
AC14:4ABAA9B9 DEFW of 2 words
AC18:C22CC12C DEFW of 2 words
AC1C:2E3B413A DEFW of 2 words
AC20:822C812C DEFW of 2 words
AC24:E73BAE3A DEFW of 2 words
AC28:C3BC6EBB DEFW of 2 words
AC2C:22B7E6B6 DEFW of 2 words
AC30:6F186F18 DEFW of 2 words
AC34:5F325432 DEFW of 2 words
AC38:97909790 DEFW of 2 words
AC3C:8BB91CB9 DEFW of 2 words
AC40:88337633 DEFW of 2 words
AC44:0DB108B1 DEFW of 2 words
AC48:EC379A37 DEFW of 2 words
AC4C:3D2B3C2B DEFW of 2 words
AC50:940C940C DEFW of 2 words
AC54:5D2B5C2B DEFW of 2 words
AC58:8AB378B3 DEFW of 2 words
AC5C:04B001B0 DEFW of 2 words
AC60:27B9CEB8 DEFW of 2 words
AC64:3BBE00BC DEFW of 2 words
AC68:5F3AB839 DEFW of 2 words
AC6C:53B81EB8 DEFW of 2 words
AC70:64AF60AF DEFW of 2 words
AC74:74373037 DEFW of 2 words
AC78:D82FD32F DEFW of 2 words
AC7C:73B647B6 DEFW of 2 words
AC80:47B044B0 DEFW of 2 words
AC84:1FBCDCBA DEFW of 2 words
AC88:C1B774B7 DEFW of 2 words
AC8C:57362D36 DEFW of 2 words
AC90:5BBDC9BB DEFW of 2 words
AC94:10AF0CAF DEFW of 2 words
AC98:C5B1BDB1 DEFW of 2 words
AC9C:1DBEFEBB DEFW of 2 words
ACA0:A931A131 DEFW of 2 words
ACA4:3AAD39AD DEFW of 2 words
ACA8:74BB6CBA DEFW of 2 words
ACAC:AAB679B6 DEFW of 2 words
ACB0:B4B93BB9 DEFW of 2 words
ACB4:162E142E DEFW of 2 words
ACB8:E2B5C0B5 DEFW of 2 words
ACBC:FB3C943B DEFW of 2 words
ACC0:6B372837 DEFW of 2 words
ACC4:92308E30 DEFW of 2 words
ACC8:523AAF39 DEFW of 2 words
ACCC:FF397339 DEFW of 2 words
ACD0:8F3DDE3B DEFW of 2 words
ACD4:05AB04AB DEFW of 2 words
ACD8:B03B8F3A DEFW of 2 words
ACDC:FF88FF88 DEFW of 2 words
ACE0:9F2C9E2C DEFW of 2 words
ACE4:20B7E4B6 DEFW of 2 words
ACE8:5F354535 DEFW of 2 words
ACEC:39AA38AA DEFW of 2 words
ACF0:C83B9C3A DEFW of 2 words
ACF4:AC2FA72F DEFW of 2 words
ACF8:0F300C30 DEFW of 2 words
ACFC:69B726B7 DEFW of 2 words
AD00:C6B4B4B4 DEFW of 2 words
AD04:D9BC7EBB DEFW of 2 words
AD08:FBBDFABB DEFW of 2 words
AD0C:D0B69CB6 DEFW of 2 words
AD10:75AC74AC DEFW of 2 words
AD14:86AB85AB DEFW of 2 words
AD18:7D327232 DEFW of 2 words
AD1C:BDB771B7 DEFW of 2 words
AD20:3EAE3BAE DEFW of 2 words
AD24:132C122C DEFW of 2 words
AD28:BC2DBA2D DEFW of 2 words
AD2C:F2B79FB7 DEFW of 2 words
AD30:0E3B2D3A DEFW of 2 words
AD34:AB2BAA2B DEFW of 2 words
AD38:CCBB9FBA DEFW of 2 words
AD3C:ADB67CB6 DEFW of 2 words
AD40:97B57AB5 DEFW of 2 words
AD44:C6377937 DEFW of 2 words
AD48:93B287B2 DEFW of 2 words
AD4C:2937EC36 DEFW of 2 words
AD50:B6B0B2B0 DEFW of 2 words
AD54:563AB239 DEFW of 2 words
AD58:ED33D833 DEFW of 2 words
AD5C:8CB088B0 DEFW of 2 words
AD60:DDB6A8B6 DEFW of 2 words
AD64:913B7D3A DEFW of 2 words
AD68:4DB440B4 DEFW of 2 words
AD6C:F1ADEFAD DEFW of 2 words
AD70:14BA83B9 DEFW of 2 words
AD74:BD2DBB2D DEFW of 2 words
AD78:5A354135 DEFW of 2 words
AD7C:2E39D338 DEFW of 2 words
AD80:232E212E DEFW of 2 words
AD84:9D392A39 DEFW of 2 words
AD88:21AF1DAF DEFW of 2 words
AD8C:60AD5EAD DEFW of 2 words
AD90:8D337B33 DEFW of 2 words
AD94:B2ACB1AC DEFW of 2 words
AD98:AD2CAC2C DEFW of 2 words
AD9C:D12CD02C DEFW of 2 words
ADA0:99B192B1 DEFW of 2 words
ADA4:6F2D6D2D DEFW of 2 words
ADA8:791F791F DEFW of 2 words
ADAC:74B730B7 DEFW of 2 words
ADB0:853AD239 DEFW of 2 words
ADB4:C931C131 DEFW of 2 words
ADB8:E5ADE3AD DEFW of 2 words
ADBC:5AAA59AA DEFW of 2 words
ADC0:E808E808 DEFW of 2 words
ADC4:73B362B3 DEFW of 2 words
ADC8:7AB735B7 DEFW of 2 words
ADCC:B6393D39 DEFW of 2 words
ADD0:6B2D692D DEFW of 2 words
ADD4:70B461B4 DEFW of 2 words
ADD8:253A8F39 DEFW of 2 words
ADDC:23AC22AC DEFW of 2 words
ADE0:29AD28AD DEFW of 2 words
ADE4:36B033B0 DEFW of 2 words
ADE8:653B633A DEFW of 2 words
ADEC:39380738 DEFW of 2 words
ADF0:B2AEAFAE DEFW of 2 words
ADF4:3CB039B0 DEFW of 2 words
ADF8:F32AF22A DEFW of 2 words
ADFC:66345834 DEFW of 2 words
AE00:03AD02AD DEFW of 2 words
AE04:E41BE41B DEFW of 2 words
AE08:60B635B6 DEFW of 2 words
AE0C:D216D216 DEFW of 2 words
AE10:CD3C753B DEFW of 2 words
AE14:CE9ECE9E DEFW of 2 words
AE18:6BAE68AE DEFW of 2 words
AE1C:16B6F1B5 DEFW of 2 words
AE20:7DB562B5 DEFW of 2 words
AE24:CA394C39 DEFW of 2 words
AE28:E2389638 DEFW of 2 words
AE2C:CEBA03BA DEFW of 2 words
AE30:1EB118B1 DEFW of 2 words
AE34:AA358C35 DEFW of 2 words
AE38:0EBEFDBB DEFW of 2 words
AE3C:F32FEE2F DEFW of 2 words
AE40:263A9039 DEFW of 2 words
AE44:EC0BEC0B DEFW of 2 words
AE48:1B350535 DEFW of 2 words
AE4C:072D062D DEFW of 2 words
AE50:FBBA21BA DEFW of 2 words
AE54:32AE30AE DEFW of 2 words
AE58:352A342A DEFW of 2 words
AE5C:83337133 DEFW of 2 words
AE60:7F8E7F8E DEFW of 2 words
AE64:82AA81AA DEFW of 2 words
AE68:0235ED34 DEFW of 2 words
AE6C:043EFB3B DEFW of 2 words
AE70:B03AEF39 DEFW of 2 words
AE74:CC3A023A DEFW of 2 words
AE78:3CB7FEB6 DEFW of 2 words
AE7C:3239D638 DEFW of 2 words
AE80:422D402D DEFW of 2 words
AE84:E8BC88BB DEFW of 2 words
AE88:AC393539 DEFW of 2 words
AE8C:29BA92B9 DEFW of 2 words
AE90:0FB10AB1 DEFW of 2 words
AE94:95348534 DEFW of 2 words
AE98:40AA3FAA DEFW of 2 words
AE9C:D617D617 DEFW of 2 words
AEA0:22AF1EAF DEFW of 2 words
AEA4:4BAC4AAC DEFW of 2 words
AEA8:22301F30 DEFW of 2 words
AEAC:69BB65BA DEFW of 2 words
AEB0:DDB5BCB5 DEFW of 2 words
AEB4:7FB652B6 DEFW of 2 words
AEB8:E1379037 DEFW of 2 words
AEBC:30BDB4BB DEFW of 2 words
AEC0:2AB513B5 DEFW of 2 words
AEC4:083EFC3B DEFW of 2 words
AEC8:9EBB84BA DEFW of 2 words
AECC:AA376037 DEFW of 2 words
AED0:BF3DEE3B DEFW of 2 words
AED4:2538EC37 DEFW of 2 words
AED8:27B510B5 DEFW of 2 words
AEDC:702E6D2E DEFW of 2 words
AEE0:6AB832B8 DEFW of 2 words
AEE4:07AB06AB DEFW of 2 words
AEE8:D63C7B3B DEFW of 2 words
AEEC:893AD539 DEFW of 2 words
AEF0:9F039F03 DEFW of 2 words
AEF4:4C834C83 DEFW of 2 words
AEF8:323A9839 DEFW of 2 words
AEFC:4FAF4BAF DEFW of 2 words
AF00:103DA13B DEFW of 2 words
AF04:1DB6F7B5 DEFW of 2 words
AF08:D4BDF3BB DEFW of 2 words
AF0C:EA3C893B DEFW of 2 words
AF10:3BBCF8BA DEFW of 2 words
AF14:B0B39DB3 DEFW of 2 words
AF18:86317F31 DEFW of 2 words
AF1C:70335F33 DEFW of 2 words
AF20:DC2FD72F DEFW of 2 words
AF24:053A7839 DEFW of 2 words
AF28:FFAAFEAA DEFW of 2 words
AF2C:56B053B0 DEFW of 2 words
AF30:CBBB9EBA DEFW of 2 words
AF34:E5B2D7B2 DEFW of 2 words
AF38:CE34BC34 DEFW of 2 words
AF3C:04AC03AC DEFW of 2 words
AF40:143CD13A DEFW of 2 words
AF44:F230ED30 DEFW of 2 words
AF48:8C2F882F DEFW of 2 words
AF4C:112F0D2F DEFW of 2 words
AF50:4CB049B0 DEFW of 2 words
AF54:6FAE6CAE DEFW of 2 words
AF58:73B72FB7 DEFW of 2 words
AF5C:00B6DCB5 DEFW of 2 words
AF60:C42BC32B DEFW of 2 words
AF64:8A337833 DEFW of 2 words
AF68:73372F37 DEFW of 2 words
AF6C:C531BD31 DEFW of 2 words
AF70:402A3F2A DEFW of 2 words
AF74:A5AEA2AE DEFW of 2 words
AF78:53344634 DEFW of 2 words
AF7C:6E355335 DEFW of 2 words
AF80:19350335 DEFW of 2 words
AF84:1DAA1CAA DEFW of 2 words
AF88:FEB2F0B2 DEFW of 2 words
AF8C:2A322032 DEFW of 2 words
AF90:09BEFCBB DEFW of 2 words
AF94:86B374B3 DEFW of 2 words
AF98:BF31B731 DEFW of 2 words
AF9C:BFBAF9B9 DEFW of 2 words
AFA0:35351E35 DEFW of 2 words
AFA4:3D380B38 DEFW of 2 words
AFA8:4FAD4DAD DEFW of 2 words
AFAC:1C341034 DEFW of 2 words
AFB0:BC377037 DEFW of 2 words
AFB4:C72AC62A DEFW of 2 words
AFB8:31B322B3 DEFW of 2 words
AFBC:F52AF42A DEFW of 2 words
AFC0:E12FDC2F DEFW of 2 words
AFC4:E3ACE2AC DEFW of 2 words
AFC8:5F2B5E2B DEFW of 2 words
AFCC:0E340334 DEFW of 2 words
AFD0:DB3BA73A DEFW of 2 words
AFD4:C2B87BB8 DEFW of 2 words
AFD8:062F022F DEFW of 2 words
AFDC:65B63AB6 DEFW of 2 words
AFE0:8EB08AB0 DEFW of 2 words
AFE4:4BB817B8 DEFW of 2 words
AFE8:C0B87AB8 DEFW of 2 words
AFEC:2F3CEC3A DEFW of 2 words
AFF0:A9B58BB5 DEFW of 2 words
AFF4:49294929 DEFW of 2 words
AFF8:8C3AD739 DEFW of 2 words
AFFC:183A8539 DEFW of 2 words
B000:75383B38 DEFW of 2 words
B004:3DB32DB3 DEFW of 2 words
B008:763AC839 DEFW of 2 words
B00C:E83BAE3A DEFW of 2 words
B010:18340D34 DEFW of 2 words
B014:58B24DB2 DEFW of 2 words
B018:50BDC4BB DEFW of 2 words
B01C:33351C35 DEFW of 2 words
B020:53A553A5 DEFW of 2 words
B024:3D2E3A2E DEFW of 2 words
B028:CDAFC8AF DEFW of 2 words
B02C:52245224 DEFW of 2 words
B030:77B64AB6 DEFW of 2 words
B034:8EAB8DAB DEFW of 2 words
B038:65BB63BA DEFW of 2 words
B03C:D12ECE2E DEFW of 2 words
B040:112C102C DEFW of 2 words
B044:A0AB9FAB DEFW of 2 words
B048:D6ADD4AD DEFW of 2 words
B04C:AFB67EB6 DEFW of 2 words
B050:69B902B9 DEFW of 2 words
B054:9B2C9A2C DEFW of 2 words
B058:BFAABEAA DEFW of 2 words
B05C:13BCD0BA DEFW of 2 words
B060:18B113B1 DEFW of 2 words
B064:2B3EFF3B DEFW of 2 words
B068:2AAE28AE DEFW of 2 words
B06C:14AC13AC DEFW of 2 words
B070:A9367836 DEFW of 2 words
B074:5D3C193B DEFW of 2 words
B078:852A842A DEFW of 2 words
B07C:5ABB5CBA DEFW of 2 words
B080:F6BA1EBA DEFW of 2 words
B084:8AB56EB5 DEFW of 2 words
B088:A9B1A1B1 DEFW of 2 words
B08C:112E0F2E DEFW of 2 words
B090:873B773A DEFW of 2 words
B094:9DBDE3BB DEFW of 2 words
B098:86B918B9 DEFW of 2 words
B09C:6CB35BB3 DEFW of 2 words
B0A0:ECAEE9AE DEFW of 2 words
B0A4:90B37EB3 DEFW of 2 words
B0A8:1EAB1DAB DEFW of 2 words
B0AC:CABC73BB DEFW of 2 words
B0B0:482B472B DEFW of 2 words
B0B4:3CA23CA2 DEFW of 2 words
B0B8:382C372C DEFW of 2 words
B0BC:F431EB31 DEFW of 2 words
B0C0:4A333A33 DEFW of 2 words
B0C4:A5375B37 DEFW of 2 words
B0C8:8C2E892E DEFW of 2 words
B0CC:EBACEAAC DEFW of 2 words
B0D0:EFB8A0B8 DEFW of 2 words
B0D4:3E193E19 DEFW of 2 words
B0D8:DE85DE85 DEFW of 2 words
B0DC:2A2E282E DEFW of 2 words
B0E0:04B2FBB1 DEFW of 2 words
B0E4:F9B6C1B6 DEFW of 2 words
B0E8:56B53DB5 DEFW of 2 words
B0EC:60AA5FAA DEFW of 2 words
B0F0:47BAA7B9 DEFW of 2 words
B0F4:402F3C2F DEFW of 2 words
B0F8:22B218B2 DEFW of 2 words
B0FC:D731CF31 DEFW of 2 words
B100:392C382C DEFW of 2 words
B104:2D37F036 DEFW of 2 words
B108:50BC0CBB DEFW of 2 words
B10C:46381338 DEFW of 2 words
B110:3EAB3DAB DEFW of 2 words
B114:AA3AEB39 DEFW of 2 words
B118:ADBAEDB9 DEFW of 2 words
B11C:FC3DFA3B DEFW of 2 words
B120:52362836 DEFW of 2 words
B124:223A8D39 DEFW of 2 words
B128:AEBDE9BB DEFW of 2 words
B12C:2536FF35 DEFW of 2 words
B130:E92BE82B DEFW of 2 words
B134:DEB0D9B0 DEFW of 2 words
B138:5A39F638 DEFW of 2 words
B13C:1BBA88B9 DEFW of 2 words
B140:76887688 DEFW of 2 words
B144:96AD94AD DEFW of 2 words
B148:0C36E735 DEFW of 2 words
B14C:58B53FB5 DEFW of 2 words
B150:9FBB85BA DEFW of 2 words
B154:B02CAF2C DEFW of 2 words
B158:6ABDD0BB DEFW of 2 words
B15C:472E442E DEFW of 2 words
B160:C7B0C2B0 DEFW of 2 words
B164:46B61DB6 DEFW of 2 words
B168:16B40BB4 DEFW of 2 words
B16C:E2AAE1AA DEFW of 2 words
B170:50BB56BA DEFW of 2 words
B174:FBACFAAC DEFW of 2 words
B178:3EAF3AAF DEFW of 2 words
B17C:4B2B4A2B DEFW of 2 words
B180:EC3C8B3B DEFW of 2 words
B184:F8BBB7BA DEFW of 2 words
B188:47BB50BA DEFW of 2 words
B18C:DF395C39 DEFW of 2 words
B190:0E37D436 DEFW of 2 words
B194:8CB185B1 DEFW of 2 words
B198:CBB697B6 DEFW of 2 words
B19C:D9BBA6BA DEFW of 2 words
B1A0:E683E683 DEFW of 2 words
B1A4:1DB7E2B6 DEFW of 2 words
B1A8:D7AFD2AF DEFW of 2 words
B1AC:BFB3ACB3 DEFW of 2 words
B1B0:963B803A DEFW of 2 words
B1B4:EBBBB0BA DEFW of 2 words
B1B8:AF30AB30 DEFW of 2 words
B1BC:FBAAFAAA DEFW of 2 words
B1C0:C6ADC4AD DEFW of 2 words
B1C4:4CAB4BAB DEFW of 2 words
B1C8:1B311531 DEFW of 2 words
B1CC:C8B2BBB2 DEFW of 2 words
B1D0:E0BC82BB DEFW of 2 words
B1D4:AEAEABAE DEFW of 2 words
B1D8:A9339633 DEFW of 2 words
B1DC:022FFE2E DEFW of 2 words
B1E0:C32CC22C DEFW of 2 words
B1E4:E183E183 DEFW of 2 words
B1E8:3C013C01 DEFW of 2 words
B1EC:1C3CD93A DEFW of 2 words
B1F0:FBB8AAB8 DEFW of 2 words
B1F4:F4ABF3AB DEFW of 2 words
B1F8:D52FD02F DEFW of 2 words
B1FC:FD3BBA3A DEFW of 2 words
B200:CCAFC7AF DEFW of 2 words
B204:E4ADE2AD DEFW of 2 words
B208:AE339B33 DEFW of 2 words
B20C:0B3D9E3B DEFW of 2 words
B210:FF30FA30 DEFW of 2 words
B214:F0BBB3BA DEFW of 2 words
B218:50353735 DEFW of 2 words
B21C:8F2C8E2C DEFW of 2 words
B220:61354735 DEFW of 2 words
B224:ED29EC29 DEFW of 2 words
B228:FD01FD01 DEFW of 2 words
B22C:1EB214B2 DEFW of 2 words
B230:37BA9CB9 DEFW of 2 words
B234:719C719C DEFW of 2 words
B238:E6AAE5AA DEFW of 2 words
B23C:6D3B683A DEFW of 2 words
B240:5DBC19BB DEFW of 2 words
B244:02AE00AE DEFW of 2 words
B248:C62CC52C DEFW of 2 words
B24C:432F3F2F DEFW of 2 words
B250:CD2CCC2C DEFW of 2 words
B254:89BC40BB DEFW of 2 words
B258:14B011B0 DEFW of 2 words
B25C:CB2BCA2B DEFW of 2 words
B260:6D3AC239 DEFW of 2 words
B264:DBB78BB7 DEFW of 2 words
B268:99B66AB6 DEFW of 2 words
B26C:7AB26FB2 DEFW of 2 words
B270:30B7F3B6 DEFW of 2 words
B274:4EB04BB0 DEFW of 2 words
B278:89356D35 DEFW of 2 words
B27C:80138013 DEFW of 2 words
B280:64363936 DEFW of 2 words
B284:98AF93AF DEFW of 2 words
B288:33303030 DEFW of 2 words
B28C:A1B92DB9 DEFW of 2 words
B290:8BB47BB4 DEFW of 2 words
B294:F32DF12D DEFW of 2 words
B298:71BAC5B9 DEFW of 2 words
B29C:E0ACDFAC DEFW of 2 words
B2A0:2CAD2BAD DEFW of 2 words
B2A4:6239FC38 DEFW of 2 words
B2A8:472A462A DEFW of 2 words
B2AC:2AB9D0B8 DEFW of 2 words
B2B0:C32EC02E DEFW of 2 words
B2B4:EAB964B9 DEFW of 2 words
B2B8:41361936 DEFW of 2 words
B2BC:D7ACD6AC DEFW of 2 words
B2C0:E4AEE1AE DEFW of 2 words
B2C4:16330733 DEFW of 2 words
B2C8:F73DFA3B DEFW of 2 words
B2CC:D73BA53A DEFW of 2 words
B2D0:4FBAADB9 DEFW of 2 words
B2D4:032FFF2E DEFW of 2 words
B2D8:BDAFB8AF DEFW of 2 words
B2DC:CDB94EB9 DEFW of 2 words
B2E0:F53DF93B DEFW of 2 words
B2E4:BB3DEC3B DEFW of 2 words
B2E8:17B112B1 DEFW of 2 words
B2EC:A6B495B4 DEFW of 2 words
B2F0:5E305B30 DEFW of 2 words
B2F4:A2AF9DAF DEFW of 2 words
B2F8:14B6EFB5 DEFW of 2 words
B2FC:80B275B2 DEFW of 2 words
B300:D4B5B3B5 DEFW of 2 words
B304:0A2E082E DEFW of 2 words
B308:2F39D438 DEFW of 2 words
B30C:ABB0A7B0 DEFW of 2 words
B310:ECAAEBAA DEFW of 2 words
B314:B13DEA3B DEFW of 2 words
B318:03300030 DEFW of 2 words
B31C:A73C583B DEFW of 2 words
B320:AE31A631 DEFW of 2 words
B324:A1B860B8 DEFW of 2 words
B328:25B11FB1 DEFW of 2 words
B32C:F23BB43A DEFW of 2 words
B330:682A672A DEFW of 2 words
B334:16B111B1 DEFW of 2 words
B338:88B56CB5 DEFW of 2 words
B33C:602C5F2C DEFW of 2 words
B340:C12AC02A DEFW of 2 words
B344:DD31D531 DEFW of 2 words
B348:1736F235 DEFW of 2 words
B34C:65B354B3 DEFW of 2 words
B350:E12DDF2D DEFW of 2 words
B354:2B1A2B1A DEFW of 2 words
B358:38AD37AD DEFW of 2 words
B35C:792D772D DEFW of 2 words
B360:813DD93B DEFW of 2 words
B364:36303330 DEFW of 2 words
B368:2BB41FB4 DEFW of 2 words
B36C:9D3AE339 DEFW of 2 words
B370:262F222F DEFW of 2 words
B374:B2376737 DEFW of 2 words
B378:7AAE77AE DEFW of 2 words
B37C:5DBB5EBA DEFW of 2 words
B380:3A380838 DEFW of 2 words
B384:EFB3DAB3 DEFW of 2 words
B388:EFACEEAC DEFW of 2 words
B38C:99269926 DEFW of 2 words
B390:A6BB89BA DEFW of 2 words
B394:13AE11AE DEFW of 2 words
B398:CDB0C8B0 DEFW of 2 words
B39C:1B36F535 DEFW of 2 words
B3A0:90308C30 DEFW of 2 words
B3A4:5FB34EB3 DEFW of 2 words
B3A8:29302630 DEFW of 2 words
B3AC:56382038 DEFW of 2 words
B3B0:C0B773B7 DEFW of 2 words
B3B4:03AB02AB DEFW of 2 words
B3B8:2EBCEBBA DEFW of 2 words
B3BC:14AF10AF DEFW of 2 words
B3C0:9C2B9B2B DEFW of 2 words
B3C4:E130DC30 DEFW of 2 words
B3C8:3AAE37AE DEFW of 2 words
B3CC:85B17EB1 DEFW of 2 words
B3D0:96357935 DEFW of 2 words
B3D4:B4BDEBBB DEFW of 2 words
B3D8:D5B3C1B3 DEFW of 2 words
B3DC:341A341A DEFW of 2 words
B3E0:D5B954B9 DEFW of 2 words
B3E4:D5B1CDB1 DEFW of 2 words
B3E8:36BA9BB9 DEFW of 2 words
B3EC:FAB6C2B6 DEFW of 2 words
B3F0:2238E737 DEFW of 2 words
B3F4:74977497 DEFW of 2 words
B3F8:2C312631 DEFW of 2 words
B3FC:B4B0B0B0 DEFW of 2 words
B400:922B912B DEFW of 2 words
B404:5BB44DB4 DEFW of 2 words
B408:EA35C835 DEFW of 2 words
B40C:FA33E533 DEFW of 2 words
B410:823B743A DEFW of 2 words
B414:F633E133 DEFW of 2 words
B418:FF38AD38 DEFW of 2 words
B41C:D3BDF3BB DEFW of 2 words
B420:173EFE3B DEFW of 2 words
B424:073EFC3B DEFW of 2 words
B428:54B14EB1 DEFW of 2 words
B42C:A1B19AB1 DEFW of 2 words
B430:E53A123A DEFW of 2 words
B434:4FBB55BA DEFW of 2 words
B438:40BE00BC DEFW of 2 words
B43C:F8396E39 DEFW of 2 words
B440:E4B897B8 DEFW of 2 words
B444:C0B2B3B2 DEFW of 2 words
B448:A0AA9FAA DEFW of 2 words
B44C:62B82BB8 DEFW of 2 words
B450:E1395D39 DEFW of 2 words
B454:C92EC62E DEFW of 2 words
B458:681C681C DEFW of 2 words
B45C:58324D32 DEFW of 2 words
B460:AFB938B9 DEFW of 2 words
B464:63BB62BA DEFW of 2 words
B468:663DCE3B DEFW of 2 words
B46C:51905190 DEFW of 2 words
B470:0D37D336 DEFW of 2 words
B474:28302530 DEFW of 2 words
B478:D92CD82C DEFW of 2 words
B47C:FF2BFE2B DEFW of 2 words
B480:41254125 DEFW of 2 words
B484:F4BBB5BA DEFW of 2 words
B488:09B3FBB2 DEFW of 2 words
B48C:863DDB3B DEFW of 2 words
B490:61AE5EAE DEFW of 2 words
B494:56B62CB6 DEFW of 2 words
B498:143EFD3B DEFW of 2 words
B49C:B8AEB5AE DEFW of 2 words
B4A0:3D323332 DEFW of 2 words
B4A4:A5B75BB7 DEFW of 2 words
B4A8:7A937A93 DEFW of 2 words
B4AC:DA30D530 DEFW of 2 words
B4B0:62B351B3 DEFW of 2 words
B4B4:7EAF7AAF DEFW of 2 words
B4B8:EEB5CBB5 DEFW of 2 words
B4BC:34322A32 DEFW of 2 words
B4C0:E72FE22F DEFW of 2 words
B4C4:D6B0D1B0 DEFW of 2 words
B4C8:6D2A6C2A DEFW of 2 words
B4CC:BF32B232 DEFW of 2 words
B4D0:CD2BCC2B DEFW of 2 words
B4D4:E12BE02B DEFW of 2 words
B4D8:63B05FB0 DEFW of 2 words
B4DC:E8B6B2B6 DEFW of 2 words
B4E0:CDBDF1BB DEFW of 2 words
B4E4:4BBDC2BB DEFW of 2 words
B4E8:EB2EE82E DEFW of 2 words
B4EC:6DB35CB3 DEFW of 2 words
B4F0:F62DF42D DEFW of 2 words
B4F4:77957795 DEFW of 2 words
B4F8:D23DF23B DEFW of 2 words
B4FC:ABAFA6AF DEFW of 2 words
B500:A5AAA4AA DEFW of 2 words
B504:3DBAA0B9 DEFW of 2 words
B508:C72DC52D DEFW of 2 words
B50C:3AB037B0 DEFW of 2 words
B510:C22EBF2E DEFW of 2 words
B514:46BE00BC DEFW of 2 words
B518:8EB47EB4 DEFW of 2 words
B51C:2CB222B2 DEFW of 2 words
B520:43B239B2 DEFW of 2 words
B524:B7B598B5 DEFW of 2 words
B528:B926B926 DEFW of 2 words
B52C:4E944E94 DEFW of 2 words
B530:0F2A0E2A DEFW of 2 words
B534:EBABEAAB DEFW of 2 words
B538:31B02EB0 DEFW of 2 words
B53C:03BA76B9 DEFW of 2 words
B540:58334833 DEFW of 2 words
B544:432E402E DEFW of 2 words
B548:6A2F662F DEFW of 2 words
B54C:48BDC0BB DEFW of 2 words
B550:90BC45BB DEFW of 2 words
B554:E50BE50B DEFW of 2 words
B558:981D981D DEFW of 2 words
B55C:AC349B34 DEFW of 2 words
B560:6B2E682E DEFW of 2 words
B564:06AA05AA DEFW of 2 words
B568:C908C908 DEFW of 2 words
B56C:82BC3ABB DEFW of 2 words
B570:FDB0F8B0 DEFW of 2 words
B574:A7386538 DEFW of 2 words
B578:C2B4B0B4 DEFW of 2 words
B57C:90AE8DAE DEFW of 2 words
B580:82317B31 DEFW of 2 words
B584:2EB02BB0 DEFW of 2 words
B588:D0BDF2BB DEFW of 2 words
B58C:3A2B392B DEFW of 2 words
B590:CE29CD29 DEFW of 2 words
B594:96392539 DEFW of 2 words
B598:883C3F3B DEFW of 2 words
B59C:1F2F1B2F DEFW of 2 words
B5A0:3C3B4A3A DEFW of 2 words
B5A4:E13BAA3A DEFW of 2 words
B5A8:AE3AEE39 DEFW of 2 words
B5AC:0433F632 DEFW of 2 words
B5B0:04AB03AB DEFW of 2 words
B5B4:0DB7D3B6 DEFW of 2 words
B5B8:08310331 DEFW of 2 words
B5BC:28360136 DEFW of 2 words
B5C0:39BB48BA DEFW of 2 words
B5C4:BB2DB92D DEFW of 2 words
B5C8:14BEFDBB DEFW of 2 words
B5CC:79097909 DEFW of 2 words
B5D0:62946294 DEFW of 2 words
B5D4:7D356235 DEFW of 2 words
B5D8:3BB135B1 DEFW of 2 words
B5DC:CE2BCD2B DEFW of 2 words
B5E0:FBB7A7B7 DEFW of 2 words
B5E4:B63AF339 DEFW of 2 words
B5E8:AC24AC24 DEFW of 2 words
B5EC:B1B939B9 DEFW of 2 words
B5F0:EA83EA83 DEFW of 2 words
B5F4:FF37AB37 DEFW of 2 words
B5F8:88BDDCBB DEFW of 2 words
B5FC:51314B31 DEFW of 2 words
B600:FF2DFD2D DEFW of 2 words
B604:D430CF30 DEFW of 2 words
B608:40B236B2 DEFW of 2 words
B60C:30332133 DEFW of 2 words
B610:37332733 DEFW of 2 words
B614:FB32ED32 DEFW of 2 words
B618:28B9CEB8 DEFW of 2 words
B61C:6FAF6BAF DEFW of 2 words
B620:B9387438 DEFW of 2 words
B624:BBADB9AD DEFW of 2 words
B628:2C331D33 DEFW of 2 words
B62C:22B313B3 DEFW of 2 words
B630:5A382438 DEFW of 2 words
B634:5FB71DB7 DEFW of 2 words
B638:8B2A8A2A DEFW of 2 words
B63C:782C772C DEFW of 2 words
B640:BCBAF7B9 DEFW of 2 words
B644:FAB5D7B5 DEFW of 2 words
B648:EDBA18BA DEFW of 2 words
B64C:80317931 DEFW of 2 words
B650:89B91BB9 DEFW of 2 words
B654:ABBB8CBA DEFW of 2 words
B658:96318F31 DEFW of 2 words
B65C:DB395939 DEFW of 2 words
B660:38AC37AC DEFW of 2 words
B664:BFAEBCAE DEFW of 2 words
B668:352C342C DEFW of 2 words
B66C:07B8B8B7 DEFW of 2 words
B670:8C3B7A3A DEFW of 2 words
B674:E4B793B7 DEFW of 2 words
B678:182D172D DEFW of 2 words
B67C:523C0E3B DEFW of 2 words
B680:AFB591B5 DEFW of 2 words
B684:A8B75EB7 DEFW of 2 words
B688:10340534 DEFW of 2 words
B68C:66B723B7 DEFW of 2 words
B690:642C632C DEFW of 2 words
B694:1C37E136 DEFW of 2 words
B698:502B4F2B DEFW of 2 words
B69C:3A2A392A DEFW of 2 words
B6A0:0CB401B4 DEFW of 2 words
B6A4:F2B2E4B2 DEFW of 2 words
B6A8:F2396A39 DEFW of 2 words
B6AC:D7B1CFB1 DEFW of 2 words
B6B0:81B07DB0 DEFW of 2 words
B6B4:80B36EB3 DEFW of 2 words
B6B8:3FAF3BAF DEFW of 2 words
B6BC:34B324B3 DEFW of 2 words
B6C0:2B2E292E DEFW of 2 words
B6C4:CFB1C7B1 DEFW of 2 words
B6C8:80B914B9 DEFW of 2 words
B6CC:D1B3BDB3 DEFW of 2 words
B6D0:C4B948B9 DEFW of 2 words
B6D4:D5378637 DEFW of 2 words
B6D8:CFB886B8 DEFW of 2 words
B6DC:E9B3D4B3 DEFW of 2 words
B6E0:B6B871B8 DEFW of 2 words
B6E4:82B846B8 DEFW of 2 words
B6E8:EC2FE72F DEFW of 2 words
B6EC:96AE93AE DEFW of 2 words
B6F0:B33DEA3B DEFW of 2 words
B6F4:11B6ECB5 DEFW of 2 words
B6F8:C3369036 DEFW of 2 words
B6FC:52371137 DEFW of 2 words
B700:0D2A0C2A DEFW of 2 words
B704:20AD1FAD DEFW of 2 words
B708:763B6D3A DEFW of 2 words
B70C:89AF85AF DEFW of 2 words
B710:94AE91AE DEFW of 2 words
B714:1CB7E1B6 DEFW of 2 words
B718:55344834 DEFW of 2 words
B71C:28BEFFBB DEFW of 2 words
B720:813C393B DEFW of 2 words
B724:7BB270B2 DEFW of 2 words
B728:D6AAD5AA DEFW of 2 words
B72C:A63DE63B DEFW of 2 words
B730:B0AAAFAA DEFW of 2 words
B734:78AE75AE DEFW of 2 words
B738:2B360436 DEFW of 2 words
B73C:4A343D34 DEFW of 2 words
B740:05B2FCB1 DEFW of 2 words
B744:57295729 DEFW of 2 words
B748:C722C722 DEFW of 2 words
B74C:0B37D136 DEFW of 2 words
B750:F330EE30 DEFW of 2 words
B754:6D2D6B2D DEFW of 2 words
B758:352D342D DEFW of 2 words
B75C:10B5FAB4 DEFW of 2 words
B760:26B7EAB6 DEFW of 2 words
B764:8A391B39 DEFW of 2 words
B768:10A710A7 DEFW of 2 words
B76C:DBB5BAB5 DEFW of 2 words
B770:1D2A1C2A DEFW of 2 words
B774:672C662C DEFW of 2 words
B778:57B53EB5 DEFW of 2 words
B77C:28032803 DEFW of 2 words
B780:B833A533 DEFW of 2 words
B784:E9B4D5B4 DEFW of 2 words
B788:F4AEF1AE DEFW of 2 words
B78C:662D642D DEFW of 2 words
B790:2E2E2C2E DEFW of 2 words
B794:7AB46BB4 DEFW of 2 words
B798:D8B88EB8 DEFW of 2 words
B79C:97309330 DEFW of 2 words
B7A0:3D1B3D1B DEFW of 2 words
B7A4:46B140B1 DEFW of 2 words
B7A8:7A307630 DEFW of 2 words
B7AC:6FB06BB0 DEFW of 2 words
B7B0:77B732B7 DEFW of 2 words
B7B4:6D2F692F DEFW of 2 words
B7B8:4E954E95 DEFW of 2 words
B7BC:96AA95AA DEFW of 2 words
B7C0:5D344F34 DEFW of 2 words
B7C4:2F2C2E2C DEFW of 2 words
B7C8:C130BD30 DEFW of 2 words
B7CC:CF3DF23B DEFW of 2 words
B7D0:D6B6A1B6 DEFW of 2 words
B7D4:31351A35 DEFW of 2 words
B7D8:AD2AAC2A DEFW of 2 words
B7DC:7E2D7C2D DEFW of 2 words
B7E0:6C2C6B2C DEFW of 2 words
B7E4:E7AFE2AF DEFW of 2 words
B7E8:642A632A DEFW of 2 words
B7EC:E533D133 DEFW of 2 words
B7F0:1338CD37 DEFW of 2 words
B7F4:6C3C263B DEFW of 2 words
B7F8:E52AE42A DEFW of 2 words
B7FC:32AB31AB DEFW of 2 words
B800:64B639B6 DEFW of 2 words
B804:2C3B403A DEFW of 2 words
B808:19AF15AF DEFW of 2 words
B80C:6FB461B4 DEFW of 2 words
B810:45804580 DEFW of 2 words
B814:B3ACB2AC DEFW of 2 words
B818:F92CF82C DEFW of 2 words
B81C:F1B969B9 DEFW of 2 words
B820:42AC41AC DEFW of 2 words
B824:3A3E003C DEFW of 2 words
B828:4AAF46AF DEFW of 2 words
B82C:C9BB9DBA DEFW of 2 words
B830:45B9E6B8 DEFW of 2 words
B834:98B094B0 DEFW of 2 words
B838:EEAEEBAE DEFW of 2 words
B83C:412F3D2F DEFW of 2 words
B840:0DAC0CAC DEFW of 2 words
B844:5C2C5B2C DEFW of 2 words
B848:E9379837 DEFW of 2 words
B84C:8FAB8EAB DEFW of 2 words
B850:74BC2DBB DEFW of 2 words
B854:3637F836 DEFW of 2 words
B858:0A3EFC3B DEFW of 2 words
B85C:3BB038B0 DEFW of 2 words
B860:2EB224B2 DEFW of 2 words
B864:B2B2A6B2 DEFW of 2 words
B868:17AF13AF DEFW of 2 words
B86C:242A232A DEFW of 2 words
B870:B234A134 DEFW of 2 words
B874:04B9B2B8 DEFW of 2 words
B878:67BC22BB DEFW of 2 words
B87C:4AB70AB7 DEFW of 2 words
B880:F729F629 DEFW of 2 words
B884:95B74DB7 DEFW of 2 words
B888:89AE86AE DEFW of 2 words
B88C:8CAD8AAD DEFW of 2 words
B890:052B042B DEFW of 2 words
B894:3D313731 DEFW of 2 words
B898:ADB1A5B1 DEFW of 2 words
B89C:C431BC31 DEFW of 2 words
B8A0:1839C238 DEFW of 2 words
B8A4:BBB2AEB2 DEFW of 2 words
B8A8:C5B87EB8 DEFW of 2 words
B8AC:A8349734 DEFW of 2 words
B8B0:C8BDF0BB DEFW of 2 words
B8B4:1B330C33 DEFW of 2 words
B8B8:942C932C DEFW of 2 words
B8BC:32BDB5BB DEFW of 2 words
B8C0:54BDC6BB DEFW of 2 words
B8C4:97366836 DEFW of 2 words
B8C8:60305D30 DEFW of 2 words
B8CC:972F922F DEFW of 2 words
B8D0:A9375F37 DEFW of 2 words
B8D4:C4AFBFAF DEFW of 2 words
B8D8:AB367A36 DEFW of 2 words
B8DC:D03DF23B DEFW of 2 words
B8E0:9D2D9B2D DEFW of 2 words
B8E4:F930F430 DEFW of 2 words
B8E8:6FB554B5 DEFW of 2 words
B8EC:AF376437 DEFW of 2 words
B8F0:6F383638 DEFW of 2 words
B8F4:61B15BB1 DEFW of 2 words
B8F8:84337233 DEFW of 2 words
B8FC:F4B96BB9 DEFW of 2 words
B900:88AF84AF DEFW of 2 words
B904:68AD66AD DEFW of 2 words
B908:C0B68DB6 DEFW of 2 words
B90C:E8B3D3B3 DEFW of 2 words
B910:11320832 DEFW of 2 words
B914:6DAD6BAD DEFW of 2 words
B918:AFB764B7 DEFW of 2 words
B91C:762E732E DEFW of 2 words
B920:5A315431 DEFW of 2 words
B924:30B321B3 DEFW of 2 words
B928:FC2EF82E DEFW of 2 words
B92C:74B648B6 DEFW of 2 words
B930:21BCDEBA DEFW of 2 words
B934:DBB959B9 DEFW of 2 words
B938:3CB32CB3 DEFW of 2 words
B93C:B8B1B0B1 DEFW of 2 words
B940:86384938 DEFW of 2 words
B944:75B731B7 DEFW of 2 words
B948:4D314731 DEFW of 2 words
B94C:373CF43A DEFW of 2 words
B950:DB04DB04 DEFW of 2 words
B954:252D242D DEFW of 2 words
B958:19201920 DEFW of 2 words
B95C:6A2D682D DEFW of 2 words
B960:BDACBCAC DEFW of 2 words
B964:CC3C743B DEFW of 2 words
B968:AD3B8D3A DEFW of 2 words
B96C:F7B1EEB1 DEFW of 2 words
B970:BBBC68BB DEFW of 2 words
B974:F3B0EEB0 DEFW of 2 words
B978:5E354435 DEFW of 2 words
B97C:10320732 DEFW of 2 words
B980:CFADCDAD DEFW of 2 words
B984:27B41BB4 DEFW of 2 words
B988:7D887D88 DEFW of 2 words
B98C:0C3CC83A DEFW of 2 words
B990:CE3DF13B DEFW of 2 words
B994:F8B2EAB2 DEFW of 2 words
B998:7CBC34BB DEFW of 2 words
B99C:48AE45AE DEFW of 2 words
B9A0:E9B6B3B6 DEFW of 2 words
B9A4:1EAD1DAD DEFW of 2 words
B9A8:08B8BAB7 DEFW of 2 words
B9AC:C43DEF3B DEFW of 2 words
B9B0:DE96DE96 DEFW of 2 words
B9B4:91B08DB0 DEFW of 2 words
B9B8:253B3B3A DEFW of 2 words
B9BC:9FB198B1 DEFW of 2 words
B9C0:912E8E2E DEFW of 2 words
B9C4:1DB9C6B8 DEFW of 2 words
B9C8:323B443A DEFW of 2 words
B9CC:0CBEFCBB DEFW of 2 words
B9D0:68B901B9 DEFW of 2 words
B9D4:053B273A DEFW of 2 words
B9D8:11BA80B9 DEFW of 2 words
B9DC:92366336 DEFW of 2 words
B9E0:7EB177B1 DEFW of 2 words
B9E4:56B448B4 DEFW of 2 words
B9E8:B7B685B6 DEFW of 2 words
B9EC:A62DA42D DEFW of 2 words
B9F0:A3B390B3 DEFW of 2 words
B9F4:22B8E7B7 DEFW of 2 words
B9F8:D7B3C3B3 DEFW of 2 words
B9FC:F7BA1EBA DEFW of 2 words
BA00:132D122D DEFW of 2 words
BA04:86BC3DBB DEFW of 2 words
BA08:80AF7CAF DEFW of 2 words
BA0C:2038E437 DEFW of 2 words
BA10:AF32A332 DEFW of 2 words
BA14:07AA06AA DEFW of 2 words
BA18:B4BAF2B9 DEFW of 2 words
BA1C:11AA10AA DEFW of 2 words
BA20:1ABDA7BB DEFW of 2 words
BA24:733DD43B DEFW of 2 words
BA28:A43B883A DEFW of 2 words
BA2C:622B612B DEFW of 2 words
BA30:58315231 DEFW of 2 words
BA34:2C3CE93A DEFW of 2 words
BA38:5CB542B5 DEFW of 2 words
BA3C:4E353535 DEFW of 2 words
BA40:2A2A292A DEFW of 2 words
BA44:742C732C DEFW of 2 words
BA48:15B40AB4 DEFW of 2 words
BA4C:C5394839 DEFW of 2 words
BA50:55B714B7 DEFW of 2 words
BA54:2D0E2D0E DEFW of 2 words
BA58:A9B396B3 DEFW of 2 words
BA5C:AAACA9AC DEFW of 2 words
BA60:42380F38 DEFW of 2 words
BA64:7F8D7F8D DEFW of 2 words
BA68:792E762E DEFW of 2 words
BA6C:2CB8F8B7 DEFW of 2 words
BA70:3EBDBBBB DEFW of 2 words
BA74:103B2E3A DEFW of 2 words
BA78:A22AA12A DEFW of 2 words
BA7C:17AC16AC DEFW of 2 words
BA80:9EB581B5 DEFW of 2 words
BA84:78B55DB5 DEFW of 2 words
BA88:542D522D DEFW of 2 words
BA8C:5E225E22 DEFW of 2 words
BA90:943C493B DEFW of 2 words
BA94:042E022E DEFW of 2 words
BA98:45B706B7 DEFW of 2 words
BA9C:1C2D1B2D DEFW of 2 words
BAA0:DDAEDAAE DEFW of 2 words
BAA4:AE3DE93B DEFW of 2 words
BAA8:15B9BFB8 DEFW of 2 words
BAAC:CD34BB34 DEFW of 2 words
BAB0:7D2E7A2E DEFW of 2 words
BAB4:320A320A DEFW of 2 words
BAB8:73383938 DEFW of 2 words
BABC:66335533 DEFW of 2 words
BAC0:57B716B7 DEFW of 2 words
BAC4:2F342334 DEFW of 2 words
BAC8:2DAB2CAB DEFW of 2 words
BACC:D134BE34 DEFW of 2 words
BAD0:D03C773B DEFW of 2 words
BAD4:66AF62AF DEFW of 2 words
BAD8:56BDC7BB DEFW of 2 words
BADC:703C2A3B DEFW of 2 words
BAE0:FAB0F5B0 DEFW of 2 words
BAE4:9DB291B2 DEFW of 2 words
BAE8:E036AA36 DEFW of 2 words
BAEC:E52EE22E DEFW of 2 words
BAF0:3CBDBABB DEFW of 2 words
BAF4:75BC2EBB DEFW of 2 words
BAF8:6AAF66AF DEFW of 2 words
BAFC:8F357335 DEFW of 2 words
BB00:55334533 DEFW of 2 words
BB04:EF26EF26 DEFW of 2 words
BB08:D4AAD3AA DEFW of 2 words
BB0C:74383A38 DEFW of 2 words
BB10:C731BF31 DEFW of 2 words
BB14:7B307730 DEFW of 2 words
BB18:A3358535 DEFW of 2 words
BB1C:9CB48CB4 DEFW of 2 words
BB20:A3BAE7B9 DEFW of 2 words
BB24:ED3A183A DEFW of 2 words
BB28:64B15DB1 DEFW of 2 words
BB2C:192C182C DEFW of 2 words
BB30:A7BAE9B9 DEFW of 2 words
BB34:E03DF53B DEFW of 2 words
BB38:0C33FD32 DEFW of 2 words
BB3C:23B7E7B6 DEFW of 2 words
BB40:F93BB83A DEFW of 2 words
BB44:35B7F7B6 DEFW of 2 words
BB48:9DB66DB6 DEFW of 2 words
BB4C:82AC81AC DEFW of 2 words
BB50:DC36A736 DEFW of 2 words
BB54:ED90ED90 DEFW of 2 words
BB58:51B04EB0 DEFW of 2 words
BB5C:C7ABC6AB DEFW of 2 words
BB60:CF30CA30 DEFW of 2 words
BB64:48B61FB6 DEFW of 2 words
BB68:F12DEF2D DEFW of 2 words
BB6C:0FB300B3 DEFW of 2 words
BB70:1F3DAA3B DEFW of 2 words
BB74:65B9FFB8 DEFW of 2 words
BB78:46B707B7 DEFW of 2 words
BB7C:24BDADBB DEFW of 2 words
BB80:F3ABF2AB DEFW of 2 words
BB84:F737A437 DEFW of 2 words
BB88:95318E31 DEFW of 2 words
BB8C:7E327332 DEFW of 2 words
BB90:B23DEA3B DEFW of 2 words
BB94:E429E329 DEFW of 2 words
BB98:D12AD02A DEFW of 2 words
BB9C:B5AFB0AF DEFW of 2 words
BBA0:782F742F DEFW of 2 words
BBA4:F936C136 DEFW of 2 words
BBA8:53B248B2 DEFW of 2 words
BBAC:7B807B80 DEFW of 2 words
BBB0:30B8FFB7 DEFW of 2 words
BBB4:C035A135 DEFW of 2 words
BBB8:92B853B8 DEFW of 2 words
BBBC:19B7DEB6 DEFW of 2 words
BBC0:F191F191 DEFW of 2 words
BBC4:52BB57BA DEFW of 2 words
BBC8:F434E034 DEFW of 2 words
BBCC:0EBB2DBA DEFW of 2 words
BBD0:07AF03AF DEFW of 2 words
BBD4:69AD67AD DEFW of 2 words
BBD8:272F232F DEFW of 2 words
BBDC:C73B9C3A DEFW of 2 words
BBE0:D288D288 DEFW of 2 words
BBE4:34993499 DEFW of 2 words
BBE8:A1386038 DEFW of 2 words
BBEC:A0367036 DEFW of 2 words
BBF0:DFACDEAC DEFW of 2 words
BBF4:3BAE38AE DEFW of 2 words
BBF8:C83DF03B DEFW of 2 words
BBFC:6D0E6D0E DEFW of 2 words
BC00:F3AAF2AA DEFW of 2 words
BC04:A9BDE7BB DEFW of 2 words
BC08:51BB57BA DEFW of 2 words
BC0C:4B3AAA39 DEFW of 2 words
BC10:31360A36 DEFW of 2 words
BC14:72B838B8 DEFW of 2 words
BC18:AD2BAC2B DEFW of 2 words
BC1C:BB21BB21 DEFW of 2 words
BC20:82B73CB7 DEFW of 2 words
BC24:D7AAD6AA DEFW of 2 words
BC28:1DB117B1 DEFW of 2 words
BC2C:73B839B8 DEFW of 2 words
BC30:F7ACF6AC DEFW of 2 words
BC34:05B3F7B2 DEFW of 2 words
BC38:BC31B431 DEFW of 2 words
BC3C:0E3CCA3A DEFW of 2 words
BC40:C1A6C1A6 DEFW of 2 words
BC44:F8B3E3B3 DEFW of 2 words
BC48:10300D30 DEFW of 2 words
BC4C:1E2B1D2B DEFW of 2 words
BC50:A1ACA0AC DEFW of 2 words
BC54:79B075B0 DEFW of 2 words
BC58:2039C838 DEFW of 2 words
BC5C:2A302730 DEFW of 2 words
BC60:BE32B132 DEFW of 2 words
BC64:FCAAFBAA DEFW of 2 words
BC68:F821F821 DEFW of 2 words
BC6C:F136BA36 DEFW of 2 words
BC70:F2B1E9B1 DEFW of 2 words
BC74:44AC43AC DEFW of 2 words
BC78:13BB30BA DEFW of 2 words
BC7C:FFB6C6B6 DEFW of 2 words
BC80:90BB7CBA DEFW of 2 words
BC84:87327B32 DEFW of 2 words
BC88:90B480B4 DEFW of 2 words
BC8C:09AE07AE DEFW of 2 words
BC90:1FB310B3 DEFW of 2 words
BC94:9AB57DB5 DEFW of 2 words
BC98:DEB2D1B2 DEFW of 2 words
BC9C:F034DC34 DEFW of 2 words
BCA0:A530A130 DEFW of 2 words
BCA4:CBB0C6B0 DEFW of 2 words
BCA8:58B152B1 DEFW of 2 words
BCAC:39B611B6 DEFW of 2 words
BCB0:322D312D DEFW of 2 words
BCB4:703DD23B DEFW of 2 words
BCB8:F9AAF8AA DEFW of 2 words
BCBC:312A302A DEFW of 2 words
BCC0:0B3B2B3A DEFW of 2 words
BCC4:35332533 DEFW of 2 words
BCC8:5C2D5A2D DEFW of 2 words
BCCC:6CBDD1BB DEFW of 2 words
BCD0:47361E36 DEFW of 2 words
BCD4:2D302A30 DEFW of 2 words
BCD8:93AE90AE DEFW of 2 words
BCDC:462D442D DEFW of 2 words
BCE0:59BC15BB DEFW of 2 words
BCE4:923C473B DEFW of 2 words
BCE8:E529E429 DEFW of 2 words
BCEC:672E642E DEFW of 2 words
BCF0:06BEFCBB DEFW of 2 words
BCF4:E8AEE5AE DEFW of 2 words
BCF8:44BC01BB DEFW of 2 words
BCFC:0DB8C3B7 DEFW of 2 words
BD00:2137E536 DEFW of 2 words
BD04:19340E34 DEFW of 2 words
BD08:F732E932 DEFW of 2 words
BD0C:B7ADB5AD DEFW of 2 words
BD10:BD30B930 DEFW of 2 words
BD14:A6386438 DEFW of 2 words
BD18:6F2F6B2F DEFW of 2 words
BD1C:863C3D3B DEFW of 2 words
BD20:15311031 DEFW of 2 words
BD24:0BB106B1 DEFW of 2 words
BD28:83AD81AD DEFW of 2 words
BD2C:C9ADC7AD DEFW of 2 words
BD30:D9AAD8AA DEFW of 2 words
BD34:7F317831 DEFW of 2 words
BD38:0FAA0EAA DEFW of 2 words
BD3C:48B9E8B8 DEFW of 2 words
BD40:76AE73AE DEFW of 2 words
BD44:1F8E1F8E DEFW of 2 words
BD48:D62AD52A DEFW of 2 words
BD4C:93B381B3 DEFW of 2 words
BD50:C13DEE3B DEFW of 2 words
BD54:743B6C3A DEFW of 2 words
BD58:F710F710 DEFW of 2 words
BD5C:0BB7D1B6 DEFW of 2 words
BD60:04AD03AD DEFW of 2 words
BD64:AA386838 DEFW of 2 words
BD68:44AD42AD DEFW of 2 words
BD6C:78B64BB6 DEFW of 2 words
BD70:02B8AFB7 DEFW of 2 words
BD74:462F422F DEFW of 2 words
BD78:E6B961B9 DEFW of 2 words
BD7C:D330CE30 DEFW of 2 words
BD80:18B502B5 DEFW of 2 words
BD84:68354E35 DEFW of 2 words
BD88:5F345134 DEFW of 2 words
BD8C:08B3FAB2 DEFW of 2 words
BD90:F22BF12B DEFW of 2 words
BD94:BAAEB7AE DEFW of 2 words
BD98:2C38F837 DEFW of 2 words
BD9C:ECB79AB7 DEFW of 2 words
BDA0:29AA28AA DEFW of 2 words
BDA4:80391439 DEFW of 2 words
BDA8:91B37FB3 DEFW of 2 words
BDAC:173DA63B DEFW of 2 words
BDB0:0CB5F7B4 DEFW of 2 words
BDB4:8EB187B1 DEFW of 2 words
BDB8:A1BDE5BB DEFW of 2 words
BDBC:EEB8A0B8 DEFW of 2 words
BDC0:F0B0EBB0 DEFW of 2 words
BDC4:A8386638 DEFW of 2 words
BDC8:06AB05AB DEFW of 2 words
BDCC:C1394539 DEFW of 2 words
BDD0:082C072C DEFW of 2 words
BDD4:FEBDFBBB DEFW of 2 words
BDD8:252E232E DEFW of 2 words
BDDC:EC2AEB2A DEFW of 2 words
BDE0:69B63DB6 DEFW of 2 words
BDE4:2AAF26AF DEFW of 2 words
BDE8:D531CD31 DEFW of 2 words
BDEC:3DBB4ABA DEFW of 2 words
BDF0:223DAC3B DEFW of 2 words
BDF4:8B384D38 DEFW of 2 words
BDF8:33332333 DEFW of 2 words
BDFC:E9BC89BB DEFW of 2 words
BE00:7DAF79AF DEFW of 2 words
BE04:11340634 DEFW of 2 words
BE08:DFB1D7B1 DEFW of 2 words
BE0C:85B279B2 DEFW of 2 words
BE10:BF2CBE2C DEFW of 2 words
BE14:ABB58DB5 DEFW of 2 words
BE18:C331BB31 DEFW of 2 words
BE1C:EE30E930 DEFW of 2 words
BE20:83391639 DEFW of 2 words
BE24:51AF4DAF DEFW of 2 words
BE28:7CB271B2 DEFW of 2 words
BE2C:B2BAF1B9 DEFW of 2 words
BE30:CCB94EB9 DEFW of 2 words
BE34:75B466B4 DEFW of 2 words
BE38:5B2C5A2C DEFW of 2 words
BE3C:1AB9C3B8 DEFW of 2 words
BE40:292E272E DEFW of 2 words
BE44:26B023B0 DEFW of 2 words
BE48:86347734 DEFW of 2 words
BE4C:17BEFEBB DEFW of 2 words
BE50:07BCC3BA DEFW of 2 words
BE54:9AB096B0 DEFW of 2 words
BE58:58AE55AE DEFW of 2 words
BE5C:B3B768B7 DEFW of 2 words
BE60:9BB194B1 DEFW of 2 words
BE64:AD32A132 DEFW of 2 words
BE68:29B31AB3 DEFW of 2 words
BE6C:DA2FD52F DEFW of 2 words
BE70:C5B778B7 DEFW of 2 words
BE74:753AC739 DEFW of 2 words
BE78:D5B786B7 DEFW of 2 words
BE7C:512F4D2F DEFW of 2 words
BE80:E02FDB2F DEFW of 2 words
BE84:362D352D DEFW of 2 words
BE88:3FBCFCBA DEFW of 2 words
BE8C:49B046B0 DEFW of 2 words
BE90:4F2A4E2A DEFW of 2 words
BE94:8A2D882D DEFW of 2 words
BE98:BABAF6B9 DEFW of 2 words
BE9C:39AF35AF DEFW of 2 words
BEA0:85373F37 DEFW of 2 words
BEA4:93357635 DEFW of 2 words
BEA8:02BA75B9 DEFW of 2 words
BEAC:09B6E5B5 DEFW of 2 words
BEB0:3DBCFABA DEFW of 2 words
BEB4:E5B3D1B3 DEFW of 2 words
BEB8:5BAC5AAC DEFW of 2 words
BEBC:B4B769B7 DEFW of 2 words
BEC0:923B7D3A DEFW of 2 words
BEC4:32AD31AD DEFW of 2 words
BEC8:61BB60BA DEFW of 2 words
BECC:94BDE0BB DEFW of 2 words
BED0:88BC3FBB DEFW of 2 words
BED4:4C324232 DEFW of 2 words
BED8:7A3B6F3A DEFW of 2 words
BEDC:58B348B3 DEFW of 2 words
BEE0:B032A432 DEFW of 2 words
BEE4:28AD27AD DEFW of 2 words
BEE8:0438B337 DEFW of 2 words
BEEC:6BB45DB4 DEFW of 2 words
BEF0:0732FE31 DEFW of 2 words
BEF4:79307530 DEFW of 2 words
BEF8:3D343034 DEFW of 2 words
BEFC:35B60DB6 DEFW of 2 words
BF00:7AB90FB9 DEFW of 2 words
BF04:EF35CC35 DEFW of 2 words
BF08:AA3DE83B DEFW of 2 words
BF0C:ED3DF83B DEFW of 2 words
BF10:66B458B4 DEFW of 2 words
BF14:28AB27AB DEFW of 2 words
BF18:7BB736B7 DEFW of 2 words
BF1C:2B37EE36 DEFW of 2 words
BF20:A6B675B6 DEFW of 2 words
BF24:41BCFEBA DEFW of 2 words
BF28:4D381938 DEFW of 2 words
BF2C:11AC10AC DEFW of 2 words
BF30:CFAECCAE DEFW of 2 words
BF34:D3B0CEB0 DEFW of 2 words
BF38:FC3A213A DEFW of 2 words
BF3C:C4ADC2AD DEFW of 2 words
BF40:6B383238 DEFW of 2 words
BF44:803DD93B DEFW of 2 words
BF48:72B16BB1 DEFW of 2 words
BF4C:E7ABE6AB DEFW of 2 words
BF50:FC33E733 DEFW of 2 words
BF54:EA34D634 DEFW of 2 words
BF58:0AB7D0B6 DEFW of 2 words
BF5C:CBAFC6AF DEFW of 2 words
BF60:D4B2C7B2 DEFW of 2 words
BF64:2EB31FB3 DEFW of 2 words
BF68:7F027F02 DEFW of 2 words
BF6C:FAAEF6AE DEFW of 2 words
BF70:8DB746B7 DEFW of 2 words
BF74:8EB65FB6 DEFW of 2 words
BF78:4DAF49AF DEFW of 2 words
BF7C:F3A2F3A2 DEFW of 2 words
BF80:083B293A DEFW of 2 words
BF84:1EB508B5 DEFW of 2 words
BF88:A8B58AB5 DEFW of 2 words
BF8C:34BCF1BA DEFW of 2 words
BF90:52B342B3 DEFW of 2 words
BF94:6AAA69AA DEFW of 2 words
BF98:E73C873B DEFW of 2 words
BF9C:B8B2ABB2 DEFW of 2 words
BFA0:7FAD7DAD DEFW of 2 words
BFA4:AD393639 DEFW of 2 words
BFA8:2C2D2B2D DEFW of 2 words
BFAC:FAACF9AC DEFW of 2 words
BFB0:8D2A8C2A DEFW of 2 words
BFB4:5BB058B0 DEFW of 2 words
BFB8:B1BC60BB DEFW of 2 words
BFBC:442D422D DEFW of 2 words
BFC0:5139EF38 DEFW of 2 words
BFC4:F02CEF2C DEFW of 2 words
BFC8:1C39C538 DEFW of 2 words
BFCC:BCABBBAB DEFW of 2 words
BFD0:AAAFA5AF DEFW of 2 words
BFD4:4E2B4D2B DEFW of 2 words
BFD8:49343C34 DEFW of 2 words
BFDC:71355635 DEFW of 2 words
BFE0:81AC80AC DEFW of 2 words
BFE4:DE2CDD2C DEFW of 2 words
BFE8:982B972B DEFW of 2 words
BFEC:A23B873A DEFW of 2 words
BFF0:BEB3ABB3 DEFW of 2 words
BFF4:5DA55DA5 DEFW of 2 words
BFF8:540C540C DEFW of 2 words
BFFC:95B18EB1 DEFW of 2 words
C000:F3B7A0B7 DEFW of 2 words
C004:DBB1D3B1 DEFW of 2 words
C008:63AB62AB DEFW of 2 words
C00C:C4B691B6 DEFW of 2 words
C010:EAAEE7AE DEFW of 2 words
C014:EEADECAD DEFW of 2 words
C018:F53A1D3A DEFW of 2 words
C01C:91B74AB7 DEFW of 2 words
C020:10801080 DEFW of 2 words
C024:6A2A692A DEFW of 2 words
C028:F0396839 DEFW of 2 words
C02C:602E5D2E DEFW of 2 words
C030:79373437 DEFW of 2 words
C034:A42DA22D DEFW of 2 words
C038:D3B784B7 DEFW of 2 words
C03C:EA3A163A DEFW of 2 words
C040:1C38DD37 DEFW of 2 words
C044:70AF6CAF DEFW of 2 words
C048:A8ADA6AD DEFW of 2 words
C04C:802A7F2A DEFW of 2 words
C050:0039AE38 DEFW of 2 words
C054:94AF8FAF DEFW of 2 words
C058:1EBA8AB9 DEFW of 2 words
C05C:85BDDBBB DEFW of 2 words
C060:89908990 DEFW of 2 words
C064:012A002A DEFW of 2 words
C068:60BDCBBB DEFW of 2 words
C06C:85B476B4 DEFW of 2 words
C070:AE393739 DEFW of 2 words
C074:27321D32 DEFW of 2 words
C078:E7B5C5B5 DEFW of 2 words
C07C:A7B0A3B0 DEFW of 2 words
C080:EE379C37 DEFW of 2 words
C084:71336033 DEFW of 2 words
C088:043D9A3B DEFW of 2 words
C08C:5B371937 DEFW of 2 words
C090:A0B38EB3 DEFW of 2 words
C094:17B014B0 DEFW of 2 words
C098:69AC68AC DEFW of 2 words
C09C:082F042F DEFW of 2 words
C0A0:E2B791B7 DEFW of 2 words
C0A4:2EB422B4 DEFW of 2 words
C0A8:79B83EB8 DEFW of 2 words
C0AC:712C702C DEFW of 2 words
C0B0:53855385 DEFW of 2 words
C0B4:0CAB0BAB DEFW of 2 words
C0B8:95385638 DEFW of 2 words
C0BC:1439BE38 DEFW of 2 words
C0C0:78373337 DEFW of 2 words
C0C4:DB3C7F3B DEFW of 2 words
C0C8:9EB197B1 DEFW of 2 words
C0CC:18AB17AB DEFW of 2 words
C0D0:382D372D DEFW of 2 words
C0D4:208E208E DEFW of 2 words
C0D8:44B811B8 DEFW of 2 words
C0DC:62363736 DEFW of 2 words
C0E0:33AC32AC DEFW of 2 words
C0E4:D82ED52E DEFW of 2 words
C0E8:CCBA02BA DEFW of 2 words
C0EC:D0B950B9 DEFW of 2 words
C0F0:3A293A29 DEFW of 2 words
C0F4:44B61BB6 DEFW of 2 words
C0F8:4CB43FB4 DEFW of 2 words
C0FC:D6A9D5A9 DEFW of 2 words
C100:C7388038 DEFW of 2 words
C104:403AA239 DEFW of 2 words
C108:0239B038 DEFW of 2 words
C10C:A72AA62A DEFW of 2 words
C110:DD32D032 DEFW of 2 words
C114:3B2A3A2A DEFW of 2 words
C118:92AC91AC DEFW of 2 words
C11C:E0AADFAA DEFW of 2 words
C120:8EB572B5 DEFW of 2 words
C124:BA394039 DEFW of 2 words
C128:FBB4E7B4 DEFW of 2 words
C12C:7ABACBB9 DEFW of 2 words
C130:7C346D34 DEFW of 2 words
C134:2FB7F2B6 DEFW of 2 words
C138:A23AE639 DEFW of 2 words
C13C:472C462C DEFW of 2 words
C140:DE29DD29 DEFW of 2 words
C144:8A374337 DEFW of 2 words
C148:BDBDEDBB DEFW of 2 words
C14C:3737F936 DEFW of 2 words
C150:09B7D0B6 DEFW of 2 words
C154:042A032A DEFW of 2 words
C158:4EB441B4 DEFW of 2 words
C15C:842A832A DEFW of 2 words
C160:A3B585B5 DEFW of 2 words
C164:ADAAACAA DEFW of 2 words
C168:76AB75AB DEFW of 2 words
C16C:C8BAFFB9 DEFW of 2 words
C170:F6ABF5AB DEFW of 2 words
C174:08BB29BA DEFW of 2 words
C178:A6339333 DEFW of 2 words
C17C:2AB8F5B7 DEFW of 2 words
C180:02240224 DEFW of 2 words
C184:F83DFA3B DEFW of 2 words
C188:722D702D DEFW of 2 words
C18C:AA31A231 DEFW of 2 words
C190:0A3CC63A DEFW of 2 words
C194:F22CF12C DEFW of 2 words
C198:072B062B DEFW of 2 words
C19C:9EB85DB8 DEFW of 2 words
C1A0:F72DF52D DEFW of 2 words
C1A4:EBA3EBA3 DEFW of 2 words
C1A8:84356835 DEFW of 2 words
C1AC:B5BC63BB DEFW of 2 words
C1B0:9D375437 DEFW of 2 words
C1B4:86A086A0 DEFW of 2 words
C1B8:1C2B1B2B DEFW of 2 words
C1BC:A4339133 DEFW of 2 words
C1C0:923DE03B DEFW of 2 words
C1C4:CF2ECC2E DEFW of 2 words
C1C8:22BEFFBB DEFW of 2 words
C1CC:5F382838 DEFW of 2 words
C1D0:222E202E DEFW of 2 words
C1D4:5D315731 DEFW of 2 words
C1D8:E33A113A DEFW of 2 words
C1DC:C334B134 DEFW of 2 words
C1E0:CDB4BBB4 DEFW of 2 words
C1E4:95BDE1BB DEFW of 2 words
C1E8:28321E32 DEFW of 2 words
C1EC:55AE52AE DEFW of 2 words
C1F0:97392539 DEFW of 2 words
C1F4:7B336A33 DEFW of 2 words
C1F8:A3BB87BA DEFW of 2 words
C1FC:D932CC32 DEFW of 2 words
C200:3DB137B1 DEFW of 2 words
C204:0CB9B8B8 DEFW of 2 words
C208:B4B870B8 DEFW of 2 words
C20C:80A780A7 DEFW of 2 words
C210:2537E936 DEFW of 2 words
C214:EF3C8D3B DEFW of 2 words
C218:37360F36 DEFW of 2 words
C21C:A1AAA0AA DEFW of 2 words
C220:1F3A8B39 DEFW of 2 words
C224:252F212F DEFW of 2 words
C228:802C7F2C DEFW of 2 words
C22C:B9B0B5B0 DEFW of 2 words
C230:8BBC41BB DEFW of 2 words
C234:6A2E672E DEFW of 2 words
C238:36313031 DEFW of 2 words
C23C:852B842B DEFW of 2 words
C240:133A8239 DEFW of 2 words
C244:44381138 DEFW of 2 words
C248:26BB3CBA DEFW of 2 words
C24C:C534B334 DEFW of 2 words
C250:8A318331 DEFW of 2 words
C254:B33B913A DEFW of 2 words
C258:3FB03CB0 DEFW of 2 words
C25C:44323A32 DEFW of 2 words
C260:16B7DBB6 DEFW of 2 words
C264:463E003C DEFW of 2 words
C268:AEADACAD DEFW of 2 words
C26C:4FAA4EAA DEFW of 2 words
C270:35AC34AC DEFW of 2 words
C274:F2ABF1AB DEFW of 2 words
C278:A5B863B8 DEFW of 2 words
C27C:283CE53A DEFW of 2 words
C280:8DAE8AAE DEFW of 2 words
C284:91337F33 DEFW of 2 words
C288:4CAC4BAC DEFW of 2 words
C28C:90385238 DEFW of 2 words
C290:67B900B9 DEFW of 2 words
C294:BD3DED3B DEFW of 2 words
C298:4FAB4EAB DEFW of 2 words
C29C:D02FCB2F DEFW of 2 words
C2A0:7FBC37BB DEFW of 2 words
C2A4:E82BE72B DEFW of 2 words
C2A8:EBB3D6B3 DEFW of 2 words
C2AC:29972997 DEFW of 2 words
C2B0:79BACAB9 DEFW of 2 words
C2B4:AABB8BBA DEFW of 2 words
C2B8:69354F35 DEFW of 2 words
C2BC:B0ADAEAD DEFW of 2 words
C2C0:BDAEBAAE DEFW of 2 words
C2C4:1437D936 DEFW of 2 words
C2C8:41343434 DEFW of 2 words
C2CC:42BE00BC DEFW of 2 words
C2D0:07B5F2B4 DEFW of 2 words
C2D4:0FB9BAB8 DEFW of 2 words
C2D8:FDAFF8AF DEFW of 2 words
C2DC:713DD33B DEFW of 2 words
C2E0:E60BE60B DEFW of 2 words
C2E4:18B20FB2 DEFW of 2 words
C2E8:56334633 DEFW of 2 words
C2EC:25BA8FB9 DEFW of 2 words
C2F0:A08EA08E DEFW of 2 words
C2F4:BE377237 DEFW of 2 words
C2F8:CD35AD35 DEFW of 2 words
C2FC:B3B594B5 DEFW of 2 words
C300:46B23CB2 DEFW of 2 words
C304:EFBA19BA DEFW of 2 words
C308:2639CD38 DEFW of 2 words
C30C:F736BF36 DEFW of 2 words
C310:1B2F172F DEFW of 2 words
C314:D0AFCBAF DEFW of 2 words
C318:8C337A33 DEFW of 2 words
C31C:67345934 DEFW of 2 words
C320:D1378237 DEFW of 2 words
C324:1A2A192A DEFW of 2 words
C328:E0B2D2B2 DEFW of 2 words
C32C:07B7CEB6 DEFW of 2 words
C330:492A482A DEFW of 2 words
C334:A0309C30 DEFW of 2 words
C338:F7B2E9B2 DEFW of 2 words
C33C:C1B0BDB0 DEFW of 2 words
C340:38B520B5 DEFW of 2 words
C344:A4B674B6 DEFW of 2 words
C348:25A125A1 DEFW of 2 words
C34C:0CAC0BAC DEFW of 2 words
C350:EB3DF73B DEFW of 2 words
C354:E20FE20F DEFW of 2 words
C358:01230123 DEFW of 2 words
C35C:C1377437 DEFW of 2 words
C360:CC377E37 DEFW of 2 words
C364:FBBC94BB DEFW of 2 words
C368:ED36B636 DEFW of 2 words
C36C:A9B678B6 DEFW of 2 words
C370:56AC55AC DEFW of 2 words
C374:D9B957B9 DEFW of 2 words
C378:FA34E634 DEFW of 2 words
C37C:D0A9CFA9 DEFW of 2 words
C380:48BC05BB DEFW of 2 words
C384:E6B0E1B0 DEFW of 2 words
C388:EAA9E9A9 DEFW of 2 words
C38C:0033F232 DEFW of 2 words
C390:9DAF98AF DEFW of 2 words
C394:A1367136 DEFW of 2 words
C398:3B37FD36 DEFW of 2 words
C39C:59B24EB2 DEFW of 2 words
C3A0:293CE63A DEFW of 2 words
C3A4:DF35BD35 DEFW of 2 words
C3A8:F428F428 DEFW of 2 words
C3AC:22B416B4 DEFW of 2 words
C3B0:7FB07BB0 DEFW of 2 words
C3B4:76BC2FBB DEFW of 2 words
C3B8:382E352E DEFW of 2 words
C3BC:AC358E35 DEFW of 2 words
C3C0:ABBAECB9 DEFW of 2 words
C3C4:A7B29BB2 DEFW of 2 words
C3C8:0ABA7BB9 DEFW of 2 words
C3CC:EB31E231 DEFW of 2 words
C3D0:B401B401 DEFW of 2 words
C3D4:CCABCBAB DEFW of 2 words
C3D8:42A742A7 DEFW of 2 words
C3DC:E1ABE0AB DEFW of 2 words
C3E0:4DAD4BAD DEFW of 2 words
C3E4:C5387E38 DEFW of 2 words
C3E8:0DBA7DB9 DEFW of 2 words
C3EC:54B051B0 DEFW of 2 words
C3F0:90B661B6 DEFW of 2 words
C3F4:5AB154B1 DEFW of 2 words
C3F8:E432D632 DEFW of 2 words
C3FC:ED32DF32 DEFW of 2 words
C400:2C2F282F DEFW of 2 words
C404:BC32AF32 DEFW of 2 words
C408:713C2B3B DEFW of 2 words
C40C:3C361436 DEFW of 2 words
C410:DBB0D6B0 DEFW of 2 words
C414:93B18CB1 DEFW of 2 words
C418:2437E836 DEFW of 2 words
C41C:10B10BB1 DEFW of 2 words
C420:CA388238 DEFW of 2 words
C424:B92EB62E DEFW of 2 words
C428:EC36B536 DEFW of 2 words
C42C:66B25BB2 DEFW of 2 words
C430:07300430 DEFW of 2 words
C434:C63C703B DEFW of 2 words
C438:44BE00BC DEFW of 2 words
C43C:8ABB79BA DEFW of 2 words
C440:C4BC6EBB DEFW of 2 words
C444:443C013B DEFW of 2 words
C448:462C452C DEFW of 2 words
C44C:77B073B0 DEFW of 2 words
C450:E93C893B DEFW of 2 words
C454:333A9939 DEFW of 2 words
C458:E711E711 DEFW of 2 words
C45C:B6AFB1AF DEFW of 2 words
C460:45814581 DEFW of 2 words
C464:5E2D5C2D DEFW of 2 words
C468:5E135E13 DEFW of 2 words
C46C:DF2FDA2F DEFW of 2 words
C470:37380638 DEFW of 2 words
C474:1FAA1EAA DEFW of 2 words
C478:663B633A DEFW of 2 words
C47C:25B8ECB7 DEFW of 2 words
C480:EFB4DBB4 DEFW of 2 words
C484:F32BF22B DEFW of 2 words
C488:C134AF34 DEFW of 2 words
C48C:68363D36 DEFW of 2 words
C490:5AAF56AF DEFW of 2 words
C494:7BAA7AAA DEFW of 2 words
C498:3AB134B1 DEFW of 2 words
C49C:DAB1D2B1 DEFW of 2 words
C4A0:E2BBABBA DEFW of 2 words
C4A4:EEB967B9 DEFW of 2 words
C4A8:EAB1E1B1 DEFW of 2 words
C4AC:3139D638 DEFW of 2 words
C4B0:443B4F3A DEFW of 2 words
C4B4:66B63BB6 DEFW of 2 words
C4B8:DBA9DAA9 DEFW of 2 words
C4BC:0EAC0DAC DEFW of 2 words
C4C0:AFACAEAC DEFW of 2 words
C4C4:1336EE35 DEFW of 2 words
C4C8:D83DF43B DEFW of 2 words
C4CC:16B500B5 DEFW of 2 words
C4D0:623B613A DEFW of 2 words
C4D4:CCB698B6 DEFW of 2 words
C4D8:053CC13A DEFW of 2 words
C4DC:93BC48BB DEFW of 2 words
C4E0:87AF83AF DEFW of 2 words
C4E4:7B2A7A2A DEFW of 2 words
C4E8:58382238 DEFW of 2 words
C4EC:FF2AFE2A DEFW of 2 words
C4F0:EB379937 DEFW of 2 words
C4F4:9FB85EB8 DEFW of 2 words
C4F8:D1BC78BB DEFW of 2 words
C4FC:78BDD6BB DEFW of 2 words
C500:32360B36 DEFW of 2 words
C504:7BAE78AE DEFW of 2 words
C508:9E375537 DEFW of 2 words
C50C:A4B0A0B0 DEFW of 2 words
C510:93348334 DEFW of 2 words
C514:642B632B DEFW of 2 words
C518:D7A9D6A9 DEFW of 2 words
C51C:E6ABE5AB DEFW of 2 words
C520:E1BC83BB DEFW of 2 words
C524:E93DF73B DEFW of 2 words
C528:7D365036 DEFW of 2 words
C52C:B9BDECBB DEFW of 2 words
C530:B6ACB5AC DEFW of 2 words
C534:9F3C523B DEFW of 2 words
C538:C1B2B4B2 DEFW of 2 words
C53C:A3B19CB1 DEFW of 2 words
C540:313B433A DEFW of 2 words
C544:9A3AE139 DEFW of 2 words
C548:1EBB37BA DEFW of 2 words
C54C:CA2BC92B DEFW of 2 words
C550:EDB3D8B3 DEFW of 2 words
C554:422C412C DEFW of 2 words
C558:04B6E0B5 DEFW of 2 words
C55C:E3AAE2AA DEFW of 2 words
C560:6BB551B5 DEFW of 2 words
C564:DA0CDA0C DEFW of 2 words
C568:03B000B0 DEFW of 2 words
C56C:FDB6C5B6 DEFW of 2 words
C570:3BBDB9BB DEFW of 2 words
C574:FF2FFA2F DEFW of 2 words
C578:86B740B7 DEFW of 2 words
C57C:6F026F02 DEFW of 2 words
C580:EF33DA33 DEFW of 2 words
C584:2FAC2EAC DEFW of 2 words
C588:3439D838 DEFW of 2 words
C58C:6BB35AB3 DEFW of 2 words
C590:D72FD22F DEFW of 2 words
C594:793B6F3A DEFW of 2 words
C598:33B427B4 DEFW of 2 words
C59C:392B382B DEFW of 2 words
C5A0:44AF40AF DEFW of 2 words
C5A4:9F3AE439 DEFW of 2 words
C5A8:DC30D730 DEFW of 2 words
C5AC:C3AAC2AA DEFW of 2 words
C5B0:C5ADC3AD DEFW of 2 words
C5B4:B92CB82C DEFW of 2 words
C5B8:83B371B3 DEFW of 2 words
C5BC:67106710 DEFW of 2 words
C5C0:7B346C34 DEFW of 2 words
C5C4:00860086 DEFW of 2 words
C5C8:6E346034 DEFW of 2 words
C5CC:CDACCCAC DEFW of 2 words
C5D0:142B132B DEFW of 2 words
C5D4:840B840B DEFW of 2 words
C5D8:592D572D DEFW of 2 words
C5DC:C0B4AEB4 DEFW of 2 words
C5E0:7E3DD83B DEFW of 2 words
C5E4:273EFF3B DEFW of 2 words
C5E8:38B7FAB6 DEFW of 2 words
C5EC:B2B86EB8 DEFW of 2 words
C5F0:93308F30 DEFW of 2 words
C5F4:06A306A3 DEFW of 2 words
C5F8:3FB32FB3 DEFW of 2 words
C5FC:89B47AB4 DEFW of 2 words
C600:75B16EB1 DEFW of 2 words
C604:49134913 DEFW of 2 words
C608:CD3A033A DEFW of 2 words
C60C:A12BA02B DEFW of 2 words
C610:C8388038 DEFW of 2 words
C614:61B547B5 DEFW of 2 words
C618:32AC31AC DEFW of 2 words
C61C:80B471B4 DEFW of 2 words
C620:9F259F25 DEFW of 2 words
C624:A589A589 DEFW of 2 words
C628:B3BDEABB DEFW of 2 words
C62C:48B530B5 DEFW of 2 words
C630:E131D931 DEFW of 2 words
C634:A9AFA4AF DEFW of 2 words
C638:FB34E734 DEFW of 2 words
C63C:E1B0DCB0 DEFW of 2 words
C640:03BD99BB DEFW of 2 words
C644:5EB9F9B8 DEFW of 2 words
C648:D2ACD1AC DEFW of 2 words
C64C:5A1B5A1B DEFW of 2 words
C650:DBB3C7B3 DEFW of 2 words
C654:D634C334 DEFW of 2 words
C658:DDADDBAD DEFW of 2 words
C65C:9DB85DB8 DEFW of 2 words
C660:312F2D2F DEFW of 2 words
C664:5C305930 DEFW of 2 words
C668:E930E430 DEFW of 2 words
C66C:B32FAE2F DEFW of 2 words
C670:1A37DF36 DEFW of 2 words
C674:D797D797 DEFW of 2 words
C678:AD386A38 DEFW of 2 words
C67C:AF3C5E3B DEFW of 2 words
C680:2DBA95B9 DEFW of 2 words
C684:4D2A4C2A DEFW of 2 words
C688:AEB2A2B2 DEFW of 2 words
C68C:41352935 DEFW of 2 words
C690:C4B3B1B3 DEFW of 2 words
C694:4A854A85 DEFW of 2 words
C698:77B170B1 DEFW of 2 words
C69C:A3ACA2AC DEFW of 2 words
C6A0:F42EF12E DEFW of 2 words
C6A4:31133113 DEFW of 2 words
C6A8:D929D829 DEFW of 2 words
C6AC:A6B75CB7 DEFW of 2 words
C6B0:25B6FFB5 DEFW of 2 words
C6B4:F6B6BEB6 DEFW of 2 words
C6B8:2A132A13 DEFW of 2 words
C6BC:AF393839 DEFW of 2 words
C6C0:9B338933 DEFW of 2 words
C6C4:92AA91AA DEFW of 2 words
C6C8:AD367C36 DEFW of 2 words
C6CC:51B9EFB8 DEFW of 2 words
C6D0:58BAB3B9 DEFW of 2 words
C6D4:502D4E2D DEFW of 2 words
C6D8:669C669C DEFW of 2 words
C6DC:C42AC32A DEFW of 2 words
C6E0:EE2CED2C DEFW of 2 words
C6E4:0DBEFDBB DEFW of 2 words
C6E8:E1B790B7 DEFW of 2 words
C6EC:B18BB18B DEFW of 2 words
C6F0:9B366B36 DEFW of 2 words
C6F4:760F760F DEFW of 2 words
C6F8:38B42CB4 DEFW of 2 words
C6FC:DFB3CBB3 DEFW of 2 words
C700:7BBB70BA DEFW of 2 words
C704:5B2E582E DEFW of 2 words
C708:FAB2ECB2 DEFW of 2 words
C70C:2BBCE8BA DEFW of 2 words
C710:0ABB2ABA DEFW of 2 words
C714:EFAAEEAA DEFW of 2 words
C718:C7369436 DEFW of 2 words
C71C:9C329032 DEFW of 2 words
C720:EA3DF73B DEFW of 2 words
C724:D3388938 DEFW of 2 words
C728:CF2CCE2C DEFW of 2 words
C72C:83B278B2 DEFW of 2 words
C730:F7ABF6AB DEFW of 2 words
C734:E6ADE4AD DEFW of 2 words
C738:A4375B37 DEFW of 2 words
C73C:CBB883B8 DEFW of 2 words
C740:72BDD3BB DEFW of 2 words
C744:9DB754B7 DEFW of 2 words
C748:19BEFEBB DEFW of 2 words
C74C:C0B944B9 DEFW of 2 words
C750:A0329432 DEFW of 2 words
C754:E43A123A DEFW of 2 words
C758:F337A037 DEFW of 2 words
C75C:11BB2FBA DEFW of 2 words
C760:CDB3B9B3 DEFW of 2 words
C764:9CAA9BAA DEFW of 2 words
C768:0D3EFD3B DEFW of 2 words
C76C:D8A9D7A9 DEFW of 2 words
C770:ECADEAAD DEFW of 2 words
C774:EB2AEA2A DEFW of 2 words
C778:C83C713B DEFW of 2 words
C77C:E33C843B DEFW of 2 words
C780:38AA37AA DEFW of 2 words
C784:61382A38 DEFW of 2 words
C788:E184E184 DEFW of 2 words
C78C:50344334 DEFW of 2 words
C790:F036B936 DEFW of 2 words
C794:F0BC8DBB DEFW of 2 words
C798:59BDC8BB DEFW of 2 words
C79C:62286228 DEFW of 2 words
C7A0:D6A3D6A3 DEFW of 2 words
C7A4:EF2CEE2C DEFW of 2 words
C7A8:93B576B5 DEFW of 2 words
C7AC:49B709B7 DEFW of 2 words
C7B0:E93A153A DEFW of 2 words
C7B4:F1ACF0AC DEFW of 2 words
C7B8:A0392C39 DEFW of 2 words
C7BC:43AD41AD DEFW of 2 words
C7C0:A8B1A0B1 DEFW of 2 words
C7C4:32B426B4 DEFW of 2 words
C7C8:3BAC3AAC DEFW of 2 words
C7CC:0D36E835 DEFW of 2 words
C7D0:7F365236 DEFW of 2 words
C7D4:0034EB33 DEFW of 2 words
C7D8:1E0F1E0F DEFW of 2 words
C7DC:1BBCD8BA DEFW of 2 words
C7E0:83AA82AA DEFW of 2 words
C7E4:B92FB42F DEFW of 2 words
C7E8:3F323532 DEFW of 2 words
C7EC:6B2A6A2A DEFW of 2 words
C7F0:BFB772B7 DEFW of 2 words
C7F4:E932DB32 DEFW of 2 words
C7F8:6E2B6D2B DEFW of 2 words
C7FC:0CB8C1B7 DEFW of 2 words
C800:2DA12DA1 DEFW of 2 words
C804:F538A538 DEFW of 2 words
C808:0F2B0E2B DEFW of 2 words
C80C:71BB6ABA DEFW of 2 words
C810:B3B0AFB0 DEFW of 2 words
C814:612A602A DEFW of 2 words
C818:36B9DAB8 DEFW of 2 words
C81C:3B3DB93B DEFW of 2 words
C820:36322C32 DEFW of 2 words
C824:E6389938 DEFW of 2 words
C828:449F449F DEFW of 2 words
C82C:912B902B DEFW of 2 words
C830:1339BE38 DEFW of 2 words
C834:48B338B3 DEFW of 2 words
C838:DB378B37 DEFW of 2 words
C83C:CBB4B9B4 DEFW of 2 words
C840:7EB651B6 DEFW of 2 words
C844:AA339733 DEFW of 2 words
C848:D631CE31 DEFW of 2 words
C84C:882A872A DEFW of 2 words
C850:422E3F2E DEFW of 2 words
C854:EE35CB35 DEFW of 2 words
C858:CEB1C6B1 DEFW of 2 words
C85C:202D1F2D DEFW of 2 words
C860:AEB763B7 DEFW of 2 words
C864:3FB139B1 DEFW of 2 words
C868:A42AA32A DEFW of 2 words
C86C:DEB4CBB4 DEFW of 2 words
C870:F1BDF9BB DEFW of 2 words
C874:4C362336 DEFW of 2 words
C878:0038AC37 DEFW of 2 words
C87C:84B372B3 DEFW of 2 words
C880:E3B792B7 DEFW of 2 words
C884:51B538B5 DEFW of 2 words
C888:3CAF38AF DEFW of 2 words
C88C:03BEFBBB DEFW of 2 words
C890:DE2FD92F DEFW of 2 words
C894:C686C686 DEFW of 2 words
C898:EFB2E1B2 DEFW of 2 words
C89C:2739CE38 DEFW of 2 words
C8A0:78307430 DEFW of 2 words
C8A4:7FB274B2 DEFW of 2 words
C8A8:B13C603B DEFW of 2 words
C8AC:D1ABD0AB DEFW of 2 words
C8B0:AAB760B7 DEFW of 2 words
C8B4:453DBF3B DEFW of 2 words
C8B8:163A8439 DEFW of 2 words
C8BC:BE394339 DEFW of 2 words
C8C0:932F8E2F DEFW of 2 words
C8C4:E3B897B8 DEFW of 2 words
C8C8:76B16FB1 DEFW of 2 words
C8CC:00B3F2B2 DEFW of 2 words
C8D0:6C383338 DEFW of 2 words
C8D4:EE2AED2A DEFW of 2 words
C8D8:C6A9C5A9 DEFW of 2 words
C8DC:B43C623B DEFW of 2 words
C8E0:68AA67AA DEFW of 2 words
C8E4:D7BA09BA DEFW of 2 words
C8E8:5EB450B4 DEFW of 2 words
C8EC:8AAD88AD DEFW of 2 words
C8F0:43333333 DEFW of 2 words
C8F4:EA2BE92B DEFW of 2 words
C8F8:B52FB02F DEFW of 2 words
C8FC:12B00FB0 DEFW of 2 words
C900:4CB242B2 DEFW of 2 words
C904:37B034B0 DEFW of 2 words
C908:2D360636 DEFW of 2 words
C90C:11330233 DEFW of 2 words
C910:9C2E992E DEFW of 2 words
C914:13A113A1 DEFW of 2 words
C918:0D2C0C2C DEFW of 2 words
C91C:61B71FB7 DEFW of 2 words
C920:A22BA12B DEFW of 2 words
C924:FF31F631 DEFW of 2 words
C928:08B5F3B4 DEFW of 2 words
C92C:92385338 DEFW of 2 words
C930:A13C533B DEFW of 2 words
C934:F4B6BDB6 DEFW of 2 words
C938:1DBDA9BB DEFW of 2 words
C93C:6AAB69AB DEFW of 2 words
C940:D6BDF3BB DEFW of 2 words
C944:752F712F DEFW of 2 words
C948:C9B94BB9 DEFW of 2 words
C94C:40B528B5 DEFW of 2 words
C950:E4BC85BB DEFW of 2 words
C954:BC2CBB2C DEFW of 2 words
C958:DA9CDA9C DEFW of 2 words
C95C:76373237 DEFW of 2 words
C960:75AE72AE DEFW of 2 words
C964:B631AE31 DEFW of 2 words
C968:98385838 DEFW of 2 words
C96C:90318931 DEFW of 2 words
C970:093B2A3A DEFW of 2 words
C974:DE83DE83 DEFW of 2 words
C978:41A041A0 DEFW of 2 words
C97C:8E2B8D2B DEFW of 2 words
C980:372F332F DEFW of 2 words
C984:74326932 DEFW of 2 words
C988:41333133 DEFW of 2 words
C98C:8E3AD839 DEFW of 2 words
C990:5BAE58AE DEFW of 2 words
C994:C8AFC3AF DEFW of 2 words
C998:23BB3ABA DEFW of 2 words
C99C:51AB50AB DEFW of 2 words
C9A0:B53B923A DEFW of 2 words
C9A4:8D357135 DEFW of 2 words
C9A8:D53BA43A DEFW of 2 words
C9AC:29321F32 DEFW of 2 words
C9B0:2EB9D3B8 DEFW of 2 words
C9B4:CAA9C9A9 DEFW of 2 words
C9B8:653ABC39 DEFW of 2 words
C9BC:00B2F7B1 DEFW of 2 words
C9C0:66B9FFB8 DEFW of 2 words
C9C4:B0B67FB6 DEFW of 2 words
C9C8:2C3DB13B DEFW of 2 words
C9CC:44BDBEBB DEFW of 2 words
C9D0:51353835 DEFW of 2 words
C9D4:5B3B5D3A DEFW of 2 words
C9D8:308B308B DEFW of 2 words
C9DC:0CBA7DB9 DEFW of 2 words
C9E0:82BAD0B9 DEFW of 2 words
C9E4:923ADB39 DEFW of 2 words
C9E8:0BB3FCB2 DEFW of 2 words
C9EC:4AB240B2 DEFW of 2 words
C9F0:C2B68FB6 DEFW of 2 words
C9F4:4BB048B0 DEFW of 2 words
C9F8:89B56DB5 DEFW of 2 words
C9FC:4AB531B5 DEFW of 2 words
CA00:DFB95CB9 DEFW of 2 words
CA04:5CAC5BAC DEFW of 2 words
CA08:02B1FDB0 DEFW of 2 words
CA0C:E62AE52A DEFW of 2 words
CA10:7BB840B8 DEFW of 2 words
CA14:8D308930 DEFW of 2 words
CA18:D5AED2AE DEFW of 2 words
CA1C:BDADBBAD DEFW of 2 words
CA20:70390739 DEFW of 2 words
CA24:63AF5FAF DEFW of 2 words
CA28:F9B2EBB2 DEFW of 2 words
CA2C:FFB973B9 DEFW of 2 words
CA30:5B325032 DEFW of 2 words
CA34:ED379B37 DEFW of 2 words
CA38:63AA62AA DEFW of 2 words
CA3C:692C682C DEFW of 2 words
CA40:47BE00BC DEFW of 2 words
CA44:DE31D631 DEFW of 2 words
CA48:11BCCDBA DEFW of 2 words
CA4C:F7396D39 DEFW of 2 words
CA50:7EBACDB9 DEFW of 2 words
CA54:75373137 DEFW of 2 words
CA58:A43C563B DEFW of 2 words
CA5C:C1B3AEB3 DEFW of 2 words
CA60:F3B3DEB3 DEFW of 2 words
CA64:F42CF32C DEFW of 2 words
CA68:54B447B4 DEFW of 2 words
CA6C:9AB48AB4 DEFW of 2 words
CA70:29351235 DEFW of 2 words
CA74:D02BCF2B DEFW of 2 words
CA78:C2BDEEBB DEFW of 2 words
CA7C:95AC94AC DEFW of 2 words
CA80:34BA9AB9 DEFW of 2 words
CA84:D92BD82B DEFW of 2 words
CA88:C630C130 DEFW of 2 words
CA8C:81928192 DEFW of 2 words
CA90:403E003C DEFW of 2 words
CA94:F733E233 DEFW of 2 words
CA98:64BB62BA DEFW of 2 words
CA9C:33B323B3 DEFW of 2 words
CAA0:F8B0F3B0 DEFW of 2 words
CAA4:7D373837 DEFW of 2 words
CAA8:CE2FC92F DEFW of 2 words
CAAC:012D002D DEFW of 2 words
CAB0:EA2FE52F DEFW of 2 words
CAB4:65345734 DEFW of 2 words
CAB8:F4396B39 DEFW of 2 words
CABC:92B380B3 DEFW of 2 words
CAC0:27BDAFBB DEFW of 2 words
CAC4:B52BB42B DEFW of 2 words
CAC8:F63A1E3A DEFW of 2 words
CACC:34B51DB5 DEFW of 2 words
CAD0:9CB57FB5 DEFW of 2 words
CAD4:D43C7A3B DEFW of 2 words
CAD8:77383D38 DEFW of 2 words
CADC:DC3A0D3A DEFW of 2 words
CAE0:C6AFC1AF DEFW of 2 words
CAE4:39B42CB4 DEFW of 2 words
CAE8:C42FBF2F DEFW of 2 words
CAEC:2C842C84 DEFW of 2 words
CAF0:BA2EB72E DEFW of 2 words
CAF4:E02EDD2E DEFW of 2 words
CAF8:52A552A5 DEFW of 2 words
CAFC:DB2ADA2A DEFW of 2 words
CB00:4BB9EAB8 DEFW of 2 words
CB04:FE2AFD2A DEFW of 2 words
CB08:05880588 DEFW of 2 words
CB0C:E132D332 DEFW of 2 words
CB10:FC397139 DEFW of 2 words
CB14:9C3C4F3B DEFW of 2 words
CB18:D33C793B DEFW of 2 words
CB1C:FF34EA34 DEFW of 2 words
CB20:46B9E6B8 DEFW of 2 words
CB24:F430EF30 DEFW of 2 words
CB28:29AF25AF DEFW of 2 words
CB2C:05BA78B9 DEFW of 2 words
CB30:F82FF32F DEFW of 2 words
CB34:F02DEE2D DEFW of 2 words
CB38:AF2BAE2B DEFW of 2 words
CB3C:FAA9F9A9 DEFW of 2 words
CB40:AA3B8B3A DEFW of 2 words
CB44:ADACACAC DEFW of 2 words
CB48:1B37E036 DEFW of 2 words
CB4C:E034CD34 DEFW of 2 words
CB50:69335833 DEFW of 2 words
CB54:BABC67BB DEFW of 2 words
CB58:DAB2CDB2 DEFW of 2 words
CB5C:4A3DC13B DEFW of 2 words
CB60:E229E129 DEFW of 2 words
CB64:30A930A9 DEFW of 2 words
CB68:27B600B6 DEFW of 2 words
CB6C:FA3A203A DEFW of 2 words
CB70:D01BD01B DEFW of 2 words
CB74:CB2DC92D DEFW of 2 words
CB78:B634A534 DEFW of 2 words
CB7C:2FB02CB0 DEFW of 2 words
CB80:7EBB72BA DEFW of 2 words
CB84:0C2C0B2C DEFW of 2 words
CB88:60B255B2 DEFW of 2 words
CB8C:1CBEFEBB DEFW of 2 words
CB90:1FBDAABB DEFW of 2 words
CB94:79B172B1 DEFW of 2 words
CB98:0A33FC32 DEFW of 2 words
CB9C:39BCF6BA DEFW of 2 words
CBA0:01060106 DEFW of 2 words
CBA4:2DB7F0B6 DEFW of 2 words
CBA8:DABA0BBA DEFW of 2 words
CBAC:D934C634 DEFW of 2 words
CBB0:97338533 DEFW of 2 words
CBB4:123DA33B DEFW of 2 words
CBB8:00140014 DEFW of 2 words
CBBC:43AC42AC DEFW of 2 words
CBC0:C1B945B9 DEFW of 2 words
CBC4:1937DE36 DEFW of 2 words
CBC8:4BA64BA6 DEFW of 2 words
CBCC:7B3C343B DEFW of 2 words
CBD0:273DAF3B DEFW of 2 words
CBD4:6B390339 DEFW of 2 words
CBD8:44AB43AB DEFW of 2 words
CBDC:3CB524B5 DEFW of 2 words
CBE0:70346134 DEFW of 2 words
CBE4:23BA8DB9 DEFW of 2 words
CBE8:57AE54AE DEFW of 2 words
CBEC:E2BA11BA DEFW of 2 words
CBF0:90B749B7 DEFW of 2 words
CBF4:C4B2B7B2 DEFW of 2 words
CBF8:A9A8A9A8 DEFW of 2 words
CBFC:BFBC6BBB DEFW of 2 words
CC00:AD3DE83B DEFW of 2 words
CC04:AA96AA96 DEFW of 2 words
CC08:4639E638 DEFW of 2 words
CC0C:F833E333 DEFW of 2 words
CC10:C7AFC2AF DEFW of 2 words
CC14:8E208E20 DEFW of 2 words
CC18:83AB82AB DEFW of 2 words
CC1C:222C212C DEFW of 2 words
CC20:D0AACFAA DEFW of 2 words
CC24:2CBEFFBB DEFW of 2 words
CC28:99375137 DEFW of 2 words
CC2C:3AB230B2 DEFW of 2 words
CC30:1DAC1CAC DEFW of 2 words
CC34:09B200B2 DEFW of 2 words
CC38:5F0C5F0C DEFW of 2 words
CC3C:6CB261B2 DEFW of 2 words
CC40:EF379D37 DEFW of 2 words
CC44:212E1F2E DEFW of 2 words
CC48:1CBCD9BA DEFW of 2 words
CC4C:CB2FC62F DEFW of 2 words
CC50:7D336C33 DEFW of 2 words
CC54:72AF6EAF DEFW of 2 words
CC58:79227922 DEFW of 2 words
CC5C:003D983B DEFW of 2 words
CC60:1F2C1E2C DEFW of 2 words
CC64:1C2F182F DEFW of 2 words
CC68:5EB253B2 DEFW of 2 words
CC6C:A8BAEAB9 DEFW of 2 words
CC70:0437CB36 DEFW of 2 words
CC74:D58DD58D DEFW of 2 words
CC78:01B6DDB5 DEFW of 2 words
CC7C:96328A32 DEFW of 2 words
CC80:D42DD22D DEFW of 2 words
CC84:44B041B0 DEFW of 2 words
CC88:FC2CFB2C DEFW of 2 words
CC8C:2AAB29AB DEFW of 2 words
CC90:B6376A37 DEFW of 2 words
CC94:AE386B38 DEFW of 2 words
CC98:84AD82AD DEFW of 2 words
CC9C:86BDDBBB DEFW of 2 words
CCA0:353CF23A DEFW of 2 words
CCA4:8CAE89AE DEFW of 2 words
CCA8:01170117 DEFW of 2 words
CCAC:532B522B DEFW of 2 words
CCB0:45B812B8 DEFW of 2 words
CCB4:A12CA02C DEFW of 2 words
CCB8:56B820B8 DEFW of 2 words
CCBC:DE389338 DEFW of 2 words
CCC0:36332633 DEFW of 2 words
CCC4:DEB5BDB5 DEFW of 2 words
CCC8:773C303B DEFW of 2 words
CCCC:6EB72AB7 DEFW of 2 words
CCD0:06B003B0 DEFW of 2 words
CCD4:77336633 DEFW of 2 words
CCD8:2BB31CB3 DEFW of 2 words
CCDC:BB3C683B DEFW of 2 words
CCE0:59AF55AF DEFW of 2 words
CCE4:1C801C80 DEFW of 2 words
CCE8:0D3B2C3A DEFW of 2 words
CCEC:53362936 DEFW of 2 words
CCF0:92392239 DEFW of 2 words
CCF4:12AB11AB DEFW of 2 words
CCF8:37AC36AC DEFW of 2 words
CCFC:0B39B738 DEFW of 2 words
CD00:D832CB32 DEFW of 2 words
CD04:773AC939 DEFW of 2 words
CD08:7F307B30 DEFW of 2 words
CD0C:36351F35 DEFW of 2 words
CD10:48343B34 DEFW of 2 words
CD14:14BCD1BA DEFW of 2 words
CD18:2F2B2E2B DEFW of 2 words
CD1C:11AD10AD DEFW of 2 words
CD20:F6ACF5AC DEFW of 2 words
CD24:3739DA38 DEFW of 2 words
CD28:35312F31 DEFW of 2 words
CD2C:BD387738 DEFW of 2 words
CD30:28AA27AA DEFW of 2 words
CD34:52B248B2 DEFW of 2 words
End of INCLUDE
CD38:BEBAADDE DEFW of 2 words
INCLUDE fsin.asm
IF (true)
CD3C: label @FSIN
IF (true)
CD3C: label FSIN
ENDIF
CD3C:7C LD A, H
CD3D:E67F AND 7F
CD3F:D63A SUB 3A
CD41:3045 JR NC, CD88
CD43:C602 ADD A, 02
CD45:3837 JR C, CD7E
CD47:C604 ADD A, 04
CD49:3828 JR C, CD73
CD4B:C608 ADD A, 08
CD4D:380C JR C, CD5B
CD4F:C603 ADD A, 03
CD51:D0 RET NC
CD52:2004 JR NZ, CD58
CD54:3EC4 LD A, C4
CD56:95 SUB L
CD57:D0 RET NC
CD58: label FSIN_2A2B
IF (true)
CD58:B7 OR A
ENDIF
CD59:2B DEC HL
CD5A:C9 RET
CD5B: label FSIN_2C33
CD5B:AD XOR L
CD5C:E60F AND 0F
CD5E:AD XOR L
CD5F:0F RRCA
CD60:0F RRCA
CD61:0F RRCA
CD62:16CF LD D, CF
CD64: label FSIN_READ
CD64:5F LD E, A
CD65:EB EX DE, HL
CD66:7E LD A, (HL)
CD67:BB CP E
CD68:2C INC L
CD69:3002 JR NC, CD6D
CD6B:23 INC HL
CD6C:2C INC L
CD6D:6E LD L, (HL)
CD6E:26FF LD H, FF
CD70:19 ADD HL, DE
IF (true)
CD71:B7 OR A
ENDIF
CD72:C9 RET
CD73: label FSIN_3437
CD73:AD XOR L
CD74:E607 AND 07
CD76:AD XOR L
CD77:0F RRCA
CD78:0F RRCA
CD79:16D0 LD D, D0
CD7B:C364CD JP CD64
CD7E: label FSIN_3839
CD7E:AD XOR L
CD7F:E603 AND 03
CD81:AD XOR L
CD82:0F RRCA
CD83:16D1 LD D, D1
CD85:C364CD JP CD64
CD88: label FSIN_3A3E
CD88:CB1F RR A
CD8A:381F JR C, CDAB
CD8C:EB EX DE, HL
CD8D:6B LD L, E
CD8E:2813 JR Z, CDA3
CD90:3D DEC A
CD91:2808 JR Z, CD9B
CD93:26D6 LD H, D6
CD95:6E LD L, (HL)
CD96:26FD LD H, FD
CD98:19 ADD HL, DE
IF (true)
CD99:B7 OR A
ENDIF
CD9A:C9 RET
CD9B: label FSIN_3C
CD9B:26D4 LD H, D4
CD9D:6E LD L, (HL)
CD9E:26FE LD H, FE
CDA0:19 ADD HL, DE
IF (true)
CDA1:B7 OR A
ENDIF
CDA2:C9 RET
CDA3: label FSIN_3A
CDA3:26D2 LD H, D2
CDA5:6E LD L, (HL)
CDA6:26FF LD H, FF
CDA8:19 ADD HL, DE
IF (true)
CDA9:B7 OR A
ENDIF
CDAA:C9 RET
CDAB: label FSIN_3B3D
CDAB:2808 JR Z, CDB5
CDAD:7C LD A, H
CDAE:D602 SUB 02
CDB0:26D5 LD H, D5
CDB2:6E LD L, (HL)
CDB3:67 LD H, A
CDB4:C9 RET
CDB5: label FSIN_3B
CDB5:7C LD A, H
CDB6:D601 SUB 01
CDB8:26D3 LD H, D3
CDBA:6E LD L, (HL)
CDBB:67 LD H, A
CDBC:C9 RET
ENDIF
End of INCLUDE
INCLUDE fequals.asm
IF (true)
INCLUDE print_init.asm
IF (true)
COL_BLACK EQU 0000
COL_BLUE EQU 0001
COL_RED EQU 0002
COL_PURPLE EQU 0003
COL_GREEN EQU 0004
COL_AZURE EQU 0005
COL_YELLOW EQU 0006
COL_WHITE EQU 0007
INK EQU 0010
BRIGHT EQU 0013
COL_ADR EQU 5C8D
STOP_MARK EQU 00CD
NEW_LINE EQU 000D
ENDIF
End of INCLUDE
CDBD: label FEQUALS
CDBD:7D LD A, L
CDBE:91 SUB C
CDBF:2005 JR NZ, CDC6
CDC1:7C LD A, H
CDC2:90 SUB B
CDC3:3E04 LD A, 04
CDC5:C8 RET Z
CDC6: label FEQUALS_PLUS
CDC6:23 INC HL
CDC7:7D LD A, L
CDC8:91 SUB C
CDC9:7C LD A, H
CDCA:2B DEC HL
CDCB:2005 JR NZ, CDD2
CDCD:90 SUB B
CDCE:3E06 LD A, 06
CDD0:37 SCF
CDD1:C8 RET Z
CDD2: label FEQUALS_MINUS
CDD2:2B DEC HL
CDD3:7D LD A, L
CDD4:91 SUB C
CDD5:7C LD A, H
CDD6:23 INC HL
CDD7:2005 JR NZ, CDDE
CDD9:90 SUB B
CDDA:3E05 LD A, 05
CDDC:37 SCF
CDDD:C8 RET Z
CDDE: label FEQUALS_FAIL
CDDE:3E02 LD A, 02
CDE0:37 SCF
CDE1:C9 RET
ENDIF
End of INCLUDE
INCLUDE print_txt.asm
IF (true)
INCLUDE print_init.asm
IF (false)
- COL_BLACK EQU 0
- COL_BLUE EQU 1
- COL_RED EQU 2
- COL_PURPLE EQU 3
- COL_GREEN EQU 4
- COL_AZURE EQU 5
- COL_YELLOW EQU 6
- COL_WHITE EQU 7
- INK EQU $10
- BRIGHT EQU $13
- COL_ADR EQU $5C8D
- STOP_MARK EQU $CD ; CALL xxxx
- NEW_LINE EQU $0D ; 13
ENDIF
End of INCLUDE
CDE2: label PRINT_TXT
CDE2:E3 EX (SP), HL
CDE3:D5 PUSH DE
CDE4:C5 PUSH BC
CDE5:F5 PUSH AF
CDE6:E5 PUSH HL
CDE7:2E1A LD L, 1A
CDE9:CD0516 CALL 1605
CDEC:E1 POP HL
CDED:54 LD D, H
CDEE:5D LD E, L
CDEF:3ECD LD A, CD
CDF1: label PRINT_LENGTH
CDF1:23 INC HL
CDF2:BE CP (HL)
CDF3:20FC JR NZ, CDF1
CDF5:ED52 SBC HL, DE
CDF7:44 LD B, H
CDF8:4D LD C, L
CDF9:CD3E20 CALL 203E
CDFC:F1 POP AF
CDFD:C1 POP BC
CDFE:D1 POP DE
CDFF:E1 POP HL
CE00:C9 RET
ENDIF
End of INCLUDE
INCLUDE print_hex.asm
IF (true)
CE01: label PRINT_HEX_HI
CE01:1F RRA
CE02:1F RRA
CE03:1F RRA
CE04:1F RRA
CE05: label PRINT_HEX_LO
CE05:F6F0 OR F0
CE07:27 DAA
CE08:C6A0 ADD A, A0
CE0A:CE40 ADC A, 40
CE0C:12 LD (DE), A
CE0D:13 INC DE
CE0E:C9 RET
CE0F: label WRITE_HEX
CE0F:F5 PUSH AF
CE10:7C LD A, H
CE11:CD01CE CALL CE01
CE14:7C LD A, H
CE15:CD05CE CALL CE05
CE18:7D LD A, L
CE19:CD01CE CALL CE01
CE1C:7D LD A, L
CE1D:CD05CE CALL CE05
CE20:F1 POP AF
CE21:C9 RET
CE22: label PRINT_HEX
CE22:F5 PUSH AF
CE23:C5 PUSH BC
CE24:D5 PUSH DE
CE25:E5 PUSH HL
CE26:1140CE LD DE, CE40
CE29:CD0FCE CALL CE0F
CE2C:2E1A LD L, 1A
CE2E:CD0516 CALL 1605
CE31:113FCE LD DE, CE3F
CE34:010400 LD BC, 0004
CE37:CD4020 CALL 2040
CE3A:E1 POP HL
CE3B:D1 POP DE
CE3C:C1 POP BC
CE3D:F1 POP AF
CE3E:C9 RET
CE3F: label PRINT_HEX_STR
CE3F:24444541 DEFB of 5 bytes
CE43:44
CE44: label PRINT_HEX_STACK
CE44:224DCE LD (CE4D), HL
CE47:E1 POP HL
CE48:E3 EX (SP), HL
CE49:CD22CE CALL CE22
CE4C:210000 LD HL, 0000
CE4F:C9 RET
CE50: label PRINT_HEX_DE
CE50:EB EX DE, HL
CE51:CD22CE CALL CE22
CE54:EB EX DE, HL
CE55:C9 RET
CE56: label PRINT_HEX_BC
CE56:E5 PUSH HL
CE57:60 LD H, B
CE58:69 LD L, C
CE59:CD22CE CALL CE22
CE5C:E1 POP HL
CE5D:C9 RET
ENDIF
End of INCLUDE
INCLUDE fsin.tab
IF (true)
CE5E:00000000 DEFS of 162 bytes with value 00
CE62:00000000
CE66:00000000
CE6A:00000000
CE6E:00000000
CE72:00000000
CE76:00000000
CE7A:00000000
CE7E:00000000
CE82:00000000
CE86:00000000
CE8A:00000000
CE8E:00000000
CE92:00000000
CE96:00000000
CE9A:00000000
CE9E:00000000
CEA2:00000000
CEA6:00000000
CEAA:00000000
CEAE:00000000
CEB2:00000000
CEB6:00000000
CEBA:00000000
CEBE:00000000
CEC2:00000000
CEC6:00000000
CECA:00000000
CECE:00000000
CED2:00000000
CED6:00000000
CEDA:00000000
CEDE:00000000
CEE2:00000000
CEE6:00000000
CEEA:00000000
CEEE:00000000
CEF2:00000000
CEF6:00000000
CEFA:00000000
CEFE:0000
CF00: label SIN_TAB_2C33
CF00:0FFF1FFF DEFB of 16 bytes
CF04:2FFF3FFF
CF08:4FFF5FFF
CF0C:6FFF7FFF
CF10:8FFF9FFF DEFB of 16 bytes
CF14:AFFFBFFF
CF18:CFFFDFFF
CF1C:EFFFFFFF
CF20:0FFF1FFF DEFB of 16 bytes
CF24:2FFF3DFF
CF28:4FFE5FFE
CF2C:6FFE7FFE
CF30:8FFE9FFE DEFB of 16 bytes
CF34:AFFEBFFE
CF38:CFFEDFFE
CF3C:EFFEFFFE
CF40:0FFE1FFE DEFB of 16 bytes
CF44:2FFE37FE
CF48:4FFD5FFD
CF4C:6FFD7FFD
CF50:8FFD9FFD DEFB of 16 bytes
CF54:AFFDBFFD
CF58:CFFDDFFD
CF5C:EFFDF4FD
CF60:0FFC1FFC DEFB of 16 bytes
CF64:2FFC3FFC
CF68:4FFC5FFC
CF6C:6FFC7FFC
CF70:8FFC9FFB DEFB of 16 bytes
CF74:AFFBBFFB
CF78:CFFBDFFB
CF7C:EFFBFFFB
CF80:01FC1FFD DEFB of 16 bytes
CF84:2FFD3FFD
CF88:4FFD5FFD
CF8C:61FD7FFC
CF90:8FFC9FFC DEFB of 16 bytes
CF94:AFFCBFFC
CF98:C3FCDFFB
CF9C:EFFBFFFB
CFA0:0FFB18FB DEFB of 16 bytes
CFA4:2FFA3FFA
CFA8:4FFA5FFA
CFAC:62FA7FF9
CFB0:8FF99FF9 DEFB of 16 bytes
CFB4:A6F9BFF8
CFB8:CFF8DFF8
CFBC:E3F8FFF7
CFC0:0FF71CF7 DEFB of 16 bytes
CFC4:2FF63FF6
CFC8:4FF652F6
CFCC:6FF57FF5
CFD0:83F59FF4 DEFB of 16 bytes
CFD4:AFF4B3F4
CFD8:CFF3DFF3
CFDC:EFF2FFF2
CFE0:0AF21FF1 DEFB of 16 bytes
CFE4:2FF132F1
CFE8:4FF059F0
CFEC:6FEF7EEF
CFF0:8FEE9FEE DEFB of 16 bytes
CFF4:A2EEBFED
CFF8:C5EDDFEC
CFFC:E7ECFFEB
D000: label SIN_TAB_3437
D000:04EC09F1 DEFB of 16 bytes
D004:17F51BF5
D008:27F42FF4
D00C:37F438F4
D010:47F34FF3 DEFB of 16 bytes
D014:55F35FF2
D018:67F26FF2
D01C:77F17FF1
D020:87F189F1 DEFB of 16 bytes
D024:97F09FF0
D028:A1F0AFEF
D02C:B7EFB9EF
D030:C7EECFEE DEFB of 16 bytes
D034:D0EEDFED
D038:E6EDEFEC
D03C:F7ECFBEC
D040:07EB0FEB DEFB of 16 bytes
D044:17EA1FEA
D048:23EA2FE9
D04C:36E93FE8
D050:47E849E8 DEFB of 16 bytes
D054:57E75BE7
D058:67E66DE6
D05C:77E57EE5
D060:87E48FE4 DEFB of 16 bytes
D064:97E39FE3
D068:A0E3AFE2
D06C:B0E2BFE1
D070:C0E1CFE0 DEFB of 16 bytes
D074:D7DFDEDF
D078:E7DEEDDE
D07C:F7DDFCDD
D080:07DC0ADC DEFB of 16 bytes
D084:17DB18DB
D088:26DA2FD9
D08C:34D93FD8
D090:41D84ED7 DEFB of 16 bytes
D094:57D65BD6
D098:67D568D5
D09C:74D47FD3
D0A0:81D38DD2 DEFB of 16 bytes
D0A4:97D199D1
D0A8:A5D0AFCF
D0AC:B1CFBCCE
D0B0:C7CDCFCC DEFB of 16 bytes
D0B4:D3CCDECB
D0B8:E7CAE9CA
D0BC:F4C9FEC8
D0C0:07C709C7 DEFB of 16 bytes
D0C4:13C61EC5
D0C8:27C428C4
D0CC:32C33CC2
D0D0:46C14FC0 DEFB of 16 bytes
D0D4:50C059BF
D0D8:63BE6CBD
D0DC:76BC7FBB
D0E0:87BA88BA DEFB of 16 bytes
D0E4:91B99BB8
D0E8:A4B7ACB6
D0EC:B5B5BEB4
D0F0:C7B3CFB2 DEFB of 16 bytes
D0F4:D7B1D8B1
D0F8:E0B0E9AF
D0FC:F1AEFFAD
D100: label SIN_TAB_3839
D100:02AC06AF DEFB of 16 bytes
D104:0AB20EB5
D108:12B816BB
D10C:1ABE1EC1
D110:22C426C7 DEFB of 16 bytes
D114:2ACA2DCC
D118:33CF37CF
D11C:38CF3FCE
D120:40CE47CD DEFB of 16 bytes
D124:4BCC4ECC
D128:53CB55CB
D12C:5BCA5CCA
D130:63C967C8 DEFB of 16 bytes
D134:6AC86FC7
D138:70C777C6
D13C:7BC57EC5
D140:83C484C4 DEFB of 16 bytes
D144:8AC38FC2
D148:91C297C1
D14C:9BC09DC0
D150:A3BFA7BE DEFB of 16 bytes
D154:AABEAFBD
D158:B0BDB5BC
D15C:BBBBBFBA
D160:C1BAC7B9 DEFB of 16 bytes
D164:CBB8CDB8
D168:D2B7D7B6
D16C:D8B6DEB5
D170:E3B4E7B3 DEFB of 16 bytes
D174:E9B3EEB2
D178:F3B1F4B1
D17C:F9B0FEAF
D180:03AE04AE DEFB of 16 bytes
D184:09AD0EAC
D188:13AB17AA
D18C:18AA1DA9
D190:22A827A7 DEFB of 16 bytes
D194:2BA62CA6
D198:31A536A4
D19C:3BA33FA2
D1A0:40A245A1 DEFB of 16 bytes
D1A4:49A04E9F
D1A8:539E579D
D1AC:589D5C9C
D1B0:619B659A DEFB of 16 bytes
D1B4:6A996E98
D1B8:73977796
D1BC:7B957C95
D1C0:80948593 DEFB of 16 bytes
D1C4:89928D91
D1C8:9290968F
D1CC:9A8E9E8D
D1D0:A38CA78B DEFB of 16 bytes
D1D4:AB8AAF89
D1D8:B388B787
D1DC:BB86BF85
D1E0:C384C484 DEFB of 16 bytes
D1E4:C883CC82
D1E8:CF81D380
D1EC:D77FDB7E
D1F0:DF7DE37C DEFB of 16 bytes
D1F4:E77BEB7A
D1F8:F279F677
D1FC:FA76FE75
D200: label SIN_TAB_3A
D200:74747373 DEFB of 16 bytes
D204:73737272
D208:72727171
D20C:71707070
D210:706F6F6F DEFB of 16 bytes
D214:6F6E6E6E
D218:6D6D6D6D
D21C:6C6C6C6C
D220:6B6B6B6A DEFB of 16 bytes
D224:6A6A6A69
D228:69696868
D22C:68686767
D230:67666666 DEFB of 16 bytes
D234:66656565
D238:64646464
D23C:63636362
D240:62626261 DEFB of 16 bytes
D244:61616060
D248:60605F5F
D24C:5F5E5E5E
D250:5D5D5D5D DEFB of 16 bytes
D254:5C5C5C5B
D258:5B5B5A5A
D25C:5A5A5959
D260:59585858 DEFB of 16 bytes
D264:57575757
D268:56565655
D26C:55555454
D270:54545353 DEFB of 16 bytes
D274:53525252
D278:51515150
D27C:50504F4F
D280:4F4F4E4E DEFB of 16 bytes
D284:4E4D4D4D
D288:4C4C4C4B
D28C:4B4B4A4A
D290:4A4A4949 DEFB of 16 bytes
D294:49484848
D298:47474746
D29C:46464545
D2A0:45444444 DEFB of 16 bytes
D2A4:43434342
D2A8:42424141
D2AC:41404040
D2B0:3F3F3F3E DEFB of 16 bytes
D2B4:3E3E3D3D
D2B8:3D3C3C3C
D2BC:3B3B3B3A
D2C0:3A3A3939 DEFB of 16 bytes
D2C4:39383838
D2C8:37373736
D2CC:36363535
D2D0:35343434 DEFB of 16 bytes
D2D4:33333332
D2D8:32323131
D2DC:31303030
D2E0:2F2F2F2E DEFB of 16 bytes
D2E4:2E2D2D2D
D2E8:2C2C2C2B
D2EC:2B2B2A2A
D2F0:2A292929 DEFB of 16 bytes
D2F4:28282827
D2F8:27262626
D2FC:25252524
D300: label SIN_TAB_3B
D300:24252526 DEFB of 16 bytes
D304:26272828
D308:292A2A2B
D30C:2C2C2D2E
D310:2E2F2F30 DEFB of 16 bytes
D314:31313233
D318:33343435
D31C:36363738
D320:38393A3A DEFB of 16 bytes
D324:3B3B3C3D
D328:3D3E3F3F
D32C:40404142
D330:42434444 DEFB of 16 bytes
D334:45454647
D338:47484849
D33C:4A4A4B4C
D340:4C4D4D4E DEFB of 16 bytes
D344:4F4F5050
D348:51525253
D34C:54545555
D350:56575758 DEFB of 16 bytes
D354:58595A5A
D358:5B5B5C5D
D35C:5D5E5F5F
D360:60606162 DEFB of 16 bytes
D364:62636364
D368:65656666
D36C:67686869
D370:696A6B6B DEFB of 16 bytes
D374:6C6C6D6E
D378:6E6F6F70
D37C:70717272
D380:73737475 DEFB of 16 bytes
D384:75767677
D388:78787979
D38C:7A7B7B7C
D390:7C7D7D7E DEFB of 16 bytes
D394:7F7F8080
D398:81828283
D39C:83848485
D3A0:86868787 DEFB of 16 bytes
D3A4:8888898A
D3A8:8A8B8B8C
D3AC:8D8D8E8E
D3B0:8F8F9091 DEFB of 16 bytes
D3B4:91929293
D3B8:93949595
D3BC:96969797
D3C0:9898999A DEFB of 16 bytes
D3C4:9A9B9B9C
D3C8:9C9D9E9E
D3CC:9F9FA0A0
D3D0:A1A1A2A3 DEFB of 16 bytes
D3D4:A3A4A4A5
D3D8:A5A6A7A7
D3DC:A8A8A9A9
D3E0:AAAAABAB DEFB of 16 bytes
D3E4:ACADADAE
D3E8:AEAFAFB0
D3EC:B0B1B2B2
D3F0:B3B3B4B4 DEFB of 16 bytes
D3F4:B5B5B6B6
D3F8:B7B8B8B9
D3FC:B9BABABB
D400: label SIN_TAB_3C
D400:BBBBBBBC DEFB of 16 bytes
D404:BCBCBCBC
D408:BCBCBCBC
D40C:BCBCBCBC
D410:BCBCBDBD DEFB of 16 bytes
D414:BDBDBDBD
D418:BDBDBDBD
D41C:BDBDBDBD
D420:BDBDBDBD DEFB of 16 bytes
D424:BDBDBDBD
D428:BDBDBDBD
D42C:BDBDBDBD
D430:BDBDBDBD DEFB of 16 bytes
D434:BDBDBDBD
D438:BDBDBDBD
D43C:BDBDBDBD
D440:BDBDBDBD DEFB of 16 bytes
D444:BDBDBDBD
D448:BDBDBDBD
D44C:BDBDBDBC
D450:BCBCBCBC DEFB of 16 bytes
D454:BCBCBCBC
D458:BCBCBCBC
D45C:BCBCBCBB
D460:BBBBBBBB DEFB of 16 bytes
D464:BBBBBBBB
D468:BBBBBABA
D46C:BABABABA
D470:BABABAB9 DEFB of 16 bytes
D474:B9B9B9B9
D478:B9B9B9B9
D47C:B8B8B8B8
D480:B8B8B8B7 DEFB of 16 bytes
D484:B7B7B7B7
D488:B7B7B6B6
D48C:B6B6B6B6
D490:B5B5B5B5 DEFB of 16 bytes
D494:B5B5B4B4
D498:B4B4B4B3
D49C:B3B3B3B3
D4A0:B3B2B2B2 DEFB of 16 bytes
D4A4:B2B2B1B1
D4A8:B1B1B0B0
D4AC:B0B0B0AF
D4B0:AFAFAFAF DEFB of 16 bytes
D4B4:AEAEAEAE
D4B8:ADADADAD
D4BC:ACACACAC
D4C0:ABABABAB DEFB of 16 bytes
D4C4:AAAAAAAA
D4C8:A9A9A9A9
D4CC:A8A8A8A7
D4D0:A7A7A7A6 DEFB of 16 bytes
D4D4:A6A6A5A5
D4D8:A5A5A4A4
D4DC:A4A3A3A3
D4E0:A2A2A2A1 DEFB of 16 bytes
D4E4:A1A1A0A0
D4E8:A0A09F9F
D4EC:9F9E9E9E
D4F0:9D9D9D9C DEFB of 16 bytes
D4F4:9C9B9B9B
D4F8:9A9A9A99
D4FC:99999898
D500: label SIN_TAB_3D
D500:98989999 DEFB of 16 bytes
D504:9A9B9B9C
D508:9D9D9E9E
D50C:9FA0A0A1
D510:A1A2A3A3 DEFB of 16 bytes
D514:A4A4A5A6
D518:A6A7A7A8
D51C:A8A9AAAA
D520:ABABACAC DEFB of 16 bytes
D524:ADAEAEAF
D528:AFB0B0B1
D52C:B1B2B3B3
D530:B4B4B5B5 DEFB of 16 bytes
D534:B6B6B7B7
D538:B8B8B9B9
D53C:BABBBBBC
D540:BCBDBDBE DEFB of 16 bytes
D544:BEBFBFC0
D548:C0C1C1C2
D54C:C2C3C3C4
D550:C4C4C5C5 DEFB of 16 bytes
D554:C6C6C7C7
D558:C8C8C9C9
D55C:CACACBCB
D560:CBCCCCCD DEFB of 16 bytes
D564:CDCECECF
D568:CFCFD0D0
D56C:D1D1D2D2
D570:D2D3D3D4 DEFB of 16 bytes
D574:D4D4D5D5
D578:D6D6D6D7
D57C:D7D8D8D8
D580:D9D9DADA DEFB of 16 bytes
D584:DADBDBDC
D588:DCDCDDDD
D58C:DDDEDEDE
D590:DFDFE0E0 DEFB of 16 bytes
D594:E0E1E1E1
D598:E2E2E2E3
D59C:E3E3E4E4
D5A0:E4E5E5E5 DEFB of 16 bytes
D5A4:E6E6E6E7
D5A8:E7E7E8E8
D5AC:E8E8E9E9
D5B0:E9EAEAEA DEFB of 16 bytes
D5B4:EBEBEBEB
D5B8:ECECECEC
D5BC:EDEDEDEE
D5C0:EEEEEEEF DEFB of 16 bytes
D5C4:EFEFEFF0
D5C8:F0F0F0F1
D5CC:F1F1F1F2
D5D0:F2F2F2F3 DEFB of 16 bytes
D5D4:F3F3F3F3
D5D8:F4F4F4F4
D5DC:F5F5F5F5
D5E0:F5F6F6F6 DEFB of 16 bytes
D5E4:F6F6F7F7
D5E8:F7F7F7F7
D5EC:F8F8F8F8
D5F0:F8F9F9F9 DEFB of 16 bytes
D5F4:F9F9F9FA
D5F8:FAFAFAFA
D5FC:FAFAFBFB
D600: label SIN_TAB_3E
D600:FBFAF9F8 DEFB of 16 bytes
D604:F7F7F6F5
D608:F4F3F2F1
D60C:F0F0EFEE
D610:EDECEBEA DEFB of 16 bytes
D614:E9E8E8E7
D618:E6E5E4E3
D61C:E2E1E0DF
D620:DEDDDDDC DEFB of 16 bytes
D624:DBDAD9D8
D628:D7D6D5D4
D62C:D3D2D1D0
D630:CFCECECD DEFB of 16 bytes
D634:CCCBCAC9
D638:C8C7C6C5
D63C:C4C3C2C1
D640:C0BFBEBD DEFB of 16 bytes
D644:BCBBBAB9
D648:B8B7B6B5
D64C:B4B3B2B1
D650:B0AFAEAD DEFB of 16 bytes
D654:ACABAAA9
D658:A8A7A6A5
D65C:A4A3A2A1
D660:9F9E9D9C DEFB of 16 bytes
D664:9B9A9998
D668:97969594
D66C:93929190
D670:8E8D8C8B DEFB of 16 bytes
D674:8A898887
D678:86858483
D67C:81807F7E
D680:7D7C7B7A DEFB of 16 bytes
D684:79777675
D688:74737271
D68C:706E6D6C
D690:6B6A6968 DEFB of 16 bytes
D694:66656463
D698:6261605E
D69C:5D5C5B5A
D6A0:59575655 DEFB of 16 bytes
D6A4:54535150
D6A8:4F4E4D4C
D6AC:4A494847
D6B0:46444342 DEFB of 16 bytes
D6B4:41403E3D
D6B8:3C3B3938
D6BC:37363533
D6C0:3231302E DEFB of 16 bytes
D6C4:2D2C2B29
D6C8:28272624
D6CC:2322211F
D6D0:1E1D1C1A DEFB of 16 bytes
D6D4:19181615
D6D8:14131110
D6DC:0F0E0C0B
D6E0:0A080706 DEFB of 16 bytes
D6E4:04030201
D6E8:FFFEFDFB
D6EC:FAF9F7F6
D6F0:F5F3F2F1 DEFB of 16 bytes
D6F4:EFEEEDEB
D6F8:EAE9E7E6
D6FC:E5E3E2E1
ENDIF
End of INCLUDE
IF (false)
- .ERROR "Prilis dlouha data!"
ENDIF
ORG E000
E000:210060 LD HL, 6000
E003:E5 PUSH HL
E004: label READ_DATA
E004:E1 POP HL
E005:010400 LD BC, 0004
E008:113DE0 LD DE, E03D
E00B:EDB0 LDIR
E00D:E5 PUSH HL
E00E:2A3DE0 LD HL, (E03D)
E011: label BREAKPOINT
E011:E5 PUSH HL
E012:CD3CCD CALL CD3C
E015:C1 POP BC
E016:ED4B3FE0 LD BC, (E03F)
IGNORE EQU E01B
E01A:3E00 LD A, 00
E01C:B7 OR A
E01D:3E00 LD A, 00
E01F:321BE0 LD (E01B), A
E022:20E0 JR NZ, E004
E024:CDBDCD CALL CDBD
IF (true)
E027:30DB JR NC, E004
E029:280D JR Z, E038
ELSE (false)
- JR z, PRINT_OK
ENDIF
E02B:CD41E0 CALL E041
IF (true)
E02E:B7 OR A
E02F:21ADDE LD HL, DEAD
E032:ED42 SBC HL, BC
E034:20CE JR NZ, E004
ENDIF
E036:E1 POP HL
E037:C9 RET
E038: label PRINT_OK
E038:CD41E0 CALL E041
E03B:18C7 JR E004
E03D: label OP1
E03D:0000 DEFS of 2 bytes with value 00
E03F: label RESULT
E03F:0000 DEFS of 2 bytes with value 00
E041: label PRINT_DATA
E041:3276E0 LD (E076), A
E044:1178E0 LD DE, E078
E047:CD0FCE CALL CE0F
E04A:2A3DE0 LD HL, (E03D)
E04D:1165E0 LD DE, E065
E050:CD0FCE CALL CE0F
E053:60 LD H, B
E054:69 LD L, C
E055:116EE0 LD DE, E06E
E058:CD0FCE CALL CE0F
E05B:CDE2CD CALL CDE2
E05E:10077369 DEFB of 7 bytes
E062:6E2824
E065: label DATA_1
E065:00000000 DEFS of 4 bytes with value 00
E069:29203D20 DEFB of 5 bytes
E06D:24
E06E: label DATA_3
E06E:00000000 DEFS of 4 bytes with value 00
E072:203F2010 DEFB of 4 bytes
E076: label DATA_COL
E076:0724 DEFB of 2 bytes
E078: label DATA_4
E078:00000000 DEFS of 4 bytes with value 00
E07C:0D DEFB of 1 bytes
E07D:CD DEFB of 1 bytes
Emiting raw binary from 6000 to E07D
|
bb-runtimes/src/s-armgic.adb | JCGobbi/Nucleo-STM32G474RE | 0 | 26801 | <gh_stars>0
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . A R M _ G I C --
-- --
-- B o d y --
-- --
-- Copyright (C) 1999-2002 Universidad Politecnica de Madrid --
-- Copyright (C) 2003-2006 The European Space Agency --
-- Copyright (C) 2003-2021, AdaCore --
-- --
-- GNARL 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. GNARL 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/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
-- The port of GNARL to bare board targets was initially developed by the --
-- Real-Time Systems Group at the Technical University of Madrid. --
-- --
------------------------------------------------------------------------------
with Interfaces; use Interfaces;
with System.BB.Parameters;
with System.Machine_Code;
package body System.ARM_GIC is
use System.BB.Interrupts;
subtype PRI is Unsigned_8;
-- Type for GIC interrupt priorities. Note that 0 is the highest
-- priority, which is reserved for the kernel and has no corresponding
-- Interrupt_Priority value, and 255 is the lowest. We assume the
-- PRIGROUP setting is such that the 4 most significant bits determine
-- the priority group used for preemption. However, if less bits are
-- implemented, this should still work.
subtype Banked_Interrupt is Interrupt_ID range 0 .. 31;
Interrupts_Enabled : array (Banked_Interrupt) of Boolean :=
(others => False);
Interrupts_Priority : array (Banked_Interrupt) of PRI;
subtype GIC_Interrupts is Interrupt_ID;
-- Supports up to 192 interrupts, MaxIRQs need to be a aligned on 32
-- Number_of_IRQs = Interrupt_ID'Last + 1
-- Max_IRQs = (Number_Of_IRQs + 31) / 32 * 32
Max_IRQs : constant Natural :=
Natural'Min (192,
((Interrupt_ID'Last / 32 + 1) * 32));
function Reg_Num_32 (Intnum : GIC_Interrupts) return GIC_Interrupts
is (Intnum / 32);
-- 32-bit registers set
-- Accessed by 32 bits chunks
type Bits32_Register_Array is array
(Natural range 0 .. Max_IRQs / 32 - 1) of Unsigned_32
with Pack, Volatile;
-- Byte registers set
-- Accessed by 8 bits chunks
type Byte_Register_Array is array
(Natural range 0 .. Max_IRQs - 1) of Unsigned_8
with Pack, Volatile;
-- Byte registers set, accessed by 32-bit chunks
type Byte_Register_Array32 is array
(Natural range 0 .. Max_IRQs / 4 - 1) of Unsigned_32
with Pack, Volatile;
type GICD_Peripheral is record
CTLR : Unsigned_32;
ISENABLER : Bits32_Register_Array;
ICENABLER : Bits32_Register_Array;
IPRIORITYR : Byte_Register_Array;
ITARGETSR : Byte_Register_Array32;
ICFGR : Byte_Register_Array32;
SGIR : Unsigned_32;
end record;
for GICD_Peripheral use record
CTLR at 16#000# range 0 .. 31;
ISENABLER at 16#100# range 0 .. Max_IRQs - 1;
ICENABLER at 16#180# range 0 .. Max_IRQs - 1;
IPRIORITYR at 16#400# range 0 .. Max_IRQs * 8 - 1;
ITARGETSR at 16#800# range 0 .. Max_IRQs * 8 - 1;
ICFGR at 16#C00# range 0 .. Max_IRQs * 8 - 1;
SGIR at 16#F00# range 0 .. 31;
end record;
type GICC_Peripheral is record
CTLR : Unsigned_32;
PMR : Unsigned_32;
BPR : Unsigned_32;
IAR : Unsigned_32;
EOIR : Unsigned_32;
end record;
for GICC_Peripheral use record
CTLR at 16#00# range 0 .. 31;
PMR at 16#04# range 0 .. 31;
BPR at 16#08# range 0 .. 31;
IAR at 16#0C# range 0 .. 31;
EOIR at 16#10# range 0 .. 31;
end record;
GICD : GICD_Peripheral
with Volatile, Import, Address => BB.Parameters.GICD_Base_Address;
GICC : GICC_Peripheral
with Volatile, Import, Address => BB.Parameters.GICC_Base_Address;
function To_PRI (P : Integer) return PRI with Inline;
-- Return the PRI mask for the given Ada priority. Note that the zero
-- value here means no mask, so no interrupts are masked.
function To_Priority (P : PRI) return Interrupt_Priority with Inline;
-- Given an ARM interrupt priority (PRI value), determine the Ada
-- priority.
-- While the value 0 is reserved for the kernel and has no Ada
-- priority that represents it, Interrupt_Priority'Last is closest.
------------
-- To_PRI --
------------
function To_PRI (P : Integer) return PRI is
begin
if P < Interrupt_Priority'First then
-- Do not mask any interrupt
return 255;
else
-- change range 240 .. 254
return PRI (Interrupt_Priority'Last - P) * 16;
end if;
end To_PRI;
-----------------
-- To_Priority --
-----------------
function To_Priority (P : PRI) return Interrupt_Priority is
begin
if P = 0 then
return Interrupt_Priority'Last;
else
return Interrupt_Priority'Last - Any_Priority'Base (P / 16);
end if;
end To_Priority;
---------------------
-- Initialize_GICC --
---------------------
procedure Initialize_GICC
is
Int_Mask : Unsigned_32 := 0;
begin
-- Core-specific part of the GIC configuration:
-- The GICC (CPU Interface) is banked for each CPU, so has to be
-- configured each time.
-- The PPI and SGI exceptions are also CPU-specific so are banked.
-- see 4.1.4 in the ARM GIC Architecture Specification v2 document
-- Mask all interrupts
GICC.PMR := 0;
-- Binary point register:
-- The register defines the point at which the priority value fields
-- split into two parts.
GICC.BPR := 3;
-- Disable banked interrupts by default
GICD.ICENABLER (0) := 16#FFFF_FFFF#;
-- Enable the CPU-specific interrupts that have a handler registered.
--
-- On CPU0, no interrupt is registered for now so this has no effect.
-- On the other CPUs, as interrupts are registered via a call to
-- Interrupts.Install_Interrupt_Handler before the CPUs are started,
-- the following properly takes care of initializing the interrupt mask
-- and priorities for those.
for J in Interrupts_Enabled'Range loop
if Interrupts_Enabled (J) then
Int_Mask := Int_Mask or 2 ** J;
GICD.IPRIORITYR (J) := Interrupts_Priority (J);
end if;
end loop;
if Int_Mask /= 0 then
GICD.ISENABLER (0) := Int_Mask;
end if;
-- Set the Enable Group1 bit to the GICC CTLR register.
-- The view we have here is a GICv1 or GICv2 version with Security
-- extension, from a non-secure mode.
GICC.CTLR := 1;
end Initialize_GICC;
---------------------
-- Initialize_GICD --
---------------------
procedure Initialize_GICD
is
begin
GICD.CTLR := 0;
-- default priority
for J in GICD.IPRIORITYR'Range loop
GICD.IPRIORITYR (J) := 0;
end loop;
-- Set the target cpu
-- ITARGETSR(0) is read-only and redirects all IRQs to the currently
-- running CPU. We initialize the shared interrupts targets to the
-- same value so that we're sure to receive them.
for Reg_Num in 8 .. GICD.ITARGETSR'Last loop
GICD.ITARGETSR (Reg_Num) := GICD.ITARGETSR (0);
end loop;
-- Disable all shared Interrupts
GICD.ICENABLER := (others => 16#FFFF_FFFF#);
GICD.CTLR := 3;
end Initialize_GICD;
-------------------------
-- Define_IRQ_Triggers --
-------------------------
procedure Define_IRQ_Triggers (Config : ICFGR)
is
begin
for J in Config'Range loop
GICD.ICFGR (J) := Config (J);
end loop;
end Define_IRQ_Triggers;
-----------------
-- IRQ_Handler --
-----------------
procedure IRQ_Handler
is
IAR : constant Unsigned_32 := GICC.IAR;
Int_Id : constant Unsigned_32 := IAR and 16#3FF#;
begin
if Int_Id = 16#3FF# then
-- Spurious interrupt
return;
end if;
Interrupt_Wrapper (Interrupt_ID (Int_Id));
-- Clear interrupt request
GICC.EOIR := IAR;
end IRQ_Handler;
-------------------------------
-- Install_Interrupt_Handler --
-------------------------------
procedure Install_Interrupt_Handler
(Interrupt : Interrupt_ID;
Prio : Interrupt_Priority)
is
begin
GICD.IPRIORITYR (Interrupt) := To_PRI (Prio);
GICD.ISENABLER (Reg_Num_32 (Interrupt)) := 2 ** (Interrupt mod 32);
-- Handlers are registered before the CPUs are awaken (only the CPU 0
-- executes Install_Interrupt_Handler.
-- So we save the registered interrupts to properly initialize the
-- other CPUs for banked interrupts.
if Interrupt in Banked_Interrupt then
Interrupts_Priority (Interrupt) := To_PRI (Prio);
Interrupts_Enabled (Interrupt) := True;
end if;
end Install_Interrupt_Handler;
---------------------------
-- Priority_Of_Interrupt --
---------------------------
function Priority_Of_Interrupt
(Interrupt : System.BB.Interrupts.Interrupt_ID)
return System.Any_Priority
is
begin
return To_Priority (GICD.IPRIORITYR (Interrupt));
end Priority_Of_Interrupt;
--------------------------
-- Set_Current_Priority --
--------------------------
procedure Set_Current_Priority (Priority : Integer) is
begin
GICC.PMR := Unsigned_32 (To_PRI (Priority));
end Set_Current_Priority;
----------------
-- Power_Down --
----------------
procedure Power_Down is
begin
System.Machine_Code.Asm ("wfi", Volatile => True);
end Power_Down;
--------------
-- Poke_CPU --
--------------
procedure Poke_CPU (CPU_Id : System.Multiprocessors.CPU;
Poke_Interrupt : Interrupt_ID)
is
begin
GICD.SGIR :=
2 ** (15 + Natural (CPU_Id)) + Unsigned_32 (Poke_Interrupt);
end Poke_CPU;
end System.ARM_GIC;
|
antlr-plugin/src/test/resources/org/nemesis/antlrformatting/grammarfile/golden/ANTLRv4-1-golden.g4 | timboudreau/ANTLR4-Plugins-for-NetBeans | 1 | 5028 | /**
[The "BSD license"]
* Copyright (c) 2012-2014 <NAME>
* Copyright (c) 2012-2014 <NAME>
* Copyright (c) 2015 <NAME>
* Copyright (c) 2016 <NAME>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
*
**/
/**
A grammar for ANTLR v4 written in ANTLR v4.
*
* Modified 2015.06.16 gbr
* -- update for compatibility with Antlr v4.5
* -- add mode for channels
* -- moved members to LexerAdaptor
* -- move fragments to imports
*
* Modified 2016.07 by FYV :
* - some rules have been renamed :
* - the names of high level rules have been homogenized : usage of Spec
* suffix,
* - grammarPrequel becomes analyzerDirectiveSpec,
* - now all names of low level rules enable to know if the rule is used
* by a parser rule or a lexer rule (easier understanding and
* debugging),
* - the way to manage fragment-based rules have been changed,
* - some lexer rules have been changed (see ANTLRv4Lexer.g4) so these
* changes have impacts on parser rules,
* - the content between brackets is now managed at parser level in all
* cases (even lexer char set, see comments in ANTLRv4Lexer.g4),
*
**/
grammar ANTLRv4;
options { tokenVocab=ANTLRv4Lexer; }
// The main entry point for parsing a v4 grammar.
grammarFile
: grammarSpec ( analyzerDirectiveSpec+ | ) // equivalent to analyzerDirectiveSpec* but enables getExpectedTokens() to work
ruleSpec+ // There must be at least one rule
( modeSpec+ | ) // equivalent to modeSpec* but enables getExpectedTokens() to work
EOF;
grammarSpec
: ( DOC_COMMENT+ | )grammarType identifier SEMI; // FYV modification : parentheses removed
grammarType
: LEXER GRAMMAR
| PARSER GRAMMAR
| GRAMMAR;
// This is the list of all constructs that can be declared before
// the set of rules that compose the grammar, and is invoked 0..n
// times by the analyzerDirectiveSpec rule.
analyzerDirectiveSpec
: ( DOC_COMMENT+ | ) ( optionsSpec | delegateGrammars | tokensSpec | channelsSpec | action );
// ------------
// Options - things that affect analysis and/or code generation
// For enabling getExpectedTokens() to work we replace the next definition:
// optionsSpec
// : OPTIONS LBRACE (optionSpec SEMI)* RBRACE
// ;
// by:
optionsSpec
: OPTIONS LBRACE ( ( optionSpec SEMI )+ | ) RBRACE;
optionSpec
: superClassSpec
| languageSpec
| tokenVocabSpec
| tokenLabelTypeSpec;
superClassSpec
: SUPER_CLASS ASSIGN classIdentifier; // Valid languages are 'Java', 'JavaScript', 'CSharp', 'Python2', 'Python3'
languageSpec
: LANGUAGE ASSIGN STRING_LITERAL;
tokenVocabSpec
: TOKEN_VOCAB ASSIGN identifier;
tokenLabelTypeSpec
: TOKEN_LABEL_TYPE ASSIGN classIdentifier;
// ------------
// Delegates
delegateGrammars
: IMPORT delegateGrammarList SEMI;
delegateGrammarList
: delegateGrammar( ( COMMA delegateGrammar )+ | );
delegateGrammar
: ( identifier ASSIGN | ) grammarIdentifier;
grammarIdentifier
: identifier;
// ------------
// Tokens & Channels
tokensSpec
: TOKENS LBRACE ( tokenList | ) RBRACE // equivalent to tokenList? but enables getExpectedTokens() to work
;
tokenList
: TOKEN_ID( ( COMMA TOKEN_ID )+ | );
channelsSpec
: CHANNELS LBRACE ( idList | ) RBRACE // equivalent to idList? but enables getExpectedTokens() to work
;
idList
: identifier( ( COMMA identifier )+ | ); // Match stuff like @parser::members {int i;}
action
: AT ( actionDestination COLONCOLON | ) ( headerAction | memberAction ) // equivalent to (actionDestination COLONCOLON)? but enables getExpectedTokens() to work
;
headerAction
: HEADER headerActionBlock;
memberAction
: MEMBERS actionBlock; // Scope names could collide with keywords; allow them as ids for action scopes
actionDestination
: LEXER
| PARSER;
/*
FYV: Now we parse action block content in order to be able to recover Java
import statements.
Originally it was ACTION_CONTENT* so a list of tokens (reduced to one
token most of the time)
*/
headerActionBlock
: BEGIN_ACTION headerActionContent END_ACTION;
headerActionContent
: packageDeclaration? importDeclaration*;
packageDeclaration
: HEADER_PACKAGE packageIdentifier SEMI; // We only manage single type import declaration
importDeclaration
: singleTypeImportDeclaration;
singleTypeImportDeclaration
: HEADER_IMPORT HDR_IMPRT_STATIC? ( classIdentifier | genericClassIdentifier ) SEMI;
actionBlock
: BEGIN_ACTION ( ACTION_CONTENT+ | ) END_ACTION // equivalent to ACTION_CONTENT* but enables getExpectedTokens() to work
;
modeSpec
: ( DOC_COMMENT+ | )modeDec ( lexerRuleSpec+ | );
modeDec
: MODE identifier SEMI;
/*
We cannot use rule as a rule identifier because it conflicts with ANTLR code.
So we use ruleSpec
*/
ruleSpec
: parserRuleSpec
| lexerRuleSpec;
/*****************************
* Parser rule specification *
*****************************/
parserRuleSpec
: ( DOC_COMMENT+ | )parserRuleDeclaration COLON parserRuleDefinition SEMI exceptionGroup;
parserRuleDeclaration
: parserRuleIdentifier ( actionBlockArguments | ) ( parserRuleReturns | ) ( throwsSpec | ) ( localsSpec | ) ( parserRulePrequel+ | );
exceptionGroup
: ( exceptionHandler+ | ) ( finallyClause | );
exceptionHandler
: CATCH actionBlockArguments actionBlock;
finallyClause
: FINALLY actionBlock;
parserRulePrequel
: optionsSpec
| ruleAction;
parserRuleReturns
: RETURNS actionBlockArguments;
// --------------
// Exception spec
throwsSpec
: THROWS identifier ( COMMA identifier )*;
localsSpec
: LOCALS actionBlockArguments;
/** Match stuff like @init {int i;} */
ruleAction
: AT ( INIT | AFTER ) actionBlock;
parserRuleDefinition
: parserRuleLabeledAlternative ( OR parserRuleLabeledAlternative )*;
parserRuleLabeledAlternative
: parserRuleAlternative ( SHARP identifier )?;
// --------------------
// Parser Rule Alts
altList
: parserRuleAlternative ( OR parserRuleAlternative )*;
parserRuleAlternative
: parserRuleElement+
| // explicitly allow empty alts
;
parserRuleElement
: labeledParserRuleElement ebnfSuffix?
| parserRuleAtom ebnfSuffix?
| ebnf
| actionBlock
| actionBlock QUESTION elementOptions?;
labeledParserRuleElement
: identifier ( ASSIGN | PLUS_ASSIGN ) ( parserRuleAtom | block );
parserRuleAtom
: characterRange
| terminal
| parserRuleReference
| notSet
| DOT elementOptions?;
parserRuleReference
: parserRuleIdentifier actionBlockArguments? elementOptions?;
actionBlockArguments
: BEGIN_ARGUMENT ARGUMENT_CONTENT* END_ARGUMENT;
/****************************
* Lexer rule specification *
****************************/
lexerRuleSpec
: ( DOC_COMMENT+ | ) ( tokenRuleDeclaration | fragmentRuleDeclaration );
tokenRuleDeclaration
: TOKEN_ID COLON lexerRuleBlock SEMI;
fragmentRuleDeclaration
: FRAGMENT TOKEN_ID COLON lexerRuleBlock SEMI;
lexerRuleBlock
: lexerRuleAlt( ( OR lexerRuleAlt )+ | );
lexerRuleAlt
: lexerRuleElements ( lexerCommands | )
| // explicitly allow empty alts
;
lexerRuleElements
: lexerRuleElement+;
lexerRuleElement
: lexerRuleAtom ( ebnfSuffix | )
| lexerRuleElementBlock ( ebnfSuffix | )
| actionBlock ( QUESTION | );
lexerRuleElementBlock
: LPAREN lexerRuleBlock RPAREN; // E.g., channel(HIDDEN), skip, more, mode(INSIDE), push(INSIDE), pop
lexerCommands
: RARROW lexerCommand ( ( COMMA lexerCommand )+ | );
lexerCommand
: LEXCOM_SKIP
| LEXCOM_MORE
| LEXCOM_TYPE LPAREN ( TOKEN_ID | INT ) RPAREN
| lexComChannel
| lexComMode
| lexComPushMode
| LEXCOM_POPMODE;
lexComChannel
: LEXCOM_CHANNEL LPAREN ( identifier | INT ) RPAREN;
lexComMode
: LEXCOM_MODE LPAREN ( identifier | INT ) RPAREN;
lexComPushMode
: LEXCOM_PUSHMODE LPAREN ( identifier | INT ) RPAREN;
lexerRuleAtom
: characterRange
| terminal
| notSet
| LEXER_CHAR_SET
| DOT ( elementOptions | );
// --------------------
// EBNF and blocks
ebnf
: block ( ebnfSuffix | );
ebnfSuffix
: QUESTION ( QUESTION | )
| STAR ( QUESTION | )
| PLUS ( QUESTION | );
// --------------------
// Inverted element set
notSet
: NOT setElement
| NOT blockSet;
blockSet
: LPAREN setElement ( ( OR setElement )+ | ) RPAREN;
setElement
: TOKEN_ID ( elementOptions | )
| STRING_LITERAL ( elementOptions | )
| characterRange
| LEXER_CHAR_SET;
// -------------
// Grammar Block
block
: LPAREN(( ( optionsSpec | ) ( ruleAction+ | ) COLON ) | ) altList RPAREN;
// ---------------
// Character Range
characterRange
: STRING_LITERAL RANGE STRING_LITERAL;
terminal
: TOKEN_ID ( elementOptions | )
| STRING_LITERAL ( elementOptions | );
// Terminals may be adorned with certain options when
// reference in the grammar: TOK<,,,>
elementOptions
: LT elementOption ( ( COMMA elementOption )+ | ) GT;
elementOption
: tokenOption;
tokenOption
: ASSOC ASSIGN ( RIGHT | LEFT )
| FAIL ASSIGN ( STRING_LITERAL | actionBlock );
// Semantic predicate option are only valid for semantic predicate so may only be found
// in parser rule definition
/***********************
* general identifiers *
***********************/
// in parser rule definition an identifier can represent a parser / lexer rule reference
// or athe id of the element that will be used in an action block
// for making the difference between the two first cases and the third one, we have
// to wait for '=' or '+=' token that are placed after the id so it is not possible.
// That's why we add ID_STARTING_WITH_UPPERCASE and ID_STARTING_WITH_LOWERCASE in
// the possibilities for an identifier
identifier
: ID;
ruleElementIdentifier
: TOKEN_ID
| PARSER_RULE_ID;
classIdentifier
: identifier( ( DOT identifier )+ | );
genericClassIdentifier
: identifier( ( DOT identifier )+ | ) DOT STAR;
packageIdentifier
: identifier( ( DOT identifier )+ | );
parserRuleIdentifier
: PARSER_RULE_ID; |
test.asm | ILZM/mips_examples | 0 | 5605 | .data
array: .word 1 2 3 4 5 6 7 8 9 10
arraylen: .word 10
.text
main:
la $a0,array # Disregard this instruction for the counting
la $t0,arraylen # Disregard this instruction for the counting
lw $a1,0($t0)
add $v0,$zero,$zero
loop:
lw $t1,0($a0)
slt $t2,$t1,$v0
bne $t2,$zero,skip
add $v0,$zero,$t1
skip:
addi $a0,$a0,4
addi $a1,$a1,-1
bne $a1,$zero,loop
|
programs/oeis/010/A010166.asm | karttu/loda | 0 | 174911 | ; A010166: Continued fraction for sqrt(95).
; 9,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1,2,1,18,1
mov $5,$0
mov $7,2
lpb $7,1
mov $0,$5
sub $7,1
add $0,$7
sub $0,1
div $0,2
mov $2,$0
mul $0,3
div $0,6
add $2,6
mov $4,$0
mov $6,-14
mul $6,$0
add $0,$2
add $4,$0
mov $0,6
mul $4,2
add $4,1
lpb $0,1
sub $0,1
mov $3,$6
add $6,3
sub $3,$6
add $0,$3
lpe
add $4,3
div $4,2
add $4,1
sub $6,$0
sub $4,$6
mov $6,$4
mov $8,$7
lpb $8,1
mov $1,$6
sub $8,1
lpe
lpe
lpb $5,1
sub $1,$6
mov $5,0
lpe
add $1,1
|
src/excelbind/fct_exports.asm | RuneLjungmann/excelbind | 8 | 171286 | ; The code here contains the actual functions exported from the dll.
; They use the thunks_objects and thunks_methods tables to redirect the calls from Excel
; to the correct method on the PythonFunctionAdapter object wrapping the python function
; The win32 functions are quite simple, as the (internal Visual Studio/Microsoft calling
; convention for calling a non-virtual method on an object, is the same as stdcall + ptr
; to the object in ECX. I.e. all function arguments are on the stack.
; The x64 functions are a bit more involved, as the Microsoft x64 calling conventions
; already use RCX for the first function argument. So we need to shift all function arguments
; and then put the ptr to the object in RCX.
; Note that to simplify the code, we always shift all 10 arguments even if the function actually has less.
; See (https://docs.microsoft.com/en-us/cpp/build/x64-calling-convention?view=vs-2019)
; for details on x64 calling conventions.
IFDEF RAX; small hack - RAX is only defined in x64 - but it doesn't work with IFNDEF!
ELSE
.model flat, c
ENDIF
.data
EXTERN thunks_objects:PTR PTRTYPE
EXTERN thunks_methods:PTR PTRTYPE
IFDEF RAX; small hack - RAX is only defined in x64
fct macro i
PUBLIC f&i
f&i PROC EXPORT
sub RSP, 058h
mov RAX, QWORD PTR[RSP + 0A8h]
mov [RSP + 050h], RAX
mov RAX, QWORD PTR[RSP + 0A0h]
mov [RSP + 048h], RAX
mov RAX, QWORD PTR[RSP + 098h]
mov [RSP + 040h], RAX
mov RAX, QWORD PTR[RSP + 090h]
mov [RSP + 038h], RAX
mov RAX, QWORD PTR[RSP + 088h]
mov [RSP + 030h], RAX
mov RAX, QWORD PTR[RSP + 080h]
mov [RSP + 028h], RAX
mov [RSP + 020h], R9
mov R9, R8
mov R8, RDX
mov RDX, RCX
mov RCX, QWORD PTR [thunks_objects + i * 8]
mov RAX, thunks_methods + i * 8
call RAX
add RSP, 058h
ret
f&i ENDP
endm
ELSE
fct macro i
PUBLIC f&i
f&i PROC EXPORT
mov ECX, DWORD PTR [thunks_objects + i * 4]
jmp thunks_methods + i * 4
f&i ENDP
endm
ENDIF
.code
; Roll out 10000 functions - note the number of functions here should match the space allocated to
; the thunks tables in 'function_registration.cpp'
counter = 0
REPEAT 10000
fct %counter
counter = counter + 1
ENDM
end |
Examples/Switch-Case/a.asm | MaSteve/CeMAGRplus | 0 | 96610 | {0} ssp 1;
{1} mst 0;
{2} cup 0 4;
{3} stp;
{ FUNC main }
{4} ssp 6;
{ $ret }
{5} lda 0 5;
{ := }
{ call: test }
{6} mst 1;
{7} ldc 7;
{ cte: 7 }
{8} cup 1 14;
{9} sto;
{ $ret }
{10} lda 0 5;
{11} ind;
{12} str 0 0;
{ RETURN }
{13} retf;
{ END FUNC }
{ FUNC test }
{14} ssp 8;
{ SWITCH }
{ $n }
{15} lda 0 5;
{16} ind;
{17} dpl;
{18} ldc 1;
{19} geq;
{20} fjp 49;
{21} dpl;
{22} ldc 5;
{23} leq;
{24} fjp 49;
{25} ldc 1;
{26} sub;
{27} neg;
{28} ixj 58;
{ CASE 1 }
{ $ret }
{29} lda 0 6;
{ := }
{30} ldc 10;
{ cte: 10 }
{31} sto;
{32} ujp 59;
{ CASE 2 }
{ $auxi }
{33} lda 0 7;
{ := }
{34} ldc 5;
{ cte: 5 }
{35} sto;
{ $ret }
{36} lda 0 6;
{ := }
{ $auxi }
{37} lda 0 7;
{38} ind;
{ $auxi }
{39} lda 0 7;
{40} ind;
{41} mul;
{ * }
{42} sto;
{43} ujp 59;
{ CASE 5 }
{ $ret }
{44} lda 0 6;
{ := }
{45} ldc 2;
{ cte: 2 }
{46} neg;
{ - }
{47} sto;
{48} ujp 59;
{ DEFAULT }
{ $ret }
{49} lda 0 6;
{ := }
{50} ldc 500;
{ cte: 500 }
{51} neg;
{ - }
{52} sto;
{53} ujp 59;
{54} ujp 44;
{55} ujp 49;
{56} ujp 49;
{57} ujp 33;
{58} ujp 29;
{ END SWITCH }
{ $ret }
{59} lda 0 6;
{60} ind;
{61} str 0 0;
{ RETURN }
{62} retf;
{ END FUNC }
|
Lecture2.agda | glangmead/hott_cmu80818 | 4 | 1445 | <reponame>glangmead/hott_cmu80818
{-# OPTIONS --without-K #-}
module Lecture2 where
import Basics
open Basics public
-- Definition 2.2.3 define the identity function, and show lambda-abstraction in so doing
id : {i : Level} {A : UU i} → A → A
id = λ a → a -- can also use plain backslash \ instead of lambda (as it resembles lambda?)
-- Definition 2.2.4
comp : {i j k : Level} {A : UU i} {B : UU j} {C : UU k} → (B → C) → ((A → B) → (A → C))
comp = λ g f a → g(f(a)) -- the lambda extends to cover g, f and a
_∘_ : {i j k : Level} {A : UU i} {B : UU j} {C : UU k} → (B → C) → ((A → B) → (A → C))
g ∘ f = comp g f
data ℕ : U where
Nzero : ℕ
Nsucc : ℕ → ℕ
add : ℕ → ℕ → ℕ
add Nzero = id
add (Nsucc n) = Nsucc ∘ (add n)
-- try some examples, hit C-c C-n (or whatever "compute normal form" is bound to)
-- and try entering "add (Nsucc Nzero) (Nsucc (Nsucc Nzero))"
-- you should get "Nsucc (Nsucc (Nsucc Nzero))"
_+_ : ℕ → ℕ → ℕ
n + m = add n m
-- Exercise 2.3
const : {i j : Level} (A : UU i) (B : UU j) (b : B) → A → B
const A B b x = b
-- Exercise 2.4
Pi-swap : {i j k : Level} {A : UU i} {B : UU j} {C : A → (B → UU k)} →
((x : A) (y : B) → C x y) → ((y : B) (x : A) → C x y)
Pi-swap f y x = f x y
-- Exercise 2.5(a)
_**_ : ℕ → (ℕ → ℕ)
Nzero ** n = Nzero
(Nsucc m) ** n = (m ** n) + n
-- Exercise 2.5(b)
_^_ : ℕ → (ℕ → ℕ)
m ^ Nzero = Nsucc Nzero
m ^ (Nsucc n) = m ** (m ^ n)
-- Exercise 2.5(c)
factorial : ℕ → ℕ
factorial Nzero = Nsucc Nzero
factorial (Nsucc m) = (Nsucc m) ** (factorial m)
-- Exercise 2.6(a)
Nmax : ℕ → (ℕ → ℕ)
Nmax Nzero n = n
Nmax (Nsucc m) Nzero = Nsucc m
Nmax (Nsucc m) (Nsucc n) = Nsucc (Nmax m n)
-- Exercise 2.6(b)
Nmin : ℕ → (ℕ → ℕ)
Nmin Nzero n = Nzero
Nmin (Nsucc m) Nzero = Nzero
Nmin (Nsucc m) (Nsucc n) = Nsucc (Nmin m n)
-- Exercise 2.7
-- induction: for any dependent type P over ℕ, define a section of P
-- built out of a term in P 0 and a section of P n → P(Nsucc n)
ind-N : {i : Level} {P : ℕ → UU i} → P Nzero → ((n : ℕ) → P n → P(Nsucc n)) → ((n : ℕ) → P n)
ind-N p0 pS Nzero = p0
ind-N p0 pS (Nsucc n) = pS n (ind-N p0 pS n)
|
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1775.asm | ljhsiun2/medusa | 9 | 10949 | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r15
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x13afc, %rbx
nop
dec %r15
mov $0x6162636465666768, %r8
movq %r8, (%rbx)
xor %r12, %r12
lea addresses_A_ht+0x16dec, %rsi
lea addresses_WC_ht+0xbebf, %rdi
nop
nop
nop
cmp $35842, %rbp
mov $112, %rcx
rep movsb
nop
nop
xor $7802, %rbp
lea addresses_normal_ht+0xdb5, %rsi
clflush (%rsi)
nop
nop
nop
and %rbp, %rbp
mov (%rsi), %r15w
nop
nop
nop
nop
nop
and $26706, %rbx
lea addresses_WC_ht+0x18594, %r12
sub $42917, %rcx
movb $0x61, (%r12)
nop
nop
dec %rbp
lea addresses_normal_ht+0xa79c, %r8
nop
nop
nop
nop
nop
sub %rbx, %rbx
mov $0x6162636465666768, %rcx
movq %rcx, %xmm7
vmovups %ymm7, (%r8)
nop
nop
dec %rcx
lea addresses_UC_ht+0x4dec, %rcx
nop
nop
nop
nop
inc %r12
mov (%rcx), %rbp
nop
sub %rbx, %rbx
lea addresses_UC_ht+0x1bc2c, %rbp
nop
nop
nop
xor %rbx, %rbx
mov (%rbp), %esi
nop
nop
nop
nop
add %rsi, %rsi
lea addresses_A_ht+0x31ec, %rbp
nop
nop
nop
nop
sub %rcx, %rcx
mov (%rbp), %r12d
nop
nop
nop
nop
xor $22565, %rdi
lea addresses_UC_ht+0x8b5c, %rsi
nop
nop
and %r12, %r12
mov (%rsi), %r15d
nop
sub $1605, %rdi
lea addresses_D_ht+0x57ec, %rsi
lea addresses_D_ht+0x6a0c, %rdi
nop
add $47790, %rbp
mov $53, %rcx
rep movsl
nop
add %rdi, %rdi
lea addresses_WT_ht+0x185ec, %rsi
lea addresses_A_ht+0xc46c, %rdi
sub %rbp, %rbp
mov $62, %rcx
rep movsl
nop
nop
xor %rbp, %rbp
lea addresses_WT_ht+0x1e334, %rcx
nop
nop
nop
nop
cmp $5076, %rsi
movups (%rcx), %xmm2
vpextrq $1, %xmm2, %r15
xor $62231, %rbp
lea addresses_A_ht+0x990c, %rsi
lea addresses_normal_ht+0xa5af, %rdi
nop
add $45386, %rbp
mov $17, %rcx
rep movsw
nop
nop
nop
nop
sub %r15, %r15
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %r8
pop %r15
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r12
push %r8
push %r9
push %rax
push %rbp
// Store
lea addresses_RW+0x11a2c, %r10
nop
nop
nop
nop
add $26578, %r11
mov $0x5152535455565758, %r12
movq %r12, %xmm0
vmovups %ymm0, (%r10)
// Exception!!!
mov (0), %r8
cmp $36279, %r10
// Store
lea addresses_A+0x1c3ec, %rax
nop
nop
nop
nop
dec %r11
mov $0x5152535455565758, %r10
movq %r10, %xmm7
vmovups %ymm7, (%rax)
nop
nop
add $45643, %r12
// Store
lea addresses_WC+0xc59c, %r8
nop
nop
nop
nop
nop
add $36664, %rbp
movl $0x51525354, (%r8)
nop
nop
nop
nop
xor %r10, %r10
// Store
lea addresses_normal+0x15a54, %r9
nop
xor $21674, %rbp
mov $0x5152535455565758, %rax
movq %rax, %xmm5
vmovntdq %ymm5, (%r9)
nop
nop
nop
nop
xor %r9, %r9
// Faulty Load
lea addresses_RW+0x35ec, %r9
cmp %r10, %r10
mov (%r9), %r8
lea oracles, %rbp
and $0xff, %r8
shlq $12, %r8
mov (%rbp,%r8,1), %r8
pop %rbp
pop %rax
pop %r9
pop %r8
pop %r12
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_RW', 'AVXalign': False, 'size': 8, 'NT': True, 'same': False, 'congruent': 0}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_RW', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 4}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 9}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'AVXalign': False, 'size': 4, 'NT': False, 'same': False, 'congruent': 4}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal', 'AVXalign': False, 'size': 32, 'NT': True, 'same': False, 'congruent': 3}}
[Faulty Load]
{'src': {'type': 'addresses_RW', 'AVXalign': False, 'size': 8, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 4}}
{'src': {'type': 'addresses_A_ht', 'congruent': 9, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WC_ht', 'congruent': 0, 'same': False}}
{'src': {'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 2, 'NT': False, 'same': False, 'congruent': 0}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 1, 'NT': False, 'same': False, 'congruent': 3}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 2}}
{'src': {'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 11}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 4, 'NT': False, 'same': False, 'congruent': 6}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_A_ht', 'AVXalign': True, 'size': 4, 'NT': False, 'same': False, 'congruent': 10}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC_ht', 'AVXalign': True, 'size': 4, 'NT': False, 'same': False, 'congruent': 4}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_D_ht', 'congruent': 9, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_D_ht', 'congruent': 5, 'same': False}}
{'src': {'type': 'addresses_WT_ht', 'congruent': 11, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_A_ht', 'congruent': 6, 'same': False}}
{'src': {'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 16, 'NT': False, 'same': False, 'congruent': 3}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_A_ht', 'congruent': 5, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 0, 'same': False}}
{'32': 21829}
32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32
*/
|
Cubical/HITs/Truncation/Base.agda | Schippmunk/cubical | 0 | 10665 | {-
A simpler definition of truncation ∥ A ∥ n from n ≥ -1
Note that this uses the HoTT book's indexing, so it will be off
from `∥_∥_` in HITs.Truncation.Base by -2
-}
{-# OPTIONS --cubical --no-import-sorts --safe #-}
module Cubical.HITs.Truncation.Base where
open import Cubical.Data.NatMinusOne renaming (suc₋₁ to suc)
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.HLevels
open import Cubical.HITs.Sn.Base
open import Cubical.Data.Nat.Base renaming (suc to sucℕ)
open import Cubical.Data.Unit.Base
open import Cubical.Data.Empty
-- this definition is off by one. Use hLevelTrunc or ∥_∥ for truncations
-- (off by 2 w.r.t. the HoTT-book)
data HubAndSpoke {ℓ} (A : Type ℓ) (n : ℕ) : Type ℓ where
∣_∣ : A → HubAndSpoke A n
hub : (f : S₊ n → HubAndSpoke A n) → HubAndSpoke A n
spoke : (f : S₊ n → HubAndSpoke A n) (x : S₊ n) → hub f ≡ f x
hLevelTrunc : ∀ {ℓ} (n : ℕ) (A : Type ℓ) → Type ℓ
hLevelTrunc zero A = Unit*
hLevelTrunc (sucℕ n) A = HubAndSpoke A n
∥_∥_ : ∀ {ℓ} (A : Type ℓ) (n : ℕ) → Type ℓ
∥ A ∥ n = hLevelTrunc n A
|
src/Processors/project_processor-processors.ads | fintatarta/eugen | 0 | 23139 | <filename>src/Processors/project_processor-processors.ads
with EU_Projects.Projects;
with Ada.Strings.Bounded;
with Plugins;
package Project_Processor.Processors is
package Processor_Names is
new Ada.Strings.Bounded.Generic_Bounded_Length (16);
subtype Processor_Parameter is Plugins.Parameter_Map;
subtype Processor_Parameter_Access is Plugins.Parameter_Map_Access;
type Processor_ID is new Processor_Names.Bounded_String;
function To_Id (X : String) return Processor_ID
is (Processor_ID (Processor_Names.To_Bounded_String (X)));
function Image (X : Processor_ID) return String
is (Processor_Names.To_String (Processor_Names.Bounded_String(X)));
type Abstract_Processor is interface;
function Create (Params : not null access Processor_Parameter)
return Abstract_Processor is abstract;
procedure Process
(Processor : Abstract_Processor;
Input : EU_Projects.Projects.Project_Descriptor)
is abstract;
Processor_Error : exception;
end Project_Processor.Processors;
|
programs/oeis/062/A062749.asm | neoneye/loda | 22 | 92015 | ; A062749: Sixth column (r=5) of FS(3) staircase array A062745.
; 12,43,108,228,431,753,1239,1944,2934,4287,6094,8460,11505,15365,20193,26160,33456,42291,52896,65524,80451,97977,118427,142152,169530,200967,236898,277788,324133,376461,435333,501344,575124,657339,748692,849924,961815,1085185,1220895,1369848,1532990,1711311,1905846,2117676,2347929,2597781,2868457,3161232,3477432,3818435,4185672,4580628,5004843,5459913,5947491,6469288,7027074,7622679,8257994,8934972,9655629,10422045,11236365,12100800,13017628,13989195,15017916,16106276,17256831,18472209,19755111,21108312,22534662,24037087,25618590,27282252,29031233,30868773,32798193,34822896,36946368,39172179,41503984,43945524,46500627,49173209,51967275,54886920,57936330,61119783,64441650,67906396,71518581,75282861,79203989,83286816,87536292,91957467,96555492,101335620
mov $2,$0
add $2,1
mov $3,$0
lpb $2
mov $0,$3
sub $2,1
sub $0,$2
mov $4,$0
add $4,6
bin $4,4
mov $5,$0
add $5,3
sub $4,$5
add $1,$4
lpe
mov $0,$1
|
tier-1/gmp/source/thin/gmp_c-a_a_gmp_randstate_struct.ads | charlie5/cBound | 2 | 22926 | <gh_stars>1-10
-- This file is generated by SWIG. Please do *not* modify by hand.
--
with gmp_c.a_a_gmp_randstate_struct_a_mp_algdata;
with gmp_c.mpz_t;
with Interfaces.C;
package gmp_c.a_a_gmp_randstate_struct is
-- Item
--
type Item is record
a_mp_seed : aliased gmp_c.mpz_t.Item;
a_mp_alg : aliased gmp_c.gmp_randalg_t;
a_mp_algdata : aliased gmp_c.a_a_gmp_randstate_struct_a_mp_algdata.Item;
end record;
-- Items
--
type Items is
array
(Interfaces.C
.size_t range <>) of aliased gmp_c.a_a_gmp_randstate_struct.Item;
-- Pointer
--
type Pointer is access all gmp_c.a_a_gmp_randstate_struct.Item;
-- Pointers
--
type Pointers is
array
(Interfaces.C
.size_t range <>) of aliased gmp_c.a_a_gmp_randstate_struct.Pointer;
-- Pointer_Pointer
--
type Pointer_Pointer is access all gmp_c.a_a_gmp_randstate_struct.Pointer;
function construct return gmp_c.a_a_gmp_randstate_struct.Item;
private
pragma Import (C, construct, "Ada_new___gmp_randstate_struct");
end gmp_c.a_a_gmp_randstate_struct;
|
src/XenobladeChroniclesX/Mods/FrontierNavProbeResourceQuantity/patch_resource_qu.asm | lilystudent2016/cemu_graphic_packs | 1,002 | 2514 | <gh_stars>1000+
[XCX_FN_RES_QTY_ALL] ######################################################################
moduleMatches = 0xF882D5CF, 0x30B6E091, 0xAB97DE6B ; 1.0.1E, 1.0.2U, 1.0.1U
.origin = codecave
.int $mod
; ----------------------------------------------------------------------------
; WHAT : changeTime__Q2_4fnet9CFnetTaskFUiT1
; WHY :
_multCount:
lbz r0, 6(r31)
li r3, $mod
mullw r0, r0, r3
stb r0, 6(r31)
blr
[XCX_FN_RES_QTY] ######################################################################
moduleMatches = 0xF882D5CF, 0x30B6E091 ; 1.0.1E, 1.0.2U
0x027D5428 = bla _multCount
[XCX_FN_RES_QTY_1U] ######################################################################
moduleMatches = 0xAB97DE6B ; 1.0.1U
0x027D53C8 = bla _multCount
|
oeis/344/A344723.asm | neoneye/loda-programs | 11 | 86842 | <filename>oeis/344/A344723.asm
; A344723: a(n) = Sum_{k=1..n} (-1)^(k+1) * floor(n/k)^5.
; Submitted by <NAME>
; 1,31,243,992,3094,7564,16596,31744,58237,97117,158169,241837,364299,521829,745693,1018120,1389402,1837302,2423834,3105432,3998776,5007286,6289998,7738784,9543887,11537207,14031231,16717879,20018661,23629281,27958433,32577739,38219963,44148743,51246327,58778304,67656086,76960796,88072500,99496496,112952698,127065598,143382810,160160758,180022804,200174974,223557006,247669470,275349783,303610413,336507157,369448475,407439937,446389837,490572341,534997867,586544891,637908851,696476383,755906199
add $0,1
mov $2,$0
lpb $0
max $0,1
mul $1,-1
mov $3,$2
div $3,$0
sub $0,1
pow $3,5
add $1,$3
lpe
mov $0,$1
|
pwnlib/shellcraft/templates/mips/linux/mq_notify.asm | zaratec/pwntools | 5 | 3783 |
<%
from pwnlib.shellcraft.mips.linux import syscall
%>
<%page args="mqdes, notification"/>
<%docstring>
Invokes the syscall mq_notify. See 'man 2 mq_notify' for more information.
Arguments:
mqdes(mqd_t): mqdes
notification(sigevent): notification
</%docstring>
${syscall('SYS_mq_notify', mqdes, notification)}
|
gillesdubois/used_apple_scripts/iTunesActivate.applescript | gillesdubois/btt-touchbar-presets | 1,879 | 3148 | if application "iTunes" is running then
tell application "iTunes"
activate
end tell
end if |
codigo/capitulo 41/argumento.asm | Nabucodonosor-editorial/ensamblador-x86 | 2 | 23216 | <gh_stars>1-10
segment .data
mensaje db "El numero de argumentos es: "
lonmensaje equ $-mensaje
texto db "El argumento es: "
lontexto equ $-texto
ln db 10,13
lonln equ $-ln
segment .bss
datos resb 2
segment .text
global _start
_start:
pop eax ;extraemos de la pila el numero de argumentos
add eax, '0' ; convertimos el numero entero a caracter
mov [datos], eax ; copiamos el contenido del registro ax en
; la ubicacion de memoria datos
mov eax, 4
mov ebx, 0
mov ecx, mensaje
mov edx, lonmensaje
int 80h
mov eax, 4
mov ebx, 0
mov ecx, datos
mov edx, 1
int 80h
mov eax, 4
mov ebx, 0
mov ecx, ln
mov edx, lonln
int 80h
mov eax, 4
mov ebx, 0
mov ecx, texto
mov edx, lontexto
int 80h
pop ebx ; extraemos de la pila la direccion de memoria donde se
; encuentra almacenado el nombre del programa y lo guardamos
; en el registro ebx
mov eax, 4
mov ebx, 0
pop ecx ; guardamos en el registro ecx, la direccion de memoria
; donde se encuentra el primer argumento pasado al programa
; argv[1]
mov edx, 1
int 80h
mov eax, 4
mov ebx, 0
mov ecx, ln
mov edx, lonln
int 80h
salir:
mov eax, 1
xor ebx,ebx
int 0x80 |
externals/mpir-3.0.0/mpn/x86_64w/skylake/lshiftc.asm | JaminChan/eos_win | 12 | 165228 | ; PROLOGUE(mpn_lshiftc)
; Copyright 2009 <NAME>
;
; Windows Conversion Copyright 2008 <NAME>
;
; This file is part of the MPIR Library.
;
; The MPIR 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 verdxon 2.1 of the License, or (at
; your option) any later verdxon.
; The MPIR Library 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 the MPIR Library; see the file COPYING.LIB. If not, write
; to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
; Boston, MA 02110-1301, USA.
;
; void lshiftc(mp_ptr, mp_ptr, mp_size_t, mp_uint)
; rdi rsi rdx rcx
; rcx rdx r8 r9d
%include "yasm_mac.inc"
CPU Athlon64
BITS 64
LEAF_PROC mpn_lshiftc
mov r9d, r9d
movq mm0, r9
mov rax, 64
sub rax, r9
pcmpeqb mm6, mm6
movq mm1, rax
lea rdx, [rdx+8]
lea rcx, [rcx+8]
sub r8, 5
movq mm5, [rdx+r8*8+24]
movq mm3, mm5
psrlq mm5, mm1
movq rax, mm5
psllq mm3, mm0
jc .2
xalign 16
.1: movq mm2, [rdx+r8*8+16]
movq mm4, mm2
psrlq mm2, mm1
por mm3, mm2
movq mm2, [rdx+r8*8]
pxor mm3, mm6
movq [rcx+r8*8+24], mm3
psllq mm4, mm0
movq mm5, [rdx+r8*8+8]
movq mm3, mm5
psrlq mm5, mm1
por mm4, mm5
pxor mm4, mm6
movq [rcx+r8*8+16], mm4
psllq mm3, mm0
movq mm4, mm2
movq mm5, [rdx+r8*8-8]
sub r8, 4
psrlq mm2, mm1
por mm3, mm2
pxor mm3, mm6
movq [rcx+r8*8+40], mm3
psllq mm4, mm0
movq mm3, mm5
psrlq mm5, mm1
por mm4, mm5
pxor mm4, mm6
movq [rcx+r8*8+32], mm4
psllq mm3, mm0
jnc .1
.2: cmp r8, -2
jz .4
jp .5
js .6
.3: movq mm2, [rdx+r8*8+16]
movq mm4, mm2
psrlq mm2, mm1
por mm3, mm2
movq mm2, [rdx+r8*8]
pxor mm3, mm6
movq [rcx+r8*8+24], mm3
psllq mm4, mm0
movq mm5, [rdx+r8*8+8]
movq mm3, mm5
psrlq mm5, mm1
por mm4, mm5
pxor mm4, mm6
movq [rcx+r8*8+16], mm4
psllq mm3, mm0
movq mm4, mm2
psrlq mm2, mm1
por mm3, mm2
pxor mm3, mm6
movq [rcx+r8*8+8], mm3
psllq mm4, mm0
pxor mm4, mm6
movq [rcx+r8*8], mm4
emms
ret
xalign 16
.4: movq mm2, [rdx+r8*8+16]
movq mm4, mm2
psrlq mm2, mm1
por mm3, mm2
pxor mm3, mm6
movq [rcx+r8*8+24], mm3
psllq mm4, mm0
movq mm5, [rdx+r8*8+8]
movq mm3, mm5
psrlq mm5, mm1
por mm4, mm5
pxor mm4, mm6
movq [rcx+r8*8+16], mm4
psllq mm3, mm0
pxor mm3, mm6
movq [rcx+r8*8+8], mm3
emms
ret
xalign 16
.5: movq mm2, [rdx+r8*8+16]
movq mm4, mm2
psrlq mm2, mm1
por mm3, mm2
pxor mm3, mm6
movq [rcx+r8*8+24], mm3
psllq mm4, mm0
pxor mm4, mm6
movq [rcx+r8*8+16], mm4
emms
ret
xalign 16
.6: pxor mm3, mm6
movq [rcx+r8*8+24], mm3
emms
ret
|
win32/dpmi examples/vesa.asm | QAston/fasm-2006 | 0 | 88616 | <gh_stars>0
format MZ
; no additional memory
segment loader use16
push cs
pop ds
mov ax,1687h
int 2Fh
or ax,ax ; DPMI installed?
jnz error
test bl,1 ; 32-bit programs supported?
jz error
mov word [mode_switch],di
mov word [mode_switch+2],es
mov bx,si ; allocate memory for DPMI data
mov ah,48h
int 21h
jc error
mov es,ax
mov ax,1
call far [mode_switch] ; switch to protected mode
jc error
mov cx,1
xor ax,ax
int 31h ; allocate descriptor for code
mov si,ax
xor ax,ax
int 31h ; allocate descriptor for data
mov di,ax
mov dx,cs
lar cx,dx
shr cx,8
or cx,0C000h
mov bx,si
mov ax,9
int 31h ; set code descriptor access rights
mov dx,ds
lar cx,dx
shr cx,8
or cx,0C000h
mov bx,di
int 31h ; set data descriptor access rights
mov ecx,main
shl ecx,4
mov dx,cx
shr ecx,16
mov ax,7 ; set descriptor base address
int 31h
mov bx,si
int 31h
mov cx,0FFFFh
mov dx,0FFFFh
mov ax,8 ; set segment limit to 4 GB
int 31h
mov bx,di
int 31h
mov ds,di
mov es,di
mov fs,di
mov gs,di
push si
push dword start
retfd
error:
mov ax,4CFFh
int 21h
mode_switch dd ?
segment main use32
start:
; VESA
SOMEMEMORY = $100000 ; 1 MB , more than high enough (code < 1KB, segment 4 MB)
BUF32 = SOMEMEMORY ; $32 = #50 bytes
DOSMEMSEL = SOMEMEMORY + $32 ; 2 bytes
DOSMEMSEG = SOMEMEMORY + $34 ; 2 bytes
DOSMEMLIN = SOMEMEMORY + $36 ; 4 bytes
VESABUF = SOMEMEMORY + $3A ; $200 bytes
VESAOK = SOMEMEMORY + $023A ; 1 byte
PBUF = SOMEMEMORY + $023B ; $50 = #80 bytes
VESABUFPO = SOMEMEMORY + $028B ; 2 bytes ;
; *** Print text using DOS API Translation ***
mov ax,$0900
mov edx,t8
int 21h
jmp @f
t8 db 'Hello (API Trans) !!!',0Dh,0Ah,24h
@@:
; *** Create ZERO-based segment ***
mov cx,1
xor ax,ax
int 31h ; allocate descriptor for data
mov di,ax
mov dx,ds
lar cx,dx
shr cx,8
or cx,0C000h
mov bx,di
int 31h ; set data descriptor access rights
mov ecx,0 ;ZERO
mov edx,0
mov ax,7 ; set descriptor base address CX:DX // CX high
int 31h
mov bx,di ;HACK ???
int 31h
mov cx,0FFFFh
mov dx,0FFFFh
mov ax,8 ; set segment limit to 4 GB
int 31h ; result : di : data descriptor
mov fs,di ; store low segment
; *** Report success ***
mov ax,0900h
mov edx,t9
int 21h
jmp @f
t9 db 'Zero-based seg created (API Trans) !!!',0Dh,0Ah,24h
@@:
; *** Prepare INT $300 - zeroize $32 buffer ***
mov cl,$32
mov al,0
mov ebx,BUF32
@@: mov byte [ebx],al ; Clear $32 bytes buffer
inc ebx
dec cl
jnz @b
; *** Alloc DOS memory ***
xor ax,ax
mov [VESAOK],al ; Failure
mov [DOSMEMSEL],ax ; Not yet alloced
mov ax,$0100 ; Alloc DOS memory
mov bx,$40 ; $0400 bytes (some buggy cards write > $0200 ???)
int $31 ; Alloc returns: DX: selector AX: segment
jc xxfail ; Failure in alloc
mov [DOSMEMSEL],dx
mov [DOSMEMSEG],ax
movzx eax,ax ; Fill upper 16 bits with 0
shl eax,4
mov [DOSMEMLIN], eax ; Linear absolute addr
; *** Zeroize the $0400 buffer ***
cld ; !!! Important !!!
mov edi,eax
mov ecx,$0100 ; $100 of 32-bit writes
xor eax,eax
push es
push fs ; Here our ZERO-based selector is stored
pop es ; ES:EDI is dest for STOSD
rep stosd
pop es ; Restore ES
; *** Write "VBE2" into "buffer" ***
mov ebx, [DOSMEMLIN]
; mov eax,"ASEV"
mov eax,"VBE2"
mov [fs:ebx],eax
; *** INT $0300 register block & boom ***
mov word [BUF32+$1C],$4F00 ; AX: INT $21,$4F00 // [ES:DI]: buffer
mov word ax, [DOSMEMSEG]
mov word [BUF32+$22],ax ; Set ES // DI=0
push ds ; &
pop es ; &
mov edi,BUF32 ; & [ES:EDI] for INT $0300
mov bx,$0010 ; Should be INT $10 finally
mov cx,0 ; No stack junk
mov ax,$0300 ; The "simulate real mode INT" thing
int $31
jc xxfail ; INT $0300 failed
; *** Check the result ***
mov ax,[BUF32+$1C] ; Capture AX from "simulate" buffer
cmp ax,$004F ; !!! Was $4F00 now must be $004F otherwise failure !!!
jne xxfail ; INT $10 failed
inc byte [VESAOK] ; Report success
; *** Move from DOS memory to DPMI memory ***
cld ; !!!
mov esi,[DOSMEMLIN]
mov edi,VESABUF
mov ecx,$0200 ; Number of bytes
push ds
push ds
pop es
push fs ; Our ZERO-based selector
pop ds
rep movsb ; MOVE [DS:ESI] -> [ES:EDI], ECX (bytes)
pop ds
; *** Dealloc DOS mem ? ***
xxfail: mov dx, [DOSMEMSEL]
and dx,dx ; cmp dx,0
jz @F
mov ax,$0101 ; Deallocate
int $31
@@:
; *** Report ***
mov al,[VESAOK]
cmp al, 0
jne xxok2 ; OK
mov ax,0900h
mov edx,t10
int 21h ; Grrrrhhh ((((
jmp xxend
t10 db 'No VESA or FATAL VESA error !!!',0Dh,0Ah,$24
xxok2: mov ax,0900h
mov edx,t11
int 21h ; Great
jmp @f
t11 db 'VESA info captured !!! Let',$27,'s have a look:',0Dh,0Ah,24h
@@:
; *** Dump the stuff ***
xor ax,ax
mov [VESABUFPO],ax ; Pointer inside VESABUF
call xxcpbuf ; Clear and prepare print buffer
xxdump: mov dx, [VESABUFPO]
movzx ebx, dx
add ebx, VESABUF
mov al, [ebx] ; Pick one byte
and dl, $0F ; VESABUFPO MOD 16 // offset in line
mov dh,al
mov ah,al
and ah,$0F ; & Low 4 bits // reversed : LITTLE ENDIAN
shr al,4 ; & High 4 bits
add ax,$3030 ; Convert 0 -> ASCII "0"
cmp al,$3A
jb @f ; "b":below // OK, a number
add al, 7
@@: cmp ah, $3A
jb @f ; "b":below // OK, a number
add ah, 7
@@: mov cx, ax ; Move the HEX to cx
mov al, dl ; *1
add al, dl ; *2
add al, dl ; *3
movzx ebx, al
add ebx, PBUF
mov [ebx], cx ; Write the HEX number
cmp dh,$24
je xxfaultychar ; $24 ("$") is THE MOST faulty char !!!
cmp dh,$20
jb xxfaultychar ; <$20, faulty char
cmp dh,$7E
jb @f ; <$7E, good char
xxfaultychar:
mov dh, $2E ; Replace faulty char with "."
@@: movzx ebx, dl ; dl still is offset in line
add ebx, PBUF+50
mov [ebx], dh ; Write the ASCII char
cmp dl,$0F
jne xxnyp ; Not yet print
mov ax,$0900
mov edx,PBUF
int $21 ; Print content
call xxcpbuf ; And kick it out from buffer
mov eax,0ffffffffh ; 10 Mega
@@: nop
; or eax,eax ; Silly delay
dec eax
jnz @b
xxnyp: mov ax, [VESABUFPO]
inc ax
cmp ax,$0200
je xxend ; End
mov [VESABUFPO], ax
jmp xxdump
xxend:
xor ah,ah
int 16h
mov ax,$4C00
int $21
; *** PROC: Clear PBUF buffer ***
;Trashes EAX,EBX,ECX // EDX remains intact
xxcpbuf:
mov ebx,PBUF
mov ecx,$4C ; Count of passes
mov al,$20
@@: mov [ebx],al ; Clear $4C bytes in $50 buffer
inc ebx
dec ecx
jnz @b
mov dword [PBUF+$4C],$240A0D20 ; SPC CR LF EOT
ret
;END.
;00 DWORD EDI
;04 DWORD ESI
;08 DWORD EBP
;0C DWORD reserved (00h)
;10 DWORD EBX
;14 DWORD EDX
;18 DWORD ECX
;1C DWORD EAX
;20 WORD flags
;22 WORD ES
;24 WORD DS
;26 WORD FS
;28 WORD GS
;2A WORD IP
;2C WORD CS
;2E WORD SP
;30 WORD SS
|
P6/P6Judger - 100 testpoints/testpoint/testpoint29.asm | flyinglandlord/BUAA-CO-2021 | 5 | 247485 | <gh_stars>1-10
ori $1, $0, 5
ori $2, $0, 1
ori $3, $0, 8
ori $4, $0, 12
sw $3, 0($0)
sw $4, 4($0)
sw $3, 8($0)
sw $1, 12($0)
sw $3, 16($0)
sw $2, 20($0)
sw $2, 24($0)
sw $2, 28($0)
sw $1, 32($0)
sw $2, 36($0)
sw $3, 40($0)
sw $2, 44($0)
sw $2, 48($0)
sw $3, 52($0)
sw $4, 56($0)
sw $4, 60($0)
sw $2, 64($0)
sw $1, 68($0)
sw $4, 72($0)
sw $3, 76($0)
sw $4, 80($0)
sw $2, 84($0)
sw $2, 88($0)
sw $3, 92($0)
sw $1, 96($0)
sw $4, 100($0)
sw $1, 104($0)
sw $2, 108($0)
sw $1, 112($0)
sw $4, 116($0)
sw $3, 120($0)
sw $4, 124($0)
bgez $2, TAG1
multu $2, $2
lui $1, 13
srl $3, $1, 14
TAG1:
beq $3, $3, TAG2
lui $2, 2
mtlo $3
lui $2, 2
TAG2:
mfhi $1
lui $2, 7
sll $0, $0, 0
blez $2, TAG3
TAG3:
mflo $2
slti $3, $2, 10
beq $3, $3, TAG4
mfhi $2
TAG4:
mult $2, $2
addi $3, $2, 6
mthi $2
mtlo $3
TAG5:
multu $3, $3
ori $1, $3, 10
beq $3, $1, TAG6
lui $4, 2
TAG6:
addiu $2, $4, 9
sll $0, $0, 0
beq $4, $4, TAG7
sra $1, $2, 7
TAG7:
sb $1, -1024($1)
slt $2, $1, $1
sb $1, 0($2)
lui $4, 0
TAG8:
sh $4, 0($4)
sb $4, 0($4)
mult $4, $4
sll $1, $4, 13
TAG9:
mult $1, $1
subu $2, $1, $1
lhu $3, 0($2)
lui $2, 1
TAG10:
subu $2, $2, $2
mthi $2
add $2, $2, $2
mthi $2
TAG11:
mflo $3
mflo $2
lui $4, 2
mtlo $4
TAG12:
lui $2, 8
mfhi $2
mflo $1
lbu $1, 0($2)
TAG13:
srlv $2, $1, $1
mult $1, $2
lui $3, 7
bltz $3, TAG14
TAG14:
mfhi $1
lui $4, 4
lui $2, 4
mthi $3
TAG15:
lui $2, 11
xori $3, $2, 8
sll $0, $0, 0
sll $0, $0, 0
TAG16:
mthi $4
sll $0, $0, 0
lui $3, 10
sra $4, $3, 14
TAG17:
mflo $3
and $3, $4, $4
lbu $3, 0($3)
lbu $2, 0($3)
TAG18:
lbu $4, 0($2)
sh $4, 0($4)
xor $4, $2, $2
lui $2, 4
TAG19:
sll $0, $0, 0
bgtz $2, TAG20
lui $2, 8
sh $2, 0($2)
TAG20:
mthi $2
bgtz $2, TAG21
xori $1, $2, 9
xori $1, $1, 1
TAG21:
sll $0, $0, 0
sra $2, $1, 2
sll $0, $0, 0
mtlo $1
TAG22:
divu $2, $2
blez $2, TAG23
lui $2, 4
sll $0, $0, 0
TAG23:
bltz $4, TAG24
mfhi $2
xori $1, $4, 11
sb $2, 0($1)
TAG24:
bltz $1, TAG25
multu $1, $1
bgez $1, TAG25
sll $4, $1, 10
TAG25:
bne $4, $4, TAG26
lbu $4, -11264($4)
slt $1, $4, $4
add $2, $1, $4
TAG26:
lui $3, 6
sllv $1, $2, $3
lui $2, 9
mtlo $1
TAG27:
divu $2, $2
beq $2, $2, TAG28
mfhi $4
bne $4, $2, TAG28
TAG28:
multu $4, $4
mult $4, $4
bgez $4, TAG29
and $3, $4, $4
TAG29:
bne $3, $3, TAG30
or $4, $3, $3
sw $4, 0($4)
slt $4, $4, $4
TAG30:
mtlo $4
bne $4, $4, TAG31
ori $4, $4, 6
or $4, $4, $4
TAG31:
mthi $4
bne $4, $4, TAG32
xori $4, $4, 4
sh $4, 0($4)
TAG32:
bne $4, $4, TAG33
mtlo $4
blez $4, TAG33
srlv $4, $4, $4
TAG33:
sb $4, 0($4)
sb $4, 0($4)
mtlo $4
mfhi $1
TAG34:
lui $4, 13
lui $3, 6
sltiu $3, $3, 2
mflo $3
TAG35:
bne $3, $3, TAG36
mfhi $4
mtlo $3
beq $3, $3, TAG36
TAG36:
mthi $4
slt $4, $4, $4
mfhi $4
sh $4, 0($4)
TAG37:
blez $4, TAG38
lui $4, 0
andi $1, $4, 1
xori $1, $4, 10
TAG38:
sh $1, 0($1)
ori $1, $1, 11
mfhi $4
sh $4, 0($4)
TAG39:
bgez $4, TAG40
mflo $1
sh $4, 0($1)
bgez $4, TAG40
TAG40:
sh $1, 0($1)
bgez $1, TAG41
addi $1, $1, 14
slti $4, $1, 0
TAG41:
mflo $3
sh $4, 0($3)
lbu $3, 0($3)
lb $3, 0($4)
TAG42:
slti $1, $3, 10
div $3, $1
bgtz $1, TAG43
addiu $4, $1, 4
TAG43:
addiu $3, $4, 6
mtlo $4
lbu $2, 0($3)
mthi $2
TAG44:
mtlo $2
lui $4, 7
xori $2, $2, 0
ori $3, $2, 0
TAG45:
sw $3, 0($3)
sh $3, 0($3)
mtlo $3
mult $3, $3
TAG46:
mflo $3
bne $3, $3, TAG47
sw $3, 0($3)
sub $3, $3, $3
TAG47:
beq $3, $3, TAG48
sh $3, 0($3)
bltz $3, TAG48
sltiu $3, $3, 2
TAG48:
mult $3, $3
mthi $3
sh $3, 0($3)
mtlo $3
TAG49:
sb $3, 0($3)
beq $3, $3, TAG50
mtlo $3
lui $4, 2
TAG50:
slti $2, $4, 5
mfhi $4
multu $4, $4
mthi $2
TAG51:
nor $2, $4, $4
sub $1, $2, $4
bltz $1, TAG52
sh $1, 0($4)
TAG52:
mfhi $3
bltz $3, TAG53
lb $2, 0($3)
beq $1, $3, TAG53
TAG53:
and $3, $2, $2
multu $3, $2
mtlo $3
xori $3, $3, 5
TAG54:
subu $1, $3, $3
sb $1, 6($3)
beq $3, $1, TAG55
lw $1, 6($3)
TAG55:
mthi $1
lui $2, 5
sll $0, $0, 0
addiu $1, $2, 3
TAG56:
mult $1, $1
beq $1, $1, TAG57
lui $4, 12
lhu $4, 0($1)
TAG57:
sra $4, $4, 5
and $2, $4, $4
mfhi $2
bgez $2, TAG58
TAG58:
andi $3, $2, 13
mfhi $3
bltz $3, TAG59
mfhi $2
TAG59:
mflo $4
mflo $4
lui $4, 0
lui $4, 13
TAG60:
lui $4, 15
mtlo $4
mult $4, $4
bgez $4, TAG61
TAG61:
sll $0, $0, 0
sll $0, $0, 0
bgez $4, TAG62
divu $4, $4
TAG62:
lui $2, 12
sll $0, $0, 0
beq $2, $1, TAG63
andi $3, $2, 12
TAG63:
beq $3, $3, TAG64
lw $1, 0($3)
divu $1, $3
mfhi $2
TAG64:
sra $2, $2, 3
andi $2, $2, 2
mtlo $2
subu $4, $2, $2
TAG65:
and $1, $4, $4
mflo $4
lui $1, 14
lui $2, 0
TAG66:
slt $4, $2, $2
mtlo $4
sb $4, 0($4)
slt $1, $4, $2
TAG67:
lbu $4, 0($1)
sh $4, 0($4)
sh $4, 0($4)
mflo $1
TAG68:
lh $1, 0($1)
sb $1, 0($1)
mtlo $1
addu $4, $1, $1
TAG69:
lui $1, 13
lui $4, 1
mflo $1
multu $1, $4
TAG70:
beq $1, $1, TAG71
lw $3, 0($1)
mflo $1
addi $4, $1, 0
TAG71:
mult $4, $4
sll $0, $0, 0
lui $4, 2
lui $2, 10
TAG72:
mthi $2
bne $2, $2, TAG73
sll $0, $0, 0
mfhi $4
TAG73:
sll $0, $0, 0
mult $4, $2
lui $1, 1
mfhi $1
TAG74:
andi $1, $1, 1
lw $2, 0($1)
lui $1, 12
multu $2, $1
TAG75:
mtlo $1
sltiu $1, $1, 0
lw $4, 0($1)
blez $1, TAG76
TAG76:
lui $4, 0
addiu $3, $4, 0
srlv $2, $3, $4
multu $4, $2
TAG77:
nor $1, $2, $2
lbu $4, 1($1)
mflo $1
lh $1, 0($1)
TAG78:
lui $3, 6
lui $4, 4
sll $0, $0, 0
lbu $1, 0($1)
TAG79:
bgtz $1, TAG80
andi $3, $1, 1
lui $4, 1
addiu $1, $3, 0
TAG80:
lhu $3, 0($1)
lbu $3, 0($3)
bltz $3, TAG81
lw $4, 0($1)
TAG81:
sllv $1, $4, $4
mflo $1
bne $4, $1, TAG82
sh $4, 0($1)
TAG82:
beq $1, $1, TAG83
sw $1, 0($1)
mtlo $1
blez $1, TAG83
TAG83:
mtlo $1
blez $1, TAG84
lui $4, 8
sra $2, $4, 11
TAG84:
mflo $4
lbu $2, 0($2)
mfhi $2
sw $2, 0($2)
TAG85:
sw $2, 0($2)
lui $2, 7
sll $2, $2, 15
sltiu $2, $2, 13
TAG86:
mflo $1
bne $2, $1, TAG87
sb $2, 0($2)
sb $1, 0($2)
TAG87:
mflo $1
mthi $1
mthi $1
lui $1, 9
TAG88:
addiu $2, $1, 8
mfhi $4
sll $0, $0, 0
beq $4, $2, TAG89
TAG89:
mflo $2
lw $3, 0($2)
mflo $2
beq $3, $2, TAG90
TAG90:
sw $2, 0($2)
mult $2, $2
mthi $2
lui $4, 9
TAG91:
lui $2, 2
sll $0, $0, 0
sb $4, 0($3)
bgez $4, TAG92
TAG92:
lhu $1, 0($3)
lui $4, 7
mtlo $3
bgez $3, TAG93
TAG93:
multu $4, $4
sll $0, $0, 0
mtlo $4
mflo $3
TAG94:
sll $0, $0, 0
lui $1, 6
bltz $1, TAG95
div $1, $3
TAG95:
sll $0, $0, 0
sll $0, $0, 0
sll $0, $0, 0
mtlo $4
TAG96:
mfhi $4
mthi $4
subu $3, $4, $4
mflo $4
TAG97:
mflo $1
lui $1, 13
div $1, $1
bgez $1, TAG98
TAG98:
addiu $2, $1, 12
bgtz $2, TAG99
slti $4, $2, 8
mflo $4
TAG99:
mfhi $3
mthi $3
mthi $4
bne $3, $3, TAG100
TAG100:
mult $3, $3
mfhi $2
mult $2, $2
mflo $3
TAG101:
add $2, $3, $3
beq $2, $3, TAG102
multu $2, $2
sh $2, 0($3)
TAG102:
mthi $2
bgez $2, TAG103
srav $2, $2, $2
mtlo $2
TAG103:
lb $4, 0($2)
mtlo $4
andi $2, $4, 0
beq $2, $2, TAG104
TAG104:
sltiu $4, $2, 7
blez $2, TAG105
slt $2, $2, $2
bltz $4, TAG105
TAG105:
mult $2, $2
addi $4, $2, 0
bltz $4, TAG106
lw $3, 0($2)
TAG106:
bgez $3, TAG107
sllv $1, $3, $3
beq $1, $1, TAG107
mthi $3
TAG107:
lbu $2, 0($1)
mthi $1
mthi $1
mflo $3
TAG108:
beq $3, $3, TAG109
sh $3, 0($3)
lui $4, 9
mult $3, $4
TAG109:
mthi $4
mtlo $4
lui $1, 12
sll $0, $0, 0
TAG110:
sltu $2, $2, $2
sh $2, 0($2)
mult $2, $2
sllv $2, $2, $2
TAG111:
bgtz $2, TAG112
mthi $2
sb $2, 0($2)
sb $2, 0($2)
TAG112:
multu $2, $2
add $2, $2, $2
mfhi $2
addiu $4, $2, 1
TAG113:
mthi $4
bltz $4, TAG114
multu $4, $4
sltu $1, $4, $4
TAG114:
mflo $2
bne $2, $2, TAG115
mflo $2
lbu $1, 0($2)
TAG115:
multu $1, $1
slti $1, $1, 9
beq $1, $1, TAG116
subu $3, $1, $1
TAG116:
multu $3, $3
xor $3, $3, $3
multu $3, $3
bne $3, $3, TAG117
TAG117:
add $1, $3, $3
lui $4, 5
mtlo $3
lui $3, 15
TAG118:
beq $3, $3, TAG119
andi $3, $3, 9
blez $3, TAG119
lw $3, 0($3)
TAG119:
mflo $2
lb $4, 0($2)
sub $3, $4, $3
lui $1, 11
TAG120:
bgez $1, TAG121
xori $2, $1, 1
slt $1, $1, $1
addiu $3, $1, 15
TAG121:
addiu $4, $3, 6
lui $2, 5
div $3, $2
bltz $3, TAG122
TAG122:
sll $0, $0, 0
lui $3, 9
multu $3, $2
divu $3, $3
TAG123:
beq $3, $3, TAG124
lui $1, 11
mflo $4
lhu $1, 0($1)
TAG124:
sll $0, $0, 0
sra $2, $1, 15
mtlo $1
or $1, $1, $2
TAG125:
bgez $1, TAG126
sll $0, $0, 0
sw $1, 0($1)
sltu $4, $1, $1
TAG126:
bltz $4, TAG127
sb $4, 0($4)
or $3, $4, $4
or $3, $3, $3
TAG127:
div $3, $3
sb $3, 0($3)
bgez $3, TAG128
lui $3, 7
TAG128:
mult $3, $3
mtlo $3
lui $4, 7
srlv $2, $3, $4
TAG129:
mtlo $2
lui $2, 0
multu $2, $2
mthi $2
TAG130:
lb $3, 0($2)
lui $4, 11
mflo $4
sllv $3, $4, $3
TAG131:
mflo $2
subu $2, $3, $3
sllv $1, $2, $2
nor $2, $1, $2
TAG132:
mtlo $2
mtlo $2
mflo $3
sh $3, 1($2)
TAG133:
sll $0, $0, 0
lui $2, 13
mflo $4
sllv $3, $3, $4
TAG134:
bgez $3, TAG135
addu $4, $3, $3
addiu $2, $3, 11
mflo $3
TAG135:
sltiu $2, $3, 12
lh $3, 1($3)
addiu $1, $3, 13
addi $2, $2, 7
TAG136:
divu $2, $2
bltz $2, TAG137
lui $1, 7
beq $1, $1, TAG137
TAG137:
mtlo $1
mflo $4
sll $0, $0, 0
sll $0, $0, 0
TAG138:
lui $3, 13
sll $0, $0, 0
lui $4, 4
sll $0, $0, 0
TAG139:
mfhi $3
bgtz $3, TAG140
sll $0, $0, 0
sw $4, 0($3)
TAG140:
addiu $3, $3, 3
sb $3, 0($3)
slti $2, $3, 0
srlv $2, $3, $3
TAG141:
lui $3, 12
mfhi $2
mfhi $4
sll $0, $0, 0
TAG142:
sll $0, $0, 0
lui $1, 6
sll $0, $0, 0
blez $1, TAG143
TAG143:
sll $0, $0, 0
multu $3, $3
sll $0, $0, 0
beq $3, $3, TAG144
TAG144:
sll $0, $0, 0
sltu $1, $3, $3
sh $3, 0($1)
mult $3, $1
TAG145:
multu $1, $1
beq $1, $1, TAG146
mult $1, $1
sh $1, 0($1)
TAG146:
lui $3, 6
blez $3, TAG147
mfhi $2
mtlo $1
TAG147:
lh $4, 0($2)
blez $2, TAG148
lui $1, 2
mtlo $4
TAG148:
sll $0, $0, 0
mult $2, $2
addi $2, $2, 13
bgtz $1, TAG149
TAG149:
lbu $4, 0($2)
multu $4, $4
divu $4, $2
mthi $4
TAG150:
sb $4, 0($4)
beq $4, $4, TAG151
mthi $4
sh $4, 0($4)
TAG151:
bne $4, $4, TAG152
subu $4, $4, $4
blez $4, TAG152
mult $4, $4
TAG152:
addi $2, $4, 2
mflo $4
mtlo $4
mult $4, $4
TAG153:
mthi $4
lui $3, 14
divu $3, $3
sll $1, $4, 7
TAG154:
lb $4, 0($1)
bgtz $4, TAG155
multu $4, $1
lw $2, 0($1)
TAG155:
sll $0, $0, 0
bgez $3, TAG156
sltu $3, $3, $3
lui $4, 7
TAG156:
lb $1, 0($4)
sw $4, 0($4)
addiu $4, $4, 10
multu $4, $4
TAG157:
slt $4, $4, $4
xor $3, $4, $4
subu $1, $3, $4
slti $3, $3, 10
TAG158:
sb $3, 0($3)
lui $4, 14
subu $4, $3, $3
multu $3, $4
TAG159:
beq $4, $4, TAG160
mult $4, $4
mfhi $3
addiu $4, $3, 14
TAG160:
lbu $4, 0($4)
mflo $1
mult $4, $1
mfhi $1
TAG161:
bne $1, $1, TAG162
mfhi $1
mflo $1
lui $3, 2
TAG162:
bne $3, $3, TAG163
lui $2, 7
lui $2, 1
sll $2, $2, 12
TAG163:
bgez $2, TAG164
sltu $2, $2, $2
lb $1, 0($2)
divu $2, $1
TAG164:
add $4, $1, $1
bgtz $1, TAG165
sb $1, 0($1)
multu $1, $1
TAG165:
srav $2, $4, $4
mflo $3
add $1, $2, $3
mult $1, $4
TAG166:
bgtz $1, TAG167
mult $1, $1
xor $2, $1, $1
mflo $4
TAG167:
mtlo $4
mflo $3
beq $4, $4, TAG168
lui $4, 6
TAG168:
sll $0, $0, 0
lhu $1, 0($2)
lb $3, -256($1)
bne $3, $2, TAG169
TAG169:
addi $2, $3, 3
mflo $1
mthi $2
multu $2, $1
TAG170:
bgez $1, TAG171
mthi $1
lui $2, 13
mtlo $1
TAG171:
or $1, $2, $2
mthi $2
mflo $3
lw $1, 0($3)
TAG172:
div $1, $1
sb $1, -256($1)
beq $1, $1, TAG173
lb $2, -256($1)
TAG173:
lhu $1, 0($2)
slti $3, $1, 15
beq $3, $3, TAG174
slti $1, $1, 12
TAG174:
slt $1, $1, $1
mtlo $1
multu $1, $1
mflo $2
TAG175:
lui $3, 12
sll $3, $2, 3
beq $3, $3, TAG176
lui $1, 15
TAG176:
bgez $1, TAG177
sll $0, $0, 0
slti $1, $1, 1
mflo $4
TAG177:
addu $3, $4, $4
mflo $2
sra $1, $2, 14
mflo $2
TAG178:
add $4, $2, $2
mflo $3
blez $3, TAG179
lui $1, 13
TAG179:
div $1, $1
mfhi $1
lhu $3, 0($1)
sub $4, $3, $1
TAG180:
bgez $4, TAG181
mfhi $4
sh $4, 0($4)
lui $1, 3
TAG181:
mfhi $3
beq $1, $3, TAG182
lhu $3, 0($1)
mflo $3
TAG182:
bgez $3, TAG183
lh $2, -256($3)
beq $2, $2, TAG183
lui $2, 8
TAG183:
bltz $2, TAG184
mflo $3
mfhi $3
bne $3, $3, TAG184
TAG184:
sw $3, 0($3)
mthi $3
mult $3, $3
lui $3, 7
TAG185:
mtlo $3
div $3, $3
srlv $2, $3, $3
bne $2, $2, TAG186
TAG186:
sllv $3, $2, $2
mtlo $3
mult $3, $3
nor $1, $2, $3
TAG187:
bltz $1, TAG188
mtlo $1
mthi $1
mfhi $4
TAG188:
sw $4, 0($4)
sb $4, 0($4)
lw $1, 0($4)
xor $2, $4, $4
TAG189:
lh $2, 0($2)
mthi $2
ori $3, $2, 6
addu $3, $2, $2
TAG190:
sb $3, 0($3)
multu $3, $3
lui $1, 14
sll $0, $0, 0
TAG191:
sll $0, $0, 0
xori $3, $1, 2
lui $4, 12
mtlo $4
TAG192:
addu $1, $4, $4
blez $1, TAG193
sllv $4, $4, $1
beq $4, $1, TAG193
TAG193:
sll $0, $0, 0
bltz $4, TAG194
mult $4, $4
mtlo $4
TAG194:
or $4, $4, $4
bne $4, $4, TAG195
slti $2, $4, 7
lui $2, 0
TAG195:
mflo $1
mfhi $4
addiu $3, $1, 6
bne $3, $1, TAG196
TAG196:
subu $1, $3, $3
sll $0, $0, 0
multu $1, $1
lui $4, 7
TAG197:
srlv $3, $4, $4
beq $4, $4, TAG198
mthi $3
or $2, $3, $4
TAG198:
bne $2, $2, TAG199
lbu $3, 0($2)
addiu $2, $2, 8
mtlo $3
TAG199:
divu $2, $2
addiu $4, $2, 7
div $2, $4
lui $4, 0
TAG200:
mult $4, $4
mthi $4
lui $4, 2
sll $0, $0, 0
TAG201:
sll $0, $0, 0
lui $2, 12
mthi $2
sll $0, $0, 0
TAG202:
sll $0, $0, 0
mthi $4
multu $4, $4
mtlo $4
TAG203:
xor $3, $4, $4
mult $3, $4
xori $2, $3, 13
sb $4, 0($3)
TAG204:
div $2, $2
div $2, $2
or $3, $2, $2
lui $4, 12
TAG205:
mult $4, $4
lui $3, 4
mult $4, $4
sltiu $1, $4, 1
TAG206:
sltu $3, $1, $1
multu $1, $1
multu $3, $3
lui $2, 12
TAG207:
sll $0, $0, 0
bgez $2, TAG208
mult $1, $1
sll $1, $1, 11
TAG208:
addu $4, $1, $1
bgtz $4, TAG209
xori $1, $1, 3
mflo $3
TAG209:
sltu $2, $3, $3
sw $2, 0($3)
sra $4, $3, 15
sub $1, $3, $3
TAG210:
mfhi $2
bgtz $2, TAG211
lui $2, 8
lui $2, 9
TAG211:
sll $0, $0, 0
bgtz $2, TAG212
mflo $1
bgtz $1, TAG212
TAG212:
sw $1, 0($1)
mtlo $1
bltz $1, TAG213
multu $1, $1
TAG213:
lui $2, 15
bne $2, $2, TAG214
lui $4, 2
andi $2, $4, 0
TAG214:
sh $2, 0($2)
mtlo $2
blez $2, TAG215
addiu $4, $2, 14
TAG215:
bne $4, $4, TAG216
mtlo $4
sh $4, 0($4)
lui $1, 14
TAG216:
sll $3, $1, 4
mfhi $3
bne $1, $3, TAG217
lw $3, 0($3)
TAG217:
lb $1, 0($3)
lhu $4, 0($3)
mfhi $1
mtlo $1
TAG218:
lhu $1, 0($1)
add $2, $1, $1
sh $2, 0($2)
mtlo $1
TAG219:
add $2, $2, $2
and $1, $2, $2
nor $2, $1, $2
lui $1, 7
TAG220:
sll $0, $0, 0
div $1, $1
bltz $1, TAG221
addu $3, $1, $1
TAG221:
mflo $1
mult $1, $1
lui $2, 5
bne $1, $3, TAG222
TAG222:
mthi $2
sll $0, $0, 0
lui $2, 15
lui $4, 12
TAG223:
lui $4, 9
lui $4, 8
sll $0, $0, 0
bgez $4, TAG224
TAG224:
lui $2, 1
subu $2, $1, $2
mthi $2
bltz $1, TAG225
TAG225:
mflo $4
blez $4, TAG226
xori $1, $4, 1
mfhi $3
TAG226:
mtlo $3
beq $3, $3, TAG227
div $3, $3
sh $3, 0($3)
TAG227:
bne $3, $3, TAG228
mthi $3
mthi $3
bne $3, $3, TAG228
TAG228:
mthi $3
sll $0, $0, 0
slti $1, $3, 9
bgtz $1, TAG229
TAG229:
lbu $3, 0($1)
lbu $3, 0($1)
addu $2, $3, $3
mfhi $1
TAG230:
lui $1, 5
mtlo $1
lui $3, 6
sll $0, $0, 0
TAG231:
mtlo $3
lui $2, 15
divu $3, $3
srlv $3, $2, $2
TAG232:
srlv $3, $3, $3
mflo $1
beq $3, $3, TAG233
sll $0, $0, 0
TAG233:
slti $1, $1, 13
div $1, $1
beq $1, $1, TAG234
mfhi $1
TAG234:
sb $1, 0($1)
beq $1, $1, TAG235
lh $4, 0($1)
beq $4, $1, TAG235
TAG235:
lw $1, 0($4)
bgtz $1, TAG236
mtlo $1
lui $1, 12
TAG236:
lui $2, 1
bne $2, $2, TAG237
sll $0, $0, 0
bgtz $1, TAG237
TAG237:
mflo $3
sw $1, 0($3)
mthi $3
mfhi $2
TAG238:
mfhi $2
sub $3, $2, $2
bne $2, $2, TAG239
multu $2, $3
TAG239:
lui $2, 15
slti $3, $3, 5
lb $2, 0($3)
lbu $1, 0($2)
TAG240:
bgtz $1, TAG241
sh $1, 0($1)
lui $2, 4
andi $1, $2, 9
TAG241:
sb $1, 0($1)
bltz $1, TAG242
sb $1, 0($1)
bgez $1, TAG242
TAG242:
lui $3, 7
mflo $2
sll $1, $2, 6
bgtz $2, TAG243
TAG243:
lw $1, 0($1)
beq $1, $1, TAG244
sll $0, $0, 0
lb $2, 0($1)
TAG244:
add $3, $2, $2
lb $1, 0($2)
beq $2, $2, TAG245
lui $1, 11
TAG245:
slt $1, $1, $1
mult $1, $1
bgtz $1, TAG246
sll $3, $1, 7
TAG246:
nor $2, $3, $3
bne $2, $2, TAG247
nor $3, $3, $2
mthi $3
TAG247:
lh $1, 0($3)
slti $3, $1, 8
lbu $4, 0($3)
mflo $2
TAG248:
mtlo $2
sra $3, $2, 0
lw $2, 0($2)
mflo $2
TAG249:
lui $2, 14
lui $3, 11
srlv $2, $2, $2
bltz $2, TAG250
TAG250:
multu $2, $2
sll $0, $0, 0
sll $0, $0, 0
mult $2, $2
TAG251:
divu $2, $2
sll $0, $0, 0
lui $2, 3
sll $0, $0, 0
TAG252:
bgtz $4, TAG253
mtlo $4
mult $4, $4
beq $4, $4, TAG253
TAG253:
mtlo $4
addi $3, $4, 0
bne $4, $4, TAG254
lui $2, 15
TAG254:
mthi $2
lui $1, 8
blez $2, TAG255
addu $3, $2, $2
TAG255:
xori $3, $3, 1
bgtz $3, TAG256
sll $0, $0, 0
beq $3, $3, TAG256
TAG256:
sll $0, $0, 0
beq $4, $3, TAG257
nor $4, $4, $4
mfhi $2
TAG257:
subu $1, $2, $2
bgez $2, TAG258
xori $2, $1, 15
lui $1, 11
TAG258:
mult $1, $1
lw $4, 0($1)
lw $4, 0($1)
sra $2, $1, 3
TAG259:
bne $2, $2, TAG260
mfhi $4
lbu $1, 0($2)
blez $4, TAG260
TAG260:
addi $4, $1, 8
bgez $1, TAG261
sll $2, $4, 4
lb $2, 0($2)
TAG261:
divu $2, $2
mult $2, $2
bgtz $2, TAG262
slt $4, $2, $2
TAG262:
lui $3, 10
lui $1, 7
sll $0, $0, 0
bne $4, $3, TAG263
TAG263:
lui $4, 0
slt $3, $4, $4
bgez $4, TAG264
mflo $1
TAG264:
sllv $1, $1, $1
beq $1, $1, TAG265
lbu $1, -16384($1)
lui $4, 10
TAG265:
srav $2, $4, $4
blez $4, TAG266
mtlo $4
lw $3, 0($4)
TAG266:
lui $3, 9
sll $1, $3, 15
divu $1, $3
mult $3, $1
TAG267:
lui $1, 13
sll $0, $0, 0
sll $0, $0, 0
addiu $3, $1, 11
TAG268:
mult $3, $3
bgez $3, TAG269
mflo $4
blez $4, TAG269
TAG269:
sll $0, $0, 0
mflo $4
sll $0, $0, 0
beq $3, $4, TAG270
TAG270:
sll $0, $0, 0
andi $4, $3, 6
sh $4, 0($4)
sra $2, $3, 11
TAG271:
bltz $2, TAG272
sw $2, -416($2)
addiu $2, $2, 10
lui $1, 12
TAG272:
mfhi $2
mtlo $2
lui $3, 10
sll $0, $0, 0
TAG273:
bltz $3, TAG274
slti $4, $3, 9
sb $4, 0($4)
beq $3, $3, TAG274
TAG274:
mult $4, $4
lui $4, 3
divu $4, $4
lui $4, 15
TAG275:
sll $0, $0, 0
sll $0, $0, 0
xor $2, $3, $3
lui $2, 6
TAG276:
bne $2, $2, TAG277
sll $0, $0, 0
beq $2, $2, TAG277
mflo $1
TAG277:
sltiu $4, $1, 11
bltz $1, TAG278
srlv $4, $1, $1
nor $3, $4, $4
TAG278:
subu $3, $3, $3
blez $3, TAG279
andi $1, $3, 14
lh $1, 0($3)
TAG279:
addiu $2, $1, 10
lui $1, 13
sllv $2, $2, $1
lui $4, 9
TAG280:
slti $2, $4, 5
mfhi $1
bne $2, $4, TAG281
ori $1, $4, 10
TAG281:
beq $1, $1, TAG282
mult $1, $1
bne $1, $1, TAG282
lh $2, 0($1)
TAG282:
mthi $2
lbu $4, 0($2)
beq $2, $2, TAG283
lw $1, 0($4)
TAG283:
divu $1, $1
sb $1, -256($1)
mtlo $1
mthi $1
TAG284:
bgtz $1, TAG285
sll $3, $1, 4
xori $4, $1, 9
or $1, $4, $3
TAG285:
mtlo $1
subu $1, $1, $1
mtlo $1
lh $3, 0($1)
TAG286:
sll $0, $0, 0
mthi $2
bgtz $3, TAG287
sb $2, 0($2)
TAG287:
mult $2, $2
lhu $1, 0($2)
mflo $1
lbu $1, 0($2)
TAG288:
lb $3, 0($1)
mult $3, $3
mthi $3
mtlo $1
TAG289:
bne $3, $3, TAG290
sb $3, 0($3)
mfhi $1
add $2, $3, $3
TAG290:
mult $2, $2
sb $2, 0($2)
multu $2, $2
lb $1, 0($2)
TAG291:
ori $1, $1, 13
lui $2, 15
mtlo $1
srav $4, $1, $1
TAG292:
lhu $4, 0($4)
bltz $4, TAG293
mflo $4
mthi $4
TAG293:
mthi $4
bgtz $4, TAG294
mfhi $2
sb $2, 0($4)
TAG294:
or $2, $2, $2
lbu $2, 0($2)
beq $2, $2, TAG295
and $2, $2, $2
TAG295:
nor $1, $2, $2
and $3, $1, $2
mult $3, $2
xor $3, $2, $1
TAG296:
bltz $3, TAG297
addu $2, $3, $3
beq $2, $2, TAG297
lhu $1, 0($2)
TAG297:
sh $1, 1($1)
srl $4, $1, 1
sll $0, $0, 0
mflo $2
TAG298:
bltz $2, TAG299
mtlo $2
addiu $3, $2, 14
beq $3, $3, TAG299
TAG299:
lhu $2, 0($3)
addu $1, $2, $2
bgtz $1, TAG300
mflo $4
TAG300:
srav $3, $4, $4
mflo $2
srlv $1, $3, $2
and $2, $3, $3
TAG301:
sltiu $1, $2, 7
slt $3, $1, $2
addi $3, $3, 9
mfhi $2
TAG302:
sb $2, 0($2)
andi $1, $2, 1
lui $1, 6
lui $4, 2
TAG303:
bne $4, $4, TAG304
mfhi $4
srl $2, $4, 14
andi $1, $2, 3
TAG304:
bgez $1, TAG305
mult $1, $1
ori $2, $1, 2
lui $4, 6
TAG305:
bne $4, $4, TAG306
lui $1, 1
sb $1, 0($4)
mtlo $1
TAG306:
sll $0, $0, 0
sltu $3, $1, $1
bgez $1, TAG307
sll $0, $0, 0
TAG307:
multu $3, $3
mthi $3
mflo $1
lui $2, 13
TAG308:
mthi $2
bgez $2, TAG309
mflo $2
slti $3, $2, 9
TAG309:
xori $4, $3, 2
lh $3, 0($3)
lbu $1, 0($4)
lui $4, 13
TAG310:
xor $3, $4, $4
sh $4, 0($3)
mfhi $3
mtlo $3
TAG311:
divu $3, $3
divu $3, $3
sll $0, $0, 0
bgez $3, TAG312
TAG312:
sh $1, 0($1)
xor $3, $1, $1
mfhi $4
mult $4, $3
TAG313:
lhu $3, 0($4)
lui $2, 9
bltz $3, TAG314
lui $2, 8
TAG314:
mfhi $3
bltz $2, TAG315
mult $3, $3
sb $3, 0($3)
TAG315:
lh $2, 0($3)
mthi $2
mfhi $3
lui $2, 6
TAG316:
lui $2, 12
mtlo $2
multu $2, $2
div $2, $2
TAG317:
bltz $2, TAG318
sltu $4, $2, $2
addiu $4, $2, 2
mtlo $4
TAG318:
slt $3, $4, $4
lui $4, 5
mflo $3
sll $0, $0, 0
TAG319:
sll $0, $0, 0
sll $0, $0, 0
bgez $3, TAG320
lui $2, 14
TAG320:
mthi $2
lui $4, 5
lui $3, 3
sltiu $1, $4, 4
TAG321:
lui $3, 4
sll $4, $3, 7
sll $0, $0, 0
lui $2, 1
TAG322:
lui $4, 12
beq $2, $2, TAG323
mflo $3
div $3, $3
TAG323:
sll $0, $0, 0
sll $0, $0, 0
bgez $3, TAG324
and $4, $3, $3
TAG324:
lui $2, 9
sll $0, $0, 0
divu $4, $2
mfhi $3
TAG325:
sll $0, $0, 0
lui $2, 0
mflo $3
lui $1, 4
TAG326:
sll $0, $0, 0
sll $0, $0, 0
bne $1, $1, TAG327
sll $0, $0, 0
TAG327:
sw $2, 0($2)
mfhi $1
lui $3, 10
bne $1, $3, TAG328
TAG328:
div $3, $3
bne $3, $3, TAG329
sll $0, $0, 0
and $4, $3, $3
TAG329:
mthi $4
addiu $1, $4, 6
mflo $1
slti $4, $1, 4
TAG330:
lbu $1, 0($4)
mtlo $4
mtlo $4
sb $4, 0($4)
TAG331:
beq $1, $1, TAG332
lbu $3, 0($1)
lui $1, 9
beq $1, $1, TAG332
TAG332:
mtlo $1
lw $2, 0($1)
lh $3, 0($1)
beq $2, $2, TAG333
TAG333:
mthi $3
sltu $1, $3, $3
sltu $2, $1, $1
srav $3, $2, $2
TAG334:
slti $1, $3, 10
addiu $2, $1, 14
mtlo $1
ori $2, $2, 7
TAG335:
divu $2, $2
bgtz $2, TAG336
mthi $2
ori $3, $2, 10
TAG336:
mfhi $1
mfhi $1
beq $3, $1, TAG337
or $4, $1, $1
TAG337:
bgtz $4, TAG338
mflo $4
mfhi $1
mfhi $4
TAG338:
lb $2, 0($4)
beq $4, $2, TAG339
lb $2, 0($2)
mtlo $2
TAG339:
bgtz $2, TAG340
mtlo $2
lhu $2, 0($2)
xori $1, $2, 10
TAG340:
lbu $2, 0($1)
srl $3, $1, 1
mfhi $4
srav $1, $3, $3
TAG341:
sb $1, 0($1)
srlv $3, $1, $1
sub $1, $1, $3
mtlo $1
TAG342:
mthi $1
mflo $4
mthi $1
lui $1, 11
TAG343:
lui $3, 3
mtlo $3
addiu $1, $3, 1
bgez $1, TAG344
TAG344:
lui $4, 6
lui $1, 14
mflo $1
divu $1, $1
TAG345:
beq $1, $1, TAG346
mfhi $4
lui $4, 8
srl $3, $1, 11
TAG346:
sll $0, $0, 0
lui $3, 12
addu $2, $3, $3
mthi $2
TAG347:
lui $4, 9
sll $0, $0, 0
blez $3, TAG348
sll $0, $0, 0
TAG348:
lui $2, 12
bgtz $2, TAG349
and $2, $2, $3
addiu $1, $2, 12
TAG349:
sll $0, $0, 0
bgez $1, TAG350
lui $4, 2
lw $4, 0($1)
TAG350:
blez $4, TAG351
lui $1, 15
lui $4, 5
div $4, $4
TAG351:
mthi $4
sll $0, $0, 0
mult $4, $4
divu $4, $4
TAG352:
sll $0, $0, 0
sll $0, $0, 0
mflo $3
addu $2, $4, $3
TAG353:
divu $2, $2
div $2, $2
sll $0, $0, 0
sll $0, $0, 0
TAG354:
sll $0, $0, 0
mfhi $4
sll $0, $0, 0
multu $4, $4
TAG355:
lui $2, 3
multu $4, $2
mult $2, $4
lh $1, 0($4)
TAG356:
sw $1, -256($1)
mthi $1
xor $1, $1, $1
add $3, $1, $1
TAG357:
add $4, $3, $3
xor $2, $4, $3
lui $1, 0
addu $1, $3, $2
TAG358:
sub $3, $1, $1
bne $3, $1, TAG359
sh $3, 0($3)
lui $3, 1
TAG359:
sll $0, $0, 0
mtlo $3
addu $3, $1, $1
beq $3, $3, TAG360
TAG360:
mthi $3
mflo $4
sra $3, $4, 1
sll $0, $0, 0
TAG361:
mult $3, $3
addu $2, $3, $3
addiu $3, $3, 10
sll $0, $0, 0
TAG362:
bgez $1, TAG363
sltiu $3, $1, 4
bne $1, $1, TAG363
mult $1, $3
TAG363:
mfhi $3
slt $4, $3, $3
blez $3, TAG364
multu $3, $3
TAG364:
mtlo $4
lhu $3, 0($4)
sra $1, $4, 15
lw $4, 0($4)
TAG365:
mthi $4
mflo $3
sw $4, 0($4)
beq $3, $3, TAG366
TAG366:
mthi $3
mtlo $3
multu $3, $3
mtlo $3
TAG367:
lbu $4, 0($3)
mtlo $4
mflo $2
bne $2, $4, TAG368
TAG368:
or $1, $2, $2
mthi $1
mfhi $4
addi $2, $1, 5
TAG369:
mthi $2
bne $2, $2, TAG370
divu $2, $2
bne $2, $2, TAG370
TAG370:
lui $2, 12
sll $0, $0, 0
sll $0, $0, 0
addiu $3, $2, 15
TAG371:
sll $0, $0, 0
addiu $4, $3, 15
mfhi $2
addiu $3, $2, 5
TAG372:
multu $3, $3
slti $3, $3, 10
slti $3, $3, 14
blez $3, TAG373
TAG373:
mflo $4
mult $4, $3
lb $2, 0($3)
bne $2, $4, TAG374
TAG374:
lui $2, 4
lui $3, 4
sra $1, $2, 10
sra $1, $2, 0
TAG375:
mtlo $1
bne $1, $1, TAG376
sra $3, $1, 8
addiu $4, $1, 10
TAG376:
beq $4, $4, TAG377
addiu $4, $4, 15
sb $4, 0($4)
divu $4, $4
TAG377:
bne $4, $4, TAG378
sll $0, $0, 0
multu $4, $4
sll $0, $0, 0
TAG378:
addiu $2, $4, 10
sll $0, $0, 0
subu $2, $2, $2
blez $2, TAG379
TAG379:
mfhi $2
andi $2, $2, 15
lui $1, 2
blez $2, TAG380
TAG380:
mthi $1
addiu $2, $1, 2
subu $4, $1, $1
lui $2, 3
TAG381:
sll $4, $2, 1
sll $0, $0, 0
mflo $1
lui $4, 2
TAG382:
mthi $4
sll $0, $0, 0
mthi $4
sll $0, $0, 0
TAG383:
multu $4, $4
sll $0, $0, 0
mfhi $3
sll $0, $0, 0
TAG384:
bne $3, $3, TAG385
sltu $1, $3, $3
bgtz $3, TAG385
mfhi $1
TAG385:
beq $1, $1, TAG386
lbu $3, 0($1)
multu $3, $1
beq $3, $1, TAG386
TAG386:
lui $3, 12
ori $2, $3, 1
sll $0, $0, 0
bltz $2, TAG387
TAG387:
div $2, $2
mflo $4
sll $0, $0, 0
mflo $2
TAG388:
bne $2, $2, TAG389
mtlo $2
mfhi $1
sw $2, 0($1)
TAG389:
sltiu $1, $1, 6
lbu $1, 0($1)
lb $4, 0($1)
lb $1, 0($1)
TAG390:
xor $1, $1, $1
sw $1, 0($1)
sw $1, 0($1)
mthi $1
TAG391:
mfhi $3
multu $3, $1
lui $2, 15
lh $4, 0($3)
TAG392:
nor $4, $4, $4
lb $1, 1($4)
mtlo $4
mtlo $4
TAG393:
bgtz $1, TAG394
lw $3, 0($1)
lui $3, 1
or $3, $3, $3
TAG394:
lui $3, 12
addiu $2, $3, 4
divu $2, $2
lui $3, 12
TAG395:
addiu $3, $3, 0
sll $0, $0, 0
sll $0, $0, 0
subu $1, $4, $3
TAG396:
sll $0, $0, 0
lui $1, 13
xor $2, $2, $2
multu $2, $1
TAG397:
blez $2, TAG398
srlv $2, $2, $2
sltiu $3, $2, 2
mflo $3
TAG398:
lui $1, 3
bne $1, $1, TAG399
sll $0, $0, 0
div $3, $3
TAG399:
mflo $1
mtlo $1
lui $2, 2
bne $2, $1, TAG400
TAG400:
sll $0, $0, 0
sll $1, $2, 11
sll $0, $0, 0
mtlo $2
TAG401:
div $2, $2
mthi $2
lui $3, 6
sra $2, $3, 2
TAG402:
mfhi $1
mthi $1
ori $4, $2, 13
beq $4, $1, TAG403
TAG403:
lui $1, 2
nor $3, $4, $4
multu $3, $3
div $1, $3
TAG404:
mult $3, $3
mthi $3
bgez $3, TAG405
sll $0, $0, 0
TAG405:
beq $3, $3, TAG406
or $3, $3, $3
lui $4, 14
beq $3, $4, TAG406
TAG406:
sll $0, $0, 0
slti $2, $1, 2
addu $2, $4, $1
sll $0, $0, 0
TAG407:
beq $2, $2, TAG408
addu $4, $2, $2
mflo $1
sw $1, 0($2)
TAG408:
bgez $1, TAG409
lui $4, 2
div $1, $4
mflo $3
TAG409:
beq $3, $3, TAG410
mfhi $1
lui $4, 13
divu $1, $4
TAG410:
mfhi $1
subu $1, $4, $1
and $1, $1, $1
mflo $4
TAG411:
sll $0, $0, 0
blez $4, TAG412
srlv $2, $4, $1
lui $2, 10
TAG412:
lui $1, 11
beq $2, $1, TAG413
multu $2, $1
sll $0, $0, 0
TAG413:
sll $0, $0, 0
mtlo $1
sll $0, $0, 0
beq $1, $1, TAG414
TAG414:
lui $2, 5
mflo $3
mtlo $4
sll $0, $0, 0
TAG415:
sll $0, $0, 0
blez $3, TAG416
mult $3, $3
sll $0, $0, 0
TAG416:
multu $3, $3
ori $2, $3, 7
bne $3, $3, TAG417
andi $3, $2, 5
TAG417:
beq $3, $3, TAG418
slti $1, $3, 3
bltz $1, TAG418
div $1, $3
TAG418:
srl $1, $1, 10
bltz $1, TAG419
srl $1, $1, 14
sw $1, 0($1)
TAG419:
mult $1, $1
bgtz $1, TAG420
mthi $1
lui $2, 1
TAG420:
sll $0, $0, 0
addu $1, $3, $2
lui $1, 13
sll $0, $0, 0
TAG421:
bgtz $3, TAG422
lui $3, 2
bgtz $3, TAG422
mfhi $2
TAG422:
multu $2, $2
mult $2, $2
sll $0, $0, 0
mult $2, $2
TAG423:
lui $4, 0
add $3, $4, $2
lui $1, 7
mfhi $2
TAG424:
beq $2, $2, TAG425
mflo $1
bne $1, $1, TAG425
div $2, $1
TAG425:
bgtz $1, TAG426
mult $1, $1
lui $2, 4
multu $2, $2
TAG426:
divu $2, $2
multu $2, $2
mflo $4
mthi $2
TAG427:
slt $2, $4, $4
mfhi $1
sb $1, 0($4)
mfhi $2
TAG428:
sll $0, $0, 0
sll $0, $0, 0
mflo $4
bgtz $2, TAG429
TAG429:
mtlo $4
lui $3, 14
sll $0, $0, 0
sb $4, 0($4)
TAG430:
mtlo $1
sll $0, $0, 0
sltiu $4, $1, 1
lw $2, 0($4)
TAG431:
addi $4, $2, 14
sra $3, $4, 1
lhu $4, 0($4)
mtlo $4
TAG432:
bltz $4, TAG433
andi $4, $4, 3
lbu $4, 0($4)
addiu $2, $4, 5
TAG433:
ori $2, $2, 3
lb $4, 0($2)
xori $2, $4, 2
bne $2, $4, TAG434
TAG434:
mtlo $2
sh $2, 0($2)
bne $2, $2, TAG435
div $2, $2
TAG435:
blez $2, TAG436
lb $4, 0($2)
sll $3, $4, 0
xori $3, $3, 4
TAG436:
mult $3, $3
lh $4, 0($3)
sltiu $2, $4, 0
mflo $4
TAG437:
mflo $3
lw $3, 0($4)
and $4, $3, $3
mtlo $4
TAG438:
lui $3, 0
bne $4, $3, TAG439
sb $3, 0($4)
ori $2, $3, 5
TAG439:
slti $4, $2, 12
bgtz $4, TAG440
divu $2, $4
addi $4, $2, 2
TAG440:
mflo $2
bltz $4, TAG441
sw $2, 0($2)
or $3, $2, $2
TAG441:
blez $3, TAG442
lb $3, 0($3)
add $2, $3, $3
divu $3, $2
TAG442:
mflo $3
bne $2, $3, TAG443
xor $4, $3, $3
blez $3, TAG443
TAG443:
lbu $2, 0($4)
mult $2, $2
sb $2, 0($2)
lh $1, 0($2)
TAG444:
lui $2, 5
mflo $3
bgez $2, TAG445
sltu $3, $3, $2
TAG445:
bgtz $3, TAG446
divu $3, $3
lh $4, 0($3)
lui $4, 4
TAG446:
mult $4, $4
mtlo $4
mflo $3
and $2, $4, $4
TAG447:
subu $4, $2, $2
lhu $2, 0($2)
lbu $2, 0($2)
lb $3, 0($2)
TAG448:
sb $3, 0($3)
sh $3, 0($3)
and $3, $3, $3
mtlo $3
TAG449:
nor $2, $3, $3
bgez $3, TAG450
srl $3, $3, 3
beq $3, $3, TAG450
TAG450:
sb $3, 0($3)
beq $3, $3, TAG451
lui $4, 15
bgez $4, TAG451
TAG451:
mtlo $4
addiu $4, $4, 7
sll $0, $0, 0
beq $4, $4, TAG452
TAG452:
and $4, $4, $4
mthi $4
mtlo $4
lui $2, 7
TAG453:
sll $3, $2, 10
lui $4, 2
lui $2, 15
bne $3, $2, TAG454
TAG454:
sltiu $4, $2, 5
lui $2, 10
sll $0, $0, 0
or $2, $4, $2
TAG455:
mfhi $3
sll $2, $2, 6
sll $0, $0, 0
mflo $2
TAG456:
lui $3, 3
blez $3, TAG457
sll $0, $0, 0
beq $2, $3, TAG457
TAG457:
sll $0, $0, 0
sll $0, $0, 0
lui $2, 15
sll $0, $0, 0
TAG458:
srl $3, $3, 7
mthi $3
mthi $3
mfhi $3
TAG459:
bne $3, $3, TAG460
mtlo $3
lui $3, 10
sll $0, $0, 0
TAG460:
blez $3, TAG461
lui $2, 11
beq $3, $3, TAG461
sll $0, $0, 0
TAG461:
mthi $2
blez $2, TAG462
lui $4, 6
subu $1, $2, $2
TAG462:
multu $1, $1
mthi $1
bgtz $1, TAG463
addi $2, $1, 13
TAG463:
slti $3, $2, 11
lui $4, 8
lui $2, 4
mthi $3
TAG464:
slt $1, $2, $2
sltu $1, $2, $1
lui $3, 7
bne $2, $1, TAG465
TAG465:
mtlo $3
bne $3, $3, TAG466
sll $0, $0, 0
sll $0, $0, 0
TAG466:
sll $0, $0, 0
bltz $3, TAG467
mthi $3
slti $4, $3, 4
TAG467:
sllv $1, $4, $4
lh $1, 0($4)
bgtz $4, TAG468
lhu $4, 0($1)
TAG468:
addi $2, $4, 6
mfhi $3
sb $3, 0($4)
beq $4, $4, TAG469
TAG469:
addiu $4, $3, 0
mtlo $4
bgez $3, TAG470
mfhi $4
TAG470:
sll $0, $0, 0
sll $0, $0, 0
bne $2, $2, TAG471
sll $0, $0, 0
TAG471:
mfhi $4
slti $2, $4, 3
addu $2, $4, $2
mfhi $2
TAG472:
div $2, $2
mfhi $4
lui $2, 1
sll $0, $0, 0
TAG473:
bne $2, $2, TAG474
sll $0, $0, 0
bne $2, $1, TAG474
or $4, $2, $2
TAG474:
sll $0, $0, 0
div $4, $4
sll $0, $0, 0
sll $0, $0, 0
TAG475:
multu $3, $3
bgtz $3, TAG476
sll $0, $0, 0
lhu $3, 0($3)
TAG476:
andi $4, $3, 14
mtlo $3
lui $3, 5
sw $4, 0($4)
TAG477:
lui $2, 12
lui $2, 0
bgtz $3, TAG478
mfhi $2
TAG478:
bgez $2, TAG479
mflo $1
lui $2, 1
mflo $2
TAG479:
blez $2, TAG480
sltu $4, $2, $2
sb $2, 0($2)
bgez $2, TAG480
TAG480:
mfhi $3
add $3, $4, $3
lbu $3, 0($4)
blez $3, TAG481
TAG481:
mtlo $3
sll $2, $3, 5
mflo $2
mfhi $1
TAG482:
sb $1, 0($1)
xori $4, $1, 12
mflo $1
mtlo $1
TAG483:
bne $1, $1, TAG484
srlv $4, $1, $1
lui $4, 14
multu $4, $4
TAG484:
mthi $4
mthi $4
sltiu $1, $4, 6
srlv $4, $4, $1
TAG485:
bgtz $4, TAG486
mthi $4
lh $1, 0($4)
mult $4, $1
TAG486:
beq $1, $1, TAG487
sb $1, 0($1)
div $1, $1
beq $1, $1, TAG487
TAG487:
lui $3, 10
sll $0, $0, 0
slt $2, $1, $3
bltz $1, TAG488
TAG488:
addiu $1, $2, 11
beq $1, $2, TAG489
sh $1, 0($1)
sb $2, 0($2)
TAG489:
slti $4, $1, 9
bgtz $4, TAG490
multu $4, $1
sh $4, 0($1)
TAG490:
mfhi $2
sw $4, 0($4)
mfhi $3
bne $4, $2, TAG491
TAG491:
slt $1, $3, $3
multu $3, $1
lui $4, 7
sltiu $2, $3, 13
TAG492:
mult $2, $2
lb $3, 0($2)
mtlo $2
lui $1, 7
TAG493:
divu $1, $1
beq $1, $1, TAG494
lui $2, 9
lui $1, 5
TAG494:
mflo $1
sb $1, 0($1)
mflo $3
sb $1, 0($1)
TAG495:
mult $3, $3
addiu $2, $3, 7
slti $1, $2, 0
div $2, $2
TAG496:
xori $2, $1, 0
sllv $4, $2, $1
bne $1, $1, TAG497
mflo $1
TAG497:
mflo $1
lb $1, 0($1)
beq $1, $1, TAG498
mtlo $1
TAG498:
addiu $4, $1, 9
mflo $1
slt $4, $1, $1
mfhi $3
TAG499:
xori $4, $3, 8
mthi $4
divu $4, $4
mflo $3
TAG500:
mflo $1
multu $3, $3
sllv $1, $1, $3
lh $2, 0($1)
TAG501:
mult $2, $2
mflo $4
nor $3, $2, $2
lui $4, 9
TAG502:
lui $4, 13
bne $4, $4, TAG503
mult $4, $4
addu $1, $4, $4
TAG503:
sll $0, $0, 0
sll $0, $0, 0
mtlo $1
beq $3, $3, TAG504
TAG504:
divu $3, $3
multu $3, $3
mtlo $3
bne $3, $3, TAG505
TAG505:
lui $4, 1
srav $2, $3, $3
mflo $2
mflo $4
TAG506:
lui $1, 5
slt $2, $4, $1
lui $1, 7
bltz $1, TAG507
TAG507:
andi $4, $1, 6
mult $1, $4
beq $1, $4, TAG508
lw $3, 0($4)
TAG508:
mtlo $3
mfhi $2
divu $2, $3
multu $3, $3
TAG509:
lhu $3, 0($2)
sub $3, $3, $2
multu $2, $2
beq $3, $3, TAG510
TAG510:
mflo $1
bgez $3, TAG511
srl $4, $3, 4
bne $4, $3, TAG511
TAG511:
mfhi $1
sw $4, 0($1)
sb $1, 0($1)
sw $4, 0($1)
TAG512:
mthi $1
lui $4, 4
mthi $4
sll $0, $0, 0
TAG513:
andi $1, $4, 8
mthi $1
andi $2, $4, 0
lui $4, 5
TAG514:
beq $4, $4, TAG515
sll $0, $0, 0
mthi $4
mult $4, $4
TAG515:
lui $1, 6
mthi $1
lui $2, 11
beq $1, $1, TAG516
TAG516:
mthi $2
sll $0, $0, 0
mult $4, $4
lui $4, 7
TAG517:
bgtz $4, TAG518
sll $0, $0, 0
mfhi $3
bltz $3, TAG518
TAG518:
mfhi $2
blez $2, TAG519
mthi $2
lui $2, 4
TAG519:
multu $2, $2
mult $2, $2
mflo $1
multu $1, $2
TAG520:
bne $1, $1, TAG521
lw $2, 0($1)
bne $1, $2, TAG521
mflo $3
TAG521:
add $4, $3, $3
sw $4, 0($3)
beq $3, $4, TAG522
sb $3, 0($3)
TAG522:
bgez $4, TAG523
lui $2, 6
mfhi $4
sll $4, $2, 10
TAG523:
lbu $3, 0($4)
blez $3, TAG524
addiu $4, $3, 12
sw $3, 0($4)
TAG524:
mflo $1
lui $1, 2
sltiu $3, $1, 4
mtlo $1
TAG525:
xori $2, $3, 14
sh $2, 0($2)
mflo $3
sll $0, $0, 0
TAG526:
mthi $3
sll $0, $0, 0
sll $0, $0, 0
mthi $3
TAG527:
divu $1, $1
xor $4, $1, $1
mflo $4
sll $0, $0, 0
TAG528:
lbu $4, 0($4)
lui $4, 11
bltz $4, TAG529
sltiu $2, $4, 11
TAG529:
or $2, $2, $2
sw $2, 0($2)
sw $2, 0($2)
or $2, $2, $2
TAG530:
multu $2, $2
xori $4, $2, 4
sltiu $4, $4, 4
bne $4, $4, TAG531
TAG531:
multu $4, $4
sra $4, $4, 4
and $3, $4, $4
sw $4, 0($4)
TAG532:
mflo $4
bne $3, $4, TAG533
mflo $1
mthi $3
TAG533:
lui $1, 10
mfhi $4
mflo $2
lhu $4, 0($2)
TAG534:
sb $4, 0($4)
mult $4, $4
bne $4, $4, TAG535
lui $2, 10
TAG535:
sltiu $1, $2, 12
sb $1, 0($1)
slti $2, $2, 9
mtlo $1
TAG536:
lui $1, 14
and $2, $1, $1
bne $2, $2, TAG537
sll $0, $0, 0
TAG537:
subu $2, $2, $2
mtlo $2
addu $4, $2, $2
mtlo $2
TAG538:
bne $4, $4, TAG539
multu $4, $4
mult $4, $4
mfhi $2
TAG539:
mult $2, $2
beq $2, $2, TAG540
lui $3, 1
mfhi $3
TAG540:
sll $0, $0, 0
divu $3, $3
div $3, $3
bgez $3, TAG541
TAG541:
mflo $1
beq $3, $3, TAG542
addu $4, $3, $1
mthi $4
TAG542:
lui $3, 15
mult $4, $4
srl $2, $3, 6
mthi $3
TAG543:
addu $4, $2, $2
lw $1, -30720($4)
mfhi $3
lui $3, 9
TAG544:
bltz $3, TAG545
srlv $1, $3, $3
mthi $3
sll $0, $0, 0
TAG545:
slti $3, $4, 4
sb $4, 0($3)
lw $4, 0($3)
beq $4, $3, TAG546
TAG546:
lui $3, 6
blez $3, TAG547
mtlo $4
and $2, $3, $3
TAG547:
slti $4, $2, 1
mult $4, $2
lw $2, 0($4)
mthi $4
TAG548:
beq $2, $2, TAG549
lb $3, 0($2)
bltz $3, TAG549
lui $4, 8
TAG549:
bne $4, $4, TAG550
sh $4, 0($4)
slti $3, $4, 4
lbu $1, 0($4)
TAG550:
lw $2, 0($1)
bgtz $1, TAG551
sltiu $2, $2, 2
sltu $4, $2, $1
TAG551:
sh $4, 0($4)
bgez $4, TAG552
lui $4, 8
sw $4, 0($4)
TAG552:
sll $0, $0, 0
lui $3, 4
divu $4, $3
mflo $2
TAG553:
div $2, $2
multu $2, $2
srl $3, $2, 12
beq $2, $2, TAG554
TAG554:
xor $3, $3, $3
bne $3, $3, TAG555
mfhi $2
sw $3, 0($2)
TAG555:
srlv $3, $2, $2
mthi $2
sh $3, 0($2)
mfhi $1
TAG556:
bgez $1, TAG557
lb $3, 0($1)
ori $4, $3, 2
bne $1, $1, TAG557
TAG557:
sll $0, $0, 0
mfhi $3
mtlo $4
mthi $3
TAG558:
sw $3, 0($3)
sw $3, 0($3)
sb $3, 0($3)
ori $4, $3, 4
TAG559:
multu $4, $4
lw $4, 0($4)
sll $0, $0, 0
bgez $4, TAG560
TAG560:
divu $4, $4
sll $0, $0, 0
sll $0, $0, 0
mthi $4
TAG561:
mthi $3
mflo $3
mfhi $2
xori $3, $3, 9
TAG562:
beq $3, $3, TAG563
div $3, $3
multu $3, $3
lui $2, 2
TAG563:
mtlo $2
lui $1, 3
mfhi $1
sb $2, 0($1)
TAG564:
mult $1, $1
mfhi $2
srl $2, $2, 13
bgtz $2, TAG565
TAG565:
xor $1, $2, $2
mthi $2
xor $1, $1, $2
ori $1, $2, 9
TAG566:
lbu $4, 0($1)
lw $3, 0($4)
srlv $2, $3, $1
sw $3, 0($3)
TAG567:
and $2, $2, $2
sw $2, 0($2)
bgez $2, TAG568
sb $2, 0($2)
TAG568:
lui $3, 2
bgez $3, TAG569
ori $3, $2, 10
lui $1, 13
TAG569:
lbu $2, 0($1)
beq $2, $2, TAG570
lui $4, 3
slti $3, $2, 4
TAG570:
bgtz $3, TAG571
andi $1, $3, 12
sw $1, 0($3)
mtlo $3
TAG571:
slt $2, $1, $1
lbu $3, 0($1)
mtlo $2
addu $3, $2, $3
TAG572:
sw $3, 0($3)
lui $1, 13
bltz $1, TAG573
mtlo $3
TAG573:
lui $3, 1
multu $3, $3
mfhi $1
beq $1, $3, TAG574
TAG574:
or $3, $1, $1
div $3, $3
mfhi $4
beq $4, $1, TAG575
TAG575:
lui $1, 9
sll $4, $4, 7
div $4, $1
sll $0, $0, 0
TAG576:
mthi $3
lui $1, 3
sll $0, $0, 0
lui $3, 4
TAG577:
beq $3, $3, TAG578
mthi $3
mtlo $3
mfhi $3
TAG578:
sll $0, $0, 0
bne $3, $3, TAG579
lui $3, 15
lui $3, 7
TAG579:
addiu $4, $3, 4
mflo $3
bne $3, $3, TAG580
mflo $2
TAG580:
multu $2, $2
mtlo $2
sb $2, 0($2)
mfhi $3
TAG581:
mflo $3
lh $3, 0($3)
lui $2, 4
blez $3, TAG582
TAG582:
sll $0, $0, 0
mtlo $3
multu $2, $3
lui $3, 1
TAG583:
addiu $2, $3, 7
bne $3, $3, TAG584
sll $0, $0, 0
multu $4, $4
TAG584:
bgez $4, TAG585
sll $0, $0, 0
subu $4, $4, $2
slt $1, $2, $4
TAG585:
mthi $1
sll $0, $0, 0
bgtz $1, TAG586
addu $1, $1, $1
TAG586:
lui $1, 7
subu $2, $1, $1
sltiu $2, $2, 15
ori $2, $1, 1
TAG587:
sll $0, $0, 0
mult $1, $2
mult $2, $2
divu $2, $1
TAG588:
sll $0, $0, 0
slt $3, $1, $1
xor $3, $3, $3
multu $3, $3
TAG589:
slti $1, $3, 14
beq $3, $3, TAG590
sb $1, 0($1)
lui $1, 9
TAG590:
mult $1, $1
srav $2, $1, $1
or $1, $1, $1
bltz $1, TAG591
TAG591:
sb $1, 0($1)
mthi $1
mtlo $1
sb $1, 0($1)
TAG592:
mthi $1
mtlo $1
mtlo $1
bgtz $1, TAG593
TAG593:
mtlo $1
divu $1, $1
mfhi $1
sh $1, 0($1)
TAG594:
mflo $2
beq $2, $2, TAG595
mthi $2
mfhi $2
TAG595:
sltiu $3, $2, 10
sllv $1, $2, $2
mtlo $2
srlv $2, $1, $2
TAG596:
mflo $4
multu $2, $4
lui $4, 15
mthi $4
TAG597:
lui $2, 7
sll $0, $0, 0
beq $2, $2, TAG598
sll $0, $0, 0
TAG598:
bne $2, $2, TAG599
subu $1, $2, $2
mfhi $1
ori $2, $1, 4
TAG599:
divu $2, $2
addiu $2, $2, 14
beq $2, $2, TAG600
slt $4, $2, $2
TAG600:
sltiu $2, $4, 15
sb $2, 0($2)
lb $3, 0($4)
sb $2, 0($2)
TAG601:
lw $1, 0($3)
lui $2, 2
lui $1, 3
mtlo $1
TAG602:
div $1, $1
mult $1, $1
beq $1, $1, TAG603
mult $1, $1
TAG603:
divu $1, $1
mtlo $1
lui $3, 6
sll $3, $1, 0
TAG604:
xori $2, $3, 15
bne $2, $2, TAG605
lui $3, 10
mtlo $3
TAG605:
sll $0, $0, 0
ori $4, $3, 1
addiu $1, $4, 10
mflo $4
TAG606:
addu $3, $4, $4
multu $4, $3
beq $4, $3, TAG607
sltiu $4, $3, 11
TAG607:
lui $2, 14
sra $1, $2, 3
mtlo $4
bne $1, $2, TAG608
TAG608:
sltiu $2, $1, 5
sll $0, $0, 0
beq $1, $2, TAG609
mult $1, $2
TAG609:
bgez $1, TAG610
div $1, $1
divu $1, $1
addi $1, $1, 14
TAG610:
mthi $1
subu $2, $1, $1
blez $2, TAG611
lui $4, 9
TAG611:
bne $4, $4, TAG612
addu $4, $4, $4
sltiu $4, $4, 8
multu $4, $4
TAG612:
srav $2, $4, $4
mthi $4
lui $4, 11
mthi $4
TAG613:
sll $0, $0, 0
lh $2, 0($2)
sll $0, $0, 0
mfhi $3
TAG614:
blez $3, TAG615
andi $3, $3, 4
mthi $3
lbu $1, 0($3)
TAG615:
mthi $1
beq $1, $1, TAG616
mtlo $1
lui $1, 15
TAG616:
bgez $1, TAG617
sw $1, 0($1)
beq $1, $1, TAG617
mult $1, $1
TAG617:
beq $1, $1, TAG618
mult $1, $1
multu $1, $1
lui $3, 4
TAG618:
mult $3, $3
multu $3, $3
sll $1, $3, 2
sb $3, 0($1)
TAG619:
sb $1, 0($1)
mflo $4
addi $4, $4, 2
mult $1, $4
TAG620:
sll $1, $4, 3
srav $2, $4, $1
sltu $3, $1, $1
mtlo $2
TAG621:
lui $4, 14
bgez $4, TAG622
mtlo $4
sw $3, 0($3)
TAG622:
lui $1, 15
beq $1, $4, TAG623
lui $3, 13
mthi $4
TAG623:
sllv $1, $3, $3
mthi $1
mtlo $1
sltiu $1, $3, 8
TAG624:
beq $1, $1, TAG625
srl $1, $1, 6
add $4, $1, $1
beq $1, $1, TAG625
TAG625:
sll $0, $0, 0
bgtz $3, TAG626
lui $3, 13
lhu $4, 0($3)
TAG626:
addu $2, $4, $4
bne $2, $4, TAG627
addu $4, $4, $4
mfhi $3
TAG627:
sll $0, $0, 0
sll $0, $0, 0
bne $3, $3, TAG628
sll $0, $0, 0
TAG628:
multu $2, $2
lui $2, 12
mfhi $4
bltz $2, TAG629
TAG629:
mthi $4
lui $4, 14
mfhi $4
div $4, $4
TAG630:
sh $4, -784($4)
bne $4, $4, TAG631
mtlo $4
lui $1, 7
TAG631:
sll $0, $0, 0
mtlo $2
sll $0, $0, 0
sll $0, $0, 0
TAG632:
sll $0, $0, 0
bgez $3, TAG633
mult $3, $3
xori $4, $3, 4
TAG633:
beq $4, $4, TAG634
mtlo $4
xori $1, $4, 2
mtlo $4
TAG634:
sll $0, $0, 0
lui $3, 14
sll $0, $0, 0
addiu $3, $2, 3
TAG635:
multu $3, $3
mtlo $3
bltz $3, TAG636
mult $3, $3
TAG636:
blez $3, TAG637
mthi $3
mfhi $1
mtlo $1
TAG637:
sll $0, $0, 0
mfhi $2
sll $0, $0, 0
srlv $3, $1, $2
TAG638:
sll $0, $0, 0
mtlo $3
addiu $4, $3, 12
mthi $4
TAG639:
mtlo $4
addiu $1, $4, 12
beq $1, $4, TAG640
sll $0, $0, 0
TAG640:
beq $3, $3, TAG641
sll $0, $0, 0
xor $1, $4, $3
lbu $3, 0($3)
TAG641:
mthi $3
bltz $3, TAG642
div $3, $3
sll $0, $0, 0
TAG642:
divu $3, $3
addu $2, $3, $3
multu $3, $3
sll $0, $0, 0
TAG643:
mult $2, $2
lui $4, 5
srav $4, $2, $4
bne $4, $4, TAG644
TAG644:
div $4, $4
bgtz $4, TAG645
mthi $4
multu $4, $4
TAG645:
sll $0, $0, 0
sll $0, $0, 0
blez $4, TAG646
sll $0, $0, 0
TAG646:
sll $0, $0, 0
sll $0, $0, 0
sll $0, $0, 0
sll $0, $0, 0
TAG647:
slt $1, $4, $4
sra $1, $4, 14
mtlo $1
sb $4, 0($1)
TAG648:
lhu $1, 0($1)
mflo $1
subu $1, $1, $1
mult $1, $1
TAG649:
bltz $1, TAG650
xori $3, $1, 7
blez $1, TAG650
lui $1, 14
TAG650:
sll $0, $0, 0
mfhi $3
xori $1, $2, 4
bltz $1, TAG651
TAG651:
mtlo $1
subu $3, $1, $1
andi $1, $1, 0
sh $3, 0($1)
TAG652:
beq $1, $1, TAG653
mfhi $4
div $4, $4
lui $2, 13
TAG653:
mthi $2
bltz $2, TAG654
lui $1, 6
bltz $1, TAG654
TAG654:
mtlo $1
lui $1, 15
lui $2, 5
sll $0, $0, 0
TAG655:
lui $4, 9
lui $1, 11
blez $4, TAG656
sll $0, $0, 0
TAG656:
sll $0, $0, 0
mfhi $2
sll $0, $0, 0
beq $1, $1, TAG657
TAG657:
lui $1, 12
sll $0, $0, 0
sll $0, $0, 0
bltz $2, TAG658
TAG658:
mult $2, $2
mfhi $2
sb $2, 0($2)
lui $3, 15
TAG659:
mtlo $3
mfhi $3
beq $3, $3, TAG660
multu $3, $3
TAG660:
lui $2, 2
mthi $2
lui $1, 0
mflo $1
TAG661:
multu $1, $1
addiu $4, $1, 4
sb $1, 0($4)
multu $4, $4
TAG662:
div $4, $4
lui $3, 6
andi $3, $3, 3
mflo $1
TAG663:
beq $1, $1, TAG664
sb $1, 0($1)
or $2, $1, $1
bltz $2, TAG664
TAG664:
sll $0, $0, 0
sll $0, $0, 0
bne $2, $1, TAG665
mtlo $1
TAG665:
sb $1, 0($1)
sb $1, 0($1)
bltz $1, TAG666
div $1, $1
TAG666:
mult $1, $1
mtlo $1
addu $3, $1, $1
mflo $2
TAG667:
mtlo $2
mflo $4
sll $2, $4, 4
sb $2, 0($4)
TAG668:
beq $2, $2, TAG669
lui $4, 5
mtlo $2
blez $2, TAG669
TAG669:
sll $0, $0, 0
bne $2, $2, TAG670
sltiu $3, $2, 7
sw $2, 0($2)
TAG670:
sb $3, 0($3)
mflo $4
lui $3, 1
mfhi $1
TAG671:
sllv $1, $1, $1
sh $1, 0($1)
addi $2, $1, 15
lb $1, 0($2)
TAG672:
sb $1, 0($1)
lui $2, 1
addu $1, $2, $1
beq $1, $1, TAG673
TAG673:
mflo $1
mfhi $1
addiu $2, $1, 12
mthi $1
TAG674:
bne $2, $2, TAG675
multu $2, $2
mflo $3
bgtz $3, TAG675
TAG675:
mthi $3
mfhi $3
slt $4, $3, $3
lhu $3, -144($3)
TAG676:
lui $2, 8
mfhi $2
sw $2, -144($2)
lb $4, -144($2)
TAG677:
mtlo $4
mthi $4
xori $3, $4, 2
bgtz $3, TAG678
TAG678:
mflo $3
sw $3, 112($3)
sltiu $4, $3, 10
sb $3, 112($3)
TAG679:
lui $4, 8
mfhi $1
sll $3, $1, 15
multu $1, $3
TAG680:
bgez $3, TAG681
lui $4, 6
addiu $3, $3, 13
lui $1, 1
TAG681:
lui $4, 14
bne $1, $1, TAG682
srl $1, $1, 11
multu $1, $4
TAG682:
bltz $1, TAG683
mfhi $2
multu $1, $2
bltz $2, TAG683
TAG683:
mflo $3
slti $2, $2, 4
lb $3, 0($2)
bne $3, $2, TAG684
TAG684:
mfhi $3
mult $3, $3
lui $2, 12
sll $0, $0, 0
TAG685:
sltiu $3, $1, 15
beq $1, $1, TAG686
lui $1, 4
multu $1, $1
TAG686:
mult $1, $1
bgez $1, TAG687
sll $0, $0, 0
sltu $1, $1, $3
TAG687:
mult $1, $1
lui $1, 2
mfhi $2
lui $1, 14
TAG688:
lui $3, 5
mflo $3
mfhi $1
bne $3, $1, TAG689
TAG689:
lui $3, 3
beq $1, $3, TAG690
lui $4, 6
mthi $3
TAG690:
mfhi $4
divu $4, $4
srl $3, $4, 12
bltz $4, TAG691
TAG691:
lui $2, 6
multu $3, $3
srlv $3, $2, $2
mflo $2
TAG692:
sll $0, $0, 0
lui $3, 10
bgez $1, TAG693
srlv $4, $3, $3
TAG693:
mtlo $4
bgtz $4, TAG694
lui $2, 8
lw $3, 0($2)
TAG694:
sltu $1, $3, $3
and $4, $3, $3
bgtz $1, TAG695
mflo $3
TAG695:
sll $0, $0, 0
divu $3, $3
sra $1, $3, 2
mfhi $4
TAG696:
srlv $4, $4, $4
mult $4, $4
lui $3, 7
sll $0, $0, 0
TAG697:
mtlo $3
mtlo $3
lui $4, 7
bne $3, $4, TAG698
TAG698:
sll $0, $0, 0
subu $2, $4, $4
beq $2, $4, TAG699
sw $4, 0($2)
TAG699:
bgez $2, TAG700
sll $3, $2, 11
blez $2, TAG700
slt $1, $3, $3
TAG700:
sll $0, $0, 0
sll $0, $0, 0
beq $1, $1, TAG701
sll $0, $0, 0
TAG701:
xori $1, $1, 9
slt $2, $1, $1
multu $1, $1
lui $1, 11
TAG702:
bltz $1, TAG703
addu $1, $1, $1
sllv $2, $1, $1
sll $0, $0, 0
TAG703:
slti $4, $3, 3
mfhi $2
mult $2, $4
beq $2, $3, TAG704
TAG704:
sltiu $1, $2, 10
mtlo $2
addiu $1, $2, 10
lw $2, 0($1)
TAG705:
sb $2, 0($2)
lui $4, 6
bne $4, $2, TAG706
mflo $3
TAG706:
lui $1, 15
mflo $1
mflo $1
lui $4, 8
TAG707:
sll $0, $0, 0
mfhi $1
mfhi $4
bne $4, $4, TAG708
TAG708:
mfhi $4
addu $4, $4, $4
sltiu $2, $4, 7
beq $4, $4, TAG709
TAG709:
or $4, $2, $2
lbu $3, 0($4)
mtlo $2
xor $2, $4, $2
TAG710:
mfhi $4
mflo $1
lbu $3, 0($2)
bne $1, $3, TAG711
TAG711:
mflo $4
sb $3, 0($4)
divu $3, $4
sh $3, 0($3)
TAG712:
lb $3, 0($4)
sb $4, 0($4)
bgtz $4, TAG713
divu $3, $4
TAG713:
lui $2, 12
xori $2, $2, 9
blez $2, TAG714
lui $2, 14
TAG714:
sll $0, $0, 0
mult $2, $2
mthi $2
bgtz $2, TAG715
TAG715:
mthi $2
andi $1, $2, 4
mthi $2
or $4, $1, $1
TAG716:
bgez $4, TAG717
sw $4, 0($4)
lw $1, 0($4)
mflo $1
TAG717:
sh $1, 0($1)
lbu $2, 0($1)
add $2, $1, $1
mtlo $2
TAG718:
mtlo $2
mult $2, $2
sh $2, 0($2)
lui $4, 7
TAG719:
div $4, $4
sll $0, $0, 0
addi $3, $1, 9
mflo $1
TAG720:
lui $2, 0
lb $1, 0($2)
mflo $4
blez $4, TAG721
TAG721:
mflo $4
beq $4, $4, TAG722
sb $4, 0($4)
mult $4, $4
TAG722:
mfhi $1
xori $2, $4, 10
mfhi $4
mult $4, $4
TAG723:
srl $4, $4, 4
mfhi $2
sb $2, 0($4)
lui $1, 9
TAG724:
lui $1, 3
addiu $1, $1, 7
subu $4, $1, $1
subu $1, $1, $1
TAG725:
addiu $2, $1, 14
sb $2, 0($1)
beq $2, $1, TAG726
lb $3, 0($2)
TAG726:
lui $1, 13
addiu $1, $3, 5
srav $3, $1, $3
bne $3, $3, TAG727
TAG727:
lui $1, 1
slt $4, $1, $3
mfhi $2
mflo $1
TAG728:
lbu $1, 0($1)
lui $1, 1
subu $3, $1, $1
bne $1, $1, TAG729
TAG729:
mflo $4
lui $4, 15
ori $4, $4, 15
srav $2, $4, $4
TAG730:
addu $3, $2, $2
divu $2, $2
ori $2, $2, 11
beq $3, $2, TAG731
TAG731:
lbu $3, 0($2)
lui $3, 4
srav $3, $3, $3
sltiu $3, $3, 4
TAG732:
mthi $3
bne $3, $3, TAG733
lw $3, 0($3)
mflo $1
TAG733:
subu $2, $1, $1
sll $2, $1, 12
sltu $1, $2, $1
div $1, $2
TAG734:
mflo $3
lui $2, 12
addi $4, $3, 5
sb $3, 0($1)
TAG735:
lui $4, 10
mflo $4
bne $4, $4, TAG736
mtlo $4
TAG736:
lui $3, 10
srav $2, $4, $4
mflo $4
lui $3, 9
TAG737:
mfhi $2
srl $3, $3, 0
bgez $3, TAG738
sll $0, $0, 0
TAG738:
bgez $1, TAG739
andi $1, $1, 10
bgez $1, TAG739
sh $1, 0($1)
TAG739:
sb $1, 0($1)
bne $1, $1, TAG740
add $2, $1, $1
lhu $4, 0($1)
TAG740:
sh $4, -256($4)
div $4, $4
xor $1, $4, $4
mflo $4
TAG741:
lui $1, 9
sb $4, 0($4)
sb $4, 0($4)
blez $1, TAG742
TAG742:
lui $4, 3
ori $2, $1, 2
mthi $1
mthi $1
TAG743:
beq $2, $2, TAG744
addiu $3, $2, 2
sh $2, 0($3)
lw $3, 0($2)
TAG744:
mflo $4
lui $4, 11
sll $0, $0, 0
bne $4, $3, TAG745
TAG745:
divu $4, $4
addu $3, $4, $4
beq $3, $3, TAG746
addu $2, $3, $4
TAG746:
bgez $2, TAG747
addiu $2, $2, 2
bne $2, $2, TAG747
mtlo $2
TAG747:
mult $2, $2
sll $0, $0, 0
blez $2, TAG748
mthi $2
TAG748:
sll $0, $0, 0
bltz $2, TAG749
div $2, $2
lui $3, 15
TAG749:
mfhi $2
mfhi $3
mflo $2
bne $2, $2, TAG750
TAG750:
nop
nop
test_end:
beq $0, $0, test_end
nop |
oeis/084/A084774.asm | neoneye/loda-programs | 11 | 99303 | <reponame>neoneye/loda-programs
; A084774: Coefficients of 1/sqrt(1-14*x+9*x^2); also, a(n) is the central coefficient of (1+7x+10x^2)^n.
; Submitted by <NAME>
; 1,7,69,763,8881,106407,1298949,16065483,200630241,2524253767,31947470149,406281388443,5187375332881,66454791792487,853788052488069,10996378059281643,141934540736139201,1835494145265388167,23776671158743933509,308463567293772941883,4007237155152740025201,52121601019807488461607,678692458392644825553669,8846436843120053797130763,115416182604134175848600481,1507076811004163627835588807,19694530017021393291206542149,257556098612591208226818494683,3370475970418264878484354668241
mov $1,1
mov $3,$0
mov $4,1
lpb $3
mul $1,5
mul $1,$3
mul $1,$3
add $2,1
add $5,$4
div $1,$5
add $2,$1
mul $2,2
sub $3,1
add $4,2
lpe
mov $0,$2
div $0,2
add $0,1
|
src/elf.adb | patrickf2000/ada-asm | 0 | 28103 | <reponame>patrickf2000/ada-asm<filename>src/elf.adb
with Ada.Text_IO;
with Ada.Containers.Vectors;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Ada.Streams.Stream_IO; use Ada.Streams.Stream_IO;
with Utils; use Utils;
package body Elf is
-- Adds a symbol to the symbol table
procedure elf_add_symbol(symtab : in out Elf_Symtab_Vector.Vector; name_pos, lc : Integer; is_data, is_global : Boolean) is
symbol : Elf64_Sym := (
st_name => Elf64_Word(name_pos),
st_info => 16, -- STB_GLOBAL, STT_NOTYPE
st_other => 0, -- STV_DEFAULT
st_shndx => 5,
st_value => Elf64_Addr(lc),
st_size => 0
);
begin
if is_data then
symbol.st_shndx := 4;
end if;
symtab.Append(symbol);
end elf_add_symbol;
procedure build_elf(writer : Stream_Access; code_size : Integer) is
-- Returns a the shstrtab function
function elf_header_shstrtab(offset, size : Integer) return Elf64_Shdr is
shstrtab_header : Elf64_Shdr := (
sh_name => 1,
sh_type => 3, -- SHT_STRTAB
sh_flags => 0,
sh_addr => 0,
sh_offset => Elf64_Off(offset),
sh_size => Elf64_Xword(size),
sh_link => 0,
sh_info => 0,
sh_addralign => 1,
sh_entsize => 0
);
begin
return shstrtab_header;
end elf_header_shstrtab;
-- Returns a string table
function elf_header_strtab(offset, size, name_pos : Integer) return Elf64_Shdr is
strtab_header : Elf64_Shdr := (
sh_name => Elf64_Word(name_pos),
sh_type => 3, -- SHT_STRTAB
sh_flags => 0,
sh_addr => 0,
sh_offset => Elf64_Off(offset),
sh_size => Elf64_Xword(size),
sh_link => 0,
sh_info => 0,
sh_addralign => 1,
sh_entsize => 0
);
begin
return strtab_header;
end elf_header_strtab;
-- Returns the symtab header
function elf_header_symtab(offset, size, name_pos, start_pos : Integer) return Elf64_Shdr is
symtab_header : Elf64_Shdr := (
sh_name => Elf64_Word(name_pos),
sh_type => 2, -- SHT_SYMTAB
sh_flags => 0,
sh_addr => 0,
sh_offset => Elf64_Off(offset),
sh_size => Elf64_Xword(size) * Elf64_Sym_Size,
sh_link => 3,
sh_info => Elf64_Word(start_pos),
sh_addralign => 8,
sh_entsize => Elf64_Sym_Size
);
begin
return symtab_header;
end elf_header_symtab;
-- Returns the data header
function elf_header_data(offset, size, name_pos : Integer) return Elf64_Shdr is
data_header : Elf64_Shdr := (
sh_name => Elf64_Word(name_pos),
sh_type => 1, -- SHT_PROGBITS
sh_flags => 3, -- SHF_WRITE | SHF_ALLOC
sh_addr => 0,
sh_offset => Elf64_Off(offset),
sh_size => Elf64_Xword(size),
sh_link => 0,
sh_info => 0,
sh_addralign => 4,
sh_entsize => 0
);
begin
return data_header;
end elf_header_data;
-- Returns the text header
function elf_header_text(offset, size, name_pos : Integer) return Elf64_Shdr is
text_header : Elf64_Shdr := (
sh_name => Elf64_Word(name_pos),
sh_type => 1, -- SHT_PROGBITS
sh_flags => 6, -- SHF_WRITE | SHF_ALLOC
sh_addr => 0,
sh_offset => Elf64_Off(offset),
sh_size => Elf64_Xword(size),
sh_link => 0,
sh_info => 0,
sh_addralign => 16,
sh_entsize => 0
);
begin
return text_header;
end elf_header_text;
-- Generates the default symbol table
procedure elf_generate_symtab(symtab : in out Elf_Symtab_Vector.Vector) is
null_symbol : Elf64_Sym := (
st_name => 0,
st_info => 0,
st_other => 0,
st_shndx => 0,
st_value => 0,
st_size => 0
);
file_symbol : Elf64_Sym := (
st_name => 1,
st_info => 4, -- STB_LOCAL, STT_FILE
st_other => 0, -- STV_DEFAULT
st_shndx => 65521, -- SHN_ABS
st_value => 0,
st_size => 0
);
data_symbol : Elf64_Sym := (
st_name => 0,
st_info => 3, -- STB_LOCAL, STT_SECTION
st_other => 0, -- STV_DEFAULT
st_shndx => 4,
st_value => 0,
st_size => 0
);
text_symbol : Elf64_Sym := (
st_name => 0,
st_info => 3, -- STB_LOCAL, STT_SECTION
st_other => 0, -- STV_DEFAULT
st_shndx => 5,
st_value => 0,
st_size => 0
);
begin
symtab.Append(null_symbol);
symtab.Append(file_symbol);
symtab.Append(data_symbol);
symtab.Append(text_symbol);
end elf_generate_symtab;
-- Sorts the symbol table so the global symbols are last
-- TODO: Finish this
function elf_symtab_sort(symtab : in out Elf_Symtab_Vector.Vector) return Integer is
global_start : Integer := Integer(Elf_Symtab_Vector.Length(symtab)) - 1;
begin
return global_start;
end elf_symtab_sort;
-- Returns the length of a string table
function get_table_length(strtab : Str_Vector.Vector) return Integer is
size : Integer := 1;
begin
for str of strtab loop
size := size + Length(str) + 1;
end loop;
return size;
end get_table_length;
-- Returns the position of an element in the string table
function get_str_pos(strtab : Str_Vector.Vector; to_find : String) return Integer is
pos : Integer := 1;
begin
for str of strtab loop
if To_String(str) = to_find then
return pos;
else
pos := pos + Length(str) + 1;
end if;
end loop;
return pos;
end get_str_pos;
------------------------------------
-- Local test
header_str : elf_header_array :=
(16#7F#, 16#45#, 16#4C#, 16#46#, 2, 1, 1, 3,
1, 0, 0, 0, 0, 0, 0, 0 );
header : Elf64_Header := (
e_ident => header_str,
e_type => 1,
e_machine => 62, -- x86-64
e_version => 1,
e_entry => 0,
e_phoff => 0,
e_shoff => 64,
e_flags => 0,
e_ehsize => 64,
e_phentsize => 0,
e_phnum => 0,
e_shentsize => 64,
e_shnum => 6,
e_shstrndx => 1
);
null_header : Elf64_Shdr := (
sh_name => 0,
sh_type => 0,
sh_flags => 0,
sh_addr => 0,
sh_offset => 0,
sh_size => 0,
sh_link => 0,
sh_info => 0,
sh_addralign => 0,
sh_entsize => 0
);
shstrtab_header : Elf64_Shdr;
symtab_header : Elf64_Shdr;
strtab_header : Elf64_Shdr;
data_header : Elf64_Shdr;
text_header : Elf64_Shdr;
shstrtable, strtab : Str_Vector.Vector;
shstrtab_size, strtab_size : Integer := 1;
symtab : Elf_Symtab_Vector.Vector;
symtab_size : Integer := 0;
global_start : Integer := 4;
offset : Integer := 64 * 7;
name_pos : Integer := 0;
begin
-- Append the section names
shstrtable.Append(To_Unbounded_String(".shstrtab"));
shstrtable.Append(To_Unbounded_String(".symtab"));
shstrtable.Append(To_Unbounded_String(".strtab"));
shstrtable.Append(To_Unbounded_String(".rela.text"));
shstrtable.Append(To_Unbounded_String(".data"));
shstrtable.Append(To_Unbounded_String(".text"));
-- Add the file name to the regular string table
strtab.Append(To_Unbounded_String("first.asm"));
strtab.Append(To_Unbounded_String("_start"));
-- Generate the default symbol table
elf_generate_symtab(symtab);
-- Add teh start symbol
name_pos := get_str_pos(strtab, "_start");
elf_add_symbol(symtab, name_pos, 0, false, true);
-- Create the headers
shstrtab_size := get_table_length(shstrtable);
shstrtab_header := elf_header_shstrtab(offset, shstrtab_size);
offset := offset + shstrtab_size;
name_pos := get_str_pos(shstrtable, ".symtab");
symtab_size := Integer(Elf_Symtab_Vector.Length(symtab));
global_start := elf_symtab_sort(symtab);
symtab_header := elf_header_symtab(offset, symtab_size, name_pos, global_start);
offset := offset + (symtab_size * Integer(Elf64_Sym_Size));
name_pos := get_str_pos(shstrtable, ".strtab");
strtab_size := get_table_length(strtab);
strtab_header := elf_header_strtab(offset, strtab_size, name_pos);
offset := offset + strtab_size;
name_pos := get_str_pos(shstrtable, ".data");
data_header := elf_header_data(offset, 0, name_pos);
name_pos := get_str_pos(shstrtable, ".text");
text_header := elf_header_text(offset, code_size, name_pos);
-- TODO: Rela-text
-- Write the headers
Elf64_Header'Write(writer, header);
Elf64_Shdr'Write(writer, null_header);
Elf64_Shdr'Write(writer, shstrtab_header);
Elf64_Shdr'Write(writer, symtab_header);
Elf64_Shdr'Write(writer, strtab_header);
Elf64_Shdr'Write(writer, data_header);
Elf64_Shdr'Write(writer, text_header);
-- Write the data
Byte'Write(writer, 16#0#);
for str of shstrtable loop
String'Write(writer, To_String(str));
Byte'Write(writer, 16#0#);
end loop;
-- Write the symbol table
for ent of symtab loop
Elf64_Sym'Write(writer, ent);
end loop;
-- Write the string table
Byte'Write(writer, 16#0#);
for str of strtab loop
String'Write(writer, To_String(str));
Byte'Write(writer, 16#0#);
end loop;
-- Write some code
-- mov eax, 60
-- mov edi, 5
-- syscall
--Byte'Write(writer, 16#B8#);
--Integer'Write(writer, 60);
--Byte'Write(writer, 16#BF#);
--Integer'Write(writer, 5);
--Byte'Write(writer, 16#0F#);
--Byte'Write(writer, 16#05#);
--Close(file);
end build_elf;
end Elf;
|
Lab2/lab2.asm | eminkartci/MicroController-Assembly | 1 | 99296 | <gh_stars>1-10
0: CP 50 90 // *50 = k WHILE1
1: LT 50 100 // if(k < SIZE)
2: BZJ 80 50 // PC++ (continue to loop or break)
3: CPi 91 0 // m = 0
4: CP 40 90 // *40 = k WHILE2
5: NAND 40 40 // -k-1 HELP
6: ADD 40 100 // SIZE-k-1
7: CP 60 91 // *60 = m HELP
8: LT 60 40 // if(m < SIZE-k-1)
9: BZJ 81 60 // PC++ (continue to loop or break)
10: CP 150 85 // temp <- a (start address of array)
11: ADD 150 91 // temp <- a+m
12: CPI 151 150 // temp2 <- *(a+m)
13: CP 152 150 // temp3 <- a+m
14: ADDi 152 1 // temp3 <- a+m+1
15: CPI 153 152 // temp4 <- *(a+m+1)
16: LT 153 151 // temp4 <- (*(a+m+1) < *(a+m))
17: BZJ 83 153 // if (temp4 == 0 ) goto INC_m
18: CPI 97 150 // temp5 <- *(a+m)
19: CPI 98 152 // temp6 <- *(a+m+1)
20: CPIi 150 98 // *(a+m) <- temp6
21: CPIi 152 97 // *(a+m+1) <- temp5
22: BZJi 83 0 // jump to 55
55: ADDi 91 1 // INC_m
56: BZJi 82 4 // goto WHILE2
70: ADDi 90 1 // END_WHILE2 + INC_k
71: BZJi 82 0 // goto WHILE1
80: 2
81: 70
82: 0
83: 55
97: 0// temp5
98: 0// temp6
85: 101 // a (start address of array)
90: 0 // k
91: 0 // m (current array index)
100: 10 // SIZE
101: 9 // first element of array
102: 1
103: 2
104: 4
105: 3
106: 7
107: 5
108: 0
109: 8
110: 6 // last element of array
130: BZJi 131 0 // END_WHILE1, also end of program
131: 130
150: 0
151: 0
152: 0
153: 0
154: 0
155: 0
|
tools-src/gnu/gcc/gcc/ada/lib-load.ads | enfoTek/tomato.linksys.e2000.nvram-mod | 80 | 14707 | <filename>tools-src/gnu/gcc/gcc/ada/lib-load.ads
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- L I B . L O A D --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-2001, 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 2, 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. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This child package contains the function used to load a separately
-- compiled unit, as well as the routine used to initialize the unit
-- table and load the main source file.
package Lib.Load is
-------------------------------
-- Handling of Renamed Units --
-------------------------------
-- A compilation unit can be a renaming of another compilation unit.
-- Such renamed units are not allowed as parent units, that is you
-- cannot declare a unit:
-- with x;
-- package x.y is end;
-- where x is a renaming of some other package. However you can refer
-- to a renamed unit in a with clause:
-- package p is end;
-- package p.q is end;
-- with p;
-- package pr renames p;
-- with pr.q ....
-- This means that in the context of a with clause, the normal fixed
-- correspondence between unit and file names is broken. In the above
-- example, there is no file named pr-q.ads, since the actual child
-- unit is p.q, and it will be found in file p-q.ads.
-- In order to deal with this case, we have to first load pr.ads, and
-- then discover that it is a renaming of p, so that we know that pr.q
-- really refers to p.q. Furthermore this can happen at any level:
-- with p.q;
-- package p.r renames p.q;
-- with p.q;
-- package p.q.s is end;
-- with p.r.s ...
-- Now we have a case where the parent p.r is a child unit and is
-- a renaming. This shows that renaming can occur at any level.
-- Finally, consider:
-- with pr.q.s ...
-- Here the parent pr.q is not itself a renaming, but it really refers
-- to the unit p.q, and again we cannot know this without loading the
-- parent. The bottom line here is that while the file name of a unit
-- always corresponds to the unit name, the unit name as given to the
-- Load_Unit function may not be the real unit.
-----------------
-- Subprograms --
-----------------
procedure Initialize;
-- Called at the start of compiling a new main source unit to initialize
-- the library processing for the new main source. Establishes and
-- initializes the units table entry for the new main unit (leaving
-- the Unit_File_Name entry of Main_Unit set to No_File if there are no
-- more files. Otherwise the main source file has been opened and read
-- and then closed on return.
procedure Initialize_Version (U : Unit_Number_Type);
-- This is called once the source file corresponding to unit U has been
-- fully scanned. At that point the checksum is computed, and can be used
-- to initialize the version number.
function Load_Unit
(Load_Name : Unit_Name_Type;
Required : Boolean;
Error_Node : Node_Id;
Subunit : Boolean;
Corr_Body : Unit_Number_Type := No_Unit;
Renamings : Boolean := False)
return Unit_Number_Type;
-- This function loads and parses the unit specified by Load_Name (or
-- returns the unit number for the previously constructed units table
-- entry if this is not the first call for this unit). Required indicates
-- the behavior on a file not found condition, as further described below,
-- and Error_Node is the node in the calling program to which error
-- messages are to be attached.
--
-- If the corresponding file is found, the value returned by Load is the
-- unit number that indexes the corresponding entry in the units table. If
-- a serious enough parser error occurs to prevent subsequent semantic
-- analysis, then the Fatal_Error flag of the returned entry is set and
-- in addition, the fatal error flag of the calling unit is also set.
--
-- If the corresponding file is not found, then the behavior depends on
-- the setting of Required. If Required is False, then No_Unit is returned
-- and no error messages are issued. If Required is True, then an error
-- message is posted, and No_Unit is returned.
--
-- A special case arises in the call from Rtsfind, where Error_Node is set
-- to Empty. In this case Required is False, and the caller in any case
-- treats any error as fatal.
--
-- The Subunit parameter is True to load a subunit, and False to load
-- any other kind of unit (including all specs, package bodies, and
-- subprogram bodies).
--
-- The Corr_Body argument is normally defaulted. It is set only in the
-- case of loading the corresponding spec when the main unit is a body.
-- In this case, Corr_Body is the unit number of this corresponding
-- body. This is used to set the Serial_Ref_Unit field of the unit
-- table entry. It is also used to deal with the special processing
-- required by RM 10.1.4(4). See description in lib.ads.
--
-- Renamings activates the handling of renamed units as separately
-- described in the documentation of this unit. If this parameter is
-- set to True, then Load_Name may not be the real unit name and it
-- is necessary to load parents to find the real name.
function Create_Dummy_Package_Unit
(With_Node : Node_Id;
Spec_Name : Unit_Name_Type)
return Unit_Number_Type;
-- With_Node is the Node_Id of a with statement for which the file could
-- not be found, and Spec_Name is the corresponding unit name. This call
-- creates a dummy package unit so that compilation can continue without
-- blowing up when the missing unit is referenced.
procedure Make_Instance_Unit (N : Node_Id);
-- When a compilation unit is an instantiation, it contains both the
-- declaration and the body of the instance, each of which can have its
-- own elaboration routine. The file itself corresponds to the declaration.
-- We create an additional entry for the body, so that the binder can
-- generate the proper elaboration calls to both. The argument N is the
-- compilation unit node created for the body.
procedure Version_Update (U : Node_Id; From : Node_Id);
-- This routine is called when unit U is found to be semantically
-- dependent on unit From. It updates the version of U to register
-- dependence on the version of From. The arguments are compilation
-- unit nodes for the relevant library nodes.
end Lib.Load;
|
commands/apps/pulse-secure/pulse-secure-disconnect.applescript | daviddzhou/script-commands | 3,305 | 2541 | <filename>commands/apps/pulse-secure/pulse-secure-disconnect.applescript<gh_stars>1000+
#!/usr/bin/osascript
# Dependencies:
# Pulse Secure: https://www.pulsesecure.net/
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Disconnect / Cancel
# @raycast.mode silent
# Optional parameters:
# @raycast.packageName Pulse Secure
# @raycast.icon images/pulse-secure.png
# Documentation:
# @raycast.author <NAME>
# @raycast.authorURL https://github.com/jaklan
# @raycast.description Disconnect / cancel the active connection.
on run argv
### End of configuration ###
try
if not trayIsRunning() then error "Pulse Secure tray is not running"
disconnectOrCancel()
return
on error errorMessage
closeMenu()
return errorMessage
end try
end run
### Functions ###
on disconnectOrCancel()
openMenu()
tell application "System Events" to tell process "PulseTray"
tell menu 1 of menu bar item 1 of menu bar 2
if name of menu item 3 does not contain "No active connections" then
tell (first menu item whose value of attribute "AXMenuItemMarkChar" is " ")
click
tell menu 1
if value of attribute "AXEnabled" of menu item "Disconnect" then
click menu item "Disconnect"
else if value of attribute "AXEnabled" of menu item "Cancel" then
click menu item "Cancel"
else
error "Neither menu item \"Disconnect\" nor \"Cancel\" is active"
end if
end tell
end tell
else
error "No active connection"
end if
end tell
end tell
end disconnectOrCancel
on trayIsRunning()
return application "PulseTray" is running
end trayIsRunning
on menuIsOpen()
tell application "System Events" to tell process "PulseTray"
return menu 1 of menu bar item 1 of menu bar 2 exists
end tell
end menuIsOpen
on openMenu()
set killDelay to 0
repeat
tell application "System Events" to tell process "PulseTray"
if my menuIsOpen() then return
ignoring application responses
click menu bar item 1 of menu bar 2
end ignoring
end tell
set killDelay to killDelay + 0.1
delay killDelay
do shell script "killall System\\ Events"
end repeat
end openMenu
on closeMenu()
if menuIsOpen() then tell application "System Events" to key code 53
end closeMenu
|
src/camera.asm | ISSOtm/gb-open-world | 8 | 9595 |
INCLUDE "defines.asm"
MAX_CAM_SPEED equ 8 * SUBPX_PER_PX
EXPORT MAX_CAM_SPEED
VIEWPORT_HEIGHT_B equ SCRN_Y_B + 1
VIEWPORT_WIDTH_B equ SCRN_X_B + 1
SECTION "Camera movement funcs", ROMX
rsreset
MACRO cam_movt_type
\1 rb
EXPORT \1
dw \2
ENDM
CameraMovtFuncs::
cam_movt_type CAM_STATIC, StaticCamera ; Stays at the target point
cam_movt_type CAM_FOLLOW_PLAYER, FollowPlayer
StaticCamera:
ld hl, wCameraYPos
ld de, wCameraTargetYPos
ld c, 4
jp MemcpySmall
FollowPlayer:
; TODO
ret
SECTION "Camera movement func", ROM0
MoveCamera::
; Mark that no palette needs to be committed; they will be added as needed
xor a
ld [wBGPaletteMask], a
ld [wFadeDelta], a ; Do not alter the fade
; See by how much the camera would need to move to reach the target Y position
; We'll compute (target.y - cur.y)
ld a, [wCameraYPos]
ld l, a ; Importantly, we keep LOW(cur.y) for later
ld a, [wCameraYPos + 1]
ld h, a
; TODO: lerp this
ld a, [wCameraTargetYPos]
sub l
ld e, a
ld a, [wCameraTargetYPos + 1]
sbc h
ld d, a
; Now, we'll clamp the camera's movement at 8 pixels/frame
; The engine only supports redrawing one row per frame, so that's as fast as it can go
assert MAX_CAM_SPEED == $80, "The clamping below relies on max cam speed == $80"
; Here's how it works:
; The accepted range is [-MAX_CAM_SPEED; MAX_CAM_SPEED] = [-$80; $80] = [$FF80; $0080]
; Setting aside $0080 for a moment, all valid values follow this:
; If bit 7 is clear (positive values), then high byte == $00
; If bit 7 is set (negative values), then high byte == $FF
; Note, however, that $0080 is a valid value, yet fails this rule.
; Therefore, it will get clamped, but that will just set it to $0080... itself!
ld a, e
add a, a ; Get bit 7 into carry
sbc a, a ; Yield $00 if bit 7 was clear, or $FF if it was set
cp d ; Check if that matches the high byte
jr z, .noVertClamp
assert LOW(MAX_CAM_SPEED) == LOW(-MAX_CAM_SPEED)
ld e, MAX_CAM_SPEED
sla d
sbc a, a
ld d, a
.noVertClamp
; Now, add that clamped vector to the current position
ld c, l
add hl, de
ld a, h
ld [wCameraYPos + 1], a
ld a, l
ld [wCameraYPos], a
; A note about register usage... Currently:
; HL = current camera position
; DE = movement vector
; C = LOW(old camera position)
; B, A = don't care
; The camera position has been written to `wCameraYPos`, so HL is currently merely a cache
; The only information that we *must* preserve is the movement direction, which is contained
; in D's bit 7. Everything else can be freely used as scratch.
; And now, the *plat the résistance*: redrawing the tilemap
; When do we need to redraw it? When the camera starts showing a new row of tiles.
; This is easily checked for by comparing the tile portion of the position, but we can do one better
; Actually, the camera can only move by up to 1 tile at a time, therefore, the position
; (in tile units) can only change in increments of 1, and thus, checking if the parity
; changed is enough!
; ld a, l ; A == L right now
xor c
add a, a
jp nc, .noRowRedraw
; Alright, we need to redraw a row. Let's detail the process:
; First, we need to unload the row that just went off-screen;
; then, we draw the row that's about to be shown.
; This is slightly misleading, as a row can be considered "on-screen" (and thus loaded)
; without being actually shown on the GB screen.
; The GB screen is 144 pixels tall, which amounts to 18 rows of tiles; however, unless
; it's perfectly aligned to the tile grid, a bit of the 19th row will be shown.
; Therefore, for loading purposes, the viewport is considered to be 19 rows tall, not 18.
;
; How do we determine which row just came on-screen? It's fairly simple: we just use
; the movement direction! If the camera was moving upwards, the newly shown row will
; be the camera's topmost (so, starting exactly at the camera's position).
; If the camera was moving downwards, it'll be the bottommost row, so 18 rows down.
;
; How do we determine which row just went off-screen? Again, by using the movement direction.
; If the camera was moving downwards, the row that went off-screen was the topmost, i.e.
; it's right above the camera's *new* topmost: row "-1". Similarly, if the camera was
; moving upwards, it'll be row 19.
; First, we'll unload the row that's just went off-screen
; We need to either move up by one tile row if we moved downwards, or down by 19 otherwise
ld bc, -8 * SUBPX_PER_PX
bit 7, d
jr z, .movedDownwards
ld bc, VIEWPORT_HEIGHT_B * 8 * SUBPX_PER_PX
.movedDownwards
add hl, bc
PUSHS
SECTION UNION "Scratch buffer", HRAM
hChunkGfxBank: ; db ; Use does not overlap with variable below, so it shares memory
hMetatileOfs: db ; Offset within the metatile definition (%0000 VH00)
hChunkPtrLow: db ; Low byte of the pointer in the chunk map
hNbTilesToDraw: db ; Amount of tiles remaining to be drawn
POPS
ld a, [wCameraXPos]
and $80 ; %H000 0000
rrca ; %0H00 0000
xor l
and LOW(~$80)
xor l ; %VH00 0000
ldh [hMetatileOfs], a
; Compute the chunk position...
ld a, [wCameraXPos + 1]
swap a
xor h ; Cam Y high
and $0F
xor h
ld c, a
ldh [hChunkPtrLow], a
ld a, [wMapPtrHigh]
ld b, a
ld a, [wMapBank]
ldh [hCurROMBank], a
ld [rROMB0], a
; Read the chunk's ptr and bank...
ld a, [bc] ; Chunk ptr high
ld e, a
inc b ; Switch to bank table
ld a, [bc] ; Chunk bank
ldh [hCurROMBank], a
ld [rROMB0], a
ld b, e ; Load metatilemap ptr high
; Compute metatilemap ptr low
ld a, [wCameraXPos + 1]
swap h
xor h
and $0F
xor h
ld c, a
; Now, run through the row
ld e, SCRN_X_B + 1
.unloadRow
; Read the metatile ID
ld a, [bc]
ld l, a ; Save low byte for later
and $30 ; Keep upper 2 bits
swap a ; Multiply it by 16, the size of a metatile definition
add a, b ; Add to the high byte of the base ptr
inc a ; The metatile definitions are located 256 bytes after the metatilemap
ld h, a
ldh a, [hMetatileOfs]
or l
swap a ; Multiply by 16 (again)
and $FC ; Only keep the relevant bits
ld l, a
; Read the palette ID
ld l, [hl]
sla l ; Double it, since counts are 2-byte
; Decrement its count
ld h, HIGH(wBGPaletteCounts)
ld a, [hl]
dec a
ld [hli], a
inc a ; cp $FF
jr nz, :+
dec [hl]
:
; Toggle between the left and right half of the metatile
ldh a, [hMetatileOfs]
xor $40
ldh [hMetatileOfs], a
; If we just wrote the right half (= we're about to write the left half), go to the next metatile
add a, a ; Discard bit 7 (only bit 6 is reamining)
jr nz, .unloadedLeftTile
inc c
; Check if we need to go to the next chunk
ld a, c
and $0F
jr nz, .unloadedLeftTile
ldh a, [hChunkPtrLow]
inc a ; Go to the next chunk
ld l, a
ld a, [wMapPtrHigh]
ld h, a
ld a, [wMapBank]
ldh [hCurROMBank], a
ld [rROMB0], a
; Read the chunk's ptr and bank...
ld b, [hl] ; Chunk ptr high
inc h ; Switch to bank table
ld a, [hl] ; Chunk bank
ldh [hCurROMBank], a
ld [rROMB0], a
; Move the ptr low up 1 row
ld a, c
sub 16
ld c, a
.unloadedLeftTile
dec e
jr nz, .unloadRow
; Seize the opportunity to schedule loading new chunk gfx
; New gfx loading happens when the imaginary line in the middle of the camera crosses
; the imaginary line in the middle of the chunk. This is easily proven to happen at the
; same time as redrawing a row, so we check for it here.
; Since the camera moves up to 1 row at a time, it's sufficient to check which row the
; camera is currently pointing to (depending on the movement direction)
ld hl, wCameraYPos
ld a, [hli]
ld h, [hl] ; Save camera position for later
ld l, a
add a, a ; Shift tile position bit into carry
ld a, h
rla ; Rotate tile position bit in
and $1F ; Get tile position within chunk
rlc d ; Make sure to preserve direction bit in bit 0 for below!
; The target tile position is 6 when moving upwards, and 7 when moving downwards
ccf ; Have carry set iff moving downwards
sbc a, 6
jr nz, .noVertChunkLoading
; Schedule loading the two new chunks' gfx
; Compute the current chunk's position in the map, and offset it
ld a, [wCameraXPos + 1]
ld e, a
swap a
ld c, a
ld a, h
xor c
and $F0
xor c
bit 0, d ; Check movement direction
jr z, :+
sub 16 * 2 ; When moving upwards, go up one row (and another one to compensate for below)
:
add a, 16 ; When moving downwards, go down one row
ld l, a
; If the camera is "leaning" towards the left half of the chunk, go one chunk to the left
; Fortunately, the "middle X position", in pixels, is $30, so we can just check the high
; byte of the camera's X position.
ld a, e ; Get HIGH(camera's X position)
and $0F ; Only keep the (meta-)tile position
sub 3
add a, a ; Check sign bit
jr nc, .leaningRight
; Move left while staying in the same row
ld a, l
dec l
xor l
and $F0
xor l
ld l, a
.leaningRight
; Now, we need to determine which of the 4 slots the (left) chunk will be loaded into
ld c, LOW(hChunkGfxPtrs)
bit 0, l ; Odd X position?
jr z, :+
assert LOW(hChunkGfxPtrs.topLeft) & $08 == 0
assert LOW(hChunkGfxPtrs.bottomLeft) & $08 == 0
assert LOW(hChunkGfxPtrs.topRight) & $08 == $08
assert LOW(hChunkGfxPtrs.bottomRight) & $08 == $08
set 3, c
:
bit 4, l ; Odd Y position?
jr z, :+
assert LOW(hChunkGfxPtrs.topLeft) & $04 == 0
assert LOW(hChunkGfxPtrs.bottomLeft) & $04 == $04
assert LOW(hChunkGfxPtrs.topRight) & $04 == 0
assert LOW(hChunkGfxPtrs.bottomRight) & $04 == $04
set 2, c
:
ld a, l ; Save the other chunk's position
inc a
xor l
and $0F
xor l
ld e, a
ld b, c ; Save original write ptr low, for loop termination
.loadHorizChunkStrip
ld a, [wMapBank]
ldh [hCurROMBank], a
ld [rROMB0], a
ld a, [wMapPtrHigh]
ld h, a
inc h ; Switch to bank map
ld a, [hl]
dec h ; Switch to HIGH(ptr) map
ld h, [hl] ; Read HIGH(chunk ptr)
ldh [hCurROMBank], a
ld [rROMB0], a
; Read tables size
dec h
ld l, -2
ld a, [hli] ; Read high byte of post-metatile offset
ld l, [hl] ; Read low byte of post-metatile offset (added to an ALIGN[8] address, so...)
add a, h
ld h, a
ld a, [hli] ; Read bank
and a
jr z, :+
ldh [hChunkGfxBank], a
; Clear the bank so that the VBlank handler will not consider our entry until it's fully written
xor a
ldh [c], a
inc c
ld a, [hli] ; Size
ldh [c], a
inc c
ld a, [hli] ; LOW(ptr)
ldh [c], a
inc c
ld a, [hli] ; HIGH(ptr)
ldh [c], a
dec c ; Skip HIGH(ptr)
dec c ; Sjip LOW(ptr)
dec c ; Skip size
ldh a, [hChunkGfxBank]
ldh [c], a ; Write bank last, as it's what actually schedules the entry
:
ld l, e ; Switch to second chunk
assert LOW(hChunkGfxPtrs.topLeft) ^ LOW(hChunkGfxPtrs.topRight) == $08
assert LOW(hChunkGfxPtrs.bottomLeft) ^ LOW(hChunkGfxPtrs.bottomRight) == $08
ld a, c
xor $08
ld c, a
cp b ; Check if we came back to the original write pointer
jr nz, .loadHorizChunkStrip
.noVertChunkLoading
;; Alright, now we can draw the new row!
; Begin by computing the row's target position (in pixels)
ld hl, wCameraYPos
ld a, [hli]
ld h, [hl] ; Save camera position for later
ld l, a
bit 0, d ; bit 7, d ; Above computation moved sign bit (bit 7) to bit 0
jr nz, .movedUpwards
ld bc, SCRN_Y * SUBPX_PER_PX
add hl, bc
.movedUpwards
; Compute VRAM dest addr
; Positions can be thought of like this:
; cccc mmmm tppp ssss
; |||| |||| |||| ++++- Subpixels
; |||| |||| |+++------ Pixels
; |||| |||| +--------- Tile (within metatile)
; |||| ++++------------ Metatile
; ++++----------------- Chunk
; For VRAM positions, we care about the metatile+tile position, which are on two separate bytes
; However, only the topmost bit of the lower byte is needed, so we can just transfer it via carry
ld a, l
add a, a
ld a, h
rla ; Shift in that bit
rrca ; Rotate bits in place for "merging"
rrca
rrca
ld d, a ; Store for merging
ld a, [wCameraXPos] ; Similar trick
add a, a
ld a, [wCameraXPos + 1]
rla
xor d
and $1F ; Keep $1F from A, $E0 from H
xor d
ld e, a
ld a, d
and $03 ; Only keep relevant bits
or HIGH(_SCRN0)
ld d, a
; Compute chunk src addr
ld a, [wCameraXPos + 1]
swap a
xor h ; Cam Y high
and $0F
xor h
ld c, a
ldh [hChunkPtrLow], a
ld a, [wMapBank]
ldh [hCurROMBank], a
ld [rROMB0], a
ld a, [wMapPtrHigh]
ld b, a
; Read the chunk's ptr and bank...
ld a, [bc] ; Chunk ptr high
ld l, a
inc b ; Switch to bank table
ld a, [bc] ; Chunk bank
ldh [hCurROMBank], a
ld [rROMB0], a
ld b, l ; Load metatilemap ptr high
; Compute metatilemap ptr low
ld a, [wCameraXPos + 1]
swap h
xor h
and $0F
xor h
ld c, a
; And now, the loop proper!
ld a, SCRN_X_B + 1
.drawRow
ldh [hNbTilesToDraw], a
ld a, [bc] ; Read target metatile within chunk
push bc ; Save metatile read ptr
; TODO: if metatile is dynamic, deref the array
swap a ; Multiply metatile ID by 16 (size of a metatile entry)
ld l, a ; Save low byte for later
and $03 ; Keep upper 2 bits
add a, b ; Add them to high byte of base ptr (low byte is computed from 0 so can't overflow)
ld h, a
inc h ; Switch to metatile def array
ld a, l
and $F0 ; Keep lower 4 bits of metatile ID
bit 5, e ; If on an odd row, use entry #2 or #3
jr z, .writeEvenRow
add a, 8
.writeEvenRow
bit 0, e ; If on an odd column, use entry #1 or #3
jr z, .writeEvenColumn
add a, 4
.writeEvenColumn
ld l, a
ld a, [hli] ; Read palette ID
; Ref palette, possibly load it, and translate it to the corresponding hardware palette
push hl
; First, increase that palette's ref count
add a, a
assert LOW(wBGPaletteCounts) == 0
ld l, a
ld h, HIGH(wBGPaletteCounts)
ld c, l ; Keep the palette ID (times 2) for comparing
ld a, [hl]
inc a
ld [hli], a
jr nz, :+
inc [hl] ; Apply carry
:
; Check if we just increased the ref count to 1
dec a ; Check if low byte is 1...
or [hl]
; Load 2 variables for the loops below
ld hl, wBGPaletteIDs
; Having Z here implies `(a - 1) | [hl] == 0`
; ⇔ `a - 1 == 0` && `[hl] == 0`
; ⇔ `a == 1` && `[hl] == 0`, and since A holds the counter's low byte & [HL] its high byte,
; ⇔ counter == 1, which is what we want! :)
jr nz, .alreadyLoaded
; Palette just became referenced, so find a free hardware slot to load into
call .loadPalette
jr .gotPaletteSlot ; Still make the most likely path the fastest
; ---------------------------
.alreadyLoaded
; Find the slot the palette is referenced in
ld a, c ; Get ID * 2 in A for comparing
db $FE ; cp imm8 ; Skip incrementing L on first iteration
.seekPalette
inc l ; Go to next palette
cp [hl]
jr nz, .seekPalette ; We expect this loop to terminate, as reaching this loop means the palette is loaded
; FIXME: maybe check that the slot is valid... but that may incur a certain runtime cost
.gotPaletteSlot
assert LOW(wBGPaletteIDs) == 0
; Incorporate the chunk's bank bit into the attrs
ldh a, [hChunkPtrLow]
ld c, a
rra
sbc a, a
and OAMF_BANK1
or l
ld b, a
pop hl ; Get back metatile entry read ptr
xor a
ldh [rVBK], a
:
ldh a, [rSTAT]
and STATF_BUSY
jr nz, :- ; From that point on, we have 32 cycles to write to VRAM
ld a, [hli] ; Read tile ID
bit 7, a ; Check if tile is in "common" block
jr nz, .commonTile ; If so, no translation needs to be performed
; Tile may either be in block 0/1 (even chunk row, no offset) or block 2/3 (odd chunk row, set bit 6)
bit 4, c
jr z, .evenChunkY
or $40
db $DC ; call c, imm16 (skip next 2-byte instruction)
.commonTile
set OAMB_BANK1, b ; Force VRA1 if using a "common" tile
.evenChunkY
ld [de], a ;; *** VRAM WRITE ***
; Write attribute
ld a, 1
ldh [rVBK], a
ld a, [hli]
xor b
and $E0 ; We need to ignore the attr's bits 0-4
xor b
ld [de], a ;; *** VRAM WRITE ***
pop bc ; Get back metatile read ptr
inc e ; Go to next tile
; If we just wrote a metatile's rightmost tile, switch to the next one
ld a, e
rra ; Carry clear from `xor b` above
jr c, .wroteLeftTile
inc c ; inc bc
; Check for and handle wrapping
and $1F >> 1
call z, .wrapHoriz
.wroteLeftTile
ldh a, [hNbTilesToDraw]
dec a
jr nz, .drawRow
.noRowRedraw
; Most of the code here is similar, if not identical to vertical movement code, so use it as a
; reference if you're lost and there are no comments
; I'm assuming you already read the vertical movement piece anyway
ld a, [wCameraXPos]
ld l, a
ld a, [wCameraXPos + 1]
ld h, a
ld a, [wCameraTargetXPos]
sub l
ld e, a
ld a, [wCameraTargetXPos + 1]
sbc h
ld d, a
assert MAX_CAM_SPEED == $80, "The clamping below relies on max cam speed == $80"
ld a, e
add a, a ; Get bit 7 into carry
sbc a, a ; Yield $00 if bit 7 was clear, or $FF if it was set
cp d ; Check if that matches the high byte
jr z, .noHorizClamp
assert LOW(MAX_CAM_SPEED) == LOW(-MAX_CAM_SPEED)
ld e, MAX_CAM_SPEED
sla d
sbc a, a
ld d, a
.noHorizClamp
ld c, l
add hl, de
ld a, h
ld [wCameraXPos + 1], a
ld a, l
ld [wCameraXPos], a
; ld a, l ; A == L right now
xor c
add a, a
jp nc, .noColumnRedraw
; First, we'll unload the column that's just went off-screen
ld bc, -8 * SUBPX_PER_PX
bit 7, d
jr z, .movedRightwards
ld bc, VIEWPORT_WIDTH_B * 8 * SUBPX_PER_PX
.movedRightwards
add hl, bc
ld a, [wCameraYPos]
and $80 ; %V000 0000
rlca ; %0000 000V
xor l
and LOW(~$80)
xor l ; %H000 000V
rrca ; %VH00 0000
ldh [hMetatileOfs], a
; Compute the chunk position...
ld a, [wCameraYPos + 1]
swap h
xor h ; Cam X high
and $F0
xor h
ld c, a
ldh [hChunkPtrLow], a
ld a, [wMapPtrHigh]
ld b, a
ld a, [wMapBank]
ldh [hCurROMBank], a
ld [rROMB0], a
; Read the chunk's ptr and bank...
ld a, [bc] ; Chunk ptr high
ld e, a
inc b ; Switch to bank table
ld a, [bc] ; Chunk bank
ldh [hCurROMBank], a
ld [rROMB0], a
ld b, e ; Load metatilemap ptr high
; Compute metatilemap ptr low
ld a, [wCameraYPos + 1]
xor h
and $0F
xor h
swap a
ld c, a
; Now, run through the column
ld e, SCRN_Y_B + 1
.unloadColumn
; Read the metatile ID
ld a, [bc]
ld l, a ; Save low byte for later
and $30 ; Keep upper 2 bits
swap a ; Multiply it by 16, the size of a metatile definition
add a, b ; Add to the high byte of the base ptr
inc a ; The metatile definitions are located 256 bytes after the metatilemap
ld h, a
ldh a, [hMetatileOfs]
or l
swap a ; Multiply by 16 (again)
and $FC ; Only keep the relevant bits
ld l, a
; Read the palette ID
ld l, [hl]
sla l ; Double it, since counts are 2-byte
; Decrement its count
ld h, HIGH(wBGPaletteCounts)
ld a, [hl]
dec a
ld [hli], a
inc a ; cp $FF
jr nz, :+
dec [hl]
:
; Toggle between the top and bottom half of the metatile
ldh a, [hMetatileOfs]
xor $80
ldh [hMetatileOfs], a
; If we just wrote the bottom half (= we're about to write the top half), go to the next metatile
add a, a ; Shift out bit 7
jr c, .unloadedTopTile
ld a, c
add a, 16 ; Note that this will automatically wrap within the chunk's map
ld c, a
; Check if we need to go to the next chunk
and $F0 ; Get the Y coord
jr nz, .unloadedTopTile
ldh a, [hChunkPtrLow]
add a, 16 ; Go to the next chunk
ld l, a
ld a, [wMapPtrHigh]
ld h, a
ld a, [wMapBank]
ldh [hCurROMBank], a
ld [rROMB0], a
; Read the chunk's ptr and bank...
ld b, [hl] ; Chunk ptr high
inc h ; Switch to bank table
ld a, [hl] ; Chunk bank
ldh [hCurROMBank], a
ld [rROMB0], a
.unloadedTopTile
dec e
jr nz, .unloadColumn
ld hl, wCameraXPos
ld a, [hli]
ld h, [hl] ; Save camera position for later
ld l, a
add a, a ; Shift tile position bit into carry
ld a, h
rla ; Rotate tile position bit in
and $1F ; Get tile position within chunk
rlc d ; Make sure to preserve direction bit in bit 0 for below!
; The target tile position is 5 when moving upwards, and 6 when moving downwards
ccf ; Have carry set iff moving downwards
sbc a, 5
jr nz, .noHorizChunkLoading
; Schedule loading the two new chunks' gfx
; Compute the current chunk's position in the map, and offset it
ld a, [wCameraYPos + 1]
ld e, a
ld a, h
swap a
xor e
and $0F
xor e
bit 0, d ; Check movement direction
jr z, :+
sub 2 ; When moving leftwards, go left one column (and another one to compensate for below)
:
inc a ; When moving rightwards, go right one column
ld l, a
; If the camera is "leaning" towards the top half of the chunk, go one chunk up
ld a, [wCameraYPos]
add a, a
ld a, e ; Get HIGH(camera's Y position)
rla ; Pick up the MSB of LOW(cam's Y pos)
and $1F ; Only keep the (meta-)tile position
sub $38 /* Account for left shift */ << 1 /* Account for subpixel shift */ >> 4
add a, a ; Check sign bit
jr nc, .leaningDown
ld a, l
sub 16
ld l, a
.leaningDown
; Now, we need to determine which of the 4 slots the (top) chunk will be loaded into
ld c, LOW(hChunkGfxPtrs)
bit 0, l ; Odd X position?
jr z, :+
assert LOW(hChunkGfxPtrs.topLeft) & $08 == 0
assert LOW(hChunkGfxPtrs.bottomLeft) & $08 == 0
assert LOW(hChunkGfxPtrs.topRight) & $08 == $08
assert LOW(hChunkGfxPtrs.bottomRight) & $08 == $08
set 3, c
:
bit 4, l ; Odd Y position?
jr z, :+
assert LOW(hChunkGfxPtrs.topLeft) & $04 == 0
assert LOW(hChunkGfxPtrs.bottomLeft) & $04 == $04
assert LOW(hChunkGfxPtrs.topRight) & $04 == 0
assert LOW(hChunkGfxPtrs.bottomRight) & $04 == $04
set 2, c
:
ld a, l ; Save the other chunk's position
add a, 16
ld e, a
ld b, c ; Save original write ptr low, for loop termination
.loadVertChunkStrip
ld a, [wMapBank]
ldh [hCurROMBank], a
ld [rROMB0], a
ld a, [wMapPtrHigh]
ld h, a
inc h ; Switch to bank map
ld a, [hl]
dec h ; Switch to HIGH(ptr) map
ld h, [hl] ; Read HIGH(chunk ptr)
ldh [hCurROMBank], a
ld [rROMB0], a
; Read tables size
dec h
ld l, -2
ld a, [hli] ; Read high byte of post-metatile offset
ld l, [hl] ; Read low byte of post-metatile offset (added to an ALIGN[8] address, so...)
add a, h
ld h, a
ld a, [hli] ; Read bank
and a
jr z, :+
ldh [hChunkGfxBank], a
; Clear the bank so that the VBlank handler will not consider our entry until it's fully written
xor a
ldh [c], a
inc c
ld a, [hli] ; Size
ldh [c], a
inc c
ld a, [hli] ; LOW(ptr)
ldh [c], a
inc c
ld a, [hli] ; HIGH(ptr)
ldh [c], a
dec c ; Skip HIGH(ptr)
dec c ; Sjip LOW(ptr)
dec c ; Skip size
ldh a, [hChunkGfxBank]
ldh [c], a ; Write bank last, as it's what actually schedules the entry
:
ld l, e ; Switch to second chunk
assert LOW(hChunkGfxPtrs.topLeft) ^ LOW(hChunkGfxPtrs.bottomLeft) == $04
assert LOW(hChunkGfxPtrs.topRight) ^ LOW(hChunkGfxPtrs.bottomRight) == $04
ld a, c
xor $04
ld c, a
cp b ; Check if we came back to the original write pointer
jr nz, .loadVertChunkStrip
.noHorizChunkLoading
;; Alright, now we can draw the new column!
; Begin by computing the column's target position (in pixels)
ld hl, wCameraXPos
ld a, [hli]
ld h, [hl] ; Save camera position for later
ld l, a
bit 0, d ; bit 7, d ; Above computation moved sign bit (bit 7) to bit 0
jr nz, .movedLeftwards
ld bc, SCRN_X * SUBPX_PER_PX
add hl, bc
.movedLeftwards
; Compute VRAM dest addr
; Positions can be thought of like this:
; cccc mmmm tppp ssss
; |||| |||| |||| ++++- Subpixels
; |||| |||| |+++------ Pixels
; |||| |||| +--------- Tile (within metatile)
; |||| ++++------------ Metatile
; ++++----------------- Chunk
; For VRAM positions, we care about the metatile+tile position, which are on two separate bytes
; However, only the topmost bit of the lower byte is needed, so we can just transfer it via carry
ld a, [wCameraYPos] ; Similar trick
add a, a
ld a, [wCameraYPos + 1]
rla ; Shift in that bit
rrca ; Rotate bits in place for "merging"
rrca
rrca
ld d, a ; Store for merging
ld a, l
add a, a
ld a, h
rla
xor d
and $1F ; Keep $1F from A, $E0 from D
xor d
ld e, a
ld a, d
and $03 ; Only keep relevant bits
or HIGH(_SCRN0)
ld d, a
; Compute chunk src addr
; TODO: factor out into a function (same-ish snippet above unload loop)
ld a, [wCameraYPos + 1]
swap h ; Get chunk bits in the right spot
xor h ; Cam X high
and $F0
xor h
ld c, a
ldh [hChunkPtrLow], a
ld a, [wMapBank]
ldh [hCurROMBank], a
ld [rROMB0], a
ld a, [wMapPtrHigh]
ld b, a
; Read the chunk's ptr and bank...
ld a, [bc] ; Chunk ptr high
ld l, a
inc b ; Switch to bank table
ld a, [bc] ; Chunk bank
ldh [hCurROMBank], a
ld [rROMB0], a
ld b, l ; Load metatilemap ptr high
; Compute metatilemap ptr low
ld a, [wCameraYPos + 1]
xor h
and $0F
xor h
swap a
ld c, a
; And now, the loop proper!
ld a, SCRN_Y_B + 1
.drawColumn
ldh [hNbTilesToDraw], a
ld a, [bc] ; Read target metatile within chunk
push bc ; Save metatile read ptr
; TODO: if metatile is dynamic, deref the array
swap a ; Multiply metatile ID by 16 (size of a metatile entry)
ld l, a ; Save low byte for later
and $03 ; Keep upper 2 bits
add a, b ; Add them to high byte of base ptr (low byte is computed from 0 so can't overflow)
ld h, a
inc h ; Switch to metatile def array
ld a, l
and $F0 ; Keep lower 4 bits of metatile ID
bit 5, e ; If on an odd row, use entry #2 or #3
jr z, .writeEvenRow2
add a, 8
.writeEvenRow2
bit 0, e ; If on an odd column, use entry #1 or #3
jr z, .writeEvenColumn2
add a, 4
.writeEvenColumn2
ld l, a
ld a, [hli] ; Read palette ID
; Ref palette, possibly load it, and translate it to the corresponding hardware palette
push hl
; First, increase that palette's ref count
add a, a
assert LOW(wBGPaletteCounts) == 0
ld l, a
ld h, HIGH(wBGPaletteCounts)
ld c, l ; Keep the palette ID (times 2) for comparing
ld a, [hl]
inc a
ld [hli], a
jr nz, :+
inc [hl] ; Apply carry
:
; Check if we just increased the ref count to 1
dec a ; Check if low byte is 1...
or [hl]
; Load 2 variables for the loops below
ld hl, wBGPaletteIDs
; Having Z here implies `(a - 1) | [hl] == 0`
; ⇔ `a - 1 == 0` && `[hl] == 0`
; ⇔ `a == 1` && `[hl] == 0`, and since A holds the counter's low byte & [HL] its high byte,
; ⇔ counter == 1, which is what we want! :)
jr nz, .alreadyLoaded2
; Palette just became referenced, so find a free hardware slot to load into
call .loadPalette
jr .gotPaletteSlot2 ; Still make the most likely path the fastest
; ---------------------------
.alreadyLoaded2
; Find the slot the palette is referenced in
ld a, c ; Get ID * 2 in A for comparing
db $FE ; cp imm8 ; Skip incrementing L on first iteration
.seekPalette2
inc l ; Go to next palette
cp [hl]
jr nz, .seekPalette2 ; We expect this loop to terminate, as reaching this loop means the palette is loaded
; FIXME: maybe check that the slot is valid... but that may incur a certain runtime cost
.gotPaletteSlot2
assert LOW(wBGPaletteIDs) == 0
; Incorporate the chunk's bank bit into the attrs
ldh a, [hChunkPtrLow]
ld c, a
rra
sbc a, a
and OAMF_BANK1
or l
ld b, a
pop hl ; Get back metatile entry read ptr
xor a
ldh [rVBK], a
:
ldh a, [rSTAT]
and STATF_BUSY
jr nz, :- ; From that point on, we have 32 cycles to write to VRAM
ld a, [hli] ; Read tile ID
bit 7, a ; Check if tile is in "common" block
jr nz, .commonTile2 ; If so, no translation needs to be performed
; Tile may either be in block 0/1 (even chunk row, no offset) or block 2/3 (odd chunk row, set bit 6)
bit 4, c
jr z, .evenChunkY2
or $40
db $DC ; call c, imm16 (skip next 2-byte instruction)
.commonTile2
set OAMB_BANK1, b ; Force VRA1 if using a "common" tile
.evenChunkY2
ld [de], a ;; *** VRAM WRITE ***
; Write attribute
ld a, 1
ldh [rVBK], a
ld a, [hli]
xor b
and $E0 ; We need to ignore the attr's bits 0-4
xor b
ld [de], a ;; *** VRAM WRITE ***
pop bc ; Get back metatile read ptr
ld a, e ; Go to next tile row
add a, SCRN_VX_B
ld e, a
adc a, d
sub e
ld d, a
; If we just wrote a metatile's bottommost tile, switch to the next one
bit 5, e
jr nz, .wroteUpperTile
ld a, c
add a, 16
ld c, a
; Check for and handle wrapping
call c, .wrapVert
.wroteUpperTile
ldh a, [hNbTilesToDraw]
dec a
jr nz, .drawColumn
.noColumnRedraw
; Now, if any palettes need to be committed, do so
ld a, [wBGPaletteMask]
and a
assert BANK(FadePaletteBuffers) == 0 || BANK(FadePaletteBuffers) == BANK(@)
jp nz, FadePaletteBuffers ; Tail call
ret
.loadPalette
; This function is factored out because it's shared by both vertical and horizontal
; movement, and because it helps keeping the loops small enough for `jr`
; However, most code isn't shared, because the loops must run fast, and `call`+`ret`
; is 10 cycles of overhead, which is too much for loops running this often.
; This function escapes the above for two reasons:
; 1. This function may only run up to 7 times per loop (there are 8 palette slots,
; but 1 should still be loaded anyway), so the actual max overhead is much smaller
; 2. If this function is inlined, the loops become larger than `jr` can handle,
; wasting 1 cycle per iteration (= 21 cycles total). This means that we're still
; winning cycles overall as long as no more than 2 palettes are loaded per loop,
; which is reasonable.
; To avoid loading the same palette in two separate hardware slots (which would make them both
; used), walk the table once, checking if the palette is already loaded.
; And only if it isn't, seek a free slot.
ld b, l ; Save iteration ptr for second loop
.checkIfAlreadyLoaded
ld a, [hl]
cp c ; If the palette is still loaded, no need to re-load it
ret z ; It's already loaded, no need to write it
inc l
bit 3, l
jr z, .checkIfAlreadyLoaded
ld l, b ; Reload iteration ptr
dec l ; Compensate for the increment below
.lookupFreeSlot
inc l ; Go to next slot
; Assert that the selected slot is actually valid (below 8); this does incur a small overhead,
; but this loop should only occur up to 8 times, so it's acceptable, to catch a likely bug.
bit 3, l
error nz
ld a, [hl]
srl a ; Shift bit 0 (indicating special status) into carry
jr c, .checkFreeSlot ; If bit 0 is set, the slot is acceptable if it contains $01 ⇔ C and Z set
; Otherwise, check if the palette in question is referenced (otherwise, the slot is free)
adc a, a ; Cancel the above
ld b, l ; Save LOW(iteration ptr)
ld l, a ; Go to palette's count...
assert HIGH(wBGPaletteCounts) == HIGH(wBGPaletteIDs) - 1
dec h ; ...there.
ld a, [hli]
or [hl]
inc h ; Resume...
ld l, b ; ...iterating
and a ; Restore (re-compute) Z flag
.checkFreeSlot
jr nz, .lookupFreeSlot
.foundSlot
ld [hl], c
; Now, actually load the palette
push hl
push de
; Each palette is 4 colors of 3 bytes each = 12 bytes
; Though, the value we get as input is already doubled
; Since there are 128 palettes (times two), the optimal process is:
; 1. Tripling (16-bit, obviously) the value
; 2. Doubling it
; The tripling is most efficient at this point, since it can be implemented as a
; (cheap) 16-bit doubling, followed by an "8 + 16 → 16" addition
ld d, 0
ld a, c ; Save this value pre-doubling
sla c
rl b
add a, c
ld e, a
adc a, d
sub e
ld d, a ; * 3
sla e
rl d ; * 2
ld a, [wMapPtrHigh]
add a, 2 ; Skip the two 256-byte chunk maps
add a, d
ld d, a
; Now, DE = Source address in the map's palette array
; HL is simpler to compute, since the output buffer is known to be no larger than a page
; So the offset can be simply computed as 8-bit
assert HIGH(wBGPaletteBuffer) == HIGH(wBGPaletteBuffer.end - 1)
; Since the assertion above guarantees that the offsets are below 256, the following
; operations are guaranteed not to overflow
ld a, l
add a, a
add a, l ; * 3
add a, a ; * 2
add a, a ; * 2
assert LOW(wBGPaletteBuffer) != 0
add a, LOW(wBGPaletteBuffer)
ld l, a
ld h, HIGH(wBGPaletteBuffer)
; Now, HL = Destination address in the palette buffer
ld c, 4 * 3
rst MemcpySmall
pop de
pop hl
; Now, add the palette to the fade mask
ld a, 7 ; Palette #0 maps to bit 7, not bit 0
sub l
; "A = 1 << A" code courtesy of calc84maniac
sub 4 ; Check if in high or low nibble
jr nc, .highNibble
; 0 → $01, 1 → $02, 2 → $04, 3 → $05
; Overall, these two instructions add 5 to the number (to which 4 was subtracted above)
; However, the first instruction will generate a carry for inputs of $FE and $FF
; (which were 2 and 3 before `sub 4`); the `adc` will pick the carry up, and "separate"
; 0 / 1 from 2 / 3 by an extra 1. Luckily, this yields correct results for 0 ($01),
; 1 ($02), and 2 ($03 + 1 = $04). We'll see about fixing 3 after the jump.
add a, 2
adc a, 3
jr .fixThree
.highNibble
; 4 → $10, 5 → $20, 6 → $40, 7 → $50
; This is basically the same as the above, except that we need a different initial
; offset to generate a carry as needed.
add a, -2
adc a, 3
swap a ; Switch to the high nibble, though
.fixThree
; At this point, both inputs are identical, ignoring the nibble swapping.
; I will describe the process for the low nibble, but it works similarly for the high one.
; After being shifted left, the inputs are $02, $04, $08 and $0A; all are valid BCD,
; except for $0A. Since we just performed `add a, a`, DAA will correct the latter to $10.
; (This should be correctly emulated everywhere, since the inputs are identical to
; "regular" BCD.)
; When placing the results back, we'll thus get $01, $02, $04 and $08!
add a, a
daa
rra ; Note that we need this specific rotate, since $A0 gets corrected to $00 with carry set
ld c, a
ld a, [wBGPaletteMask]
or c
ld [wBGPaletteMask], a
ret
.wrapVert
ld d, HIGH(_SCRN0)
ldh a, [hChunkPtrLow]
add a, 16 ; Go to next chunk
jr .wrap
.wrapHoriz
; Wrap metatile read ptr
ld a, c
sub 16
ld c, a
; Wrap metatile write ptr
ld a, e
sub SCRN_VX_B
ld e, a
ldh a, [hChunkPtrLow]
inc a ; Go to next chunk
.wrap ; Code common to both vertical and horizontal wrapping
ldh [hChunkPtrLow], a
ld l, a
ld a, [wMapPtrHigh]
ld h, a
ld a, [wMapBank]
ldh [hCurROMBank], a
ld [rROMB0], a
; Read the chunk's ptr and bank...
ld b, [hl] ; Chunk ptr high
inc h ; Switch to bank table
ld a, [hl] ; Chunk bank
ldh [hCurROMBank], a
ld [rROMB0], a
ret
SECTION "Camera state", WRAM0
wCameraMovtType::
db
SECTION "Camera variables", WRAM0
wCameraYPos::
dw
wCameraXPos::
dw
SECTION "Camera movement variables", WRAM0
; 12.4 coord pair that the camera's origin will attempt to move towards
wCameraTargetYPos::
dw
wCameraTargetXPos::
dw
|
programs/oeis/204/A204879.asm | neoneye/loda | 22 | 178603 | <reponame>neoneye/loda<gh_stars>10-100
; A204879: Numbers that can be written as sum of perfect numbers.
; 6,12,18,24,28,30,34,36,40,42,46,48,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226
mov $6,$0
add $6,1
mov $10,$0
lpb $6
mov $0,$10
sub $6,1
sub $0,$6
mov $8,$0
mov $9,2
lpb $9
mov $0,$8
sub $9,1
add $0,$9
sub $0,1
mov $4,$0
add $0,1
mul $0,2
sub $4,2
mov $5,$4
lpb $0
mov $0,6
add $0,$5
add $0,10
div $0,2
mov $5,10
lpe
mov $2,$9
mov $3,$0
lpb $2
sub $2,1
mov $7,$3
lpe
lpe
lpb $8
sub $7,$3
mov $8,0
lpe
mov $3,$7
mul $3,2
add $3,2
add $1,$3
lpe
mov $0,$1
|
src/sets/int/definition.agda | pcapriotti/agda-base | 20 | 7068 | {-# OPTIONS --without-K #-}
module sets.int.definition where
open import sum
open import equality
open import function
open import sets.nat.core
open import hott.level
private
data Z : Set where
mk-int : ℕ → ℕ → Z
ℤ : Set
ℤ = Z
_[-]_ : ℕ → ℕ → ℤ
_[-]_ = mk-int
postulate
eq-ℤ : (n m d : ℕ) → n [-] m ≡ (d + n) [-] (d + m)
hℤ : h 2 ℤ
IsAlg-ℤ : ∀ {i} → Set i → Set _
IsAlg-ℤ X = Σ (ℕ → ℕ → X) λ f
→ (∀ n m d → f n m ≡ f (d + n) (d + m))
aℤ : IsAlg-ℤ ℤ
aℤ = _[-]_ , eq-ℤ
map-Alg-ℤ : ∀ {i j}{X : Set i}{Y : Set j}
→ (X → Y) → IsAlg-ℤ X → IsAlg-ℤ Y
map-Alg-ℤ {X = X}{Y} h (f , u) = (g , v)
where
g : ℕ → ℕ → Y
g n m = h (f n m)
v : ∀ n m d → g n m ≡ g (d + n) (d + m)
v n m d = ap h (u n m d)
map-Alg-ℤ-id : ∀ {i}{X : Set i}(aX : IsAlg-ℤ X)
→ map-Alg-ℤ (λ x → x) aX ≡ aX
map-Alg-ℤ-id aX = unapΣ (refl ,
funext λ n → funext λ m → funext λ d → ap-id _)
map-Alg-ℤ-hom : ∀ {i j k}{X : Set i}{Y : Set j}{Z : Set k}
→ (f : Y → Z)(g : X → Y)(aX : IsAlg-ℤ X)
→ map-Alg-ℤ (f ∘' g) aX
≡ map-Alg-ℤ f (map-Alg-ℤ g aX)
map-Alg-ℤ-hom f g aX = unapΣ (refl , funext λ n → funext λ m → funext λ d
→ sym (ap-hom g f _))
Hom-ℤ : ∀ {i j}{X : Set i}{Y : Set j}
→ IsAlg-ℤ X → IsAlg-ℤ Y → Set _
Hom-ℤ {X = X}{Y} aX aY = Σ (X → Y) λ h → map-Alg-ℤ h aX ≡ aY
id-ℤ : ∀ {i}{X : Set i}(aX : IsAlg-ℤ X) → Hom-ℤ aX aX
id-ℤ aX = (λ x → x) , map-Alg-ℤ-id aX
_⋆ℤ_ : ∀ {i j k}{X : Set i}{Y : Set j}{Z : Set k}
→ {aX : IsAlg-ℤ X}{aY : IsAlg-ℤ Y}{aZ : IsAlg-ℤ Z}
→ Hom-ℤ aY aZ → Hom-ℤ aX aY → Hom-ℤ aX aZ
_⋆ℤ_ {aX = aX} (f , u) (g , v) = f ∘' g , map-Alg-ℤ-hom f g aX · ap (map-Alg-ℤ f) v · u
module _ {i}{X : Set i}(hX : h 2 X)(aX : IsAlg-ℤ X) where
elim-ℤ : ℤ → X
elim-ℤ (mk-int n n') = proj₁ aX n n'
postulate elim-β-ℤ : ∀ n m d → ap elim-ℤ (eq-ℤ n m d) ≡ proj₂ aX n m d
elim-Alg-β-ℤ : map-Alg-ℤ elim-ℤ aℤ ≡ aX
elim-Alg-β-ℤ = unapΣ (refl , funext λ n → funext λ m → funext λ d → elim-β-ℤ n m d)
elim-Alg-ℤ : Hom-ℤ aℤ aX
elim-Alg-ℤ = elim-ℤ , elim-Alg-β-ℤ
postulate univ-ℤ : (h : Hom-ℤ aℤ aX) → elim-Alg-ℤ ≡ h
Hom-ℤ-contr : contr (Hom-ℤ aℤ aX)
Hom-ℤ-contr = elim-Alg-ℤ , univ-ℤ
elim-prop-ℤ : ∀ {i}{X : ℤ → Set i} → (∀ n → h 1 (X n))
→ (f : ∀ n m → X (n [-] m))
→ ∀ n → X n
elim-prop-ℤ {X = X} hX f n = subst X (i-β₀ n) (proj₂ (s₀ n))
where
Y : Set _
Y = Σ ℤ X
hY : h 2 Y
hY = Σ-level hℤ λ n → h↑ (hX n)
aY : IsAlg-ℤ Y
aY = (λ n m → (n [-] m , f n m))
, (λ n m d → unapΣ (eq-ℤ n m d , h1⇒prop (hX ((d + n) [-] (d + m))) _ _))
pY : Hom-ℤ aY aℤ
pY = proj₁ , unapΣ (refl , h1⇒prop
(Π-level λ n → Π-level λ m → Π-level λ p → hℤ _ _) _ _)
s : Hom-ℤ aℤ aY
s = elim-Alg-ℤ hY aY
s₀ : ℤ → Y
s₀ = proj₁ s
i-β₀ : ∀ n → proj₁ (s₀ n) ≡ n
i-β₀ n = ap (λ f → proj₁ f n)
(contr⇒prop (Hom-ℤ-contr hℤ aℤ) (pY ⋆ℤ s) (id-ℤ aℤ))
|
src/presets.asm | cout/sm_practice_hack | 0 | 95901 | org $82FA00
print pc, " presets bank82 start"
preset_load:
{
PHP
LDA !MUSIC_DATA : STA !SRAM_MUSIC_DATA
LDA !MUSIC_TRACK : STA !SRAM_MUSIC_TRACK
JSL $809E93 ; Clear timer RAM
JSR $819B ; Initialize IO registers
JSR $82E2 ; Load standard BG3 tiles and sprite tiles, clear tilemaps
JSR $82C5 ; Load initial palette
if !FEATURE_PAL
JSL $91DF72 ; Initialize Samus
else
JSL $91E00D ; Initialize Samus
endif
JSL preset_load_preset
JSL preset_start_gameplay ; Start gameplay
JSL $809A79 ; HUD routine when game is loading
JSL $90AD22 ; Reset projectile data
PHP
REP #$30
LDY #$0020
LDX #$0000
.paletteLoop
LDA $7EC180,x : STA $7EC380,x ; Target Samus' palette = [Samus' palette]
INX #2
DEY #2
BNE .paletteLoop
PLP
LDA #$0000
STA $7EC400 ; Used as door fade timer
STA $0727 ; Pause menu index
LDA #$0001
STA $0723 ; Screen fade delay = 1
STA $0725 ; Screen fade counter = 1
JSL $80834B ; Enable NMI with $84 options
JSL $868000 ; Enable enemy projectiles
JSL $8483AD ; Enable PLMs
JSL $8DC4C2 ; Enable palette FX objects
JSL $888288 ; Enable HDMA objects
JSL $878000 ; Enable animated tile objects
JSL $908E0F ; Set liquid physics type
LDA #$0006 : STA $0DA0
.loopSomething
if !FEATURE_PAL
JSL $A08CE7 ; Transfer enemy tiles to VRAM and initialize enemies
else
JSL $A08CD7 ; Transfer enemy tiles to VRAM and initialize enemies
endif
JSL $808338 ; Wait for NMI
DEC $0DA0 ; Decrement $0DA0
BPL .loopSomething
LDA #$0008 : STA !GAMEMODE
%a8() : LDA #$0F : STA $51 : %a16()
PHP
REP #$30
LDY #$0200
LDX #$0000
.paletteLoop2
LDA $7EC200,x
STA $7EC000,x ; Palettes = [target palettes]
INX #2
DEY #2
BNE .paletteLoop2
PLP
; Fix Samus' palette
if !FEATURE_PAL
JSL $91DE1F
else
JSL $91DEBA
endif
; Re-upload OOB viewer tiles if needed
LDA !ram_oob_watch_active : BEQ .done_upload_sprite_oob_tiles
JSL upload_sprite_oob_tiles
.done_upload_sprite_oob_tiles
JSL reset_all_counters
STZ $0795 : STZ $0797 ; clear door transition flags
; Clear enemies if not in certain rooms
LDA $079B : CMP #$9804 : BEQ .done_clearing_enemies
CMP #$DD58 : BEQ .set_mb_state
JSR clear_all_enemies
.done_clearing_enemies
PLP
RTL
.set_mb_state
; If glass is broken, assume we should skip MB1
LDA $7ED820 : BIT #$0004 : BEQ .done_clearing_enemies
; Set health to 1 as a hint this was done by a preset
LDA #$0001 : STA $0FCC
BRA .done_clearing_enemies
}
clear_all_enemies:
{
; Clear enemies (8000 = solid to Samus, 0400 = Ignore Samus projectiles)
LDA #$0000
.loop
TAX : LDA $0F86,X : BIT #$8400 : BNE .done_clearing
ORA #$0200 : STA $0F86,X
.done_clearing
TXA : CLC : ADC #$0040 : CMP #$0400 : BNE .loop
STZ $0E52 ; unlock grey doors that require killing enemies
RTS
}
preset_load_destination_state_and_tiles:
{
; Original logic from $82E76B
PHP : PHB
REP #$30
PEA $8F00
PLB : PLB
JSR $DDF1 ; Load destination room CRE bitset
JSR $DE12 ; Load door header
JSR $DE6F ; Load room header
JSR $DEF2 ; Load state header
if !RAW_TILE_GRAPHICS
JML load_raw_tile_graphics
else
JMP $E78C
endif
}
if !RAW_TILE_GRAPHICS
; This is similar to $82E97C except we overwrite the door dependent transfer to VRAM
preset_load_library_background:
{
PHP : PHB : %ai16()
JSL $80A29C ; Clear FX tilemap
LDA $1964 : BEQ .done_fx_tilemap
STA $4312
LDA #$5BE0 : STA $2116
LDA #$1801 : STA $4310
LDA #$008A : STA $4314
LDA #$0840 : STA $4315
%a8()
LDA #$80 : STA $2115
LDA #$02 : STA $420B
%a16() : CLC
.done_fx_tilemap
PEA $8F00 : PLB : PLB
REP #$20
LDX $07BB
LDY $0016,X : BPL .done
.load_library_loop
LDX $0000,Y : INY : INY
JSR (preset_load_library_background_jump_table,X)
BCC .load_library_loop
.done
PLB : PLP : RTL
}
preset_load_library_background_jump_table:
dw $E9E5, $E9F9, $EA2D, $EA4E, $EA66, $EA56, $EA5E, preset_load_library_start_transfer_to_vram
preset_load_library_start_transfer_to_vram:
JML preset_load_library_transfer_to_vram
preset_load_library_end_transfer_to_vram:
RTS
endif
reset_all_counters:
{
LDA #$0000
STA !ram_room_has_set_rng
STA $09DA : STA $09DC : STA $09DE : STA $09E0
STA !ram_seg_rt_frames : STA !ram_seg_rt_seconds : STA !ram_seg_rt_minutes
STA !ram_realtime_room : STA !ram_last_realtime_room
STA !ram_gametime_room : STA !ram_last_gametime_room
STA !ram_last_room_lag : STA !ram_last_door_lag_frames : STA !ram_transition_counter
RTL
}
startgame_seg_timer:
{
; seg timer will be 1:50 (1 second, 50 frames) behind by the time it appears
; 20 frames more if the file was new
; initializing to 1:50 for now
LDA #$0032 : STA !ram_seg_rt_frames
LDA #$0001 : STA !ram_seg_rt_seconds
LDA #$0000 : STA !ram_seg_rt_minutes
JSL $808924 ; overwritten code
RTL
}
preset_load_preset:
{
PHB
LDA #$0000
STA $7E09D2 ; Current selected weapon
STA $7E0A04 ; Auto-cancel item
LDA #$5AFE : STA $0917 ; Load garbage into Layer 2 X position
LDA #$FFFF : STA !ram_reset_segment_later
; check if custom preset is being loaded
LDA !ram_custom_preset : BEQ .category_preset
JSL custom_preset_load
BRA .done
.category_preset
JSR category_preset_load
.done
PLB
RTL
}
category_preset_load:
{
; Get offset into preset data table
LDA !sram_preset_category : STA $C3
ASL : CLC : ADC $C3 : TAX
; Get starting preset data bank into $C5
INX : LDA.l category_preset_data_table,X : STA $C4 : DEX
; Get preset address to load into $C3
LDA !ram_load_preset : STA !sram_last_preset : STA $C3 : STA $7F0002
LDA #$0000 : STA !ram_load_preset
; Get start of preset data into $C1
LDA.l category_preset_data_table,X : LDX #$0000 : STA $C1
; If start of preset data is greater than preset address,
; then our preset address is in the next bank
CMP $C3 : BCC .build_list_loop : BEQ .build_list_loop
INC $C5
.build_list_loop
; Build list of presets to traverse
LDA [$C3] : BEQ .prepare_traverse_list_loop
INX : INX : STA $7F0002,X
CMP $C3 : STA $C3 : BCC .build_list_loop
; We just crossed back into the starting bank
DEC $C5
BRA .build_list_loop
.prepare_traverse_list_loop
; Set bank to read data from
STZ $00 : %a8() : LDA $C5 : PHA : PLB
; Set bank to store data to
LDA #$7E : STA $C5 : %a16()
.traverse_list_loop_with_bank_check
; Now traverse from the first preset until the last one
LDA $7F0002,X : TAY : CMP $C1 : BCC .increment_bank_before_inner_loop
INY : INY
BRA .inner_loop_with_bank_check_load_address
; For each preset, load and store address and value pairs
.inner_loop_with_bank_check
STA $C3 : INY : INY
CPY #$0000 : BEQ .increment_bank_before_load_value
LDA ($00),Y : STA [$C3] : INY : INY
.inner_loop_with_bank_check_load_address
CPY #$0000 : BEQ .increment_bank_before_load_address
LDA ($00),Y : CMP #$FFFF : BNE .inner_loop_with_bank_check
DEX : DEX : BPL .traverse_list_loop_with_bank_check
RTS
.increment_bank_before_inner_loop
%a8() : PHB : PLA : INC : PHA : PLB : %a16()
INY : INY
BRA .inner_loop_load_address
.increment_bank_before_load_address
%a8() : PHB : PLA : INC : PHA : PLB : %a16()
LDY #$8000
BRA .inner_loop_load_address
.increment_bank_before_load_value
%a8() : PHB : PLA : INC : PHA : PLB : %a16()
LDY #$8000
BRA .inner_loop_load_value
.traverse_list_loop
; Continue traversing from the first preset until the last one
LDA $7F0002,X : TAY : INY : INY
BRA .inner_loop_load_address
; For each preset, load and store address and value pairs
.inner_loop
STA $C3 : INY : INY
.inner_loop_load_value
LDA ($00),Y : STA [$C3] : INY : INY
.inner_loop_load_address
LDA ($00),Y : CMP #$FFFF : BNE .inner_loop
DEX : DEX : BPL .traverse_list_loop
RTS
}
category_preset_data_table:
dl preset_prkd_crateria_ceres_elevator
dl preset_kpdr21_crateria_ceres_elevator
dl preset_hundo_bombs_ceres_elevator
dl preset_100early_crateria_ceres_elevator
dl preset_rbo_bombs_ceres_elevator
dl preset_pkrd_crateria_ceres_elevator
dl preset_kpdr25_bombs_ceres_elevator
dl preset_gtclassic_crateria_ceres_elevator
dl preset_gtmax_crateria_ceres_elevator
dl preset_14ice_crateria_ceres_elevator
dl preset_14speed_crateria_ceres_elevator
dl preset_100map_bombs_ceres_elevator
dl preset_nintendopower_crateria_ceres_elevator
dl preset_allbosskpdr_crateria_ceres_elevator
dl preset_allbosspkdr_crateria_ceres_elevator
dl preset_allbossprkd_crateria_ceres_elevator
print pc, " presets bank82 end"
org $82E8D9
JSL preset_room_setup_asm_fixes
org $80F000
print pc, " presets bank80 start"
; This method is very similar to $80A07B (start gameplay)
preset_start_gameplay:
{
PHP
PHB
PHK : PLB ; DB = $80
%ai16()
SEI ; Disable IRQ
STZ $420B ; Disable all (H)DMA
STZ $07E9 ; Scrolling finished hook = 0
STZ $0943 ; Timer status = inactive
JSL $828A9A ; Reset sound queues
LDA #$FFFF : STA !DISABLE_SOUNDS
JSL $80835D ; Disable NMI
JSL $80985F ; Disable horizontal and vertical timer interrupts
JSL preset_load_destination_state_and_tiles
JSL $878016 ; Clear animated tile objects
JSL $88829E ; Wait until the end of a v-blank and clear (H)DMA enable flags
; Set Samus last pose same as current pose
LDA !SAMUS_POSE : STA !SAMUS_PREVIOUS_POSE
LDA !SAMUS_POSE_DIRECTION : STA !SAMUS_PREVIOUS_POSE_DIRECTION
; Set Samus last position same as current position
LDA !SAMUS_X : STA $0B10 : LDA !SAMUS_X_SUBPX : STA $0B12
LDA !SAMUS_Y : STA $0B14 : LDA !SAMUS_Y_SUBPX : STA $0B16
; Set loading game state for Ceres
LDA #$001F : STA $7ED914
LDA !AREA_ID : CMP #$0006 : BEQ .end_load_game_state
; Set loading game state for Zebes
LDA #$0005 : STA $7ED914
LDA !SAMUS_POSE : BNE .end_load_game_state
LDA !ROOM_ID : CMP #$91F8 : BNE .end_load_game_state
; If default pose at landing site then assume we are arriving on Zebes
LDA #$0022 : STA $7ED914
LDA #$E8CD : STA $0A42 ; Lock Samus
LDA #$E8DC : STA $0A44 ; Lock Samus
.end_load_game_state
; Preserve layer 2 values we may have loaded from presets
LDA $0919 : PHA
LDA $0917 : PHA
JSL $8882C1 ; Initialize special effects for new room
JSL $8483C3 ; Clear PLMs
JSL $868016 ; Clear enemy projectiles
JSL $8DC4D8 ; Clear palette FX objects
JSL $90AC8D ; Update beam graphics
JSL $82E139 ; Load target colours for common sprites, beams and slashing enemies / pickups
if !FEATURE_PAL
JSL $A08A2E ; Load enemies
else
JSL $A08A1E ; Load enemies
endif
JSL $80A23F ; Clear BG2 tilemap
if !RAW_TILE_GRAPHICS
JSL preset_load_level_tile_tables_scrolls_plms_and_execute_asm
else
JSL $82E7D3 ; Load level data, CRE, tile table, scroll data, create PLMs and execute door ASM and room setup ASM
endif
JSL preset_scroll_fixes
LDA !sram_preset_options : BIT !PRESETS_CLOSE_BLUE_DOORS : BNE .done_opening_doors
LDA !SAMUS_POSE : BEQ .done_opening_doors
CMP #$009B : BEQ .done_opening_doors
JSR preset_open_all_blue_doors
.done_opening_doors
JSL $89AB82 ; Load FX
if !RAW_TILE_GRAPHICS
JSL preset_load_library_background
else
JSL $82E97C ; Load library background
endif
; Pull layer 2 values, and use them if they are valid
PLA : CMP #$5AFE : BEQ .calculate_layer_2
STA $0917
PLA : STA $0919
BRA .layer_2_loaded
.calculate_layer_2
PLA ; Pull other layer 2 value but do not use it
JSR $A2F9 ; Calculate layer 2 X position
JSR $A33A ; Calculate layer 2 Y position
LDA $0917 : STA $0921 ; BG2 X scroll = layer 2 X scroll position
LDA $0919 : STA $0923 ; BG2 Y scroll = layer 2 Y scroll position
.layer_2_loaded
JSR $A37B ; Calculate BG positions
; Fix BG2 Y offsets for rooms with scrolling sky
LDA !ROOM_ID : CMP #$91F8 : BEQ .bg_offsets_scrolling_sky
CMP #$93FE : BEQ .bg_offsets_scrolling_sky
CMP #$94FD : BEQ .bg_offsets_scrolling_sky
BRA .bg_offsets_calculated
.bg_offsets_scrolling_sky
LDA $0915 : STA $0919 : STA $B7
STZ $0923
.bg_offsets_calculated
JSL $80A176 ; Display the viewable part of the room
; Enable sounds
STZ !DISABLE_SOUNDS
JSL stop_all_sounds
; Clear music queue
STZ $0629 : STZ $062B : STZ $062D : STZ $062F
STZ $0631 : STZ $0633 : STZ $0635 : STZ $0637
STZ $0639 : STZ $063B : STZ $063D : STZ $063F
; If music fast off or preset off, treat music as already loaded
LDA !sram_music_toggle : CMP #$0002 : BPL .done_music
; Compare to currently loaded music data
LDA !SRAM_MUSIC_DATA : CMP !MUSIC_DATA : BEQ .done_load_music_data
; Clear track if necessary
LDA !SRAM_MUSIC_TRACK : BEQ .load_music_data
LDA #$0000 : JSL !MUSIC_ROUTINE
.load_music_data
LDA !MUSIC_DATA : TAX
LDA !SRAM_MUSIC_DATA : STA !MUSIC_DATA
TXA : CLC : ADC #$FF00 : JSL !MUSIC_ROUTINE
BRA .load_music_track
.done_load_music_data
; Compare to currently playing music
LDA !SRAM_MUSIC_TRACK : CMP !MUSIC_TRACK : BEQ .done_music
.load_music_track
LDA !MUSIC_TRACK : TAX
LDA !SRAM_MUSIC_TRACK : STA !MUSIC_TRACK
TXA : JSL !MUSIC_ROUTINE
.done_music
JSL $80834B ; Enable NMI
LDA #$0004 : STA $A7 ; Set optional next interrupt to Main gameplay
JSL $80982A ; Enable horizontal and vertical timer interrupts
LDA $7ED914 : CMP #$0022 : BEQ .done_unlock_samus
LDA #$E695 : STA $0A42 ; Unlock Samus
LDA #$E725 : STA $0A44 ; Unlock Samus
.done_unlock_samus
LDA #$9F55 : STA $0A6C ; Set X speed table pointer
STZ $0E18 ; Set elevator to inactive
STZ $1C1F ; Clear message box index
STZ $0E1A ; Clear health bomb flag
STZ $0795 : STZ $0797 ; Clear door transition flags
LDA #$0000 : STA !ram_transition_flag
LDA #$E737 : STA $099C ; Pointer to next frame's room transition code = $82:E737
if !RAW_TILE_GRAPHICS
LDX $07BB : LDA $8F0018,X
CMP #$91C9 : BEQ .post_preset_scrolling_sky
CMP #$91CE : BEQ .post_preset_scrolling_sky
PLB : PLP : RTL
.post_preset_scrolling_sky
JML $8FE89B
else
PLB : PLP : RTL
endif
}
preset_open_all_blue_doors:
{
PHP : PHB : PHX : PHY
LDA #$8484 : STA $C3 : PHA : PLB : PLB
; First resolve all door PLMs where the door has previously been opened
LDX #$004E
.plm_search_loop
LDA $1C37,X : BEQ .plm_search_done
LDY $1D27,X : LDA $0000,Y : CMP #$8A72 : BEQ .plm_door_found
.plm_search_resume
DEX : DEX : BRA .plm_search_loop
.plm_door_found
LDA $1DC7,X : BMI .plm_search_resume
PHX : JSL $80818E : LDA $7ED8B0,X : PLX
AND $05E7 : BEQ .plm_search_resume
; Door has been previously opened
; Execute the next PLM instruction to set the BTS as a blue door
LDA $0002,Y : TAY
LDA $0000,Y : CMP #$86BC : BEQ .plm_delete
INY : INY
JSL preset_execute_plm_instruction
.plm_delete
STZ $1C37,X
BRA .plm_search_resume
.plm_search_done
; Now search all of the room BTS for doors
LDA !ROOM_WIDTH_SCROLLS : STA $C7
LDA !ROOM_WIDTH_BLOCKS : STA $C1 : ASL : STA $C3
LDA $7F0000 : LSR : TAY
STZ $C5 : TDC : %a8() : LDA #$7F : PHA : PLB
.bts_search_loop
LDA $6401,Y : AND #$FC : CMP #$40 : BEQ .bts_found
.bts_continue
DEY : BNE .bts_search_loop
; All blue doors opened
PLY : PLX : PLB : PLP : RTS
.bts_found
; Convert BTS index to tile index
; Also verify this is a door and not a slope or half-tile
%a16() : TYA : ASL : TAX : %a8()
LDA $0001,X : BIT #$30 : BNE .bts_continue
; If this door has a red scroll, then leave it closed
; Most of the work is to determine the scroll index
%a16() : TYA : DEC : LSR : LSR : LSR : LSR : STA $004204
%a8() : LDA $C7 : STA $004206
%a16() : PHA : PLA : PHA : PLA
LDA $004216 : STA $C8
LDA $004214 : LSR : LSR : LSR : LSR
%a8() : STA $004202
LDA $C7 : STA $004203
PHA : PLA : TDC
LDA $004216 : CLC : ADC $C8
PHX : TAX : LDA $7ECD20,X : PLX
CMP #$00 : BEQ .bts_continue
; Check what type of door we need to open
LDA $6401,Y : BIT #$02 : BNE .bts_check_up_or_down
BIT #$01 : BEQ .bts_facing_left_right
LDA #$04 : STA $C6
.bts_facing_left_right
%a16() : LDA #$0082 : ORA $C5 : STA $0000,X
TXA : CLC : ADC $C3 : TAX : LDA #$00A2 : ORA $C5 : STA $0000,X
TXA : CLC : ADC $C3 : TAX : LDA #$08A2 : ORA $C5 : STA $0000,X
TXA : CLC : ADC $C3 : TAX : LDA #$0882 : ORA $C5 : STA $0000,X
TDC : %a8() : STA $C6 : STA $6401,Y
%a16() : TYA : CLC : ADC $C1 : TAX : TDC : %a8() : STA $6401,X
%a16() : TXA : CLC : ADC $C1 : TAX : TDC : %a8() : STA $6401,X
%a16() : TXA : CLC : ADC $C1 : TAX : TDC : %a8() : STA $6401,X
BRL .bts_continue
.bts_check_up_or_down
BIT #$01 : BEQ .bts_facing_up_down
LDA #$08 : STA $C6
.bts_facing_up_down
%a16() : LDA #$0084 : ORA $C5 : STA $0006,X
DEC : STA $0004,X : ORA #$0400 : STA $0002,X : INC : STA $0000,X
TDC : %a8() : STA $C6 : STA $6401,Y
STA $6402,Y : STA $6403,Y : STA $6404,Y
BRL .bts_continue
}
preset_execute_plm_instruction:
{
; A = Bank 84 PLM instruction to execute
; $C3 already set to $84
STA $C1
; PLM instruction ends with an RTS, but we need an RTL
; Have the RTS return to $848031 which is an RTL
PEA $8030
JML [$00C1]
}
preset_room_setup_asm_fixes:
{
; Start with original logic
PHP : PHB
%ai16()
LDX $07BB
LDA $0018,X : BEQ .end
; Check if this is scrolling sky
CMP #$91C9 : BEQ .scrolling_sky
CMP #$91CE : BEQ .scrolling_sky
.execute_setup_asm
; Resume execution
JML $8FE89B
.scrolling_sky
; If we got here through normal gameplay, allow scrolling sky
LDA !GAMEMODE : CMP #$0006 : BEQ .execute_setup_asm
CMP #$001F : BEQ .execute_setup_asm
CMP #$0028 : BEQ .execute_setup_asm
if !RAW_TILE_GRAPHICS
; Defer scrolling sky asm until later
else
; Disable scrolling sky asm
STZ $07DF
; Clear layer 2 library bits (change 0181 to 0080)
LDA #$0080 : STA $091B
endif
.end
PLB : PLP : RTL
}
transfer_cgram_long:
{
PHP
%a16()
%i8()
JSR $933A
PLP
RTL
}
add_grapple_and_xray_to_hud:
{
; Copied from $809AB1 to $809AC9
LDA $09A2 : BIT #$8000 : BEQ $04
JSL $809A3E ; Add x-ray to HUD tilemap
LDA $09A2 : BIT #$4000 : BEQ $04
JSL $809A2E ; Add grapple to HUD tilemap
JMP .resume_infohud_icon_initialization
}
print pc, " presets bank80 end"
warnpc $80F800
; $80:9AB1: Add x-ray and grapple HUD items if necessary
org $809AB1
; Skip x-ray and grapple if max HP is a multiple of 4,
; which is only possible if GT code was used
LDA $09C4 : AND #$0003 : BEQ .resume_infohud_icon_initialization
JMP add_grapple_and_xray_to_hud
warnpc $809AC9
; $80:9AC9: Resume original logic
org $809AC9
.resume_infohud_icon_initialization
; -------------------
; Category Menus/Data
; -------------------
org $EAE000
check bankcross off
print pc, " preset data crossbank start"
incsrc presets/14ice_data.asm
incsrc presets/14speed_data.asm
incsrc presets/100early_data.asm
incsrc presets/100map_data.asm
incsrc presets/allbosskpdr_data.asm
incsrc presets/allbosspkdr_data.asm
incsrc presets/allbossprkd_data.asm
incsrc presets/gtclassic_data.asm
incsrc presets/gtmax_data.asm
incsrc presets/hundo_data.asm
incsrc presets/kpdr21_data.asm
incsrc presets/kpdr25_data.asm
incsrc presets/nintendopower_data.asm
incsrc presets/pkrd_data.asm
incsrc presets/prkd_data.asm
incsrc presets/rbo_data.asm
print pc, " preset data crossbank end"
warnpc $F08000
check bankcross on
org $F18000
print pc, " preset menu bankF1 start"
incsrc presets/14ice_menu.asm
incsrc presets/14speed_menu.asm
incsrc presets/100early_menu.asm
incsrc presets/100map_menu.asm
incsrc presets/allbosskpdr_menu.asm
incsrc presets/allbosspkdr_menu.asm
incsrc presets/allbossprkd_menu.asm
incsrc presets/gtclassic_menu.asm
print pc, " preset menu bankF1 end"
org $F28000
print pc, " preset menu bankF2 start"
incsrc presets/gtmax_menu.asm
incsrc presets/hundo_menu.asm
incsrc presets/kpdr21_menu.asm
incsrc presets/kpdr25_menu.asm
incsrc presets/nintendopower_menu.asm
incsrc presets/pkrd_menu.asm
incsrc presets/prkd_menu.asm
incsrc presets/rbo_menu.asm
print pc, " preset menu bankF2 end"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.