Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 9,092 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 427514399 | 11 hrs ago | IN | 0 ETH | 0.00000094 | ||||
| Transfer | 427513927 | 11 hrs ago | IN | 0 ETH | 0.00000104 | ||||
| Approve | 427507674 | 12 hrs ago | IN | 0 ETH | 0.00000095 | ||||
| Transfer | 427507375 | 12 hrs ago | IN | 0 ETH | 0.00000071 | ||||
| Transfer | 426753456 | 2 days ago | IN | 0 ETH | 0.00000106 | ||||
| Transfer | 426569694 | 3 days ago | IN | 0 ETH | 0.00000105 | ||||
| Transfer | 426460643 | 3 days ago | IN | 0 ETH | 0.00000106 | ||||
| Transfer | 426439365 | 3 days ago | IN | 0 ETH | 0.00000107 | ||||
| Transfer | 426439349 | 3 days ago | IN | 0 ETH | 0.00000105 | ||||
| Transfer | 426436494 | 3 days ago | IN | 0 ETH | 0.00000106 | ||||
| Transfer | 425548072 | 6 days ago | IN | 0 ETH | 0.0000007 | ||||
| Approve | 425359164 | 6 days ago | IN | 0 ETH | 0.0000005 | ||||
| Approve | 425315804 | 6 days ago | IN | 0 ETH | 0.0000005 | ||||
| Transfer | 423810809 | 11 days ago | IN | 0 ETH | 0.0000006 | ||||
| Transfer | 423594404 | 11 days ago | IN | 0 ETH | 0.00000104 | ||||
| Transfer | 421946406 | 16 days ago | IN | 0 ETH | 0.0000006 | ||||
| Transfer | 421945854 | 16 days ago | IN | 0 ETH | 0.00000104 | ||||
| Approve | 419221497 | 24 days ago | IN | 0 ETH | 0.00000047 | ||||
| Transfer | 417494572 | 29 days ago | IN | 0 ETH | 0.00000052 | ||||
| Approve | 416956319 | 31 days ago | IN | 0 ETH | 0.00000046 | ||||
| Transfer | 412396098 | 44 days ago | IN | 0 ETH | 0.0000003 | ||||
| Approve | 412358104 | 44 days ago | IN | 0 ETH | 0.00000052 | ||||
| Transfer | 412135191 | 44 days ago | IN | 0 ETH | 0.00000047 | ||||
| Approve | 412121700 | 45 days ago | IN | 0 ETH | 0.00000047 | ||||
| Transfer | 412121437 | 45 days ago | IN | 0 ETH | 0.00000052 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BladeGamesToken
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/**
*Submitted for verification at Arbiscan.io on 2024-12-21
*/
// SPDX-License-Identifier: UNLICENSED
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity 0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity 0.8.20;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
pragma solidity 0.8.20;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity 0.8.20;
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity 0.8.20;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)
pragma solidity 0.8.20;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// File: @openzeppelin/contracts/interfaces/IERC20.sol
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)
pragma solidity 0.8.20;
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
pragma solidity 0.8.20;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/interfaces/IERC165.sol
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)
pragma solidity 0.8.20;
// File: @openzeppelin/contracts/interfaces/IERC1363.sol
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)
pragma solidity 0.8.20;
/**
* @title IERC1363
* @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
*
* Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
* after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
*/
interface IERC1363 is IERC20, IERC165 {
/*
* Note: the ERC-165 identifier for this interface is 0xb0202a11.
* 0xb0202a11 ===
* bytes4(keccak256('transferAndCall(address,uint256)')) ^
* bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
* bytes4(keccak256('approveAndCall(address,uint256)')) ^
* bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
*/
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferAndCall(address to, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @param data Additional data with no specified format, sent in call to `to`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param from The address which you want to send tokens from.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferFromAndCall(address from, address to, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param from The address which you want to send tokens from.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @param data Additional data with no specified format, sent in call to `to`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function approveAndCall(address spender, uint256 value) external returns (bool);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
* @param data Additional data with no specified format, sent in call to `spender`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}
// File: @openzeppelin/contracts/utils/Errors.sol
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)
pragma solidity 0.8.20;
/**
* @dev Collection of common custom errors used in multiple contracts
*
* IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
* It is recommended to avoid relying on the error API for critical functionality.
*
* _Available since v5.1._
*/
library Errors {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error InsufficientBalance(uint256 balance, uint256 needed);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedCall();
/**
* @dev The deployment failed.
*/
error FailedDeployment();
/**
* @dev A necessary precompile is missing.
*/
error MissingPrecompile(address);
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)
pragma solidity 0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert Errors.InsufficientBalance(address(this).balance, amount);
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert Errors.FailedCall();
}
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {Errors.FailedCall} error.
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert Errors.InsufficientBalance(address(this).balance, value);
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
* of an unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {Errors.FailedCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
*/
function _revert(bytes memory returndata) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly ("memory-safe") {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert Errors.FailedCall();
}
}
}
// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity 0.8.20;
/**
* @title SafeERC20
* @dev Wrappers around ERC-20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
/**
* @dev An operation with an ERC-20 token failed.
*/
error SafeERC20FailedOperation(address token);
/**
* @dev Indicates a failed `decreaseAllowance` request.
*/
error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
forceApprove(token, spender, oldAllowance + value);
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
* value, non-reverting calls are assumed to be successful.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
unchecked {
uint256 currentAllowance = token.allowance(address(this), spender);
if (currentAllowance < requestedDecrease) {
revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
}
forceApprove(token, spender, currentAllowance - requestedDecrease);
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*
* NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
* only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
* set here.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
* code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* Reverts if the returned value is other than `true`.
*/
function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
if (to.code.length == 0) {
safeTransfer(token, to, value);
} else if (!token.transferAndCall(to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
* has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* Reverts if the returned value is other than `true`.
*/
function transferFromAndCallRelaxed(
IERC1363 token,
address from,
address to,
uint256 value,
bytes memory data
) internal {
if (to.code.length == 0) {
safeTransferFrom(token, from, to, value);
} else if (!token.transferFromAndCall(from, to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
* code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
* Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
* once without retrying, and relies on the returned value to be true.
*
* Reverts if the returned value is other than `true`.
*/
function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
if (to.code.length == 0) {
forceApprove(token, to, value);
} else if (!token.approveAndCall(to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
// bubble errors
if iszero(success) {
let ptr := mload(0x40)
returndatacopy(ptr, 0, returndatasize())
revert(ptr, returndatasize())
}
returnSize := returndatasize()
returnValue := mload(0)
}
if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
bool success;
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
returnSize := returndatasize()
returnValue := mload(0)
}
return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
}
}
// File: contracts/oft/contracts/interfaces/IMessageLibManager.sol
pragma solidity >=0.8.0;
struct SetConfigParam {
uint32 eid;
uint32 configType;
bytes config;
}
interface IMessageLibManager {
struct Timeout {
address lib;
uint256 expiry;
}
event LibraryRegistered(address newLib);
event DefaultSendLibrarySet(uint32 eid, address newLib);
event DefaultReceiveLibrarySet(uint32 eid, address newLib);
event DefaultReceiveLibraryTimeoutSet(uint32 eid, address oldLib, uint256 expiry);
event SendLibrarySet(address sender, uint32 eid, address newLib);
event ReceiveLibrarySet(address receiver, uint32 eid, address newLib);
event ReceiveLibraryTimeoutSet(address receiver, uint32 eid, address oldLib, uint256 timeout);
function registerLibrary(address _lib) external;
function isRegisteredLibrary(address _lib) external view returns (bool);
function getRegisteredLibraries() external view returns (address[] memory);
function setDefaultSendLibrary(uint32 _eid, address _newLib) external;
function defaultSendLibrary(uint32 _eid) external view returns (address);
function setDefaultReceiveLibrary(uint32 _eid, address _newLib, uint256 _gracePeriod) external;
function defaultReceiveLibrary(uint32 _eid) external view returns (address);
function setDefaultReceiveLibraryTimeout(uint32 _eid, address _lib, uint256 _expiry) external;
function defaultReceiveLibraryTimeout(uint32 _eid) external view returns (address lib, uint256 expiry);
function isSupportedEid(uint32 _eid) external view returns (bool);
function isValidReceiveLibrary(address _receiver, uint32 _eid, address _lib) external view returns (bool);
/// ------------------- OApp interfaces -------------------
function setSendLibrary(address _oapp, uint32 _eid, address _newLib) external;
function getSendLibrary(address _sender, uint32 _eid) external view returns (address lib);
function isDefaultSendLibrary(address _sender, uint32 _eid) external view returns (bool);
function setReceiveLibrary(address _oapp, uint32 _eid, address _newLib, uint256 _gracePeriod) external;
function getReceiveLibrary(address _receiver, uint32 _eid) external view returns (address lib, bool isDefault);
function setReceiveLibraryTimeout(address _oapp, uint32 _eid, address _lib, uint256 _expiry) external;
function receiveLibraryTimeout(address _receiver, uint32 _eid) external view returns (address lib, uint256 expiry);
function setConfig(address _oapp, address _lib, SetConfigParam[] calldata _params) external;
function getConfig(
address _oapp,
address _lib,
uint32 _eid,
uint32 _configType
) external view returns (bytes memory config);
}
// File: contracts/oft/contracts/interfaces/IMessagingComposer.sol
pragma solidity >=0.8.0;
interface IMessagingComposer {
event ComposeSent(address from, address to, bytes32 guid, uint16 index, bytes message);
event ComposeDelivered(address from, address to, bytes32 guid, uint16 index);
event LzComposeAlert(
address indexed from,
address indexed to,
address indexed executor,
bytes32 guid,
uint16 index,
uint256 gas,
uint256 value,
bytes message,
bytes extraData,
bytes reason
);
function composeQueue(
address _from,
address _to,
bytes32 _guid,
uint16 _index
) external view returns (bytes32 messageHash);
function sendCompose(address _to, bytes32 _guid, uint16 _index, bytes calldata _message) external;
function lzCompose(
address _from,
address _to,
bytes32 _guid,
uint16 _index,
bytes calldata _message,
bytes calldata _extraData
) external payable;
}
// File: contracts/oft/contracts/interfaces/IMessagingChannel.sol
pragma solidity >=0.8.0;
interface IMessagingChannel {
event InboundNonceSkipped(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce);
event PacketNilified(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash);
event PacketBurnt(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash);
function eid() external view returns (uint32);
// this is an emergency function if a message cannot be verified for some reasons
// required to provide _nextNonce to avoid race condition
function skip(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce) external;
function nilify(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external;
function burn(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external;
function nextGuid(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (bytes32);
function inboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64);
function outboundNonce(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (uint64);
function inboundPayloadHash(
address _receiver,
uint32 _srcEid,
bytes32 _sender,
uint64 _nonce
) external view returns (bytes32);
function lazyInboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64);
}
// File: contracts/oft/contracts/interfaces/IMessagingContext.sol
pragma solidity >=0.8.0;
interface IMessagingContext {
function isSendingMessage() external view returns (bool);
function getSendContext() external view returns (uint32 dstEid, address sender);
}
// File: contracts/oft/contracts/interfaces/ILayerZeroEndpointV2.sol
pragma solidity >=0.8.0;
struct MessagingParams {
uint32 dstEid;
bytes32 receiver;
bytes message;
bytes options;
bool payInLzToken;
}
struct MessagingReceipt {
bytes32 guid;
uint64 nonce;
MessagingFee fee;
}
struct MessagingFee {
uint256 nativeFee;
uint256 lzTokenFee;
}
struct Origin {
uint32 srcEid;
bytes32 sender;
uint64 nonce;
}
interface ILayerZeroEndpointV2 is IMessageLibManager, IMessagingComposer, IMessagingChannel, IMessagingContext {
event PacketSent(bytes encodedPayload, bytes options, address sendLibrary);
event PacketVerified(Origin origin, address receiver, bytes32 payloadHash);
event PacketDelivered(Origin origin, address receiver);
event LzReceiveAlert(
address indexed receiver,
address indexed executor,
Origin origin,
bytes32 guid,
uint256 gas,
uint256 value,
bytes message,
bytes extraData,
bytes reason
);
event LzTokenSet(address token);
event DelegateSet(address sender, address delegate);
function quote(MessagingParams calldata _params, address _sender) external view returns (MessagingFee memory);
function send(
MessagingParams calldata _params,
address _refundAddress
) external payable returns (MessagingReceipt memory);
function verify(Origin calldata _origin, address _receiver, bytes32 _payloadHash) external;
function verifiable(Origin calldata _origin, address _receiver) external view returns (bool);
function initializable(Origin calldata _origin, address _receiver) external view returns (bool);
function lzReceive(
Origin calldata _origin,
address _receiver,
bytes32 _guid,
bytes calldata _message,
bytes calldata _extraData
) external payable;
// oapp can burn messages partially by calling this function with its own business logic if messages are verified in order
function clear(address _oapp, Origin calldata _origin, bytes32 _guid, bytes calldata _message) external;
function setLzToken(address _lzToken) external;
function lzToken() external view returns (address);
function nativeToken() external view returns (address);
function setDelegate(address _delegate) external;
}
// File: contracts/oft/contracts/interfaces/IOAppCore.sol
pragma solidity 0.8.20;
/**
* @title IOAppCore
*/
interface IOAppCore {
// Custom error messages
error OnlyPeer(uint32 eid, bytes32 sender);
error NoPeer(uint32 eid);
error InvalidEndpointCall();
error InvalidDelegate();
// Event emitted when a peer (OApp) is set for a corresponding endpoint
event PeerSet(uint32 eid, bytes32 peer);
/**
* @notice Retrieves the OApp version information.
* @return senderVersion The version of the OAppSender.sol contract.
* @return receiverVersion The version of the OAppReceiver.sol contract.
*/
function oAppVersion() external view returns (uint64 senderVersion, uint64 receiverVersion);
/**
* @notice Retrieves the LayerZero endpoint associated with the OApp.
* @return iEndpoint The LayerZero endpoint as an interface.
*/
function endpoint() external view returns (ILayerZeroEndpointV2 iEndpoint);
/**
* @notice Retrieves the peer (OApp) associated with a corresponding endpoint.
* @param _eid The endpoint ID.
* @return peer The peer address (OApp instance) associated with the corresponding endpoint.
*/
function peers(uint32 _eid) external view returns (bytes32 peer);
/**
* @notice Sets the peer address (OApp instance) for a corresponding endpoint.
* @param _eid The endpoint ID.
* @param _peer The address of the peer to be associated with the corresponding endpoint.
*/
function setPeer(uint32 _eid, bytes32 _peer) external;
/**
* @notice Sets the delegate address for the OApp Core.
* @param _delegate The address of the delegate to be set.
*/
function setDelegate(address _delegate) external;
}
// File: contracts/oft/contracts/OAppCore.sol
pragma solidity 0.8.20;
/**
* @title OAppCore
* @dev Abstract contract implementing the IOAppCore interface with basic OApp configurations.
*/
abstract contract OAppCore is IOAppCore, Ownable {
// The LayerZero endpoint associated with the given OApp
ILayerZeroEndpointV2 public immutable endpoint;
// Mapping to store peers associated with corresponding endpoints
mapping(uint32 eid => bytes32 peer) public peers;
/**
* @dev Constructor to initialize the OAppCore with the provided endpoint and delegate.
* @param _endpoint The address of the LOCAL Layer Zero endpoint.
* @param _delegate The delegate capable of making OApp configurations inside of the endpoint.
*
* @dev The delegate typically should be set as the owner of the contract.
*/
constructor(address _endpoint, address _delegate) {
endpoint = ILayerZeroEndpointV2(_endpoint);
if (_delegate == address(0)) revert InvalidDelegate();
endpoint.setDelegate(_delegate);
}
/**
* @notice Sets the peer address (OApp instance) for a corresponding endpoint.
* @param _eid The endpoint ID.
* @param _peer The address of the peer to be associated with the corresponding endpoint.
*
* @dev Only the owner/admin of the OApp can call this function.
* @dev Indicates that the peer is trusted to send LayerZero messages to this OApp.
* @dev Set this to bytes32(0) to remove the peer address.
* @dev Peer is a bytes32 to accommodate non-evm chains.
*/
function setPeer(uint32 _eid, bytes32 _peer) public virtual onlyOwner {
_setPeer(_eid, _peer);
}
/**
* @notice Sets the peer address (OApp instance) for a corresponding endpoint.
* @param _eid The endpoint ID.
* @param _peer The address of the peer to be associated with the corresponding endpoint.
*
* @dev Indicates that the peer is trusted to send LayerZero messages to this OApp.
* @dev Set this to bytes32(0) to remove the peer address.
* @dev Peer is a bytes32 to accommodate non-evm chains.
*/
function _setPeer(uint32 _eid, bytes32 _peer) internal virtual {
peers[_eid] = _peer;
emit PeerSet(_eid, _peer);
}
/**
* @notice Internal function to get the peer address associated with a specific endpoint; reverts if NOT set.
* ie. the peer is set to bytes32(0).
* @param _eid The endpoint ID.
* @return peer The address of the peer associated with the specified endpoint.
*/
function _getPeerOrRevert(uint32 _eid) internal view virtual returns (bytes32) {
bytes32 peer = peers[_eid];
if (peer == bytes32(0)) revert NoPeer(_eid);
return peer;
}
/**
* @notice Sets the delegate address for the OApp.
* @param _delegate The address of the delegate to be set.
*
* @dev Only the owner/admin of the OApp can call this function.
* @dev Provides the ability for a delegate to set configs, on behalf of the OApp, directly on the Endpoint contract.
*/
function setDelegate(address _delegate) public onlyOwner {
endpoint.setDelegate(_delegate);
}
}
// File: contracts/oft/contracts/OAppSender.sol
pragma solidity 0.8.20;
/**
* @title OAppSender
* @dev Abstract contract implementing the OAppSender functionality for sending messages to a LayerZero endpoint.
*/
abstract contract OAppSender is OAppCore {
using SafeERC20 for IERC20;
// Custom error messages
error NotEnoughNative(uint256 msgValue);
error LzTokenUnavailable();
// @dev The version of the OAppSender implementation.
// @dev Version is bumped when changes are made to this contract.
uint64 internal constant SENDER_VERSION = 1;
/**
* @notice Retrieves the OApp version information.
* @return senderVersion The version of the OAppSender.sol contract.
* @return receiverVersion The version of the OAppReceiver.sol contract.
*
* @dev Providing 0 as the default for OAppReceiver version. Indicates that the OAppReceiver is not implemented.
* ie. this is a SEND only OApp.
* @dev If the OApp uses both OAppSender and OAppReceiver, then this needs to be override returning the correct versions
*/
function oAppVersion() public view virtual returns (uint64 senderVersion, uint64 receiverVersion) {
return (SENDER_VERSION, 0);
}
/**
* @dev Internal function to interact with the LayerZero EndpointV2.quote() for fee calculation.
* @param _dstEid The destination endpoint ID.
* @param _message The message payload.
* @param _options Additional options for the message.
* @param _payInLzToken Flag indicating whether to pay the fee in LZ tokens.
* @return fee The calculated MessagingFee for the message.
* - nativeFee: The native fee for the message.
* - lzTokenFee: The LZ token fee for the message.
*/
function _quote(
uint32 _dstEid,
bytes memory _message,
bytes memory _options,
bool _payInLzToken
) internal view virtual returns (MessagingFee memory fee) {
return
endpoint.quote(
MessagingParams(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _payInLzToken),
address(this)
);
}
/**
* @dev Internal function to interact with the LayerZero EndpointV2.send() for sending a message.
* @param _dstEid The destination endpoint ID.
* @param _message The message payload.
* @param _options Additional options for the message.
* @param _fee The calculated LayerZero fee for the message.
* - nativeFee: The native fee.
* - lzTokenFee: The lzToken fee.
* @param _refundAddress The address to receive any excess fee values sent to the endpoint.
* @return receipt The receipt for the sent message.
* - guid: The unique identifier for the sent message.
* - nonce: The nonce of the sent message.
* - fee: The LayerZero fee incurred for the message.
*/
function _lzSend(
uint32 _dstEid,
bytes memory _message,
bytes memory _options,
MessagingFee memory _fee,
address _refundAddress
) internal virtual returns (MessagingReceipt memory receipt) {
// @dev Push corresponding fees to the endpoint, any excess is sent back to the _refundAddress from the endpoint.
uint256 messageValue = _payNative(_fee.nativeFee);
if (_fee.lzTokenFee > 0) _payLzToken(_fee.lzTokenFee);
return
// solhint-disable-next-line check-send-result
endpoint.send{ value: messageValue }(
MessagingParams(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _fee.lzTokenFee > 0),
_refundAddress
);
}
/**
* @dev Internal function to pay the native fee associated with the message.
* @param _nativeFee The native fee to be paid.
* @return nativeFee The amount of native currency paid.
*
* @dev If the OApp needs to initiate MULTIPLE LayerZero messages in a single transaction,
* this will need to be overridden because msg.value would contain multiple lzFees.
* @dev Should be overridden in the event the LayerZero endpoint requires a different native currency.
* @dev Some EVMs use an ERC20 as a method for paying transactions/gasFees.
* @dev The endpoint is EITHER/OR, ie. it will NOT support both types of native payment at a time.
*/
function _payNative(uint256 _nativeFee) internal virtual returns (uint256 nativeFee) {
if (msg.value != _nativeFee) revert NotEnoughNative(msg.value);
return _nativeFee;
}
/**
* @dev Internal function to pay the LZ token fee associated with the message.
* @param _lzTokenFee The LZ token fee to be paid.
*
* @dev If the caller is trying to pay in the specified lzToken, then the lzTokenFee is passed to the endpoint.
* @dev Any excess sent, is passed back to the specified _refundAddress in the _lzSend().
*/
function _payLzToken(uint256 _lzTokenFee) internal virtual {
// @dev Cannot cache the token because it is not immutable in the endpoint.
address lzToken = endpoint.lzToken();
if (lzToken == address(0)) revert LzTokenUnavailable();
// Pay LZ token fee by sending tokens to the endpoint.
IERC20(lzToken).safeTransferFrom(msg.sender, address(endpoint), _lzTokenFee);
}
}
// File: contracts/oft/contracts/interfaces/ILayerZeroReceiver.sol
pragma solidity >=0.8.0;
interface ILayerZeroReceiver {
function allowInitializePath(Origin calldata _origin) external view returns (bool);
function nextNonce(uint32 _eid, bytes32 _sender) external view returns (uint64);
function lzReceive(
Origin calldata _origin,
bytes32 _guid,
bytes calldata _message,
address _executor,
bytes calldata _extraData
) external payable;
}
// File: contracts/oft/contracts/interfaces/IOAppReceiver.sol
pragma solidity 0.8.20;
interface IOAppReceiver is ILayerZeroReceiver {
/**
* @notice Indicates whether an address is an approved composeMsg sender to the Endpoint.
* @param _origin The origin information containing the source endpoint and sender address.
* - srcEid: The source chain endpoint ID.
* - sender: The sender address on the src chain.
* - nonce: The nonce of the message.
* @param _message The lzReceive payload.
* @param _sender The sender address.
* @return isSender Is a valid sender.
*
* @dev Applications can optionally choose to implement a separate composeMsg sender that is NOT the bridging layer.
* @dev The default sender IS the OAppReceiver implementer.
*/
function isComposeMsgSender(
Origin calldata _origin,
bytes calldata _message,
address _sender
) external view returns (bool isSender);
}
// File: contracts/oft/contracts/OAppReceiver.sol
pragma solidity 0.8.20;
/**
* @title OAppReceiver
* @dev Abstract contract implementing the ILayerZeroReceiver interface and extending OAppCore for OApp receivers.
*/
abstract contract OAppReceiver is IOAppReceiver, OAppCore {
// Custom error message for when the caller is not the registered endpoint/
error OnlyEndpoint(address addr);
// @dev The version of the OAppReceiver implementation.
// @dev Version is bumped when changes are made to this contract.
uint64 internal constant RECEIVER_VERSION = 2;
/**
* @notice Retrieves the OApp version information.
* @return senderVersion The version of the OAppSender.sol contract.
* @return receiverVersion The version of the OAppReceiver.sol contract.
*
* @dev Providing 0 as the default for OAppSender version. Indicates that the OAppSender is not implemented.
* ie. this is a RECEIVE only OApp.
* @dev If the OApp uses both OAppSender and OAppReceiver, then this needs to be override returning the correct versions.
*/
function oAppVersion() public view virtual returns (uint64 senderVersion, uint64 receiverVersion) {
return (0, RECEIVER_VERSION);
}
/**
* @notice Indicates whether an address is an approved composeMsg sender to the Endpoint.
* @dev _origin The origin information containing the source endpoint and sender address.
* - srcEid: The source chain endpoint ID.
* - sender: The sender address on the src chain.
* - nonce: The nonce of the message.
* @dev _message The lzReceive payload.
* @param _sender The sender address.
* @return isSender Is a valid sender.
*
* @dev Applications can optionally choose to implement separate composeMsg senders that are NOT the bridging layer.
* @dev The default sender IS the OAppReceiver implementer.
*/
function isComposeMsgSender(
Origin calldata /*_origin*/,
bytes calldata /*_message*/,
address _sender
) public view virtual returns (bool) {
return _sender == address(this);
}
/**
* @notice Checks if the path initialization is allowed based on the provided origin.
* @param origin The origin information containing the source endpoint and sender address.
* @return Whether the path has been initialized.
*
* @dev This indicates to the endpoint that the OApp has enabled msgs for this particular path to be received.
* @dev This defaults to assuming if a peer has been set, its initialized.
* Can be overridden by the OApp if there is other logic to determine this.
*/
function allowInitializePath(Origin calldata origin) public view virtual returns (bool) {
return peers[origin.srcEid] == origin.sender;
}
/**
* @notice Retrieves the next nonce for a given source endpoint and sender address.
* @dev _srcEid The source endpoint ID.
* @dev _sender The sender address.
* @return nonce The next nonce.
*
* @dev The path nonce starts from 1. If 0 is returned it means that there is NO nonce ordered enforcement.
* @dev Is required by the off-chain executor to determine the OApp expects msg execution is ordered.
* @dev This is also enforced by the OApp.
* @dev By default this is NOT enabled. ie. nextNonce is hardcoded to return 0.
*/
function nextNonce(uint32 /*_srcEid*/, bytes32 /*_sender*/) public view virtual returns (uint64 nonce) {
return 0;
}
/**
* @dev Entry point for receiving messages or packets from the endpoint.
* @param _origin The origin information containing the source endpoint and sender address.
* - srcEid: The source chain endpoint ID.
* - sender: The sender address on the src chain.
* - nonce: The nonce of the message.
* @param _guid The unique identifier for the received LayerZero message.
* @param _message The payload of the received message.
* @param _executor The address of the executor for the received message.
* @param _extraData Additional arbitrary data provided by the corresponding executor.
*
* @dev Entry point for receiving msg/packet from the LayerZero endpoint.
*/
function lzReceive(
Origin calldata _origin,
bytes32 _guid,
bytes calldata _message,
address _executor,
bytes calldata _extraData
) public payable virtual {
// Ensures that only the endpoint can attempt to lzReceive() messages to this OApp.
if (address(endpoint) != msg.sender) revert OnlyEndpoint(msg.sender);
// Ensure that the sender matches the expected peer for the source endpoint.
if (_getPeerOrRevert(_origin.srcEid) != _origin.sender) revert OnlyPeer(_origin.srcEid, _origin.sender);
// Call the internal OApp implementation of lzReceive.
_lzReceive(_origin, _guid, _message, _executor, _extraData);
}
/**
* @dev Internal function to implement lzReceive logic without needing to copy the basic parameter validation.
*/
function _lzReceive(
Origin calldata _origin,
bytes32 _guid,
bytes calldata _message,
address _executor,
bytes calldata _extraData
) internal virtual;
}
// File: contracts/oft/contracts/OApp.sol
pragma solidity 0.8.20;
// @dev Import the 'MessagingFee' and 'MessagingReceipt' so it's exposed to OApp implementers
// solhint-disable-next-line no-unused-import
// @dev Import the 'Origin' so it's exposed to OApp implementers
// solhint-disable-next-line no-unused-import
/**
* @title OApp
* @dev Abstract contract serving as the base for OApp implementation, combining OAppSender and OAppReceiver functionality.
*/
abstract contract OApp is OAppSender, OAppReceiver {
/**
* @dev Constructor to initialize the OApp with the provided endpoint and owner.
* @param _endpoint The address of the LOCAL LayerZero endpoint.
* @param _delegate The delegate capable of making OApp configurations inside of the endpoint.
*/
constructor(address _endpoint, address _delegate) OAppCore(_endpoint, _delegate) {}
/**
* @notice Retrieves the OApp version information.
* @return senderVersion The version of the OAppSender.sol implementation.
* @return receiverVersion The version of the OAppReceiver.sol implementation.
*/
function oAppVersion()
public
pure
virtual
override(OAppSender, OAppReceiver)
returns (uint64 senderVersion, uint64 receiverVersion)
{
return (SENDER_VERSION, RECEIVER_VERSION);
}
}
// File: contracts/oft/contracts/interfaces/IOAppOptionsType3.sol
pragma solidity 0.8.20;
/**
* @dev Struct representing enforced option parameters.
*/
struct EnforcedOptionParam {
uint32 eid; // Endpoint ID
uint16 msgType; // Message Type
bytes options; // Additional options
}
/**
* @title IOAppOptionsType3
* @dev Interface for the OApp with Type 3 Options, allowing the setting and combining of enforced options.
*/
interface IOAppOptionsType3 {
// Custom error message for invalid options
error InvalidOptions(bytes options);
// Event emitted when enforced options are set
event EnforcedOptionSet(EnforcedOptionParam[] _enforcedOptions);
/**
* @notice Sets enforced options for specific endpoint and message type combinations.
* @param _enforcedOptions An array of EnforcedOptionParam structures specifying enforced options.
*/
function setEnforcedOptions(EnforcedOptionParam[] calldata _enforcedOptions) external;
/**
* @notice Combines options for a given endpoint and message type.
* @param _eid The endpoint ID.
* @param _msgType The OApp message type.
* @param _extraOptions Additional options passed by the caller.
* @return options The combination of caller specified options AND enforced options.
*/
function combineOptions(
uint32 _eid,
uint16 _msgType,
bytes calldata _extraOptions
) external view returns (bytes memory options);
}
// File: contracts/oft/contracts/libs/OAppOptionsType3.sol
pragma solidity 0.8.20;
/**
* @title OAppOptionsType3
* @dev Abstract contract implementing the IOAppOptionsType3 interface with type 3 options.
*/
abstract contract OAppOptionsType3 is IOAppOptionsType3, Ownable {
uint16 internal constant OPTION_TYPE_3 = 3;
// @dev The "msgType" should be defined in the child contract.
mapping(uint32 eid => mapping(uint16 msgType => bytes enforcedOption)) public enforcedOptions;
/**
* @dev Sets the enforced options for specific endpoint and message type combinations.
* @param _enforcedOptions An array of EnforcedOptionParam structures specifying enforced options.
*
* @dev Only the owner/admin of the OApp can call this function.
* @dev Provides a way for the OApp to enforce things like paying for PreCrime, AND/OR minimum dst lzReceive gas amounts etc.
* @dev These enforced options can vary as the potential options/execution on the remote may differ as per the msgType.
* eg. Amount of lzReceive() gas necessary to deliver a lzCompose() message adds overhead you dont want to pay
* if you are only making a standard LayerZero message ie. lzReceive() WITHOUT sendCompose().
*/
function setEnforcedOptions(EnforcedOptionParam[] calldata _enforcedOptions) public virtual onlyOwner {
_setEnforcedOptions(_enforcedOptions);
}
/**
* @dev Sets the enforced options for specific endpoint and message type combinations.
* @param _enforcedOptions An array of EnforcedOptionParam structures specifying enforced options.
*
* @dev Provides a way for the OApp to enforce things like paying for PreCrime, AND/OR minimum dst lzReceive gas amounts etc.
* @dev These enforced options can vary as the potential options/execution on the remote may differ as per the msgType.
* eg. Amount of lzReceive() gas necessary to deliver a lzCompose() message adds overhead you dont want to pay
* if you are only making a standard LayerZero message ie. lzReceive() WITHOUT sendCompose().
*/
function _setEnforcedOptions(EnforcedOptionParam[] memory _enforcedOptions) internal virtual {
for (uint256 i = 0; i < _enforcedOptions.length; i++) {
// @dev Enforced options are only available for optionType 3, as type 1 and 2 dont support combining.
_assertOptionsType3(_enforcedOptions[i].options);
enforcedOptions[_enforcedOptions[i].eid][_enforcedOptions[i].msgType] = _enforcedOptions[i].options;
}
emit EnforcedOptionSet(_enforcedOptions);
}
/**
* @notice Combines options for a given endpoint and message type.
* @param _eid The endpoint ID.
* @param _msgType The OAPP message type.
* @param _extraOptions Additional options passed by the caller.
* @return options The combination of caller specified options AND enforced options.
*
* @dev If there is an enforced lzReceive option:
* - {gasLimit: 200k, msg.value: 1 ether} AND a caller supplies a lzReceive option: {gasLimit: 100k, msg.value: 0.5 ether}
* - The resulting options will be {gasLimit: 300k, msg.value: 1.5 ether} when the message is executed on the remote lzReceive() function.
* @dev This presence of duplicated options is handled off-chain in the verifier/executor.
*/
function combineOptions(
uint32 _eid,
uint16 _msgType,
bytes calldata _extraOptions
) public view virtual returns (bytes memory) {
bytes memory enforced = enforcedOptions[_eid][_msgType];
// No enforced options, pass whatever the caller supplied, even if it's empty or legacy type 1/2 options.
if (enforced.length == 0) return _extraOptions;
// No caller options, return enforced
if (_extraOptions.length == 0) return enforced;
// @dev If caller provided _extraOptions, must be type 3 as its the ONLY type that can be combined.
if (_extraOptions.length >= 2) {
_assertOptionsType3(_extraOptions);
// @dev Remove the first 2 bytes containing the type from the _extraOptions and combine with enforced.
return bytes.concat(enforced, _extraOptions[2:]);
}
// No valid set of options was found.
revert InvalidOptions(_extraOptions);
}
/**
* @dev Internal function to assert that options are of type 3.
* @param _options The options to be checked.
*/
function _assertOptionsType3(bytes memory _options) internal pure virtual {
uint16 optionsType;
assembly {
optionsType := mload(add(_options, 2))
}
if (optionsType != OPTION_TYPE_3) revert InvalidOptions(_options);
}
}
// File: contracts/oft/contracts/interfaces/IOAppMsgInspector.sol
pragma solidity 0.8.20;
/**
* @title IOAppMsgInspector
* @dev Interface for the OApp Message Inspector, allowing examination of message and options contents.
*/
interface IOAppMsgInspector {
// Custom error message for inspection failure
error InspectionFailed(bytes message, bytes options);
/**
* @notice Allows the inspector to examine LayerZero message contents and optionally throw a revert if invalid.
* @param _message The message payload to be inspected.
* @param _options Additional options or parameters for inspection.
* @return valid A boolean indicating whether the inspection passed (true) or failed (false).
*
* @dev Optionally done as a revert, OR use the boolean provided to handle the failure.
*/
function inspect(bytes calldata _message, bytes calldata _options) external view returns (bool valid);
}
// File: contracts/oft/contracts/precrime/interfaces/IPreCrime.sol
pragma solidity 0.8.20;
struct PreCrimePeer {
uint32 eid;
bytes32 preCrime;
bytes32 oApp;
}
// TODO not done yet
interface IPreCrime {
error OnlyOffChain();
// for simulate()
error PacketOversize(uint256 max, uint256 actual);
error PacketUnsorted();
error SimulationFailed(bytes reason);
// for preCrime()
error SimulationResultNotFound(uint32 eid);
error InvalidSimulationResult(uint32 eid, bytes reason);
error CrimeFound(bytes crime);
function getConfig(bytes[] calldata _packets, uint256[] calldata _packetMsgValues) external returns (bytes memory);
function simulate(
bytes[] calldata _packets,
uint256[] calldata _packetMsgValues
) external payable returns (bytes memory);
function buildSimulationResult() external view returns (bytes memory);
function preCrime(
bytes[] calldata _packets,
uint256[] calldata _packetMsgValues,
bytes[] calldata _simulations
) external;
function version() external view returns (uint64 major, uint8 minor);
}
// File: contracts/oft/contracts/interfaces/IMessageLib.sol
pragma solidity >=0.8.0;
enum MessageLibType {
Send,
Receive,
SendAndReceive
}
interface IMessageLib is IERC165 {
function setConfig(address _oapp, SetConfigParam[] calldata _config) external;
function getConfig(uint32 _eid, address _oapp, uint32 _configType) external view returns (bytes memory config);
function isSupportedEid(uint32 _eid) external view returns (bool);
// message libs of same major version are compatible
function version() external view returns (uint64 major, uint8 minor, uint8 endpointVersion);
function messageLibType() external view returns (MessageLibType);
}
// File: contracts/oft/contracts/interfaces/ISendLib.sol
pragma solidity >=0.8.0;
struct Packet {
uint64 nonce;
uint32 srcEid;
address sender;
uint32 dstEid;
bytes32 receiver;
bytes32 guid;
bytes message;
}
interface ISendLib is IMessageLib {
function send(
Packet calldata _packet,
bytes calldata _options,
bool _payInLzToken
) external returns (MessagingFee memory, bytes memory encodedPacket);
function quote(
Packet calldata _packet,
bytes calldata _options,
bool _payInLzToken
) external view returns (MessagingFee memory);
function setTreasury(address _treasury) external;
function withdrawFee(address _to, uint256 _amount) external;
function withdrawLzTokenFee(address _lzToken, address _to, uint256 _amount) external;
}
// File: contracts/oft/contracts/libs/AddressCast.sol
pragma solidity 0.8.20;
library AddressCast {
error AddressCast_InvalidSizeForAddress();
error AddressCast_InvalidAddress();
function toBytes32(bytes calldata _addressBytes) internal pure returns (bytes32 result) {
if (_addressBytes.length > 32) revert AddressCast_InvalidAddress();
result = bytes32(_addressBytes);
unchecked {
uint256 offset = 32 - _addressBytes.length;
result = result >> (offset * 8);
}
}
function toBytes32(address _address) internal pure returns (bytes32 result) {
result = bytes32(uint256(uint160(_address)));
}
function toBytes(bytes32 _addressBytes32, uint256 _size) internal pure returns (bytes memory result) {
if (_size == 0 || _size > 32) revert AddressCast_InvalidSizeForAddress();
result = new bytes(_size);
unchecked {
uint256 offset = 256 - _size * 8;
assembly {
mstore(add(result, 32), shl(offset, _addressBytes32))
}
}
}
function toAddress(bytes32 _addressBytes32) internal pure returns (address result) {
result = address(uint160(uint256(_addressBytes32)));
}
function toAddress(bytes calldata _addressBytes) internal pure returns (address result) {
if (_addressBytes.length != 20) revert AddressCast_InvalidAddress();
result = address(bytes20(_addressBytes));
}
}
// File: contracts/oft/contracts/precrime/libs/PacketV1Codec.sol
pragma solidity 0.8.20;
library PacketV1Codec {
using AddressCast for address;
using AddressCast for bytes32;
uint8 internal constant PACKET_VERSION = 1;
// header (version + nonce + path)
// version
uint256 private constant PACKET_VERSION_OFFSET = 0;
// nonce
uint256 private constant NONCE_OFFSET = 1;
// path
uint256 private constant SRC_EID_OFFSET = 9;
uint256 private constant SENDER_OFFSET = 13;
uint256 private constant DST_EID_OFFSET = 45;
uint256 private constant RECEIVER_OFFSET = 49;
// payload (guid + message)
uint256 private constant GUID_OFFSET = 81; // keccak256(nonce + path)
uint256 private constant MESSAGE_OFFSET = 113;
function encode(Packet memory _packet) internal pure returns (bytes memory encodedPacket) {
encodedPacket = abi.encodePacked(
PACKET_VERSION,
_packet.nonce,
_packet.srcEid,
_packet.sender.toBytes32(),
_packet.dstEid,
_packet.receiver,
_packet.guid,
_packet.message
);
}
function encodePacketHeader(Packet memory _packet) internal pure returns (bytes memory) {
return
abi.encodePacked(
PACKET_VERSION,
_packet.nonce,
_packet.srcEid,
_packet.sender.toBytes32(),
_packet.dstEid,
_packet.receiver
);
}
function encodePayload(Packet memory _packet) internal pure returns (bytes memory) {
return abi.encodePacked(_packet.guid, _packet.message);
}
function header(bytes calldata _packet) internal pure returns (bytes calldata) {
return _packet[0:GUID_OFFSET];
}
function version(bytes calldata _packet) internal pure returns (uint8) {
return uint8(bytes1(_packet[PACKET_VERSION_OFFSET:NONCE_OFFSET]));
}
function nonce(bytes calldata _packet) internal pure returns (uint64) {
return uint64(bytes8(_packet[NONCE_OFFSET:SRC_EID_OFFSET]));
}
function srcEid(bytes calldata _packet) internal pure returns (uint32) {
return uint32(bytes4(_packet[SRC_EID_OFFSET:SENDER_OFFSET]));
}
function sender(bytes calldata _packet) internal pure returns (bytes32) {
return bytes32(_packet[SENDER_OFFSET:DST_EID_OFFSET]);
}
function senderAddressB20(bytes calldata _packet) internal pure returns (address) {
return sender(_packet).toAddress();
}
function dstEid(bytes calldata _packet) internal pure returns (uint32) {
return uint32(bytes4(_packet[DST_EID_OFFSET:RECEIVER_OFFSET]));
}
function receiver(bytes calldata _packet) internal pure returns (bytes32) {
return bytes32(_packet[RECEIVER_OFFSET:GUID_OFFSET]);
}
function receiverB20(bytes calldata _packet) internal pure returns (address) {
return receiver(_packet).toAddress();
}
function guid(bytes calldata _packet) internal pure returns (bytes32) {
return bytes32(_packet[GUID_OFFSET:MESSAGE_OFFSET]);
}
function message(bytes calldata _packet) internal pure returns (bytes calldata) {
return bytes(_packet[MESSAGE_OFFSET:]);
}
function payload(bytes calldata _packet) internal pure returns (bytes calldata) {
return bytes(_packet[GUID_OFFSET:]);
}
function payloadHash(bytes calldata _packet) internal pure returns (bytes32) {
return keccak256(payload(_packet));
}
}
// File: contracts/oft/contracts/precrime/libs/Packet.sol
pragma solidity 0.8.20;
/**
* @title InboundPacket
* @dev Structure representing an inbound packet received by the contract.
*/
struct InboundPacket {
Origin origin; // Origin information of the packet.
uint32 dstEid; // Destination endpointId of the packet.
address receiver; // Receiver address for the packet.
bytes32 guid; // Unique identifier of the packet.
uint256 value; // msg.value of the packet.
address executor; // Executor address for the packet.
bytes message; // Message payload of the packet.
bytes extraData; // Additional arbitrary data for the packet.
}
/**
* @title PacketDecoder
* @dev Library for decoding LayerZero packets.
*/
library PacketDecoder {
using PacketV1Codec for bytes;
/**
* @dev Decode an inbound packet from the given packet data.
* @param _packet The packet data to decode.
* @return packet An InboundPacket struct representing the decoded packet.
*/
function decode(bytes calldata _packet) internal pure returns (InboundPacket memory packet) {
packet.origin = Origin(_packet.srcEid(), _packet.sender(), _packet.nonce());
packet.dstEid = _packet.dstEid();
packet.receiver = _packet.receiverB20();
packet.guid = _packet.guid();
packet.message = _packet.message();
}
/**
* @dev Decode multiple inbound packets from the given packet data and associated message values.
* @param _packets An array of packet data to decode.
* @param _packetMsgValues An array of associated message values for each packet.
* @return packets An array of InboundPacket structs representing the decoded packets.
*/
function decode(
bytes[] calldata _packets,
uint256[] memory _packetMsgValues
) internal pure returns (InboundPacket[] memory packets) {
packets = new InboundPacket[](_packets.length);
for (uint256 i = 0; i < _packets.length; i++) {
bytes calldata packet = _packets[i];
packets[i] = PacketDecoder.decode(packet);
// @dev Allows the verifier to specify the msg.value that gets passed in lzReceive.
packets[i].value = _packetMsgValues[i];
}
}
}
// File: contracts/oft/contracts/precrime/interfaces/IOAppPreCrimeSimulator.sol
pragma solidity 0.8.20;
// @dev Import the Origin so it's exposed to OAppPreCrimeSimulator implementers.
// solhint-disable-next-line no-unused-import
/**
* @title IOAppPreCrimeSimulator Interface
* @dev Interface for the preCrime simulation functionality in an OApp.
*/
interface IOAppPreCrimeSimulator {
// @dev simulation result used in PreCrime implementation
error SimulationResult(bytes result);
error OnlySelf();
/**
* @dev Emitted when the preCrime contract address is set.
* @param preCrimeAddress The address of the preCrime contract.
*/
event PreCrimeSet(address preCrimeAddress);
/**
* @dev Retrieves the address of the preCrime contract implementation.
* @return The address of the preCrime contract.
*/
function preCrime() external view returns (address);
/**
* @dev Retrieves the address of the OApp contract.
* @return The address of the OApp contract.
*/
function oApp() external view returns (address);
/**
* @dev Sets the preCrime contract address.
* @param _preCrime The address of the preCrime contract.
*/
function setPreCrime(address _preCrime) external;
/**
* @dev Mocks receiving a packet, then reverts with a series of data to infer the state/result.
* @param _packets An array of LayerZero InboundPacket objects representing received packets.
*/
function lzReceiveAndRevert(InboundPacket[] calldata _packets) external payable;
/**
* @dev checks if the specified peer is considered 'trusted' by the OApp.
* @param _eid The endpoint Id to check.
* @param _peer The peer to check.
* @return Whether the peer passed is considered 'trusted' by the OApp.
*/
function isPeer(uint32 _eid, bytes32 _peer) external view returns (bool);
}
// File: contracts/oft/contracts/precrime/OAppPreCrimeSimulator.sol
pragma solidity 0.8.20;
/**
* @title OAppPreCrimeSimulator
* @dev Abstract contract serving as the base for preCrime simulation functionality in an OApp.
*/
abstract contract OAppPreCrimeSimulator is IOAppPreCrimeSimulator, Ownable {
// The address of the preCrime implementation.
address public preCrime;
/**
* @dev Retrieves the address of the OApp contract.
* @return The address of the OApp contract.
*
* @dev The simulator contract is the base contract for the OApp by default.
* @dev If the simulator is a separate contract, override this function.
*/
function oApp() external view virtual returns (address) {
return address(this);
}
/**
* @dev Sets the preCrime contract address.
* @param _preCrime The address of the preCrime contract.
*/
function setPreCrime(address _preCrime) public virtual onlyOwner {
preCrime = _preCrime;
emit PreCrimeSet(_preCrime);
}
/**
* @dev Interface for pre-crime simulations. Always reverts at the end with the simulation results.
* @param _packets An array of InboundPacket objects representing received packets to be delivered.
*
* @dev WARNING: MUST revert at the end with the simulation results.
* @dev Gives the preCrime implementation the ability to mock sending packets to the lzReceive function,
* WITHOUT actually executing them.
*/
function lzReceiveAndRevert(InboundPacket[] calldata _packets) public payable virtual {
for (uint256 i = 0; i < _packets.length; i++) {
InboundPacket calldata packet = _packets[i];
// Ignore packets that are not from trusted peers.
if (!isPeer(packet.origin.srcEid, packet.origin.sender)) continue;
// @dev Because a verifier is calling this function, it doesnt have access to executor params:
// - address _executor
// - bytes calldata _extraData
// preCrime will NOT work for OApps that rely on these two parameters inside of their _lzReceive().
// They are instead stubbed to default values, address(0) and bytes("")
// @dev Calling this.lzReceiveSimulate removes ability for assembly return 0 callstack exit,
// which would cause the revert to be ignored.
this.lzReceiveSimulate{ value: packet.value }(
packet.origin,
packet.guid,
packet.message,
packet.executor,
packet.extraData
);
}
// @dev Revert with the simulation results. msg.sender must implement IPreCrime.buildSimulationResult().
revert SimulationResult(IPreCrime(msg.sender).buildSimulationResult());
}
/**
* @dev Is effectively an internal function because msg.sender must be address(this).
* Allows resetting the call stack for 'internal' calls.
* @param _origin The origin information containing the source endpoint and sender address.
* - srcEid: The source chain endpoint ID.
* - sender: The sender address on the src chain.
* - nonce: The nonce of the message.
* @param _guid The unique identifier of the packet.
* @param _message The message payload of the packet.
* @param _executor The executor address for the packet.
* @param _extraData Additional data for the packet.
*/
function lzReceiveSimulate(
Origin calldata _origin,
bytes32 _guid,
bytes calldata _message,
address _executor,
bytes calldata _extraData
) external payable virtual {
// @dev Ensure ONLY can be called 'internally'.
if (msg.sender != address(this)) revert OnlySelf();
_lzReceiveSimulate(_origin, _guid, _message, _executor, _extraData);
}
/**
* @dev Internal function to handle the OAppPreCrimeSimulator simulated receive.
* @param _origin The origin information.
* - srcEid: The source chain endpoint ID.
* - sender: The sender address from the src chain.
* - nonce: The nonce of the LayerZero message.
* @param _guid The GUID of the LayerZero message.
* @param _message The LayerZero message.
* @param _executor The address of the off-chain executor.
* @param _extraData Arbitrary data passed by the msg executor.
*
* @dev Enables the preCrime simulator to mock sending lzReceive() messages,
* routes the msg down from the OAppPreCrimeSimulator, and back up to the OAppReceiver.
*/
function _lzReceiveSimulate(
Origin calldata _origin,
bytes32 _guid,
bytes calldata _message,
address _executor,
bytes calldata _extraData
) internal virtual;
/**
* @dev checks if the specified peer is considered 'trusted' by the OApp.
* @param _eid The endpoint Id to check.
* @param _peer The peer to check.
* @return Whether the peer passed is considered 'trusted' by the OApp.
*/
function isPeer(uint32 _eid, bytes32 _peer) public view virtual returns (bool);
}
// File: contracts/oft/contracts/interfaces/IOFT.sol
pragma solidity 0.8.20;
/**
* @dev Struct representing token parameters for the OFT send() operation.
*/
struct SendParam {
uint32 dstEid; // Destination endpoint ID.
bytes32 to; // Recipient address.
uint256 amountLD; // Amount to send in local decimals.
uint256 minAmountLD; // Minimum amount to send in local decimals.
bytes extraOptions; // Additional options supplied by the caller to be used in the LayerZero message.
bytes composeMsg; // The composed message for the send() operation.
bytes oftCmd; // The OFT command to be executed, unused in default OFT implementations.
}
/**
* @dev Struct representing OFT limit information.
* @dev These amounts can change dynamically and are up the specific oft implementation.
*/
struct OFTLimit {
uint256 minAmountLD; // Minimum amount in local decimals that can be sent to the recipient.
uint256 maxAmountLD; // Maximum amount in local decimals that can be sent to the recipient.
}
/**
* @dev Struct representing OFT receipt information.
*/
struct OFTReceipt {
uint256 amountSentLD; // Amount of tokens ACTUALLY debited from the sender in local decimals.
// @dev In non-default implementations, the amountReceivedLD COULD differ from this value.
uint256 amountReceivedLD; // Amount of tokens to be received on the remote side.
}
/**
* @dev Struct representing OFT fee details.
* @dev Future proof mechanism to provide a standardized way to communicate fees to things like a UI.
*/
struct OFTFeeDetail {
int256 feeAmountLD; // Amount of the fee in local decimals.
string description; // Description of the fee.
}
/**
* @title IOFT
* @dev Interface for the OftChain (OFT) token.
* @dev Does not inherit ERC20 to accommodate usage by OFTAdapter as well.
* @dev This specific interface ID is '0x02e49c2c'.
*/
interface IOFT {
// Custom error messages
error InvalidLocalDecimals();
error SlippageExceeded(uint256 amountLD, uint256 minAmountLD);
// Events
event OFTSent(
bytes32 indexed guid, // GUID of the OFT message.
uint32 dstEid, // Destination Endpoint ID.
address indexed fromAddress, // Address of the sender on the src chain.
uint256 amountSentLD, // Amount of tokens sent in local decimals.
uint256 amountReceivedLD // Amount of tokens received in local decimals.
);
event OFTReceived(
bytes32 indexed guid, // GUID of the OFT message.
uint32 srcEid, // Source Endpoint ID.
address indexed toAddress, // Address of the recipient on the dst chain.
uint256 amountReceivedLD // Amount of tokens received in local decimals.
);
/**
* @notice Retrieves interfaceID and the version of the OFT.
* @return interfaceId The interface ID.
* @return version The version.
*
* @dev interfaceId: This specific interface ID is '0x02e49c2c'.
* @dev version: Indicates a cross-chain compatible msg encoding with other OFTs.
* @dev If a new feature is added to the OFT cross-chain msg encoding, the version will be incremented.
* ie. localOFT version(x,1) CAN send messages to remoteOFT version(x,1)
*/
function oftVersion() external view returns (bytes4 interfaceId, uint64 version);
/**
* @notice Retrieves the address of the token associated with the OFT.
* @return token The address of the ERC20 token implementation.
*/
function token() external view returns (address);
/**
* @notice Indicates whether the OFT contract requires approval of the 'token()' to send.
* @return requiresApproval Needs approval of the underlying token implementation.
*
* @dev Allows things like wallet implementers to determine integration requirements,
* without understanding the underlying token implementation.
*/
function approvalRequired() external view returns (bool);
/**
* @notice Retrieves the shared decimals of the OFT.
* @return sharedDecimals The shared decimals of the OFT.
*/
function sharedDecimals() external view returns (uint8);
/**
* @notice Provides the fee breakdown and settings data for an OFT. Unused in the default implementation.
* @param _sendParam The parameters for the send operation.
* @return limit The OFT limit information.
* @return oftFeeDetails The details of OFT fees.
* @return receipt The OFT receipt information.
*/
function quoteOFT(
SendParam calldata _sendParam
) external view returns (OFTLimit memory, OFTFeeDetail[] memory oftFeeDetails, OFTReceipt memory);
/**
* @notice Provides a quote for the send() operation.
* @param _sendParam The parameters for the send() operation.
* @param _payInLzToken Flag indicating whether the caller is paying in the LZ token.
* @return fee The calculated LayerZero messaging fee from the send() operation.
*
* @dev MessagingFee: LayerZero msg fee
* - nativeFee: The native fee.
* - lzTokenFee: The lzToken fee.
*/
function quoteSend(SendParam calldata _sendParam, bool _payInLzToken) external view returns (MessagingFee memory);
/**
* @notice Executes the send() operation.
* @param _sendParam The parameters for the send operation.
* @param _fee The fee information supplied by the caller.
* - nativeFee: The native fee.
* - lzTokenFee: The lzToken fee.
* @param _refundAddress The address to receive any excess funds from fees etc. on the src.
* @return receipt The LayerZero messaging receipt from the send() operation.
* @return oftReceipt The OFT receipt information.
*
* @dev MessagingReceipt: LayerZero msg receipt
* - guid: The unique identifier for the sent message.
* - nonce: The nonce of the sent message.
* - fee: The LayerZero fee incurred for the message.
*/
function send(
SendParam calldata _sendParam,
MessagingFee calldata _fee,
address _refundAddress
) external payable returns (MessagingReceipt memory, OFTReceipt memory);
}
// File: contracts/oft/contracts/libs/OFTMsgCodec.sol
pragma solidity 0.8.20;
library OFTMsgCodec {
// Offset constants for encoding and decoding OFT messages
uint8 private constant SEND_TO_OFFSET = 32;
uint8 private constant SEND_AMOUNT_SD_OFFSET = 40;
/**
* @dev Encodes an OFT LayerZero message.
* @param _sendTo The recipient address.
* @param _amountShared The amount in shared decimals.
* @param _composeMsg The composed message.
* @return _msg The encoded message.
* @return hasCompose A boolean indicating whether the message has a composed payload.
*/
function encode(
bytes32 _sendTo,
uint64 _amountShared,
bytes memory _composeMsg
) internal view returns (bytes memory _msg, bool hasCompose) {
hasCompose = _composeMsg.length > 0;
// @dev Remote chains will want to know the composed function caller ie. msg.sender on the src.
_msg = hasCompose
? abi.encodePacked(_sendTo, _amountShared, addressToBytes32(msg.sender), _composeMsg)
: abi.encodePacked(_sendTo, _amountShared);
}
/**
* @dev Checks if the OFT message is composed.
* @param _msg The OFT message.
* @return A boolean indicating whether the message is composed.
*/
function isComposed(bytes calldata _msg) internal pure returns (bool) {
return _msg.length > SEND_AMOUNT_SD_OFFSET;
}
/**
* @dev Retrieves the recipient address from the OFT message.
* @param _msg The OFT message.
* @return The recipient address.
*/
function sendTo(bytes calldata _msg) internal pure returns (bytes32) {
return bytes32(_msg[:SEND_TO_OFFSET]);
}
/**
* @dev Retrieves the amount in shared decimals from the OFT message.
* @param _msg The OFT message.
* @return The amount in shared decimals.
*/
function amountSD(bytes calldata _msg) internal pure returns (uint64) {
return uint64(bytes8(_msg[SEND_TO_OFFSET:SEND_AMOUNT_SD_OFFSET]));
}
/**
* @dev Retrieves the composed message from the OFT message.
* @param _msg The OFT message.
* @return The composed message.
*/
function composeMsg(bytes calldata _msg) internal pure returns (bytes memory) {
return _msg[SEND_AMOUNT_SD_OFFSET:];
}
/**
* @dev Converts an address to bytes32.
* @param _addr The address to convert.
* @return The bytes32 representation of the address.
*/
function addressToBytes32(address _addr) internal pure returns (bytes32) {
return bytes32(uint256(uint160(_addr)));
}
/**
* @dev Converts bytes32 to an address.
* @param _b The bytes32 value to convert.
* @return The address representation of bytes32.
*/
function bytes32ToAddress(bytes32 _b) internal pure returns (address) {
return address(uint160(uint256(_b)));
}
}
// File: contracts/oft/contracts/libs/OFTComposeMsgCodec.sol
pragma solidity 0.8.20;
library OFTComposeMsgCodec {
// Offset constants for decoding composed messages
uint8 private constant NONCE_OFFSET = 8;
uint8 private constant SRC_EID_OFFSET = 12;
uint8 private constant AMOUNT_LD_OFFSET = 44;
uint8 private constant COMPOSE_FROM_OFFSET = 76;
/**
* @dev Encodes a OFT composed message.
* @param _nonce The nonce value.
* @param _srcEid The source endpoint ID.
* @param _amountLD The amount in local decimals.
* @param _composeMsg The composed message.
* @return _msg The encoded Composed message.
*/
function encode(
uint64 _nonce,
uint32 _srcEid,
uint256 _amountLD,
bytes memory _composeMsg // 0x[composeFrom][composeMsg]
) internal pure returns (bytes memory _msg) {
_msg = abi.encodePacked(_nonce, _srcEid, _amountLD, _composeMsg);
}
/**
* @dev Retrieves the nonce for the composed message.
* @param _msg The message.
* @return The nonce value.
*/
function nonce(bytes calldata _msg) internal pure returns (uint64) {
return uint64(bytes8(_msg[:NONCE_OFFSET]));
}
/**
* @dev Retrieves the source endpoint ID for the composed message.
* @param _msg The message.
* @return The source endpoint ID.
*/
function srcEid(bytes calldata _msg) internal pure returns (uint32) {
return uint32(bytes4(_msg[NONCE_OFFSET:SRC_EID_OFFSET]));
}
/**
* @dev Retrieves the amount in local decimals from the composed message.
* @param _msg The message.
* @return The amount in local decimals.
*/
function amountLD(bytes calldata _msg) internal pure returns (uint256) {
return uint256(bytes32(_msg[SRC_EID_OFFSET:AMOUNT_LD_OFFSET]));
}
/**
* @dev Retrieves the composeFrom value from the composed message.
* @param _msg The message.
* @return The composeFrom value.
*/
function composeFrom(bytes calldata _msg) internal pure returns (bytes32) {
return bytes32(_msg[AMOUNT_LD_OFFSET:COMPOSE_FROM_OFFSET]);
}
/**
* @dev Retrieves the composed message.
* @param _msg The message.
* @return The composed message.
*/
function composeMsg(bytes calldata _msg) internal pure returns (bytes memory) {
return _msg[COMPOSE_FROM_OFFSET:];
}
/**
* @dev Converts an address to bytes32.
* @param _addr The address to convert.
* @return The bytes32 representation of the address.
*/
function addressToBytes32(address _addr) internal pure returns (bytes32) {
return bytes32(uint256(uint160(_addr)));
}
/**
* @dev Converts bytes32 to an address.
* @param _b The bytes32 value to convert.
* @return The address representation of bytes32.
*/
function bytes32ToAddress(bytes32 _b) internal pure returns (address) {
return address(uint160(uint256(_b)));
}
}
// File: contracts/oft/contracts/OFTCore.sol
pragma solidity 0.8.20;
/**
* @title OFTCore
* @dev Abstract contract for the OftChain (OFT) token.
*/
abstract contract OFTCore is IOFT, OApp, OAppPreCrimeSimulator, OAppOptionsType3 {
using OFTMsgCodec for bytes;
using OFTMsgCodec for bytes32;
// @notice Provides a conversion rate when swapping between denominations of SD and LD
// - shareDecimals == SD == shared Decimals
// - localDecimals == LD == local decimals
// @dev Considers that tokens have different decimal amounts on various chains.
// @dev eg.
// For a token
// - locally with 4 decimals --> 1.2345 => uint(12345)
// - remotely with 2 decimals --> 1.23 => uint(123)
// - The conversion rate would be 10 ** (4 - 2) = 100
// @dev If you want to send 1.2345 -> (uint 12345), you CANNOT represent that value on the remote,
// you can only display 1.23 -> uint(123).
// @dev To preserve the dust that would otherwise be lost on that conversion,
// we need to unify a denomination that can be represented on ALL chains inside of the OFT mesh
uint256 public immutable decimalConversionRate;
// @notice Msg types that are used to identify the various OFT operations.
// @dev This can be extended in child contracts for non-default oft operations
// @dev These values are used in things like combineOptions() in OAppOptionsType3.sol.
uint16 public constant SEND = 1;
uint16 public constant SEND_AND_CALL = 2;
// Address of an optional contract to inspect both 'message' and 'options'
address public msgInspector;
event MsgInspectorSet(address inspector);
/**
* @dev Constructor.
* @param _localDecimals The decimals of the token on the local chain (this chain).
* @param _endpoint The address of the LayerZero endpoint.
* @param _delegate The delegate capable of making OApp configurations inside of the endpoint.
*/
constructor(uint8 _localDecimals, address _endpoint, address _delegate) OApp(_endpoint, _delegate) {
if (_localDecimals < sharedDecimals()) revert InvalidLocalDecimals();
decimalConversionRate = 10 ** (_localDecimals - sharedDecimals());
}
/**
* @notice Retrieves interfaceID and the version of the OFT.
* @return interfaceId The interface ID.
* @return version The version.
*
* @dev interfaceId: This specific interface ID is '0x02e49c2c'.
* @dev version: Indicates a cross-chain compatible msg encoding with other OFTs.
* @dev If a new feature is added to the OFT cross-chain msg encoding, the version will be incremented.
* ie. localOFT version(x,1) CAN send messages to remoteOFT version(x,1)
*/
function oftVersion() external pure virtual returns (bytes4 interfaceId, uint64 version) {
return (type(IOFT).interfaceId, 1);
}
/**
* @dev Retrieves the shared decimals of the OFT.
* @return The shared decimals of the OFT.
*
* @dev Sets an implicit cap on the amount of tokens, over uint64.max() will need some sort of outbound cap / totalSupply cap
* Lowest common decimal denominator between chains.
* Defaults to 6 decimal places to provide up to 18,446,744,073,709.551615 units (max uint64).
* For tokens exceeding this totalSupply(), they will need to override the sharedDecimals function with something smaller.
* ie. 4 sharedDecimals would be 1,844,674,407,370,955.1615
*/
function sharedDecimals() public view virtual returns (uint8) {
return 6;
}
/**
* @dev Sets the message inspector address for the OFT.
* @param _msgInspector The address of the message inspector.
*
* @dev This is an optional contract that can be used to inspect both 'message' and 'options'.
* @dev Set it to address(0) to disable it, or set it to a contract address to enable it.
*/
function setMsgInspector(address _msgInspector) public virtual onlyOwner {
msgInspector = _msgInspector;
emit MsgInspectorSet(_msgInspector);
}
/**
* @notice Provides the fee breakdown and settings data for an OFT. Unused in the default implementation.
* @param _sendParam The parameters for the send operation.
* @return oftLimit The OFT limit information.
* @return oftFeeDetails The details of OFT fees.
* @return oftReceipt The OFT receipt information.
*/
function quoteOFT(
SendParam calldata _sendParam
)
external
view
virtual
returns (OFTLimit memory oftLimit, OFTFeeDetail[] memory oftFeeDetails, OFTReceipt memory oftReceipt)
{
uint256 minAmountLD = 0; // Unused in the default implementation.
uint256 maxAmountLD = type(uint64).max; // Unused in the default implementation.
oftLimit = OFTLimit(minAmountLD, maxAmountLD);
// Unused in the default implementation; reserved for future complex fee details.
oftFeeDetails = new OFTFeeDetail[](0);
// @dev This is the same as the send() operation, but without the actual send.
// - amountSentLD is the amount in local decimals that would be sent from the sender.
// - amountReceivedLD is the amount in local decimals that will be credited to the recipient on the remote OFT instance.
// @dev The amountSentLD MIGHT not equal the amount the user actually receives. HOWEVER, the default does.
(uint256 amountSentLD, uint256 amountReceivedLD) = _debitView(
_sendParam.amountLD,
_sendParam.minAmountLD,
_sendParam.dstEid
);
oftReceipt = OFTReceipt(amountSentLD, amountReceivedLD);
}
/**
* @notice Provides a quote for the send() operation.
* @param _sendParam The parameters for the send() operation.
* @param _payInLzToken Flag indicating whether the caller is paying in the LZ token.
* @return msgFee The calculated LayerZero messaging fee from the send() operation.
*
* @dev MessagingFee: LayerZero msg fee
* - nativeFee: The native fee.
* - lzTokenFee: The lzToken fee.
*/
function quoteSend(
SendParam calldata _sendParam,
bool _payInLzToken
) external view virtual returns (MessagingFee memory msgFee) {
// @dev mock the amount to receive, this is the same operation used in the send().
// The quote is as similar as possible to the actual send() operation.
(, uint256 amountReceivedLD) = _debitView(_sendParam.amountLD, _sendParam.minAmountLD, _sendParam.dstEid);
// @dev Builds the options and OFT message to quote in the endpoint.
(bytes memory message, bytes memory options) = _buildMsgAndOptions(_sendParam, amountReceivedLD);
// @dev Calculates the LayerZero fee for the send() operation.
return _quote(_sendParam.dstEid, message, options, _payInLzToken);
}
/**
* @dev Executes the send operation.
* @param _sendParam The parameters for the send operation.
* @param _fee The calculated fee for the send() operation.
* - nativeFee: The native fee.
* - lzTokenFee: The lzToken fee.
* @param _refundAddress The address to receive any excess funds.
* @return msgReceipt The receipt for the send operation.
* @return oftReceipt The OFT receipt information.
*
* @dev MessagingReceipt: LayerZero msg receipt
* - guid: The unique identifier for the sent message.
* - nonce: The nonce of the sent message.
* - fee: The LayerZero fee incurred for the message.
*/
function send(
SendParam calldata _sendParam,
MessagingFee calldata _fee,
address _refundAddress
) external payable virtual returns (MessagingReceipt memory msgReceipt, OFTReceipt memory oftReceipt) {
return _send(_sendParam, _fee, _refundAddress);
}
/**
* @dev Internal function to execute the send operation.
* @param _sendParam The parameters for the send operation.
* @param _fee The calculated fee for the send() operation.
* - nativeFee: The native fee.
* - lzTokenFee: The lzToken fee.
* @param _refundAddress The address to receive any excess funds.
* @return msgReceipt The receipt for the send operation.
* @return oftReceipt The OFT receipt information.
*
* @dev MessagingReceipt: LayerZero msg receipt
* - guid: The unique identifier for the sent message.
* - nonce: The nonce of the sent message.
* - fee: The LayerZero fee incurred for the message.
*/
function _send(
SendParam calldata _sendParam,
MessagingFee calldata _fee,
address _refundAddress
) internal virtual returns (MessagingReceipt memory msgReceipt, OFTReceipt memory oftReceipt) {
// @dev Applies the token transfers regarding this send() operation.
// - amountSentLD is the amount in local decimals that was ACTUALLY sent/debited from the sender.
// - amountReceivedLD is the amount in local decimals that will be received/credited to the recipient on the remote OFT instance.
(uint256 amountSentLD, uint256 amountReceivedLD) = _debit(
msg.sender,
_sendParam.amountLD,
_sendParam.minAmountLD,
_sendParam.dstEid
);
// @dev Builds the options and OFT message to quote in the endpoint.
(bytes memory message, bytes memory options) = _buildMsgAndOptions(_sendParam, amountReceivedLD);
// @dev Sends the message to the LayerZero endpoint and returns the LayerZero msg receipt.
msgReceipt = _lzSend(_sendParam.dstEid, message, options, _fee, _refundAddress);
// @dev Formulate the OFT receipt.
oftReceipt = OFTReceipt(amountSentLD, amountReceivedLD);
emit OFTSent(msgReceipt.guid, _sendParam.dstEid, msg.sender, amountSentLD, amountReceivedLD);
}
/**
* @dev Internal function to build the message and options.
* @param _sendParam The parameters for the send() operation.
* @param _amountLD The amount in local decimals.
* @return message The encoded message.
* @return options The encoded options.
*/
function _buildMsgAndOptions(
SendParam calldata _sendParam,
uint256 _amountLD
) internal view virtual returns (bytes memory message, bytes memory options) {
bool hasCompose;
// @dev This generated message has the msg.sender encoded into the payload so the remote knows who the caller is.
(message, hasCompose) = OFTMsgCodec.encode(
_sendParam.to,
_toSD(_amountLD),
// @dev Must be include a non empty bytes if you want to compose, EVEN if you dont need it on the remote.
// EVEN if you dont require an arbitrary payload to be sent... eg. '0x01'
_sendParam.composeMsg
);
// @dev Change the msg type depending if its composed or not.
uint16 msgType = hasCompose ? SEND_AND_CALL : SEND;
// @dev Combine the callers _extraOptions with the enforced options via the OAppOptionsType3.
options = combineOptions(_sendParam.dstEid, msgType, _sendParam.extraOptions);
// @dev Optionally inspect the message and options depending if the OApp owner has set a msg inspector.
// @dev If it fails inspection, needs to revert in the implementation. ie. does not rely on return boolean
address inspector = msgInspector; // caches the msgInspector to avoid potential double storage read
if (inspector != address(0)) IOAppMsgInspector(inspector).inspect(message, options);
}
/**
* @dev Internal function to handle the receive on the LayerZero endpoint.
* @param _origin The origin information.
* - srcEid: The source chain endpoint ID.
* - sender: The sender address from the src chain.
* - nonce: The nonce of the LayerZero message.
* @param _guid The unique identifier for the received LayerZero message.
* @param _message The encoded message.
* @dev _executor The address of the executor.
* @dev _extraData Additional data.
*/
function _lzReceive(
Origin calldata _origin,
bytes32 _guid,
bytes calldata _message,
address /*_executor*/, // @dev unused in the default implementation.
bytes calldata /*_extraData*/ // @dev unused in the default implementation.
) internal virtual override {
// @dev The src sending chain doesnt know the address length on this chain (potentially non-evm)
// Thus everything is bytes32() encoded in flight.
address toAddress = _message.sendTo().bytes32ToAddress();
// @dev Credit the amountLD to the recipient and return the ACTUAL amount the recipient received in local decimals
uint256 amountReceivedLD = _credit(toAddress, _toLD(_message.amountSD()), _origin.srcEid);
if (_message.isComposed()) {
// @dev Proprietary composeMsg format for the OFT.
bytes memory composeMsg = OFTComposeMsgCodec.encode(
_origin.nonce,
_origin.srcEid,
amountReceivedLD,
_message.composeMsg()
);
// @dev Stores the lzCompose payload that will be executed in a separate tx.
// Standardizes functionality for executing arbitrary contract invocation on some non-evm chains.
// @dev The off-chain executor will listen and process the msg based on the src-chain-callers compose options passed.
// @dev The index is used when a OApp needs to compose multiple msgs on lzReceive.
// For default OFT implementation there is only 1 compose msg per lzReceive, thus its always 0.
endpoint.sendCompose(toAddress, _guid, 0 /* the index of the composed message*/, composeMsg);
}
emit OFTReceived(_guid, _origin.srcEid, toAddress, amountReceivedLD);
}
/**
* @dev Internal function to handle the OAppPreCrimeSimulator simulated receive.
* @param _origin The origin information.
* - srcEid: The source chain endpoint ID.
* - sender: The sender address from the src chain.
* - nonce: The nonce of the LayerZero message.
* @param _guid The unique identifier for the received LayerZero message.
* @param _message The LayerZero message.
* @param _executor The address of the off-chain executor.
* @param _extraData Arbitrary data passed by the msg executor.
*
* @dev Enables the preCrime simulator to mock sending lzReceive() messages,
* routes the msg down from the OAppPreCrimeSimulator, and back up to the OAppReceiver.
*/
function _lzReceiveSimulate(
Origin calldata _origin,
bytes32 _guid,
bytes calldata _message,
address _executor,
bytes calldata _extraData
) internal virtual override {
_lzReceive(_origin, _guid, _message, _executor, _extraData);
}
/**
* @dev Check if the peer is considered 'trusted' by the OApp.
* @param _eid The endpoint ID to check.
* @param _peer The peer to check.
* @return Whether the peer passed is considered 'trusted' by the OApp.
*
* @dev Enables OAppPreCrimeSimulator to check whether a potential Inbound Packet is from a trusted source.
*/
function isPeer(uint32 _eid, bytes32 _peer) public view virtual override returns (bool) {
return peers[_eid] == _peer;
}
/**
* @dev Internal function to remove dust from the given local decimal amount.
* @param _amountLD The amount in local decimals.
* @return amountLD The amount after removing dust.
*
* @dev Prevents the loss of dust when moving amounts between chains with different decimals.
* @dev eg. uint(123) with a conversion rate of 100 becomes uint(100).
*/
function _removeDust(uint256 _amountLD) internal view virtual returns (uint256 amountLD) {
return (_amountLD / decimalConversionRate) * decimalConversionRate;
}
/**
* @dev Internal function to convert an amount from shared decimals into local decimals.
* @param _amountSD The amount in shared decimals.
* @return amountLD The amount in local decimals.
*/
function _toLD(uint64 _amountSD) internal view virtual returns (uint256 amountLD) {
return _amountSD * decimalConversionRate;
}
/**
* @dev Internal function to convert an amount from local decimals into shared decimals.
* @param _amountLD The amount in local decimals.
* @return amountSD The amount in shared decimals.
*/
function _toSD(uint256 _amountLD) internal view virtual returns (uint64 amountSD) {
return uint64(_amountLD / decimalConversionRate);
}
/**
* @dev Internal function to mock the amount mutation from a OFT debit() operation.
* @param _amountLD The amount to send in local decimals.
* @param _minAmountLD The minimum amount to send in local decimals.
* @dev _dstEid The destination endpoint ID.
* @return amountSentLD The amount sent, in local decimals.
* @return amountReceivedLD The amount to be received on the remote chain, in local decimals.
*
* @dev This is where things like fees would be calculated and deducted from the amount to be received on the remote.
*/
function _debitView(
uint256 _amountLD,
uint256 _minAmountLD,
uint32 /*_dstEid*/
) internal view virtual returns (uint256 amountSentLD, uint256 amountReceivedLD) {
// @dev Remove the dust so nothing is lost on the conversion between chains with different decimals for the token.
amountSentLD = _removeDust(_amountLD);
// @dev The amount to send is the same as amount received in the default implementation.
amountReceivedLD = amountSentLD;
// @dev Check for slippage.
if (amountReceivedLD < _minAmountLD) {
revert SlippageExceeded(amountReceivedLD, _minAmountLD);
}
}
/**
* @dev Internal function to perform a debit operation.
* @param _from The address to debit.
* @param _amountLD The amount to send in local decimals.
* @param _minAmountLD The minimum amount to send in local decimals.
* @param _dstEid The destination endpoint ID.
* @return amountSentLD The amount sent in local decimals.
* @return amountReceivedLD The amount received in local decimals on the remote.
*
* @dev Defined here but are intended to be overriden depending on the OFT implementation.
* @dev Depending on OFT implementation the _amountLD could differ from the amountReceivedLD.
*/
function _debit(
address _from,
uint256 _amountLD,
uint256 _minAmountLD,
uint32 _dstEid
) internal virtual returns (uint256 amountSentLD, uint256 amountReceivedLD);
/**
* @dev Internal function to perform a credit operation.
* @param _to The address to credit.
* @param _amountLD The amount to credit in local decimals.
* @param _srcEid The source endpoint ID.
* @return amountReceivedLD The amount ACTUALLY received in local decimals.
*
* @dev Defined here but are intended to be overriden depending on the OFT implementation.
* @dev Depending on OFT implementation the _amountLD could differ from the amountReceivedLD.
*/
function _credit(
address _to,
uint256 _amountLD,
uint32 _srcEid
) internal virtual returns (uint256 amountReceivedLD);
}
// File: contracts/oft/contracts/OFT.sol
pragma solidity 0.8.20;
/**
* @title OFT Contract
* @dev OFT is an ERC-20 token that extends the functionality of the OFTCore contract.
*/
abstract contract OFT is OFTCore, ERC20 {
/**
* @dev Constructor for the OFT contract.
* @param _name The name of the OFT.
* @param _symbol The symbol of the OFT.
* @param _lzEndpoint The LayerZero endpoint address.
* @param _delegate The delegate capable of making OApp configurations inside of the endpoint.
*/
constructor(
string memory _name,
string memory _symbol,
address _lzEndpoint,
address _delegate
) ERC20(_name, _symbol) OFTCore(decimals(), _lzEndpoint, _delegate) {}
/**
* @dev Retrieves the address of the underlying ERC20 implementation.
* @return The address of the OFT token.
*
* @dev In the case of OFT, address(this) and erc20 are the same contract.
*/
function token() public view returns (address) {
return address(this);
}
/**
* @notice Indicates whether the OFT contract requires approval of the 'token()' to send.
* @return requiresApproval Needs approval of the underlying token implementation.
*
* @dev In the case of OFT where the contract IS the token, approval is NOT required.
*/
function approvalRequired() external pure virtual returns (bool) {
return false;
}
/**
* @dev Burns tokens from the sender's specified balance.
* @param _from The address to debit the tokens from.
* @param _amountLD The amount of tokens to send in local decimals.
* @param _minAmountLD The minimum amount to send in local decimals.
* @param _dstEid The destination chain ID.
* @return amountSentLD The amount sent in local decimals.
* @return amountReceivedLD The amount received in local decimals on the remote.
*/
function _debit(
address _from,
uint256 _amountLD,
uint256 _minAmountLD,
uint32 _dstEid
) internal virtual override returns (uint256 amountSentLD, uint256 amountReceivedLD) {
(amountSentLD, amountReceivedLD) = _debitView(_amountLD, _minAmountLD, _dstEid);
// @dev In NON-default OFT, amountSentLD could be 100, with a 10% fee, the amountReceivedLD amount is 90,
// therefore amountSentLD CAN differ from amountReceivedLD.
// @dev Default OFT burns on src.
_burn(_from, amountSentLD);
}
/**
* @dev Credits tokens to the specified address.
* @param _to The address to credit the tokens to.
* @param _amountLD The amount of tokens to credit in local decimals.
* @dev _srcEid The source chain ID.
* @return amountReceivedLD The amount of tokens ACTUALLY received in local decimals.
*/
function _credit(
address _to,
uint256 _amountLD,
uint32 /*_srcEid*/
) internal virtual override returns (uint256 amountReceivedLD) {
if (_to == address(0x0)) _to = address(0xdead); // _mint(...) does not support address(0x0)
// @dev Default OFT mints on dst.
_mint(_to, _amountLD);
// @dev In the case of NON-default OFT, the _amountLD MIGHT not be == amountReceivedLD.
return _amountLD;
}
}
// File: contracts/BladeGamesToken.sol
pragma solidity 0.8.20;
/// @notice OFT is an ERC-20 token that extends the OFTCore contract.
contract BladeGamesToken is OFT {
constructor(
string memory _name,
string memory _symbol,
address _lzEndpoint,
address _delegate,
address developerHolder,
uint256 amount
) OFT(_name, _symbol, _lzEndpoint, _delegate) Ownable(_delegate) {
_mint(developerHolder, amount);
}
function burn(uint256 amount) external onlyOwner {
_burn(_msgSender(), amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_lzEndpoint","type":"address"},{"internalType":"address","name":"_delegate","type":"address"},{"internalType":"address","name":"developerHolder","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InvalidDelegate","type":"error"},{"inputs":[],"name":"InvalidEndpointCall","type":"error"},{"inputs":[],"name":"InvalidLocalDecimals","type":"error"},{"inputs":[{"internalType":"bytes","name":"options","type":"bytes"}],"name":"InvalidOptions","type":"error"},{"inputs":[],"name":"LzTokenUnavailable","type":"error"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"}],"name":"NoPeer","type":"error"},{"inputs":[{"internalType":"uint256","name":"msgValue","type":"uint256"}],"name":"NotEnoughNative","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"OnlyEndpoint","type":"error"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"}],"name":"OnlyPeer","type":"error"},{"inputs":[],"name":"OnlySelf","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"name":"SimulationResult","type":"error"},{"inputs":[{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"}],"name":"SlippageExceeded","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"uint16","name":"msgType","type":"uint16"},{"internalType":"bytes","name":"options","type":"bytes"}],"indexed":false,"internalType":"struct EnforcedOptionParam[]","name":"_enforcedOptions","type":"tuple[]"}],"name":"EnforcedOptionSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"inspector","type":"address"}],"name":"MsgInspectorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"guid","type":"bytes32"},{"indexed":false,"internalType":"uint32","name":"srcEid","type":"uint32"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"name":"OFTReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"guid","type":"bytes32"},{"indexed":false,"internalType":"uint32","name":"dstEid","type":"uint32"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountSentLD","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"name":"OFTSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"eid","type":"uint32"},{"indexed":false,"internalType":"bytes32","name":"peer","type":"bytes32"}],"name":"PeerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"preCrimeAddress","type":"address"}],"name":"PreCrimeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEND_AND_CALL","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin","name":"origin","type":"tuple"}],"name":"allowInitializePath","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"approvalRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_eid","type":"uint32"},{"internalType":"uint16","name":"_msgType","type":"uint16"},{"internalType":"bytes","name":"_extraOptions","type":"bytes"}],"name":"combineOptions","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimalConversionRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endpoint","outputs":[{"internalType":"contract ILayerZeroEndpointV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"uint16","name":"msgType","type":"uint16"}],"name":"enforcedOptions","outputs":[{"internalType":"bytes","name":"enforcedOption","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin","name":"","type":"tuple"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"address","name":"_sender","type":"address"}],"name":"isComposeMsgSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_eid","type":"uint32"},{"internalType":"bytes32","name":"_peer","type":"bytes32"}],"name":"isPeer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin","name":"_origin","type":"tuple"},{"internalType":"bytes32","name":"_guid","type":"bytes32"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"_executor","type":"address"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin","name":"origin","type":"tuple"},{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"bytes32","name":"guid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"executor","type":"address"},{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct InboundPacket[]","name":"_packets","type":"tuple[]"}],"name":"lzReceiveAndRevert","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin","name":"_origin","type":"tuple"},{"internalType":"bytes32","name":"_guid","type":"bytes32"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"_executor","type":"address"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"lzReceiveSimulate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"msgInspector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"nextNonce","outputs":[{"internalType":"uint64","name":"nonce","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oApp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oAppVersion","outputs":[{"internalType":"uint64","name":"senderVersion","type":"uint64"},{"internalType":"uint64","name":"receiverVersion","type":"uint64"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"oftVersion","outputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"},{"internalType":"uint64","name":"version","type":"uint64"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"}],"name":"peers","outputs":[{"internalType":"bytes32","name":"peer","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preCrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"bytes32","name":"to","type":"bytes32"},{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"bytes","name":"extraOptions","type":"bytes"},{"internalType":"bytes","name":"composeMsg","type":"bytes"},{"internalType":"bytes","name":"oftCmd","type":"bytes"}],"internalType":"struct SendParam","name":"_sendParam","type":"tuple"}],"name":"quoteOFT","outputs":[{"components":[{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"uint256","name":"maxAmountLD","type":"uint256"}],"internalType":"struct OFTLimit","name":"oftLimit","type":"tuple"},{"components":[{"internalType":"int256","name":"feeAmountLD","type":"int256"},{"internalType":"string","name":"description","type":"string"}],"internalType":"struct OFTFeeDetail[]","name":"oftFeeDetails","type":"tuple[]"},{"components":[{"internalType":"uint256","name":"amountSentLD","type":"uint256"},{"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"internalType":"struct OFTReceipt","name":"oftReceipt","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"bytes32","name":"to","type":"bytes32"},{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"bytes","name":"extraOptions","type":"bytes"},{"internalType":"bytes","name":"composeMsg","type":"bytes"},{"internalType":"bytes","name":"oftCmd","type":"bytes"}],"internalType":"struct SendParam","name":"_sendParam","type":"tuple"},{"internalType":"bool","name":"_payInLzToken","type":"bool"}],"name":"quoteSend","outputs":[{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct MessagingFee","name":"msgFee","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"bytes32","name":"to","type":"bytes32"},{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"bytes","name":"extraOptions","type":"bytes"},{"internalType":"bytes","name":"composeMsg","type":"bytes"},{"internalType":"bytes","name":"oftCmd","type":"bytes"}],"internalType":"struct SendParam","name":"_sendParam","type":"tuple"},{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct MessagingFee","name":"_fee","type":"tuple"},{"internalType":"address","name":"_refundAddress","type":"address"}],"name":"send","outputs":[{"components":[{"internalType":"bytes32","name":"guid","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"},{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct MessagingFee","name":"fee","type":"tuple"}],"internalType":"struct MessagingReceipt","name":"msgReceipt","type":"tuple"},{"components":[{"internalType":"uint256","name":"amountSentLD","type":"uint256"},{"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"internalType":"struct OFTReceipt","name":"oftReceipt","type":"tuple"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_delegate","type":"address"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"uint16","name":"msgType","type":"uint16"},{"internalType":"bytes","name":"options","type":"bytes"}],"internalType":"struct EnforcedOptionParam[]","name":"_enforcedOptions","type":"tuple[]"}],"name":"setEnforcedOptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_msgInspector","type":"address"}],"name":"setMsgInspector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_eid","type":"uint32"},{"internalType":"bytes32","name":"_peer","type":"bytes32"}],"name":"setPeer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_preCrime","type":"address"}],"name":"setPreCrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c060405234801562000010575f80fd5b50604051620060503803806200605083398181016040528101906200003691906200084f565b8585858583836200004c620002af60201b60201c565b8484818181818f5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000c6575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000bd919062000936565b60405180910390fd5b620000d781620002b760201b60201c565b508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000172576040517fb586360400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60805173ffffffffffffffffffffffffffffffffffffffff1663ca5eb5e1826040518263ffffffff1660e01b8152600401620001af919062000936565b5f604051808303815f87803b158015620001c7575f80fd5b505af1158015620001da573d5f803e3d5ffd5b5050505050505050620001f26200037860201b60201c565b60ff168360ff16101562000232576040517f1e9714b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002426200037860201b60201c565b836200024f91906200098a565b600a6200025d919062000b15565b60a08181525050505050816008908162000278919062000d93565b5080600990816200028a919062000d93565b50505050505050620002a382826200038060201b60201c565b50505050505062000f18565b5f6012905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6006905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003f3575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620003ea919062000936565b60405180910390fd5b620004065f83836200040a60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200045e578060075f82825462000451919062000e77565b9250508190555062000531565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620004eb578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004e29392919062000ec2565b60405180910390fd5b81810360055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200057a578060075f8282540392505081905550620005c5565b8060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000624919062000efd565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000692826200064a565b810181811067ffffffffffffffff82111715620006b457620006b36200065a565b5b80604052505050565b5f620006c862000631565b9050620006d6828262000687565b919050565b5f67ffffffffffffffff821115620006f857620006f76200065a565b5b62000703826200064a565b9050602081019050919050565b5f5b838110156200072f57808201518184015260208101905062000712565b5f8484015250505050565b5f620007506200074a84620006db565b620006bd565b9050828152602081018484840111156200076f576200076e62000646565b5b6200077c84828562000710565b509392505050565b5f82601f8301126200079b576200079a62000642565b5b8151620007ad8482602086016200073a565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620007e182620007b6565b9050919050565b620007f381620007d5565b8114620007fe575f80fd5b50565b5f815190506200081181620007e8565b92915050565b5f819050919050565b6200082b8162000817565b811462000836575f80fd5b50565b5f81519050620008498162000820565b92915050565b5f805f805f8060c087890312156200086c576200086b6200063a565b5b5f87015167ffffffffffffffff8111156200088c576200088b6200063e565b5b6200089a89828a0162000784565b965050602087015167ffffffffffffffff811115620008be57620008bd6200063e565b5b620008cc89828a0162000784565b9550506040620008df89828a0162000801565b9450506060620008f289828a0162000801565b93505060806200090589828a0162000801565b92505060a06200091889828a0162000839565b9150509295509295509295565b6200093081620007d5565b82525050565b5f6020820190506200094b5f83018462000925565b92915050565b5f60ff82169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009968262000951565b9150620009a38362000951565b9250828203905060ff811115620009bf57620009be6200095d565b5b92915050565b5f8160011c9050919050565b5f808291508390505b600185111562000a2257808604811115620009fa57620009f96200095d565b5b600185161562000a0a5780820291505b808102905062000a1a85620009c5565b9450620009da565b94509492505050565b5f8262000a3c576001905062000b0e565b8162000a4b575f905062000b0e565b816001811462000a64576002811462000a6f5762000aa5565b600191505062000b0e565b60ff84111562000a845762000a836200095d565b5b8360020a91508482111562000a9e5762000a9d6200095d565b5b5062000b0e565b5060208310610133831016604e8410600b841016171562000adf5782820a90508381111562000ad95762000ad86200095d565b5b62000b0e565b62000aee8484846001620009d1565b9250905081840481111562000b085762000b076200095d565b5b81810290505b9392505050565b5f62000b218262000817565b915062000b2e8362000951565b925062000b5d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a2b565b905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000bb457607f821691505b60208210810362000bca5762000bc962000b6f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c2e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bf1565b62000c3a868362000bf1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000c7b62000c7562000c6f8462000817565b62000c52565b62000817565b9050919050565b5f819050919050565b62000c968362000c5b565b62000cae62000ca58262000c82565b84845462000bfd565b825550505050565b5f90565b62000cc462000cb6565b62000cd181848462000c8b565b505050565b5b8181101562000cf85762000cec5f8262000cba565b60018101905062000cd7565b5050565b601f82111562000d475762000d118162000bd0565b62000d1c8462000be2565b8101602085101562000d2c578190505b62000d4462000d3b8562000be2565b83018262000cd6565b50505b505050565b5f82821c905092915050565b5f62000d695f198460080262000d4c565b1980831691505092915050565b5f62000d83838362000d58565b9150826002028217905092915050565b62000d9e8262000b65565b67ffffffffffffffff81111562000dba5762000db96200065a565b5b62000dc6825462000b9c565b62000dd382828562000cfc565b5f60209050601f83116001811462000e09575f841562000df4578287015190505b62000e00858262000d76565b86555062000e6f565b601f19841662000e198662000bd0565b5f5b8281101562000e425784890151825560018201915060208501945060208101905062000e1b565b8683101562000e62578489015162000e5e601f89168262000d58565b8355505b6001600288020188555050505b505050505050565b5f62000e838262000817565b915062000e908362000817565b925082820190508082111562000eab5762000eaa6200095d565b5b92915050565b62000ebc8162000817565b82525050565b5f60608201905062000ed75f83018662000925565b62000ee6602083018562000eb1565b62000ef5604083018462000eb1565b949350505050565b5f60208201905062000f125f83018462000eb1565b92915050565b60805160a0516150c962000f875f395f81816110ee01528181612556015281816125770152818161261b015261296a01525f8181610bf201528181610eef01528181611596015281816119e001528181611edc01528181612a6401528181612c370152612d2f01526150c95ff3fe60806040526004361061025b575f3560e01c8063715018a611610143578063bb0b6a53116100b5578063d045a0dc11610079578063d045a0dc1461091a578063d424388514610936578063dd62ed3e1461095e578063f2fde38b1461099a578063fc0c546a146109c2578063ff7bd03d146109ec5761025b565b8063bb0b6a531461082d578063bc70b35414610869578063bd815db0146108a5578063c7c7f5b3146108c1578063ca5eb5e1146108f25761025b565b806395d89b411161010757806395d89b4114610721578063963efcaa1461074b5780639f68b96414610775578063a9059cbb1461079f578063b731ea0a146107db578063b98bd070146108055761025b565b8063715018a61461063f5780637d25a05e1461065557806382413eac14610691578063857749b0146106cd5780638da5cb5b146106f75761025b565b806323b872dd116101dc57806352ae2879116101a057806352ae28791461050f5780635535d461146105395780635a0dfe4d146105755780635e280f11146105b15780636fc1b31e146105db57806370a08231146106035761025b565b806323b872dd1461041d578063313ce567146104595780633400288b146104835780633b6f743b146104ab57806342966c68146104e75761025b565b8063134d4f2511610223578063134d4f2514610349578063156a0d0f1461037357806317442b701461039e57806318160ddd146103c95780631f5e1334146103f35761025b565b806306fdde031461025f578063095ea7b3146102895780630d35b415146102c5578063111ecdad1461030357806313137d651461032d575b5f80fd5b34801561026a575f80fd5b50610273610a28565b6040516102809190612fb4565b60405180910390f35b348015610294575f80fd5b506102af60048036038101906102aa9190613072565b610ab8565b6040516102bc91906130ca565b60405180910390f35b3480156102d0575f80fd5b506102eb60048036038101906102e69190613105565b610ada565b6040516102fa9392919061330a565b60405180910390f35b34801561030e575f80fd5b50610317610bb4565b6040516103249190613355565b60405180910390f35b61034760048036038101906103429190613420565b610bd9565b005b348015610354575f80fd5b5061035d610cf9565b60405161036a91906134f3565b60405180910390f35b34801561037e575f80fd5b50610387610cfe565b604051610395929190613568565b60405180910390f35b3480156103a9575f80fd5b506103b2610d2b565b6040516103c092919061358f565b60405180910390f35b3480156103d4575f80fd5b506103dd610d39565b6040516103ea91906135c5565b60405180910390f35b3480156103fe575f80fd5b50610407610d42565b60405161041491906134f3565b60405180910390f35b348015610428575f80fd5b50610443600480360381019061043e91906135de565b610d47565b60405161045091906130ca565b60405180910390f35b348015610464575f80fd5b5061046d610d75565b60405161047a9190613649565b60405180910390f35b34801561048e575f80fd5b506104a960048036038101906104a4919061369b565b610d7d565b005b3480156104b6575f80fd5b506104d160048036038101906104cc9190613703565b610d93565b6040516104de919061378a565b60405180910390f35b3480156104f2575f80fd5b5061050d600480360381019061050891906137a3565b610dfb565b005b34801561051a575f80fd5b50610523610e17565b6040516105309190613355565b60405180910390f35b348015610544575f80fd5b5061055f600480360381019061055a91906137f8565b610e1e565b60405161056c9190613888565b60405180910390f35b348015610580575f80fd5b5061059b6004803603810190610596919061369b565b610ec4565b6040516105a891906130ca565b60405180910390f35b3480156105bc575f80fd5b506105c5610eed565b6040516105d29190613903565b60405180910390f35b3480156105e6575f80fd5b5061060160048036038101906105fc919061391c565b610f11565b005b34801561060e575f80fd5b506106296004803603810190610624919061391c565b610f93565b60405161063691906135c5565b60405180910390f35b34801561064a575f80fd5b50610653610fd9565b005b348015610660575f80fd5b5061067b6004803603810190610676919061369b565b610fec565b6040516106889190613947565b60405180910390f35b34801561069c575f80fd5b506106b760048036038101906106b29190613960565b610ff3565b6040516106c491906130ca565b60405180910390f35b3480156106d8575f80fd5b506106e161102d565b6040516106ee9190613649565b60405180910390f35b348015610702575f80fd5b5061070b611035565b6040516107189190613355565b60405180910390f35b34801561072c575f80fd5b5061073561105c565b6040516107429190612fb4565b60405180910390f35b348015610756575f80fd5b5061075f6110ec565b60405161076c91906135c5565b60405180910390f35b348015610780575f80fd5b50610789611110565b60405161079691906130ca565b60405180910390f35b3480156107aa575f80fd5b506107c560048036038101906107c09190613072565b611114565b6040516107d291906130ca565b60405180910390f35b3480156107e6575f80fd5b506107ef611136565b6040516107fc9190613355565b60405180910390f35b348015610810575f80fd5b5061082b60048036038101906108269190613a26565b61115b565b005b348015610838575f80fd5b50610853600480360381019061084e9190613a71565b61117c565b6040516108609190613aab565b60405180910390f35b348015610874575f80fd5b5061088f600480360381019061088a9190613ac4565b611191565b60405161089c9190613888565b60405180910390f35b6108bf60048036038101906108ba9190613b8a565b611393565b005b6108db60048036038101906108d69190613bf3565b611565565b6040516108e9929190613cea565b60405180910390f35b3480156108fd575f80fd5b506109186004803603810190610913919061391c565b61158c565b005b610934600480360381019061092f9190613420565b61161d565b005b348015610941575f80fd5b5061095c6004803603810190610957919061391c565b61169a565b005b348015610969575f80fd5b50610984600480360381019061097f9190613d11565b61171c565b60405161099191906135c5565b60405180910390f35b3480156109a5575f80fd5b506109c060048036038101906109bb919061391c565b61179e565b005b3480156109cd575f80fd5b506109d6611822565b6040516109e39190613355565b60405180910390f35b3480156109f7575f80fd5b50610a126004803603810190610a0d9190613d4f565b611829565b604051610a1f91906130ca565b60405180910390f35b606060088054610a3790613da7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6390613da7565b8015610aae5780601f10610a8557610100808354040283529160200191610aae565b820191905f5260205f20905b815481529060010190602001808311610a9157829003601f168201915b5050505050905090565b5f80610ac2611866565b9050610acf81858561186d565b600191505092915050565b610ae2612e97565b6060610aec612eaf565b5f8067ffffffffffffffff8016905060405180604001604052808381526020018281525094505f67ffffffffffffffff811115610b2c57610b2b613dd7565b5b604051908082528060200260200182016040528015610b6557816020015b610b52612ec7565b815260200190600190039081610b4a5790505b5093505f80610b8e886040013589606001358a5f016020810190610b899190613a71565b61187f565b915091506040518060400160405280838152602001828152509450505050509193909250565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614610c6957336040517f91ac5e4f000000000000000000000000000000000000000000000000000000008152600401610c609190613355565b60405180910390fd5b8660200135610c88885f016020810190610c839190613a71565b6118de565b14610ce157865f016020810190610c9f9190613a71565b87602001356040517fc26bebcc000000000000000000000000000000000000000000000000000000008152600401610cd8929190613e13565b60405180910390fd5b610cf08787878787878761194f565b50505050505050565b600281565b5f807f02e49c2c000000000000000000000000000000000000000000000000000000006001915091509091565b5f8060016002915091509091565b5f600754905090565b600181565b5f80610d51611866565b9050610d5e858285611ad9565b610d69858585611b6b565b60019150509392505050565b5f6012905090565b610d85611c5b565b610d8f8282611ce2565b5050565b610d9b612ee0565b5f610dc084604001358560600135865f016020810190610dbb9190613a71565b61187f565b9150505f80610dcf8684611d41565b91509150610df0865f016020810190610de89190613a71565b838388611ed2565b935050505092915050565b610e03611c5b565b610e14610e0e611866565b82611fb3565b50565b5f30905090565b6003602052815f5260405f20602052805f5260405f205f91509150508054610e4590613da7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7190613da7565b8015610ebc5780601f10610e9357610100808354040283529160200191610ebc565b820191905f5260205f20905b815481529060010190602001808311610e9f57829003601f168201915b505050505081565b5f8160015f8563ffffffff1663ffffffff1681526020019081526020015f205414905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610f19611c5b565b8060045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff0be4f1e87349231d80c36b33f9e8639658eeaf474014dee15a3e6a4d441419781604051610f889190613355565b60405180910390a150565b5f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fe1611c5b565b610fea5f612032565b565b5f92915050565b5f3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050949350505050565b5f6006905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606009805461106b90613da7565b80601f016020809104026020016040519081016040528092919081815260200182805461109790613da7565b80156110e25780601f106110b9576101008083540402835291602001916110e2565b820191905f5260205f20905b8154815290600101906020018083116110c557829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f90565b5f8061111e611866565b905061112b818585611b6b565b600191505092915050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611163611c5b565b611178828290611173919061406b565b6120f3565b5050565b6001602052805f5260405f205f915090505481565b60605f60035f8763ffffffff1663ffffffff1681526020019081526020015f205f8661ffff1661ffff1681526020019081526020015f2080546111d390613da7565b80601f01602080910402602001604051908101604052809291908181526020018280546111ff90613da7565b801561124a5780601f106112215761010080835404028352916020019161124a565b820191905f5260205f20905b81548152906001019060200180831161122d57829003601f168201915b505050505090505f8151036112a55783838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f8201169050808301925050505050505091505061138b565b5f84849050036112b8578091505061138b565b6002848490501061134c5761130f84848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f8201169050808301925050505050505061220e565b808484600290809261132393929190614087565b6040516020016113359392919061411f565b60405160208183030381529060405291505061138b565b83836040517f9a6d49cd000000000000000000000000000000000000000000000000000000008152600401611382929190614170565b60405180910390fd5b949350505050565b5f5b828290508110156114b857368383838181106113b4576113b3614192565b5b90506020028101906113c691906141cb565b90506113eb815f015f0160208101906113df9190613a71565b825f0160200135610ec4565b6113f557506114a5565b3073ffffffffffffffffffffffffffffffffffffffff1663d045a0dc8260c00135835f018460a001358580610100019061142f91906141f3565b8760e0016020810190611442919061391c565b8880610120019061145391906141f3565b6040518963ffffffff1660e01b81526004016114759796959493929190614328565b5f604051808303818588803b15801561148c575f80fd5b505af115801561149e573d5f803e3d5ffd5b5050505050505b80806114b0906143b8565b915050611395565b503373ffffffffffffffffffffffffffffffffffffffff16638e9e70996040518163ffffffff1660e01b81526004015f60405180830381865afa158015611501573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611529919061446d565b6040517f8351eea700000000000000000000000000000000000000000000000000000000815260040161155c9190613888565b60405180910390fd5b61156d612ef8565b611575612eaf565b611580858585612267565b91509150935093915050565b611594611c5b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ca5eb5e1826040518263ffffffff1660e01b81526004016115ed9190613355565b5f604051808303815f87803b158015611604575f80fd5b505af1158015611616573d5f803e3d5ffd5b5050505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611682576040517f14d4a4e800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116918787878787878761236c565b50505050505050565b6116a2611c5b565b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fd48d879cef83a1c0bdda516f27b13ddb1b3f8bbac1c9e1511bb2a659c2427760816040516117119190613355565b60405180910390a150565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6117a6611c5b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611816575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161180d9190613355565b60405180910390fd5b61181f81612032565b50565b5f30905090565b5f816020013560015f845f0160208101906118449190613a71565b63ffffffff1663ffffffff1681526020019081526020015f2054149050919050565b5f33905090565b61187a8383836001612384565b505050565b5f8061188a85612553565b9150819050838110156118d65780846040517f71c4efed0000000000000000000000000000000000000000000000000000000081526004016118cd9291906144b4565b60405180910390fd5b935093915050565b5f8060015f8463ffffffff1663ffffffff1681526020019081526020015f205490505f801b810361194657826040517ff6ff4fb700000000000000000000000000000000000000000000000000000000815260040161193d91906144db565b60405180910390fd5b80915050919050565b5f61196261195d87876125b2565b6125dc565b90505f6119928261197b6119768a8a6125e7565b612618565b8b5f01602081019061198d9190613a71565b612656565b905061199e87876126a4565b15611a6c575f6119dc8a60400160208101906119ba91906144f4565b8b5f0160208101906119cc9190613a71565b846119d78c8c6126b7565b612719565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637cb59012848b5f856040518563ffffffff1660e01b8152600401611a3d9493929190614558565b5f604051808303815f87803b158015611a54575f80fd5b505af1158015611a66573d5f803e3d5ffd5b50505050505b8173ffffffffffffffffffffffffffffffffffffffff16887fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c8b5f016020810190611ab79190613a71565b84604051611ac69291906145a2565b60405180910390a3505050505050505050565b5f611ae4848461171c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b655781811015611b56578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611b4d939291906145c9565b60405180910390fd5b611b6484848484035f612384565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bdb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611bd29190613355565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c4b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611c429190613355565b60405180910390fd5b611c5683838361274b565b505050565b611c63611866565b73ffffffffffffffffffffffffffffffffffffffff16611c81611035565b73ffffffffffffffffffffffffffffffffffffffff1614611ce057611ca4611866565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611cd79190613355565b60405180910390fd5b565b8060015f8463ffffffff1663ffffffff1681526020019081526020015f20819055507f238399d427b947898edb290f5ff0f9109849b1c3ba196a42e35f00c50a54b98b8282604051611d35929190613e13565b60405180910390a15050565b6060805f611dad8560200135611d5686612967565b878060a00190611d6691906141f3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f8201169050808301925050505050505061299b565b80925081945050505f81611dc2576001611dc5565b60025b9050611df2865f016020810190611ddc9190613a71565b82888060800190611ded91906141f3565b611191565b92505f60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ec8578073ffffffffffffffffffffffffffffffffffffffff1663043a78eb86866040518363ffffffff1660e01b8152600401611e879291906145fe565b602060405180830381865afa158015611ea2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec69190614647565b505b5050509250929050565b611eda612ee0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ddc28c586040518060a001604052808863ffffffff168152602001611f36896118de565b8152602001878152602001868152602001851515815250306040518363ffffffff1660e01b8152600401611f6b929190614743565b6040805180830381865afa158015611f85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa991906147d2565b9050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612023575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161201a9190613355565b60405180910390fd5b61202e825f8361274b565b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5b81518110156121d35761212582828151811061211457612113614192565b5b60200260200101516040015161220e565b81818151811061213857612137614192565b5b60200260200101516040015160035f84848151811061215a57612159614192565b5b60200260200101515f015163ffffffff1663ffffffff1681526020019081526020015f205f84848151811061219257612191614192565b5b60200260200101516020015161ffff1661ffff1681526020019081526020015f2090816121bf9190614991565b5080806121cb906143b8565b9150506120f5565b507fbe4864a8e820971c0247f5992e2da559595f7bf076a21cb5928d443d2a13b674816040516122039190614b77565b60405180910390a150565b5f60028201519050600361ffff168161ffff161461226357816040517f9a6d49cd00000000000000000000000000000000000000000000000000000000815260040161225a9190613888565b60405180910390fd5b5050565b61226f612ef8565b612277612eaf565b5f8061229e33886040013589606001358a5f0160208101906122999190613a71565b612a09565b915091505f806122ae8984611d41565b915091506122e0895f0160208101906122c79190613a71565b83838b8036038101906122da9190614be4565b8b612a31565b955060405180604001604052808581526020018481525094503373ffffffffffffffffffffffffffffffffffffffff16865f01517f85496b760a4b7f8d66384b9df21b381f5d1b1e79f229a47aaf4c232edc2fe59a8b5f0160208101906123479190613a71565b878760405161235893929190614c0f565b60405180910390a350505050935093915050565b61237b8787878787878761194f565b50505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123f4575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016123eb9190613355565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612464575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161245b9190613355565b60405180910390fd5b8160065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561254d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161254491906135c5565b60405180910390a35b50505050565b5f7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000836125a19190614c71565b6125ab9190614ca1565b9050919050565b5f82825f90602060ff16926125c993929190614087565b906125d49190614cec565b905092915050565b5f815f1c9050919050565b5f8282602060ff1690602860ff169261260293929190614087565b9061260d9190614d75565b60c01c905092915050565b5f7f00000000000000000000000000000000000000000000000000000000000000008267ffffffffffffffff1661264f9190614ca1565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126905761dead93505b61269a8484612b47565b8290509392505050565b5f602860ff168383905011905092915050565b60608282602860ff169080926126cf93929190614087565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f82011690508083019250505050505050905092915050565b6060848484846040516020016127329493929190614e5b565b6040516020818303038152906040529050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361279b578060075f82825461278f9190614ea4565b9250508190555061286b565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612825578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161281c939291906145c9565b60405180910390fd5b81810360055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128b2578060075f82825403925050819055506128fd565b8060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161295a91906135c5565b60405180910390a3505050565b5f7f0000000000000000000000000000000000000000000000000000000000000000826129949190614c71565b9050919050565b60605f808351119050806129d05784846040516020016129bc929190614ef7565b6040516020818303038152906040526129ff565b84846129db33612bc6565b856040516020016129ef9493929190614f22565b6040516020818303038152906040525b9150935093915050565b5f80612a1685858561187f565b8092508193505050612a288683611fb3565b94509492505050565b612a39612ef8565b5f612a46845f0151612be7565b90505f84602001511115612a6257612a618460200151612c34565b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632637a450826040518060a001604052808b63ffffffff168152602001612abf8c6118de565b81526020018a81526020018981526020015f8960200151111515815250866040518463ffffffff1660e01b8152600401612afa929190614743565b60806040518083038185885af1158015612b16573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612b3b9190614ff4565b91505095945050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bb7575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401612bae9190613355565b60405180910390fd5b612bc25f838361274b565b5050565b5f8173ffffffffffffffffffffffffffffffffffffffff165f1b9050919050565b5f813414612c2c57346040517f9f704120000000000000000000000000000000000000000000000000000000008152600401612c2391906135c5565b60405180910390fd5b819050919050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cc29190615033565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d29576040517f5373352a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d76337f0000000000000000000000000000000000000000000000000000000000000000848473ffffffffffffffffffffffffffffffffffffffff16612d7a909392919063ffffffff16565b5050565b612df6848573ffffffffffffffffffffffffffffffffffffffff166323b872dd868686604051602401612daf9392919061505e565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612dfc565b50505050565b5f8060205f8451602086015f885af180612e1b576040513d5f823e3d81fd5b3d92505f519150505f8214612e34576001811415612e4f565b5f8473ffffffffffffffffffffffffffffffffffffffff163b145b15612e9157836040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401612e889190613355565b60405180910390fd5b50505050565b60405180604001604052805f81526020015f81525090565b60405180604001604052805f81526020015f81525090565b60405180604001604052805f8152602001606081525090565b60405180604001604052805f81526020015f81525090565b60405180606001604052805f80191681526020015f67ffffffffffffffff168152602001612f24612ee0565b81525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612f61578082015181840152602081019050612f46565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612f8682612f2a565b612f908185612f34565b9350612fa0818560208601612f44565b612fa981612f6c565b840191505092915050565b5f6020820190508181035f830152612fcc8184612f7c565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61300e82612fe5565b9050919050565b61301e81613004565b8114613028575f80fd5b50565b5f8135905061303981613015565b92915050565b5f819050919050565b6130518161303f565b811461305b575f80fd5b50565b5f8135905061306c81613048565b92915050565b5f806040838503121561308857613087612fdd565b5b5f6130958582860161302b565b92505060206130a68582860161305e565b9150509250929050565b5f8115159050919050565b6130c4816130b0565b82525050565b5f6020820190506130dd5f8301846130bb565b92915050565b5f80fd5b5f60e082840312156130fc576130fb6130e3565b5b81905092915050565b5f6020828403121561311a57613119612fdd565b5b5f82013567ffffffffffffffff81111561313757613136612fe1565b5b613143848285016130e7565b91505092915050565b6131558161303f565b82525050565b604082015f82015161316f5f85018261314c565b506020820151613182602085018261314c565b50505050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f819050919050565b6131c3816131b1565b82525050565b5f82825260208201905092915050565b5f6131e382612f2a565b6131ed81856131c9565b93506131fd818560208601612f44565b61320681612f6c565b840191505092915050565b5f604083015f8301516132265f8601826131ba565b506020830151848203602086015261323e82826131d9565b9150508091505092915050565b5f6132568383613211565b905092915050565b5f602082019050919050565b5f61327482613188565b61327e8185613192565b935083602082028501613290856131a2565b805f5b858110156132cb57848403895281516132ac858261324b565b94506132b78361325e565b925060208a01995050600181019050613293565b50829750879550505050505092915050565b604082015f8201516132f15f85018261314c565b506020820151613304602085018261314c565b50505050565b5f60a08201905061331d5f83018661315b565b818103604083015261332f818561326a565b905061333e60608301846132dd565b949350505050565b61334f81613004565b82525050565b5f6020820190506133685f830184613346565b92915050565b5f60608284031215613383576133826130e3565b5b81905092915050565b5f819050919050565b61339e8161338c565b81146133a8575f80fd5b50565b5f813590506133b981613395565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126133e0576133df6133bf565b5b8235905067ffffffffffffffff8111156133fd576133fc6133c3565b5b602083019150836001820283011115613419576134186133c7565b5b9250929050565b5f805f805f805f60e0888a03121561343b5761343a612fdd565b5b5f6134488a828b0161336e565b97505060606134598a828b016133ab565b965050608088013567ffffffffffffffff81111561347a57613479612fe1565b5b6134868a828b016133cb565b955095505060a06134998a828b0161302b565b93505060c088013567ffffffffffffffff8111156134ba576134b9612fe1565b5b6134c68a828b016133cb565b925092505092959891949750929550565b5f61ffff82169050919050565b6134ed816134d7565b82525050565b5f6020820190506135065f8301846134e4565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135408161350c565b82525050565b5f67ffffffffffffffff82169050919050565b61356281613546565b82525050565b5f60408201905061357b5f830185613537565b6135886020830184613559565b9392505050565b5f6040820190506135a25f830185613559565b6135af6020830184613559565b9392505050565b6135bf8161303f565b82525050565b5f6020820190506135d85f8301846135b6565b92915050565b5f805f606084860312156135f5576135f4612fdd565b5b5f6136028682870161302b565b93505060206136138682870161302b565b92505060406136248682870161305e565b9150509250925092565b5f60ff82169050919050565b6136438161362e565b82525050565b5f60208201905061365c5f83018461363a565b92915050565b5f63ffffffff82169050919050565b61367a81613662565b8114613684575f80fd5b50565b5f8135905061369581613671565b92915050565b5f80604083850312156136b1576136b0612fdd565b5b5f6136be85828601613687565b92505060206136cf858286016133ab565b9150509250929050565b6136e2816130b0565b81146136ec575f80fd5b50565b5f813590506136fd816136d9565b92915050565b5f806040838503121561371957613718612fdd565b5b5f83013567ffffffffffffffff81111561373657613735612fe1565b5b613742858286016130e7565b9250506020613753858286016136ef565b9150509250929050565b604082015f8201516137715f85018261314c565b506020820151613784602085018261314c565b50505050565b5f60408201905061379d5f83018461375d565b92915050565b5f602082840312156137b8576137b7612fdd565b5b5f6137c58482850161305e565b91505092915050565b6137d7816134d7565b81146137e1575f80fd5b50565b5f813590506137f2816137ce565b92915050565b5f806040838503121561380e5761380d612fdd565b5b5f61381b85828601613687565b925050602061382c858286016137e4565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f61385a82613836565b6138648185613840565b9350613874818560208601612f44565b61387d81612f6c565b840191505092915050565b5f6020820190508181035f8301526138a08184613850565b905092915050565b5f819050919050565b5f6138cb6138c66138c184612fe5565b6138a8565b612fe5565b9050919050565b5f6138dc826138b1565b9050919050565b5f6138ed826138d2565b9050919050565b6138fd816138e3565b82525050565b5f6020820190506139165f8301846138f4565b92915050565b5f6020828403121561393157613930612fdd565b5b5f61393e8482850161302b565b91505092915050565b5f60208201905061395a5f830184613559565b92915050565b5f805f8060a0858703121561397857613977612fdd565b5b5f6139858782880161336e565b945050606085013567ffffffffffffffff8111156139a6576139a5612fe1565b5b6139b2878288016133cb565b935093505060806139c58782880161302b565b91505092959194509250565b5f8083601f8401126139e6576139e56133bf565b5b8235905067ffffffffffffffff811115613a0357613a026133c3565b5b602083019150836020820283011115613a1f57613a1e6133c7565b5b9250929050565b5f8060208385031215613a3c57613a3b612fdd565b5b5f83013567ffffffffffffffff811115613a5957613a58612fe1565b5b613a65858286016139d1565b92509250509250929050565b5f60208284031215613a8657613a85612fdd565b5b5f613a9384828501613687565b91505092915050565b613aa58161338c565b82525050565b5f602082019050613abe5f830184613a9c565b92915050565b5f805f8060608587031215613adc57613adb612fdd565b5b5f613ae987828801613687565b9450506020613afa878288016137e4565b935050604085013567ffffffffffffffff811115613b1b57613b1a612fe1565b5b613b27878288016133cb565b925092505092959194509250565b5f8083601f840112613b4a57613b496133bf565b5b8235905067ffffffffffffffff811115613b6757613b666133c3565b5b602083019150836020820283011115613b8357613b826133c7565b5b9250929050565b5f8060208385031215613ba057613b9f612fdd565b5b5f83013567ffffffffffffffff811115613bbd57613bbc612fe1565b5b613bc985828601613b35565b92509250509250929050565b5f60408284031215613bea57613be96130e3565b5b81905092915050565b5f805f60808486031215613c0a57613c09612fdd565b5b5f84013567ffffffffffffffff811115613c2757613c26612fe1565b5b613c33868287016130e7565b9350506020613c4486828701613bd5565b9250506060613c558682870161302b565b9150509250925092565b613c688161338c565b82525050565b613c7781613546565b82525050565b604082015f820151613c915f85018261314c565b506020820151613ca4602085018261314c565b50505050565b608082015f820151613cbe5f850182613c5f565b506020820151613cd16020850182613c6e565b506040820151613ce46040850182613c7d565b50505050565b5f60c082019050613cfd5f830185613caa565b613d0a60808301846132dd565b9392505050565b5f8060408385031215613d2757613d26612fdd565b5b5f613d348582860161302b565b9250506020613d458582860161302b565b9150509250929050565b5f60608284031215613d6457613d63612fdd565b5b5f613d718482850161336e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613dbe57607f821691505b602082108103613dd157613dd0613d7a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613e0d81613662565b82525050565b5f604082019050613e265f830185613e04565b613e336020830184613a9c565b9392505050565b613e4382612f6c565b810181811067ffffffffffffffff82111715613e6257613e61613dd7565b5b80604052505050565b5f613e74612fd4565b9050613e808282613e3a565b919050565b5f67ffffffffffffffff821115613e9f57613e9e613dd7565b5b602082029050602081019050919050565b5f80fd5b5f80fd5b5f80fd5b5f67ffffffffffffffff821115613ed657613ed5613dd7565b5b613edf82612f6c565b9050602081019050919050565b828183375f83830152505050565b5f613f0c613f0784613ebc565b613e6b565b905082815260208101848484011115613f2857613f27613eb8565b5b613f33848285613eec565b509392505050565b5f82601f830112613f4f57613f4e6133bf565b5b8135613f5f848260208601613efa565b91505092915050565b5f60608284031215613f7d57613f7c613eb0565b5b613f876060613e6b565b90505f613f9684828501613687565b5f830152506020613fa9848285016137e4565b602083015250604082013567ffffffffffffffff811115613fcd57613fcc613eb4565b5b613fd984828501613f3b565b60408301525092915050565b5f613ff7613ff284613e85565b613e6b565b9050808382526020820190506020840283018581111561401a576140196133c7565b5b835b8181101561406157803567ffffffffffffffff81111561403f5761403e6133bf565b5b80860161404c8982613f68565b8552602085019450505060208101905061401c565b5050509392505050565b5f614077368484613fe5565b905092915050565b5f80fd5b5f80fd5b5f808585111561409a5761409961407f565b5b838611156140ab576140aa614083565b5b6001850283019150848603905094509492505050565b5f81905092915050565b5f6140d582613836565b6140df81856140c1565b93506140ef818560208601612f44565b80840191505092915050565b5f61410683856140c1565b9350614113838584613eec565b82840190509392505050565b5f61412a82866140cb565b91506141378284866140fb565b9150819050949350505050565b5f61414f8385613840565b935061415c838584613eec565b61416583612f6c565b840190509392505050565b5f6020820190508181035f830152614189818486614144565b90509392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f80fd5b5f80fd5b5f80fd5b5f82356001610140038336030381126141e7576141e66141bf565b5b80830191505092915050565b5f808335600160200384360303811261420f5761420e6141bf565b5b80840192508235915067ffffffffffffffff821115614231576142306141c3565b5b60208301925060018202360383131561424d5761424c6141c7565b5b509250929050565b5f6142636020840184613687565b905092915050565b61427481613662565b82525050565b5f61428860208401846133ab565b905092915050565b61429981613546565b81146142a3575f80fd5b50565b5f813590506142b481614290565b92915050565b5f6142c860208401846142a6565b905092915050565b606082016142e05f830183614255565b6142ec5f85018261426b565b506142fa602083018361427a565b6143076020850182613c5f565b5061431560408301836142ba565b6143226040850182613c6e565b50505050565b5f60e08201905061433b5f83018a6142d0565b6143486060830189613a9c565b818103608083015261435b818789614144565b905061436a60a0830186613346565b81810360c083015261437d818486614144565b905098975050505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6143c28261303f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143f4576143f361438b565b5b600182019050919050565b5f61441161440c84613ebc565b613e6b565b90508281526020810184848401111561442d5761442c613eb8565b5b614438848285612f44565b509392505050565b5f82601f830112614454576144536133bf565b5b81516144648482602086016143ff565b91505092915050565b5f6020828403121561448257614481612fdd565b5b5f82015167ffffffffffffffff81111561449f5761449e612fe1565b5b6144ab84828501614440565b91505092915050565b5f6040820190506144c75f8301856135b6565b6144d460208301846135b6565b9392505050565b5f6020820190506144ee5f830184613e04565b92915050565b5f6020828403121561450957614508612fdd565b5b5f614516848285016142a6565b91505092915050565b5f819050919050565b5f61454261453d6145388461451f565b6138a8565b6134d7565b9050919050565b61455281614528565b82525050565b5f60808201905061456b5f830187613346565b6145786020830186613a9c565b6145856040830185614549565b81810360608301526145978184613850565b905095945050505050565b5f6040820190506145b55f830185613e04565b6145c260208301846135b6565b9392505050565b5f6060820190506145dc5f830186613346565b6145e960208301856135b6565b6145f660408301846135b6565b949350505050565b5f6040820190508181035f8301526146168185613850565b9050818103602083015261462a8184613850565b90509392505050565b5f81519050614641816136d9565b92915050565b5f6020828403121561465c5761465b612fdd565b5b5f61466984828501614633565b91505092915050565b5f82825260208201905092915050565b5f61468c82613836565b6146968185614672565b93506146a6818560208601612f44565b6146af81612f6c565b840191505092915050565b6146c3816130b0565b82525050565b5f60a083015f8301516146de5f86018261426b565b5060208301516146f16020860182613c5f565b50604083015184820360408601526147098282614682565b915050606083015184820360608601526147238282614682565b915050608083015161473860808601826146ba565b508091505092915050565b5f6040820190508181035f83015261475b81856146c9565b905061476a6020830184613346565b9392505050565b5f8151905061477f81613048565b92915050565b5f6040828403121561479a57614799613eb0565b5b6147a46040613e6b565b90505f6147b384828501614771565b5f8301525060206147c684828501614771565b60208301525092915050565b5f604082840312156147e7576147e6612fdd565b5b5f6147f484828501614785565b91505092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026148597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261481e565b614863868361481e565b95508019841693508086168417925050509392505050565b5f61489561489061488b8461303f565b6138a8565b61303f565b9050919050565b5f819050919050565b6148ae8361487b565b6148c26148ba8261489c565b84845461482a565b825550505050565b5f90565b6148d66148ca565b6148e18184846148a5565b505050565b5b81811015614904576148f95f826148ce565b6001810190506148e7565b5050565b601f8211156149495761491a816147fd565b6149238461480f565b81016020851015614932578190505b61494661493e8561480f565b8301826148e6565b50505b505050565b5f82821c905092915050565b5f6149695f198460080261494e565b1980831691505092915050565b5f614981838361495a565b9150826002028217905092915050565b61499a82613836565b67ffffffffffffffff8111156149b3576149b2613dd7565b5b6149bd8254613da7565b6149c8828285614908565b5f60209050601f8311600181146149f9575f84156149e7578287015190505b6149f18582614976565b865550614a58565b601f198416614a07866147fd565b5f5b82811015614a2e57848901518255600182019150602085019450602081019050614a09565b86831015614a4b5784890151614a47601f89168261495a565b8355505b6001600288020188555050505b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614a92816134d7565b82525050565b5f606083015f830151614aad5f86018261426b565b506020830151614ac06020860182614a89565b5060408301518482036040860152614ad88282614682565b9150508091505092915050565b5f614af08383614a98565b905092915050565b5f602082019050919050565b5f614b0e82614a60565b614b188185614a6a565b935083602082028501614b2a85614a7a565b805f5b85811015614b655784840389528151614b468582614ae5565b9450614b5183614af8565b925060208a01995050600181019050614b2d565b50829750879550505050505092915050565b5f6020820190508181035f830152614b8f8184614b04565b905092915050565b5f60408284031215614bac57614bab613eb0565b5b614bb66040613e6b565b90505f614bc58482850161305e565b5f830152506020614bd88482850161305e565b60208301525092915050565b5f60408284031215614bf957614bf8612fdd565b5b5f614c0684828501614b97565b91505092915050565b5f606082019050614c225f830186613e04565b614c2f60208301856135b6565b614c3c60408301846135b6565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614c7b8261303f565b9150614c868361303f565b925082614c9657614c95614c44565b5b828204905092915050565b5f614cab8261303f565b9150614cb68361303f565b9250828202614cc48161303f565b91508282048414831517614cdb57614cda61438b565b5b5092915050565b5f82905092915050565b5f614cf78383614ce2565b82614d02813561338c565b92506020821015614d4257614d3d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080261481e565b831692505b505092915050565b5f7fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b5f614d808383614ce2565b82614d8b8135614d4a565b92506008821015614dcb57614dc67fffffffffffffffff0000000000000000000000000000000000000000000000008360080360080261481e565b831692505b505092915050565b5f8160c01b9050919050565b5f614de982614dd3565b9050919050565b614e01614dfc82613546565b614ddf565b82525050565b5f8160e01b9050919050565b5f614e1d82614e07565b9050919050565b614e35614e3082613662565b614e13565b82525050565b5f819050919050565b614e55614e508261303f565b614e3b565b82525050565b5f614e668287614df0565b600882019150614e768286614e24565b600482019150614e868285614e44565b602082019150614e9682846140cb565b915081905095945050505050565b5f614eae8261303f565b9150614eb98361303f565b9250828201905080821115614ed157614ed061438b565b5b92915050565b5f819050919050565b614ef1614eec8261338c565b614ed7565b82525050565b5f614f028285614ee0565b602082019150614f128284614df0565b6008820191508190509392505050565b5f614f2d8287614ee0565b602082019150614f3d8286614df0565b600882019150614f4d8285614ee0565b602082019150614f5d82846140cb565b915081905095945050505050565b5f81519050614f7981613395565b92915050565b5f81519050614f8d81614290565b92915050565b5f60808284031215614fa857614fa7613eb0565b5b614fb26060613e6b565b90505f614fc184828501614f6b565b5f830152506020614fd484828501614f7f565b6020830152506040614fe884828501614785565b60408301525092915050565b5f6080828403121561500957615008612fdd565b5b5f61501684828501614f93565b91505092915050565b5f8151905061502d81613015565b92915050565b5f6020828403121561504857615047612fdd565b5b5f6150558482850161501f565b91505092915050565b5f6060820190506150715f830186613346565b61507e6020830185613346565b61508b60408301846135b6565b94935050505056fea26469706673582212201c18157387d31b0fd8e20457afe01588367229d7fc3b6a3341f5434a5c78287b64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000001a44076050125825900e736c501f859c50fe728c00000000000000000000000091f033be6c46e69a21b2a3f62ba1a6ead41bbe4800000000000000000000000091f033be6c46e69a21b2a3f62ba1a6ead41bbe4800000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000000a426c61646547616d6573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424c414445000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025b575f3560e01c8063715018a611610143578063bb0b6a53116100b5578063d045a0dc11610079578063d045a0dc1461091a578063d424388514610936578063dd62ed3e1461095e578063f2fde38b1461099a578063fc0c546a146109c2578063ff7bd03d146109ec5761025b565b8063bb0b6a531461082d578063bc70b35414610869578063bd815db0146108a5578063c7c7f5b3146108c1578063ca5eb5e1146108f25761025b565b806395d89b411161010757806395d89b4114610721578063963efcaa1461074b5780639f68b96414610775578063a9059cbb1461079f578063b731ea0a146107db578063b98bd070146108055761025b565b8063715018a61461063f5780637d25a05e1461065557806382413eac14610691578063857749b0146106cd5780638da5cb5b146106f75761025b565b806323b872dd116101dc57806352ae2879116101a057806352ae28791461050f5780635535d461146105395780635a0dfe4d146105755780635e280f11146105b15780636fc1b31e146105db57806370a08231146106035761025b565b806323b872dd1461041d578063313ce567146104595780633400288b146104835780633b6f743b146104ab57806342966c68146104e75761025b565b8063134d4f2511610223578063134d4f2514610349578063156a0d0f1461037357806317442b701461039e57806318160ddd146103c95780631f5e1334146103f35761025b565b806306fdde031461025f578063095ea7b3146102895780630d35b415146102c5578063111ecdad1461030357806313137d651461032d575b5f80fd5b34801561026a575f80fd5b50610273610a28565b6040516102809190612fb4565b60405180910390f35b348015610294575f80fd5b506102af60048036038101906102aa9190613072565b610ab8565b6040516102bc91906130ca565b60405180910390f35b3480156102d0575f80fd5b506102eb60048036038101906102e69190613105565b610ada565b6040516102fa9392919061330a565b60405180910390f35b34801561030e575f80fd5b50610317610bb4565b6040516103249190613355565b60405180910390f35b61034760048036038101906103429190613420565b610bd9565b005b348015610354575f80fd5b5061035d610cf9565b60405161036a91906134f3565b60405180910390f35b34801561037e575f80fd5b50610387610cfe565b604051610395929190613568565b60405180910390f35b3480156103a9575f80fd5b506103b2610d2b565b6040516103c092919061358f565b60405180910390f35b3480156103d4575f80fd5b506103dd610d39565b6040516103ea91906135c5565b60405180910390f35b3480156103fe575f80fd5b50610407610d42565b60405161041491906134f3565b60405180910390f35b348015610428575f80fd5b50610443600480360381019061043e91906135de565b610d47565b60405161045091906130ca565b60405180910390f35b348015610464575f80fd5b5061046d610d75565b60405161047a9190613649565b60405180910390f35b34801561048e575f80fd5b506104a960048036038101906104a4919061369b565b610d7d565b005b3480156104b6575f80fd5b506104d160048036038101906104cc9190613703565b610d93565b6040516104de919061378a565b60405180910390f35b3480156104f2575f80fd5b5061050d600480360381019061050891906137a3565b610dfb565b005b34801561051a575f80fd5b50610523610e17565b6040516105309190613355565b60405180910390f35b348015610544575f80fd5b5061055f600480360381019061055a91906137f8565b610e1e565b60405161056c9190613888565b60405180910390f35b348015610580575f80fd5b5061059b6004803603810190610596919061369b565b610ec4565b6040516105a891906130ca565b60405180910390f35b3480156105bc575f80fd5b506105c5610eed565b6040516105d29190613903565b60405180910390f35b3480156105e6575f80fd5b5061060160048036038101906105fc919061391c565b610f11565b005b34801561060e575f80fd5b506106296004803603810190610624919061391c565b610f93565b60405161063691906135c5565b60405180910390f35b34801561064a575f80fd5b50610653610fd9565b005b348015610660575f80fd5b5061067b6004803603810190610676919061369b565b610fec565b6040516106889190613947565b60405180910390f35b34801561069c575f80fd5b506106b760048036038101906106b29190613960565b610ff3565b6040516106c491906130ca565b60405180910390f35b3480156106d8575f80fd5b506106e161102d565b6040516106ee9190613649565b60405180910390f35b348015610702575f80fd5b5061070b611035565b6040516107189190613355565b60405180910390f35b34801561072c575f80fd5b5061073561105c565b6040516107429190612fb4565b60405180910390f35b348015610756575f80fd5b5061075f6110ec565b60405161076c91906135c5565b60405180910390f35b348015610780575f80fd5b50610789611110565b60405161079691906130ca565b60405180910390f35b3480156107aa575f80fd5b506107c560048036038101906107c09190613072565b611114565b6040516107d291906130ca565b60405180910390f35b3480156107e6575f80fd5b506107ef611136565b6040516107fc9190613355565b60405180910390f35b348015610810575f80fd5b5061082b60048036038101906108269190613a26565b61115b565b005b348015610838575f80fd5b50610853600480360381019061084e9190613a71565b61117c565b6040516108609190613aab565b60405180910390f35b348015610874575f80fd5b5061088f600480360381019061088a9190613ac4565b611191565b60405161089c9190613888565b60405180910390f35b6108bf60048036038101906108ba9190613b8a565b611393565b005b6108db60048036038101906108d69190613bf3565b611565565b6040516108e9929190613cea565b60405180910390f35b3480156108fd575f80fd5b506109186004803603810190610913919061391c565b61158c565b005b610934600480360381019061092f9190613420565b61161d565b005b348015610941575f80fd5b5061095c6004803603810190610957919061391c565b61169a565b005b348015610969575f80fd5b50610984600480360381019061097f9190613d11565b61171c565b60405161099191906135c5565b60405180910390f35b3480156109a5575f80fd5b506109c060048036038101906109bb919061391c565b61179e565b005b3480156109cd575f80fd5b506109d6611822565b6040516109e39190613355565b60405180910390f35b3480156109f7575f80fd5b50610a126004803603810190610a0d9190613d4f565b611829565b604051610a1f91906130ca565b60405180910390f35b606060088054610a3790613da7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6390613da7565b8015610aae5780601f10610a8557610100808354040283529160200191610aae565b820191905f5260205f20905b815481529060010190602001808311610a9157829003601f168201915b5050505050905090565b5f80610ac2611866565b9050610acf81858561186d565b600191505092915050565b610ae2612e97565b6060610aec612eaf565b5f8067ffffffffffffffff8016905060405180604001604052808381526020018281525094505f67ffffffffffffffff811115610b2c57610b2b613dd7565b5b604051908082528060200260200182016040528015610b6557816020015b610b52612ec7565b815260200190600190039081610b4a5790505b5093505f80610b8e886040013589606001358a5f016020810190610b899190613a71565b61187f565b915091506040518060400160405280838152602001828152509450505050509193909250565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000001a44076050125825900e736c501f859c50fe728c73ffffffffffffffffffffffffffffffffffffffff1614610c6957336040517f91ac5e4f000000000000000000000000000000000000000000000000000000008152600401610c609190613355565b60405180910390fd5b8660200135610c88885f016020810190610c839190613a71565b6118de565b14610ce157865f016020810190610c9f9190613a71565b87602001356040517fc26bebcc000000000000000000000000000000000000000000000000000000008152600401610cd8929190613e13565b60405180910390fd5b610cf08787878787878761194f565b50505050505050565b600281565b5f807f02e49c2c000000000000000000000000000000000000000000000000000000006001915091509091565b5f8060016002915091509091565b5f600754905090565b600181565b5f80610d51611866565b9050610d5e858285611ad9565b610d69858585611b6b565b60019150509392505050565b5f6012905090565b610d85611c5b565b610d8f8282611ce2565b5050565b610d9b612ee0565b5f610dc084604001358560600135865f016020810190610dbb9190613a71565b61187f565b9150505f80610dcf8684611d41565b91509150610df0865f016020810190610de89190613a71565b838388611ed2565b935050505092915050565b610e03611c5b565b610e14610e0e611866565b82611fb3565b50565b5f30905090565b6003602052815f5260405f20602052805f5260405f205f91509150508054610e4590613da7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7190613da7565b8015610ebc5780601f10610e9357610100808354040283529160200191610ebc565b820191905f5260205f20905b815481529060010190602001808311610e9f57829003601f168201915b505050505081565b5f8160015f8563ffffffff1663ffffffff1681526020019081526020015f205414905092915050565b7f0000000000000000000000001a44076050125825900e736c501f859c50fe728c81565b610f19611c5b565b8060045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff0be4f1e87349231d80c36b33f9e8639658eeaf474014dee15a3e6a4d441419781604051610f889190613355565b60405180910390a150565b5f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fe1611c5b565b610fea5f612032565b565b5f92915050565b5f3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050949350505050565b5f6006905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606009805461106b90613da7565b80601f016020809104026020016040519081016040528092919081815260200182805461109790613da7565b80156110e25780601f106110b9576101008083540402835291602001916110e2565b820191905f5260205f20905b8154815290600101906020018083116110c557829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000e8d4a5100081565b5f90565b5f8061111e611866565b905061112b818585611b6b565b600191505092915050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611163611c5b565b611178828290611173919061406b565b6120f3565b5050565b6001602052805f5260405f205f915090505481565b60605f60035f8763ffffffff1663ffffffff1681526020019081526020015f205f8661ffff1661ffff1681526020019081526020015f2080546111d390613da7565b80601f01602080910402602001604051908101604052809291908181526020018280546111ff90613da7565b801561124a5780601f106112215761010080835404028352916020019161124a565b820191905f5260205f20905b81548152906001019060200180831161122d57829003601f168201915b505050505090505f8151036112a55783838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f8201169050808301925050505050505091505061138b565b5f84849050036112b8578091505061138b565b6002848490501061134c5761130f84848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f8201169050808301925050505050505061220e565b808484600290809261132393929190614087565b6040516020016113359392919061411f565b60405160208183030381529060405291505061138b565b83836040517f9a6d49cd000000000000000000000000000000000000000000000000000000008152600401611382929190614170565b60405180910390fd5b949350505050565b5f5b828290508110156114b857368383838181106113b4576113b3614192565b5b90506020028101906113c691906141cb565b90506113eb815f015f0160208101906113df9190613a71565b825f0160200135610ec4565b6113f557506114a5565b3073ffffffffffffffffffffffffffffffffffffffff1663d045a0dc8260c00135835f018460a001358580610100019061142f91906141f3565b8760e0016020810190611442919061391c565b8880610120019061145391906141f3565b6040518963ffffffff1660e01b81526004016114759796959493929190614328565b5f604051808303818588803b15801561148c575f80fd5b505af115801561149e573d5f803e3d5ffd5b5050505050505b80806114b0906143b8565b915050611395565b503373ffffffffffffffffffffffffffffffffffffffff16638e9e70996040518163ffffffff1660e01b81526004015f60405180830381865afa158015611501573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611529919061446d565b6040517f8351eea700000000000000000000000000000000000000000000000000000000815260040161155c9190613888565b60405180910390fd5b61156d612ef8565b611575612eaf565b611580858585612267565b91509150935093915050565b611594611c5b565b7f0000000000000000000000001a44076050125825900e736c501f859c50fe728c73ffffffffffffffffffffffffffffffffffffffff1663ca5eb5e1826040518263ffffffff1660e01b81526004016115ed9190613355565b5f604051808303815f87803b158015611604575f80fd5b505af1158015611616573d5f803e3d5ffd5b5050505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611682576040517f14d4a4e800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116918787878787878761236c565b50505050505050565b6116a2611c5b565b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fd48d879cef83a1c0bdda516f27b13ddb1b3f8bbac1c9e1511bb2a659c2427760816040516117119190613355565b60405180910390a150565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6117a6611c5b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611816575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161180d9190613355565b60405180910390fd5b61181f81612032565b50565b5f30905090565b5f816020013560015f845f0160208101906118449190613a71565b63ffffffff1663ffffffff1681526020019081526020015f2054149050919050565b5f33905090565b61187a8383836001612384565b505050565b5f8061188a85612553565b9150819050838110156118d65780846040517f71c4efed0000000000000000000000000000000000000000000000000000000081526004016118cd9291906144b4565b60405180910390fd5b935093915050565b5f8060015f8463ffffffff1663ffffffff1681526020019081526020015f205490505f801b810361194657826040517ff6ff4fb700000000000000000000000000000000000000000000000000000000815260040161193d91906144db565b60405180910390fd5b80915050919050565b5f61196261195d87876125b2565b6125dc565b90505f6119928261197b6119768a8a6125e7565b612618565b8b5f01602081019061198d9190613a71565b612656565b905061199e87876126a4565b15611a6c575f6119dc8a60400160208101906119ba91906144f4565b8b5f0160208101906119cc9190613a71565b846119d78c8c6126b7565b612719565b90507f0000000000000000000000001a44076050125825900e736c501f859c50fe728c73ffffffffffffffffffffffffffffffffffffffff16637cb59012848b5f856040518563ffffffff1660e01b8152600401611a3d9493929190614558565b5f604051808303815f87803b158015611a54575f80fd5b505af1158015611a66573d5f803e3d5ffd5b50505050505b8173ffffffffffffffffffffffffffffffffffffffff16887fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c8b5f016020810190611ab79190613a71565b84604051611ac69291906145a2565b60405180910390a3505050505050505050565b5f611ae4848461171c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b655781811015611b56578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611b4d939291906145c9565b60405180910390fd5b611b6484848484035f612384565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bdb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611bd29190613355565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c4b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611c429190613355565b60405180910390fd5b611c5683838361274b565b505050565b611c63611866565b73ffffffffffffffffffffffffffffffffffffffff16611c81611035565b73ffffffffffffffffffffffffffffffffffffffff1614611ce057611ca4611866565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611cd79190613355565b60405180910390fd5b565b8060015f8463ffffffff1663ffffffff1681526020019081526020015f20819055507f238399d427b947898edb290f5ff0f9109849b1c3ba196a42e35f00c50a54b98b8282604051611d35929190613e13565b60405180910390a15050565b6060805f611dad8560200135611d5686612967565b878060a00190611d6691906141f3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f8201169050808301925050505050505061299b565b80925081945050505f81611dc2576001611dc5565b60025b9050611df2865f016020810190611ddc9190613a71565b82888060800190611ded91906141f3565b611191565b92505f60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ec8578073ffffffffffffffffffffffffffffffffffffffff1663043a78eb86866040518363ffffffff1660e01b8152600401611e879291906145fe565b602060405180830381865afa158015611ea2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec69190614647565b505b5050509250929050565b611eda612ee0565b7f0000000000000000000000001a44076050125825900e736c501f859c50fe728c73ffffffffffffffffffffffffffffffffffffffff1663ddc28c586040518060a001604052808863ffffffff168152602001611f36896118de565b8152602001878152602001868152602001851515815250306040518363ffffffff1660e01b8152600401611f6b929190614743565b6040805180830381865afa158015611f85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa991906147d2565b9050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612023575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161201a9190613355565b60405180910390fd5b61202e825f8361274b565b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5b81518110156121d35761212582828151811061211457612113614192565b5b60200260200101516040015161220e565b81818151811061213857612137614192565b5b60200260200101516040015160035f84848151811061215a57612159614192565b5b60200260200101515f015163ffffffff1663ffffffff1681526020019081526020015f205f84848151811061219257612191614192565b5b60200260200101516020015161ffff1661ffff1681526020019081526020015f2090816121bf9190614991565b5080806121cb906143b8565b9150506120f5565b507fbe4864a8e820971c0247f5992e2da559595f7bf076a21cb5928d443d2a13b674816040516122039190614b77565b60405180910390a150565b5f60028201519050600361ffff168161ffff161461226357816040517f9a6d49cd00000000000000000000000000000000000000000000000000000000815260040161225a9190613888565b60405180910390fd5b5050565b61226f612ef8565b612277612eaf565b5f8061229e33886040013589606001358a5f0160208101906122999190613a71565b612a09565b915091505f806122ae8984611d41565b915091506122e0895f0160208101906122c79190613a71565b83838b8036038101906122da9190614be4565b8b612a31565b955060405180604001604052808581526020018481525094503373ffffffffffffffffffffffffffffffffffffffff16865f01517f85496b760a4b7f8d66384b9df21b381f5d1b1e79f229a47aaf4c232edc2fe59a8b5f0160208101906123479190613a71565b878760405161235893929190614c0f565b60405180910390a350505050935093915050565b61237b8787878787878761194f565b50505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123f4575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016123eb9190613355565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612464575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161245b9190613355565b60405180910390fd5b8160065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561254d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161254491906135c5565b60405180910390a35b50505050565b5f7f000000000000000000000000000000000000000000000000000000e8d4a510007f000000000000000000000000000000000000000000000000000000e8d4a51000836125a19190614c71565b6125ab9190614ca1565b9050919050565b5f82825f90602060ff16926125c993929190614087565b906125d49190614cec565b905092915050565b5f815f1c9050919050565b5f8282602060ff1690602860ff169261260293929190614087565b9061260d9190614d75565b60c01c905092915050565b5f7f000000000000000000000000000000000000000000000000000000e8d4a510008267ffffffffffffffff1661264f9190614ca1565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036126905761dead93505b61269a8484612b47565b8290509392505050565b5f602860ff168383905011905092915050565b60608282602860ff169080926126cf93929190614087565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f82011690508083019250505050505050905092915050565b6060848484846040516020016127329493929190614e5b565b6040516020818303038152906040529050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361279b578060075f82825461278f9190614ea4565b9250508190555061286b565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612825578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161281c939291906145c9565b60405180910390fd5b81810360055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128b2578060075f82825403925050819055506128fd565b8060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161295a91906135c5565b60405180910390a3505050565b5f7f000000000000000000000000000000000000000000000000000000e8d4a51000826129949190614c71565b9050919050565b60605f808351119050806129d05784846040516020016129bc929190614ef7565b6040516020818303038152906040526129ff565b84846129db33612bc6565b856040516020016129ef9493929190614f22565b6040516020818303038152906040525b9150935093915050565b5f80612a1685858561187f565b8092508193505050612a288683611fb3565b94509492505050565b612a39612ef8565b5f612a46845f0151612be7565b90505f84602001511115612a6257612a618460200151612c34565b5b7f0000000000000000000000001a44076050125825900e736c501f859c50fe728c73ffffffffffffffffffffffffffffffffffffffff16632637a450826040518060a001604052808b63ffffffff168152602001612abf8c6118de565b81526020018a81526020018981526020015f8960200151111515815250866040518463ffffffff1660e01b8152600401612afa929190614743565b60806040518083038185885af1158015612b16573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612b3b9190614ff4565b91505095945050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bb7575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401612bae9190613355565b60405180910390fd5b612bc25f838361274b565b5050565b5f8173ffffffffffffffffffffffffffffffffffffffff165f1b9050919050565b5f813414612c2c57346040517f9f704120000000000000000000000000000000000000000000000000000000008152600401612c2391906135c5565b60405180910390fd5b819050919050565b5f7f0000000000000000000000001a44076050125825900e736c501f859c50fe728c73ffffffffffffffffffffffffffffffffffffffff1663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cc29190615033565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d29576040517f5373352a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d76337f0000000000000000000000001a44076050125825900e736c501f859c50fe728c848473ffffffffffffffffffffffffffffffffffffffff16612d7a909392919063ffffffff16565b5050565b612df6848573ffffffffffffffffffffffffffffffffffffffff166323b872dd868686604051602401612daf9392919061505e565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612dfc565b50505050565b5f8060205f8451602086015f885af180612e1b576040513d5f823e3d81fd5b3d92505f519150505f8214612e34576001811415612e4f565b5f8473ffffffffffffffffffffffffffffffffffffffff163b145b15612e9157836040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401612e889190613355565b60405180910390fd5b50505050565b60405180604001604052805f81526020015f81525090565b60405180604001604052805f81526020015f81525090565b60405180604001604052805f8152602001606081525090565b60405180604001604052805f81526020015f81525090565b60405180606001604052805f80191681526020015f67ffffffffffffffff168152602001612f24612ee0565b81525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612f61578082015181840152602081019050612f46565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612f8682612f2a565b612f908185612f34565b9350612fa0818560208601612f44565b612fa981612f6c565b840191505092915050565b5f6020820190508181035f830152612fcc8184612f7c565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61300e82612fe5565b9050919050565b61301e81613004565b8114613028575f80fd5b50565b5f8135905061303981613015565b92915050565b5f819050919050565b6130518161303f565b811461305b575f80fd5b50565b5f8135905061306c81613048565b92915050565b5f806040838503121561308857613087612fdd565b5b5f6130958582860161302b565b92505060206130a68582860161305e565b9150509250929050565b5f8115159050919050565b6130c4816130b0565b82525050565b5f6020820190506130dd5f8301846130bb565b92915050565b5f80fd5b5f60e082840312156130fc576130fb6130e3565b5b81905092915050565b5f6020828403121561311a57613119612fdd565b5b5f82013567ffffffffffffffff81111561313757613136612fe1565b5b613143848285016130e7565b91505092915050565b6131558161303f565b82525050565b604082015f82015161316f5f85018261314c565b506020820151613182602085018261314c565b50505050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f819050919050565b6131c3816131b1565b82525050565b5f82825260208201905092915050565b5f6131e382612f2a565b6131ed81856131c9565b93506131fd818560208601612f44565b61320681612f6c565b840191505092915050565b5f604083015f8301516132265f8601826131ba565b506020830151848203602086015261323e82826131d9565b9150508091505092915050565b5f6132568383613211565b905092915050565b5f602082019050919050565b5f61327482613188565b61327e8185613192565b935083602082028501613290856131a2565b805f5b858110156132cb57848403895281516132ac858261324b565b94506132b78361325e565b925060208a01995050600181019050613293565b50829750879550505050505092915050565b604082015f8201516132f15f85018261314c565b506020820151613304602085018261314c565b50505050565b5f60a08201905061331d5f83018661315b565b818103604083015261332f818561326a565b905061333e60608301846132dd565b949350505050565b61334f81613004565b82525050565b5f6020820190506133685f830184613346565b92915050565b5f60608284031215613383576133826130e3565b5b81905092915050565b5f819050919050565b61339e8161338c565b81146133a8575f80fd5b50565b5f813590506133b981613395565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126133e0576133df6133bf565b5b8235905067ffffffffffffffff8111156133fd576133fc6133c3565b5b602083019150836001820283011115613419576134186133c7565b5b9250929050565b5f805f805f805f60e0888a03121561343b5761343a612fdd565b5b5f6134488a828b0161336e565b97505060606134598a828b016133ab565b965050608088013567ffffffffffffffff81111561347a57613479612fe1565b5b6134868a828b016133cb565b955095505060a06134998a828b0161302b565b93505060c088013567ffffffffffffffff8111156134ba576134b9612fe1565b5b6134c68a828b016133cb565b925092505092959891949750929550565b5f61ffff82169050919050565b6134ed816134d7565b82525050565b5f6020820190506135065f8301846134e4565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135408161350c565b82525050565b5f67ffffffffffffffff82169050919050565b61356281613546565b82525050565b5f60408201905061357b5f830185613537565b6135886020830184613559565b9392505050565b5f6040820190506135a25f830185613559565b6135af6020830184613559565b9392505050565b6135bf8161303f565b82525050565b5f6020820190506135d85f8301846135b6565b92915050565b5f805f606084860312156135f5576135f4612fdd565b5b5f6136028682870161302b565b93505060206136138682870161302b565b92505060406136248682870161305e565b9150509250925092565b5f60ff82169050919050565b6136438161362e565b82525050565b5f60208201905061365c5f83018461363a565b92915050565b5f63ffffffff82169050919050565b61367a81613662565b8114613684575f80fd5b50565b5f8135905061369581613671565b92915050565b5f80604083850312156136b1576136b0612fdd565b5b5f6136be85828601613687565b92505060206136cf858286016133ab565b9150509250929050565b6136e2816130b0565b81146136ec575f80fd5b50565b5f813590506136fd816136d9565b92915050565b5f806040838503121561371957613718612fdd565b5b5f83013567ffffffffffffffff81111561373657613735612fe1565b5b613742858286016130e7565b9250506020613753858286016136ef565b9150509250929050565b604082015f8201516137715f85018261314c565b506020820151613784602085018261314c565b50505050565b5f60408201905061379d5f83018461375d565b92915050565b5f602082840312156137b8576137b7612fdd565b5b5f6137c58482850161305e565b91505092915050565b6137d7816134d7565b81146137e1575f80fd5b50565b5f813590506137f2816137ce565b92915050565b5f806040838503121561380e5761380d612fdd565b5b5f61381b85828601613687565b925050602061382c858286016137e4565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f61385a82613836565b6138648185613840565b9350613874818560208601612f44565b61387d81612f6c565b840191505092915050565b5f6020820190508181035f8301526138a08184613850565b905092915050565b5f819050919050565b5f6138cb6138c66138c184612fe5565b6138a8565b612fe5565b9050919050565b5f6138dc826138b1565b9050919050565b5f6138ed826138d2565b9050919050565b6138fd816138e3565b82525050565b5f6020820190506139165f8301846138f4565b92915050565b5f6020828403121561393157613930612fdd565b5b5f61393e8482850161302b565b91505092915050565b5f60208201905061395a5f830184613559565b92915050565b5f805f8060a0858703121561397857613977612fdd565b5b5f6139858782880161336e565b945050606085013567ffffffffffffffff8111156139a6576139a5612fe1565b5b6139b2878288016133cb565b935093505060806139c58782880161302b565b91505092959194509250565b5f8083601f8401126139e6576139e56133bf565b5b8235905067ffffffffffffffff811115613a0357613a026133c3565b5b602083019150836020820283011115613a1f57613a1e6133c7565b5b9250929050565b5f8060208385031215613a3c57613a3b612fdd565b5b5f83013567ffffffffffffffff811115613a5957613a58612fe1565b5b613a65858286016139d1565b92509250509250929050565b5f60208284031215613a8657613a85612fdd565b5b5f613a9384828501613687565b91505092915050565b613aa58161338c565b82525050565b5f602082019050613abe5f830184613a9c565b92915050565b5f805f8060608587031215613adc57613adb612fdd565b5b5f613ae987828801613687565b9450506020613afa878288016137e4565b935050604085013567ffffffffffffffff811115613b1b57613b1a612fe1565b5b613b27878288016133cb565b925092505092959194509250565b5f8083601f840112613b4a57613b496133bf565b5b8235905067ffffffffffffffff811115613b6757613b666133c3565b5b602083019150836020820283011115613b8357613b826133c7565b5b9250929050565b5f8060208385031215613ba057613b9f612fdd565b5b5f83013567ffffffffffffffff811115613bbd57613bbc612fe1565b5b613bc985828601613b35565b92509250509250929050565b5f60408284031215613bea57613be96130e3565b5b81905092915050565b5f805f60808486031215613c0a57613c09612fdd565b5b5f84013567ffffffffffffffff811115613c2757613c26612fe1565b5b613c33868287016130e7565b9350506020613c4486828701613bd5565b9250506060613c558682870161302b565b9150509250925092565b613c688161338c565b82525050565b613c7781613546565b82525050565b604082015f820151613c915f85018261314c565b506020820151613ca4602085018261314c565b50505050565b608082015f820151613cbe5f850182613c5f565b506020820151613cd16020850182613c6e565b506040820151613ce46040850182613c7d565b50505050565b5f60c082019050613cfd5f830185613caa565b613d0a60808301846132dd565b9392505050565b5f8060408385031215613d2757613d26612fdd565b5b5f613d348582860161302b565b9250506020613d458582860161302b565b9150509250929050565b5f60608284031215613d6457613d63612fdd565b5b5f613d718482850161336e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613dbe57607f821691505b602082108103613dd157613dd0613d7a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613e0d81613662565b82525050565b5f604082019050613e265f830185613e04565b613e336020830184613a9c565b9392505050565b613e4382612f6c565b810181811067ffffffffffffffff82111715613e6257613e61613dd7565b5b80604052505050565b5f613e74612fd4565b9050613e808282613e3a565b919050565b5f67ffffffffffffffff821115613e9f57613e9e613dd7565b5b602082029050602081019050919050565b5f80fd5b5f80fd5b5f80fd5b5f67ffffffffffffffff821115613ed657613ed5613dd7565b5b613edf82612f6c565b9050602081019050919050565b828183375f83830152505050565b5f613f0c613f0784613ebc565b613e6b565b905082815260208101848484011115613f2857613f27613eb8565b5b613f33848285613eec565b509392505050565b5f82601f830112613f4f57613f4e6133bf565b5b8135613f5f848260208601613efa565b91505092915050565b5f60608284031215613f7d57613f7c613eb0565b5b613f876060613e6b565b90505f613f9684828501613687565b5f830152506020613fa9848285016137e4565b602083015250604082013567ffffffffffffffff811115613fcd57613fcc613eb4565b5b613fd984828501613f3b565b60408301525092915050565b5f613ff7613ff284613e85565b613e6b565b9050808382526020820190506020840283018581111561401a576140196133c7565b5b835b8181101561406157803567ffffffffffffffff81111561403f5761403e6133bf565b5b80860161404c8982613f68565b8552602085019450505060208101905061401c565b5050509392505050565b5f614077368484613fe5565b905092915050565b5f80fd5b5f80fd5b5f808585111561409a5761409961407f565b5b838611156140ab576140aa614083565b5b6001850283019150848603905094509492505050565b5f81905092915050565b5f6140d582613836565b6140df81856140c1565b93506140ef818560208601612f44565b80840191505092915050565b5f61410683856140c1565b9350614113838584613eec565b82840190509392505050565b5f61412a82866140cb565b91506141378284866140fb565b9150819050949350505050565b5f61414f8385613840565b935061415c838584613eec565b61416583612f6c565b840190509392505050565b5f6020820190508181035f830152614189818486614144565b90509392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f80fd5b5f80fd5b5f80fd5b5f82356001610140038336030381126141e7576141e66141bf565b5b80830191505092915050565b5f808335600160200384360303811261420f5761420e6141bf565b5b80840192508235915067ffffffffffffffff821115614231576142306141c3565b5b60208301925060018202360383131561424d5761424c6141c7565b5b509250929050565b5f6142636020840184613687565b905092915050565b61427481613662565b82525050565b5f61428860208401846133ab565b905092915050565b61429981613546565b81146142a3575f80fd5b50565b5f813590506142b481614290565b92915050565b5f6142c860208401846142a6565b905092915050565b606082016142e05f830183614255565b6142ec5f85018261426b565b506142fa602083018361427a565b6143076020850182613c5f565b5061431560408301836142ba565b6143226040850182613c6e565b50505050565b5f60e08201905061433b5f83018a6142d0565b6143486060830189613a9c565b818103608083015261435b818789614144565b905061436a60a0830186613346565b81810360c083015261437d818486614144565b905098975050505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6143c28261303f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143f4576143f361438b565b5b600182019050919050565b5f61441161440c84613ebc565b613e6b565b90508281526020810184848401111561442d5761442c613eb8565b5b614438848285612f44565b509392505050565b5f82601f830112614454576144536133bf565b5b81516144648482602086016143ff565b91505092915050565b5f6020828403121561448257614481612fdd565b5b5f82015167ffffffffffffffff81111561449f5761449e612fe1565b5b6144ab84828501614440565b91505092915050565b5f6040820190506144c75f8301856135b6565b6144d460208301846135b6565b9392505050565b5f6020820190506144ee5f830184613e04565b92915050565b5f6020828403121561450957614508612fdd565b5b5f614516848285016142a6565b91505092915050565b5f819050919050565b5f61454261453d6145388461451f565b6138a8565b6134d7565b9050919050565b61455281614528565b82525050565b5f60808201905061456b5f830187613346565b6145786020830186613a9c565b6145856040830185614549565b81810360608301526145978184613850565b905095945050505050565b5f6040820190506145b55f830185613e04565b6145c260208301846135b6565b9392505050565b5f6060820190506145dc5f830186613346565b6145e960208301856135b6565b6145f660408301846135b6565b949350505050565b5f6040820190508181035f8301526146168185613850565b9050818103602083015261462a8184613850565b90509392505050565b5f81519050614641816136d9565b92915050565b5f6020828403121561465c5761465b612fdd565b5b5f61466984828501614633565b91505092915050565b5f82825260208201905092915050565b5f61468c82613836565b6146968185614672565b93506146a6818560208601612f44565b6146af81612f6c565b840191505092915050565b6146c3816130b0565b82525050565b5f60a083015f8301516146de5f86018261426b565b5060208301516146f16020860182613c5f565b50604083015184820360408601526147098282614682565b915050606083015184820360608601526147238282614682565b915050608083015161473860808601826146ba565b508091505092915050565b5f6040820190508181035f83015261475b81856146c9565b905061476a6020830184613346565b9392505050565b5f8151905061477f81613048565b92915050565b5f6040828403121561479a57614799613eb0565b5b6147a46040613e6b565b90505f6147b384828501614771565b5f8301525060206147c684828501614771565b60208301525092915050565b5f604082840312156147e7576147e6612fdd565b5b5f6147f484828501614785565b91505092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026148597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261481e565b614863868361481e565b95508019841693508086168417925050509392505050565b5f61489561489061488b8461303f565b6138a8565b61303f565b9050919050565b5f819050919050565b6148ae8361487b565b6148c26148ba8261489c565b84845461482a565b825550505050565b5f90565b6148d66148ca565b6148e18184846148a5565b505050565b5b81811015614904576148f95f826148ce565b6001810190506148e7565b5050565b601f8211156149495761491a816147fd565b6149238461480f565b81016020851015614932578190505b61494661493e8561480f565b8301826148e6565b50505b505050565b5f82821c905092915050565b5f6149695f198460080261494e565b1980831691505092915050565b5f614981838361495a565b9150826002028217905092915050565b61499a82613836565b67ffffffffffffffff8111156149b3576149b2613dd7565b5b6149bd8254613da7565b6149c8828285614908565b5f60209050601f8311600181146149f9575f84156149e7578287015190505b6149f18582614976565b865550614a58565b601f198416614a07866147fd565b5f5b82811015614a2e57848901518255600182019150602085019450602081019050614a09565b86831015614a4b5784890151614a47601f89168261495a565b8355505b6001600288020188555050505b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614a92816134d7565b82525050565b5f606083015f830151614aad5f86018261426b565b506020830151614ac06020860182614a89565b5060408301518482036040860152614ad88282614682565b9150508091505092915050565b5f614af08383614a98565b905092915050565b5f602082019050919050565b5f614b0e82614a60565b614b188185614a6a565b935083602082028501614b2a85614a7a565b805f5b85811015614b655784840389528151614b468582614ae5565b9450614b5183614af8565b925060208a01995050600181019050614b2d565b50829750879550505050505092915050565b5f6020820190508181035f830152614b8f8184614b04565b905092915050565b5f60408284031215614bac57614bab613eb0565b5b614bb66040613e6b565b90505f614bc58482850161305e565b5f830152506020614bd88482850161305e565b60208301525092915050565b5f60408284031215614bf957614bf8612fdd565b5b5f614c0684828501614b97565b91505092915050565b5f606082019050614c225f830186613e04565b614c2f60208301856135b6565b614c3c60408301846135b6565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614c7b8261303f565b9150614c868361303f565b925082614c9657614c95614c44565b5b828204905092915050565b5f614cab8261303f565b9150614cb68361303f565b9250828202614cc48161303f565b91508282048414831517614cdb57614cda61438b565b5b5092915050565b5f82905092915050565b5f614cf78383614ce2565b82614d02813561338c565b92506020821015614d4257614d3d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080261481e565b831692505b505092915050565b5f7fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b5f614d808383614ce2565b82614d8b8135614d4a565b92506008821015614dcb57614dc67fffffffffffffffff0000000000000000000000000000000000000000000000008360080360080261481e565b831692505b505092915050565b5f8160c01b9050919050565b5f614de982614dd3565b9050919050565b614e01614dfc82613546565b614ddf565b82525050565b5f8160e01b9050919050565b5f614e1d82614e07565b9050919050565b614e35614e3082613662565b614e13565b82525050565b5f819050919050565b614e55614e508261303f565b614e3b565b82525050565b5f614e668287614df0565b600882019150614e768286614e24565b600482019150614e868285614e44565b602082019150614e9682846140cb565b915081905095945050505050565b5f614eae8261303f565b9150614eb98361303f565b9250828201905080821115614ed157614ed061438b565b5b92915050565b5f819050919050565b614ef1614eec8261338c565b614ed7565b82525050565b5f614f028285614ee0565b602082019150614f128284614df0565b6008820191508190509392505050565b5f614f2d8287614ee0565b602082019150614f3d8286614df0565b600882019150614f4d8285614ee0565b602082019150614f5d82846140cb565b915081905095945050505050565b5f81519050614f7981613395565b92915050565b5f81519050614f8d81614290565b92915050565b5f60808284031215614fa857614fa7613eb0565b5b614fb26060613e6b565b90505f614fc184828501614f6b565b5f830152506020614fd484828501614f7f565b6020830152506040614fe884828501614785565b60408301525092915050565b5f6080828403121561500957615008612fdd565b5b5f61501684828501614f93565b91505092915050565b5f8151905061502d81613015565b92915050565b5f6020828403121561504857615047612fdd565b5b5f6150558482850161501f565b91505092915050565b5f6060820190506150715f830186613346565b61507e6020830185613346565b61508b60408301846135b6565b94935050505056fea26469706673582212201c18157387d31b0fd8e20457afe01588367229d7fc3b6a3341f5434a5c78287b64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000001a44076050125825900e736c501f859c50fe728c00000000000000000000000091f033be6c46e69a21b2a3f62ba1a6ead41bbe4800000000000000000000000091f033be6c46e69a21b2a3f62ba1a6ead41bbe4800000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000000a426c61646547616d6573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424c414445000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): BladeGames
Arg [1] : _symbol (string): BLADE
Arg [2] : _lzEndpoint (address): 0x1a44076050125825900e736c501f859c50fE728c
Arg [3] : _delegate (address): 0x91f033be6C46E69a21b2A3f62ba1a6eAD41bBe48
Arg [4] : developerHolder (address): 0x91f033be6C46E69a21b2A3f62ba1a6eAD41bBe48
Arg [5] : amount (uint256): 100000000000000000000000000
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000001a44076050125825900e736c501f859c50fe728c
Arg [3] : 00000000000000000000000091f033be6c46e69a21b2a3f62ba1a6ead41bbe48
Arg [4] : 00000000000000000000000091f033be6c46e69a21b2a3f62ba1a6ead41bbe48
Arg [5] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 426c61646547616d657300000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 424c414445000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
136381:455:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16220:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18513:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;117360:1283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;114453:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72900:723;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;114324:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115622:142;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;75123:243;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;17322:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114286:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19313:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17173:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59823:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;119106:787;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;136738:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95762;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77316:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;128540:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58516:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116829:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17484:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3399:103;;;;;;;;;;;;;:::i;:::-;;72022:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70496:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116383:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2724:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16430:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;113975:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;134240:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17807:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95437:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78181:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58642:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80335:1003;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96606:1358;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;120598:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;61388:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98626:419;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95995:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18052;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3657:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;133846:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71271:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16220:91;16265:13;16298:5;16291:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16220:91;:::o;18513:190::-;18586:4;18603:13;18619:12;:10;:12::i;:::-;18603:28;;18642:31;18651:5;18658:7;18667:5;18642:8;:31::i;:::-;18691:4;18684:11;;;18513:190;;;;:::o;117360:1283::-;117492:24;;:::i;:::-;117518:35;117555:28;;:::i;:::-;117601:19;117676;117698:16;117676:38;;;;117777:34;;;;;;;;117786:11;117777:34;;;;117799:11;117777:34;;;117766:45;;117950:1;117931:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;117915:37;;118395:20;118417:24;118445:124;118470:10;:19;;;118504:10;:22;;;118541:10;:17;;;;;;;;;;:::i;:::-;118445:10;:124::i;:::-;118394:175;;;;118593:42;;;;;;;;118604:12;118593:42;;;;118618:16;118593:42;;;118580:55;;117590:1053;;;;117360:1283;;;;;:::o;114453:27::-;;;;;;;;;;;;;:::o;72900:723::-;73234:10;73213:31;;73221:8;73213:31;;;73209:68;;73266:10;73253:24;;;;;;;;;;;:::i;:::-;;;;;;;;73209:68;73416:7;:14;;;73380:32;73397:7;:14;;;;;;;;;;:::i;:::-;73380:16;:32::i;:::-;:50;73376:103;;73448:7;:14;;;;;;;;;;:::i;:::-;73464:7;:14;;;73439:40;;;;;;;;;;;;:::i;:::-;;;;;;;;73376:103;73556:59;73567:7;73576:5;73583:8;;73593:9;73604:10;;73556;:59::i;:::-;72900:723;;;;;;;:::o;114324:40::-;114363:1;114324:40;:::o;115622:142::-;115675:18;115695:14;115730:22;115754:1;115722:34;;;;115622:142;;:::o;75123:243::-;75255:20;75277:22;62103:1;69133;75317:41;;;;75123:243;;:::o;17322:99::-;17374:7;17401:12;;17394:19;;17322:99;:::o;114286:31::-;114316:1;114286:31;:::o;19313:249::-;19400:4;19417:15;19435:12;:10;:12::i;:::-;19417:30;;19458:37;19474:4;19480:7;19489:5;19458:15;:37::i;:::-;19506:26;19516:4;19522:2;19526:5;19506:9;:26::i;:::-;19550:4;19543:11;;;19313:249;;;;;:::o;17173:84::-;17222:5;17247:2;17240:9;;17173:84;:::o;59823:110::-;2610:13;:11;:13::i;:::-;59904:21:::1;59913:4;59919:5;59904:8;:21::i;:::-;59823:110:::0;;:::o;119106:787::-;119232:26;;:::i;:::-;119446:24;119474:74;119485:10;:19;;;119506:10;:22;;;119530:10;:17;;;;;;;;;;:::i;:::-;119474:10;:74::i;:::-;119443:105;;;119640:20;119662;119686:49;119706:10;119718:16;119686:19;:49::i;:::-;119639:96;;;;119827:58;119834:10;:17;;;;;;;;;;:::i;:::-;119853:7;119862;119871:13;119827:6;:58::i;:::-;119820:65;;;;;119106:787;;;;:::o;136738:95::-;2610:13;:11;:13::i;:::-;136798:27:::1;136804:12;:10;:12::i;:::-;136818:6;136798:5;:27::i;:::-;136738:95:::0;:::o;95762:::-;95809:7;95844:4;95829:20;;95762:95;:::o;77316:93::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;128540:134::-;128622:4;128661:5;128646;:11;128652:4;128646:11;;;;;;;;;;;;;;;;:20;128639:27;;128540:134;;;;:::o;58516:46::-;;;:::o;116829:166::-;2610:13;:11;:13::i;:::-;116928::::1;116913:12;;:28;;;;;;;;;;;;;;;;;;116957:30;116973:13;116957:30;;;;;;:::i;:::-;;;;;;;;116829:166:::0;:::o;17484:118::-;17549:7;17576:9;:18;17586:7;17576:18;;;;;;;;;;;;;;;;17569:25;;17484:118;;;:::o;3399:103::-;2610:13;:11;:13::i;:::-;3464:30:::1;3491:1;3464:18;:30::i;:::-;3399:103::o:0;72022:130::-;72111:12;72022:130;;;;:::o;70496:222::-;70662:4;70705;70686:24;;:7;:24;;;70679:31;;70496:222;;;;;;:::o;116383:89::-;116438:5;116463:1;116456:8;;116383:89;:::o;2724:87::-;2770:7;2797:6;;;;;;;;;;;2790:13;;2724:87;:::o;16430:95::-;16477:13;16510:7;16503:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16430:95;:::o;113975:46::-;;;:::o;134240:96::-;134299:4;134240:96;:::o;17807:182::-;17876:4;17893:13;17909:12;:10;:12::i;:::-;17893:28;;17932:27;17942:5;17949:2;17953:5;17932:9;:27::i;:::-;17977:4;17970:11;;;17807:182;;;;:::o;95437:23::-;;;;;;;;;;;;;:::o;78181:158::-;2610:13;:11;:13::i;:::-;78294:37:::1;78314:16;;78294:37;;;;;:::i;:::-;:19;:37::i;:::-;78181:158:::0;;:::o;58642:48::-;;;;;;;;;;;;;;;;;:::o;80335:1003::-;80482:12;80507:21;80531:15;:21;80547:4;80531:21;;;;;;;;;;;;;;;:31;80553:8;80531:31;;;;;;;;;;;;;;;80507:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80713:1;80694:8;:15;:20;80690:46;;80723:13;;80716:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80690:46;80824:1;80800:13;;:20;;:25;80796:46;;80834:8;80827:15;;;;;80796:46;80992:1;80968:13;;:20;;:25;80964:271;;81010:34;81030:13;;81010:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:19;:34::i;:::-;81195:8;81205:13;;81219:1;81205:17;;;;;;;;;:::i;:::-;81182:41;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81175:48;;;;;80964:271;81316:13;;81301:29;;;;;;;;;;;;:::i;:::-;;;;;;;;80335:1003;;;;;;;:::o;96606:1358::-;96708:9;96703:1057;96727:8;;:15;;96723:1;:19;96703:1057;;;96764:29;96796:8;;96805:1;96796:11;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;96764:43;;96893:50;96900:6;:13;;:20;;;;;;;;;;:::i;:::-;96922:6;:13;;:20;;;96893:6;:50::i;:::-;96888:65;;96945:8;;;96888:65;97524:4;:22;;;97555:6;:12;;;97588:6;:13;;97620:6;:11;;;97650:6;:14;;;;;;;;:::i;:::-;97683:6;:15;;;;;;;;;;:::i;:::-;97717:6;:16;;;;;;;;:::i;:::-;97524:224;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96749:1011;96703:1057;96744:3;;;;;:::i;:::-;;;;96703:1057;;;;97920:10;97910:43;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;97893:63;;;;;;;;;;;:::i;:::-;;;;;;;;120598:296;120763:34;;:::i;:::-;120799:28;;:::i;:::-;120847:39;120853:10;120865:4;120871:14;120847:5;:39::i;:::-;120840:46;;;;120598:296;;;;;;:::o;61388:107::-;2610:13;:11;:13::i;:::-;61456:8:::1;:20;;;61477:9;61456:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;61388:107:::0;:::o;98626:419::-;98935:4;98913:27;;:10;:27;;;98909:50;;98949:10;;;;;;;;;;;;;;98909:50;98970:67;98989:7;98998:5;99005:8;;99015:9;99026:10;;98970:18;:67::i;:::-;98626:419;;;;;;;:::o;95995:142::-;2610:13;:11;:13::i;:::-;96082:9:::1;96071:8;;:20;;;;;;;;;;;;;;;;;;96107:22;96119:9;96107:22;;;;;;:::i;:::-;;;;;;;;95995:142:::0;:::o;18052:::-;18132:7;18159:11;:18;18171:5;18159:18;;;;;;;;;;;;;;;:27;18178:7;18159:27;;;;;;;;;;;;;;;;18152:34;;18052:142;;;;:::o;3657:220::-;2610:13;:11;:13::i;:::-;3762:1:::1;3742:22;;:8;:22;;::::0;3738:93:::1;;3816:1;3788:31;;;;;;;;;;;:::i;:::-;;;;;;;;3738:93;3841:28;3860:8;3841:18;:28::i;:::-;3657:220:::0;:::o;133846:86::-;133884:7;133919:4;133904:20;;133846:86;:::o;71271:151::-;71353:4;71401:6;:13;;;71377:5;:20;71383:6;:13;;;;;;;;;;:::i;:::-;71377:20;;;;;;;;;;;;;;;;:37;71370:44;;71271:151;;;:::o;734:98::-;787:7;814:10;807:17;;734:98;:::o;23372:130::-;23457:37;23466:5;23473:7;23482:5;23489:4;23457:8;:37::i;:::-;23372:130;;;:::o;130601:682::-;130747:20;130769:24;130945:22;130957:9;130945:11;:22::i;:::-;130930:37;;131095:12;131076:31;;131180:12;131161:16;:31;131157:119;;;131233:16;131251:12;131216:48;;;;;;;;;;;;:::i;:::-;;;;;;;;131157:119;130601:682;;;;;;:::o;60841:200::-;60911:7;60931:12;60946:5;:11;60952:4;60946:11;;;;;;;;;;;;;;;;60931:26;;60988:1;60980:10;;60972:4;:18;60968:43;;61006:4;60999:12;;;;;;;;;;;:::i;:::-;;;;;;;;60968:43;61029:4;61022:11;;;60841:200;;;:::o;125268:1837::-;125754:17;125774:36;:17;:8;;:15;:17::i;:::-;:34;:36::i;:::-;125754:56;;125945:24;125972:62;125980:9;125991:26;125997:19;:8;;:17;:19::i;:::-;125991:5;:26::i;:::-;126019:7;:14;;;;;;;;;;:::i;:::-;125972:7;:62::i;:::-;125945:89;;126051:21;:8;;:19;:21::i;:::-;126047:970;;;126153:23;126179:180;126223:7;:13;;;;;;;;;;:::i;:::-;126255:7;:14;;;;;;;;;;:::i;:::-;126288:16;126323:21;:8;;:19;:21::i;:::-;126179:25;:180::i;:::-;126153:206;;126913:8;:20;;;126934:9;126945:5;126952:1;126994:10;126913:92;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126074:943;126047:970;127069:9;127034:63;;127046:5;127034:63;127053:7;:14;;;;;;;;;;:::i;:::-;127080:16;127034:63;;;;;;;:::i;:::-;;;;;;;;125577:1528;;125268:1837;;;;;;;:::o;25104:487::-;25204:24;25231:25;25241:5;25248:7;25231:9;:25::i;:::-;25204:52;;25291:17;25271:16;:37;25267:317;;25348:5;25329:16;:24;25325:132;;;25408:7;25417:16;25435:5;25381:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25325:132;25500:57;25509:5;25516:7;25544:5;25525:16;:24;25551:5;25500:8;:57::i;:::-;25267:317;25193:398;25104:487;;;:::o;19947:308::-;20047:1;20031:18;;:4;:18;;;20027:88;;20100:1;20073:30;;;;;;;;;;;:::i;:::-;;;;;;;;20027:88;20143:1;20129:16;;:2;:16;;;20125:88;;20198:1;20169:32;;;;;;;;;;;:::i;:::-;;;;;;;;20125:88;20223:24;20231:4;20237:2;20241:5;20223:7;:24::i;:::-;19947:308;;;:::o;2889:166::-;2960:12;:10;:12::i;:::-;2949:23;;:7;:5;:7::i;:::-;:23;;;2945:103;;3023:12;:10;:12::i;:::-;2996:40;;;;;;;;;;;:::i;:::-;;;;;;;;2945:103;2889:166::o;60398:137::-;60486:5;60472;:11;60478:4;60472:11;;;;;;;;;;;;;;;:19;;;;60507:20;60515:4;60521:5;60507:20;;;;;;;:::i;:::-;;;;;;;;60398:137;;:::o;123279:1458::-;123414:20;123436;123469:15;123642:330;123675:10;:13;;;123703:16;123709:9;123703:5;:16::i;:::-;123940:10;:21;;;;;;;;:::i;:::-;123642:330;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;:330::i;:::-;123618:354;;;;;;;;124054:14;124071:10;:33;;114316:1;124071:33;;;114363:1;124071:33;124054:50;;124228:67;124243:10;:17;;;;;;;;;;:::i;:::-;124262:7;124271:10;:23;;;;;;;;:::i;:::-;124228:14;:67::i;:::-;124218:77;;124537:17;124557:12;;;;;;;;;;;124537:32;;124671:1;124650:23;;:9;:23;;;124646:83;;124693:9;124675:36;;;124712:7;124721;124675:54;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;124646:83;123458:1279;;;123279:1458;;;;;:::o;63323:402::-;63495:23;;:::i;:::-;63551:8;:14;;;63584:86;;;;;;;;63600:7;63584:86;;;;;;63609:25;63626:7;63609:16;:25::i;:::-;63584:86;;;;63636:8;63584:86;;;;63646:8;63584:86;;;;63656:13;63584:86;;;;;63697:4;63551:166;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63531:186;;63323:402;;;;;;:::o;22608:211::-;22698:1;22679:21;;:7;:21;;;22675:91;;22751:1;22724:30;;;;;;;;;;;:::i;:::-;;;;;;;;22675:91;22776:35;22784:7;22801:1;22805:5;22776:7;:35::i;:::-;22608:211;;:::o;4037:191::-;4111:16;4130:6;;;;;;;;;;;4111:25;;4156:8;4147:6;;:17;;;;;;;;;;;;;;;;;;4211:8;4180:40;;4201:8;4180:40;;;;;;;;;;;;4100:128;4037:191;:::o;79040:522::-;79149:9;79144:358;79168:16;:23;79164:1;:27;79144:358;;;79328:48;79348:16;79365:1;79348:19;;;;;;;;:::i;:::-;;;;;;;;:27;;;79328:19;:48::i;:::-;79463:16;79480:1;79463:19;;;;;;;;:::i;:::-;;;;;;;;:27;;;79391:15;:40;79407:16;79424:1;79407:19;;;;;;;;:::i;:::-;;;;;;;;:23;;;79391:40;;;;;;;;;;;;;;;:69;79432:16;79449:1;79432:19;;;;;;;;:::i;:::-;;;;;;;;:27;;;79391:69;;;;;;;;;;;;;;;:99;;;;;;:::i;:::-;;79193:3;;;;;:::i;:::-;;;;79144:358;;;;79519:35;79537:16;79519:35;;;;;;:::i;:::-;;;;;;;;79040:522;:::o;81484:270::-;81569:18;81657:1;81647:8;81643:16;81637:23;81622:38;;77238:1;81685:28;;:11;:28;;;81681:65;;81737:8;81722:24;;;;;;;;;;;:::i;:::-;;;;;;;;81681:65;81558:196;81484:270;:::o;121619:1357::-;121777:34;;:::i;:::-;121813:28;;:::i;:::-;122179:20;122201:24;122229:145;122250:10;122275;:19;;;122309:10;:22;;;122346:10;:17;;;;;;;;;;:::i;:::-;122229:6;:145::i;:::-;122178:196;;;;122466:20;122488;122512:49;122532:10;122544:16;122512:19;:49::i;:::-;122465:96;;;;122687:66;122695:10;:17;;;;;;;;;;:::i;:::-;122714:7;122723;122732:4;122687:66;;;;;;;;;;:::i;:::-;122738:14;122687:7;:66::i;:::-;122674:79;;122821:42;;;;;;;;122832:12;122821:42;;;;122846:16;122821:42;;;122808:55;;122925:10;122881:87;;122889:10;:15;;;122881:87;122906:10;:17;;;;;;;;;;:::i;:::-;122937:12;122951:16;122881:87;;;;;;;;:::i;:::-;;;;;;;;121843:1133;;;;121619:1357;;;;;;:::o;127867:295::-;128095:59;128106:7;128115:5;128122:8;;128132:9;128143:10;;128095;:59::i;:::-;127867:295;;;;;;;:::o;24369:443::-;24499:1;24482:19;;:5;:19;;;24478:91;;24554:1;24525:32;;;;;;;;;;;:::i;:::-;;;;;;;;24478:91;24602:1;24583:21;;:7;:21;;;24579:92;;24656:1;24628:31;;;;;;;;;;;:::i;:::-;;;;;;;;24579:92;24711:5;24681:11;:18;24693:5;24681:18;;;;;;;;;;;;;;;:27;24700:7;24681:27;;;;;;;;;;;;;;;:35;;;;24731:9;24727:78;;;24778:7;24762:31;;24771:5;24762:31;;;24787:5;24762:31;;;;;;:::i;:::-;;;;;;;;24727:78;24369:443;;;;:::o;129078:174::-;129149:16;129223:21;129198;129186:9;:33;;;;:::i;:::-;129185:59;;;;:::i;:::-;129178:66;;129078:174;;;:::o;108292:125::-;108352:7;108387:4;;:21;;106870:2;108387:21;;;;;;;;;:::i;:::-;108379:30;;;;;:::i;:::-;108372:37;;108292:125;;;;:::o;109535:::-;109596:7;109647:2;109639:11;;109616:36;;109535:125;;;:::o;108602:154::-;108664:6;108704:4;;106870:2;108704:42;;;106926:2;108704:42;;;;;;;;;:::i;:::-;108697:50;;;;;:::i;:::-;108690:58;;108683:65;;108602:154;;;;:::o;129483:141::-;129547:16;129595:21;129583:9;:33;;;;;;:::i;:::-;129576:40;;129483:141;;;:::o;135754:472::-;135892:24;135948:3;135933:19;;:3;:19;;;135929:46;;135968:6;135954:21;;135929:46;136073:21;136079:3;136084:9;136073:5;:21::i;:::-;136209:9;136202:16;;135754:472;;;;;:::o;107992:131::-;108056:4;106926:2;108080:35;;:4;;:11;;:35;108073:42;;107992:131;;;;:::o;108923:132::-;108987:12;109019:4;;106926:2;109019:28;;;;;;;;;;;:::i;:::-;109012:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108923:132;;;;:::o;110358:291::-;110547:17;110601:6;110609:7;110618:9;110629:11;110584:57;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;110577:64;;110358:291;;;;;;:::o;20579:1135::-;20685:1;20669:18;;:4;:18;;;20665:552;;20823:5;20807:12;;:21;;;;;;;:::i;:::-;;;;;;;;20665:552;;;20861:19;20883:9;:15;20893:4;20883:15;;;;;;;;;;;;;;;;20861:37;;20931:5;20917:11;:19;20913:117;;;20989:4;20995:11;21008:5;20964:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;20913:117;21185:5;21171:11;:19;21153:9;:15;21163:4;21153:15;;;;;;;;;;;;;;;:37;;;;20846:371;20665:552;21247:1;21233:16;;:2;:16;;;21229:435;;21415:5;21399:12;;:21;;;;;;;;;;;21229:435;;;21632:5;21615:9;:13;21625:2;21615:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21229:435;21696:2;21681:25;;21690:4;21681:25;;;21700:5;21681:25;;;;;;:::i;:::-;;;;;;;;20579:1135;;;:::o;129855:149::-;129920:15;129974:21;129962:9;:33;;;;:::i;:::-;129948:48;;129855:149;;;:::o;107291:516::-;107429:17;107448:15;107510:1;107489:11;:18;:22;107476:35;;107634:10;:165;;107776:7;107785:13;107759:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;107634:165;;;107677:7;107686:13;107701:28;107718:10;107701:16;:28::i;:::-;107731:11;107660:83;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;107634:165;107627:172;;107291:516;;;;;;:::o;134830:580::-;134996:20;135018:24;135090:44;135101:9;135112:12;135126:7;135090:10;:44::i;:::-;135055:79;;;;;;;;135376:26;135382:5;135389:12;135376:5;:26::i;:::-;134830:580;;;;;;;:::o;64500:783::-;64707:31;;:::i;:::-;64874:20;64897:26;64908:4;:14;;;64897:10;:26::i;:::-;64874:49;;64956:1;64938:4;:15;;;:19;64934:53;;;64959:28;64971:4;:15;;;64959:11;:28::i;:::-;64934:53;65080:8;:13;;;65102:12;65135:92;;;;;;;;65151:7;65135:92;;;;;;65160:25;65177:7;65160:16;:25::i;:::-;65135:92;;;;65187:8;65135:92;;;;65197:8;65135:92;;;;65225:1;65207:4;:15;;;:19;65135:92;;;;;65246:14;65080:195;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65000:275;;;64500:783;;;;;;;:::o;22067:213::-;22157:1;22138:21;;:7;:21;;;22134:93;;22212:1;22183:32;;;;;;;;;;;:::i;:::-;;;;;;;;22134:93;22237:35;22253:1;22257:7;22266:5;22237:7;:35::i;:::-;22067:213;;:::o;109230:131::-;109294:7;109345:5;109329:23;;109321:32;;109314:39;;109230:131;;;:::o;65992:194::-;66058:17;66105:10;66092:9;:23;66088:62;;66140:9;66124:26;;;;;;;;;;;:::i;:::-;;;;;;;;66088:62;66168:10;66161:17;;65992:194;;;:::o;66572:417::-;66727:15;66745:8;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66727:36;;66797:1;66778:21;;:7;:21;;;66774:54;;66808:20;;;;;;;;;;;;;;66774:54;66905:76;66938:10;66958:8;66969:11;66912:7;66905:32;;;;:76;;;;;;:::i;:::-;66631:358;66572:417;:::o;40076:190::-;40177:81;40197:5;40219;:18;;;40240:4;40246:2;40250:5;40204:53;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40177:19;:81::i;:::-;40076:190;;;;:::o;46262:738::-;46343:18;46372:19;46512:4;46509:1;46502:4;46496:11;46489:4;46483;46479:15;46476:1;46469:5;46462;46457:60;46571:7;46561:180;;46616:4;46610:11;46662:16;46659:1;46654:3;46639:40;46709:16;46704:3;46697:29;46561:180;46769:16;46755:30;;46820:1;46814:8;46799:23;;46427:406;46863:1;46849:10;:15;:68;;46916:1;46901:11;:16;;46849:68;;;46897:1;46875:5;46867:26;;;:31;46849:68;46845:148;;;46974:5;46941:40;;;;;;;;;;;:::i;:::-;;;;;;;;46845:148;46332:668;;46262:738;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:117::-;3555:1;3552;3545:12;3593:234;3668:5;3709:3;3700:6;3695:3;3691:16;3687:26;3684:113;;;3716:79;;:::i;:::-;3684:113;3815:6;3806:15;;3593:234;;;;:::o;3833:547::-;3921:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4124:1;4113:9;4109:17;4096:31;4154:18;4146:6;4143:30;4140:117;;;4176:79;;:::i;:::-;4140:117;4281:82;4355:7;4346:6;4335:9;4331:22;4281:82;:::i;:::-;4271:92;;4067:306;3833:547;;;;:::o;4386:108::-;4463:24;4481:5;4463:24;:::i;:::-;4458:3;4451:37;4386:108;;:::o;4542:523::-;4691:4;4686:3;4682:14;4785:4;4778:5;4774:16;4768:23;4804:63;4861:4;4856:3;4852:14;4838:12;4804:63;:::i;:::-;4706:171;4966:4;4959:5;4955:16;4949:23;4985:63;5042:4;5037:3;5033:14;5019:12;4985:63;:::i;:::-;4887:171;4660:405;4542:523;;:::o;5071:144::-;5168:6;5202:5;5196:12;5186:22;;5071:144;;;:::o;5221:214::-;5350:11;5384:6;5379:3;5372:19;5424:4;5419:3;5415:14;5400:29;;5221:214;;;;:::o;5441:162::-;5538:4;5561:3;5553:11;;5591:4;5586:3;5582:14;5574:22;;5441:162;;;:::o;5609:76::-;5645:7;5674:5;5663:16;;5609:76;;;:::o;5691:105::-;5766:23;5783:5;5766:23;:::i;:::-;5761:3;5754:36;5691:105;;:::o;5802:159::-;5876:11;5910:6;5905:3;5898:19;5950:4;5945:3;5941:14;5926:29;;5802:159;;;;:::o;5967:357::-;6045:3;6073:39;6106:5;6073:39;:::i;:::-;6128:61;6182:6;6177:3;6128:61;:::i;:::-;6121:68;;6198:65;6256:6;6251:3;6244:4;6237:5;6233:16;6198:65;:::i;:::-;6288:29;6310:6;6288:29;:::i;:::-;6283:3;6279:39;6272:46;;6049:275;5967:357;;;;:::o;6380:618::-;6499:3;6535:4;6530:3;6526:14;6629:4;6622:5;6618:16;6612:23;6648:61;6703:4;6698:3;6694:14;6680:12;6648:61;:::i;:::-;6550:169;6808:4;6801:5;6797:16;6791:23;6861:3;6855:4;6851:14;6844:4;6839:3;6835:14;6828:38;6887:73;6955:4;6941:12;6887:73;:::i;:::-;6879:81;;6729:242;6988:4;6981:11;;6504:494;6380:618;;;;:::o;7004:276::-;7133:10;7168:106;7270:3;7262:6;7168:106;:::i;:::-;7154:120;;7004:276;;;;:::o;7286:143::-;7386:4;7418;7413:3;7409:14;7401:22;;7286:143;;;:::o;7489:1151::-;7668:3;7697:84;7775:5;7697:84;:::i;:::-;7797:116;7906:6;7901:3;7797:116;:::i;:::-;7790:123;;7939:3;7984:4;7976:6;7972:17;7967:3;7963:27;8014:86;8094:5;8014:86;:::i;:::-;8123:7;8154:1;8139:456;8164:6;8161:1;8158:13;8139:456;;;8235:9;8229:4;8225:20;8220:3;8213:33;8286:6;8280:13;8314:124;8433:4;8418:13;8314:124;:::i;:::-;8306:132;;8461:90;8544:6;8461:90;:::i;:::-;8451:100;;8580:4;8575:3;8571:14;8564:21;;8199:396;8186:1;8183;8179:9;8174:14;;8139:456;;;8143:14;8611:4;8604:11;;8631:3;8624:10;;7673:967;;;;;7489:1151;;;;:::o;8692:533::-;8845:4;8840:3;8836:14;8940:4;8933:5;8929:16;8923:23;8959:63;9016:4;9011:3;9007:14;8993:12;8959:63;:::i;:::-;8860:172;9126:4;9119:5;9115:16;9109:23;9145:63;9202:4;9197:3;9193:14;9179:12;9145:63;:::i;:::-;9042:176;8814:411;8692:533;;:::o;9231:930::-;9598:4;9636:3;9625:9;9621:19;9613:27;;9650:123;9770:1;9759:9;9755:17;9746:6;9650:123;:::i;:::-;9820:9;9814:4;9810:20;9805:2;9794:9;9790:18;9783:48;9848:168;10011:4;10002:6;9848:168;:::i;:::-;9840:176;;10026:128;10150:2;10139:9;10135:18;10126:6;10026:128;:::i;:::-;9231:930;;;;;;:::o;10167:118::-;10254:24;10272:5;10254:24;:::i;:::-;10249:3;10242:37;10167:118;;:::o;10291:222::-;10384:4;10422:2;10411:9;10407:18;10399:26;;10435:71;10503:1;10492:9;10488:17;10479:6;10435:71;:::i;:::-;10291:222;;;;:::o;10540:230::-;10612:5;10653:2;10644:6;10639:3;10635:16;10631:25;10628:112;;;10659:79;;:::i;:::-;10628:112;10758:6;10749:15;;10540:230;;;;:::o;10776:77::-;10813:7;10842:5;10831:16;;10776:77;;;:::o;10859:122::-;10932:24;10950:5;10932:24;:::i;:::-;10925:5;10922:35;10912:63;;10971:1;10968;10961:12;10912:63;10859:122;:::o;10987:139::-;11033:5;11071:6;11058:20;11049:29;;11087:33;11114:5;11087:33;:::i;:::-;10987:139;;;;:::o;11132:117::-;11241:1;11238;11231:12;11255:117;11364:1;11361;11354:12;11378:117;11487:1;11484;11477:12;11514:552;11571:8;11581:6;11631:3;11624:4;11616:6;11612:17;11608:27;11598:122;;11639:79;;:::i;:::-;11598:122;11752:6;11739:20;11729:30;;11782:18;11774:6;11771:30;11768:117;;;11804:79;;:::i;:::-;11768:117;11918:4;11910:6;11906:17;11894:29;;11972:3;11964:4;11956:6;11952:17;11942:8;11938:32;11935:41;11932:128;;;11979:79;;:::i;:::-;11932:128;11514:552;;;;;:::o;12072:1361::-;12215:6;12223;12231;12239;12247;12255;12263;12312:3;12300:9;12291:7;12287:23;12283:33;12280:120;;;12319:79;;:::i;:::-;12280:120;12439:1;12464:79;12535:7;12526:6;12515:9;12511:22;12464:79;:::i;:::-;12454:89;;12410:143;12592:2;12618:53;12663:7;12654:6;12643:9;12639:22;12618:53;:::i;:::-;12608:63;;12563:118;12748:3;12737:9;12733:19;12720:33;12780:18;12772:6;12769:30;12766:117;;;12802:79;;:::i;:::-;12766:117;12915:64;12971:7;12962:6;12951:9;12947:22;12915:64;:::i;:::-;12897:82;;;;12691:298;13028:3;13055:53;13100:7;13091:6;13080:9;13076:22;13055:53;:::i;:::-;13045:63;;12999:119;13185:3;13174:9;13170:19;13157:33;13217:18;13209:6;13206:30;13203:117;;;13239:79;;:::i;:::-;13203:117;13352:64;13408:7;13399:6;13388:9;13384:22;13352:64;:::i;:::-;13334:82;;;;13128:298;12072:1361;;;;;;;;;;:::o;13439:89::-;13475:7;13515:6;13508:5;13504:18;13493:29;;13439:89;;;:::o;13534:115::-;13619:23;13636:5;13619:23;:::i;:::-;13614:3;13607:36;13534:115;;:::o;13655:218::-;13746:4;13784:2;13773:9;13769:18;13761:26;;13797:69;13863:1;13852:9;13848:17;13839:6;13797:69;:::i;:::-;13655:218;;;;:::o;13879:149::-;13915:7;13955:66;13948:5;13944:78;13933:89;;13879:149;;;:::o;14034:115::-;14119:23;14136:5;14119:23;:::i;:::-;14114:3;14107:36;14034:115;;:::o;14155:101::-;14191:7;14231:18;14224:5;14220:30;14209:41;;14155:101;;;:::o;14262:115::-;14347:23;14364:5;14347:23;:::i;:::-;14342:3;14335:36;14262:115;;:::o;14383:324::-;14500:4;14538:2;14527:9;14523:18;14515:26;;14551:69;14617:1;14606:9;14602:17;14593:6;14551:69;:::i;:::-;14630:70;14696:2;14685:9;14681:18;14672:6;14630:70;:::i;:::-;14383:324;;;;;:::o;14713:::-;14830:4;14868:2;14857:9;14853:18;14845:26;;14881:69;14947:1;14936:9;14932:17;14923:6;14881:69;:::i;:::-;14960:70;15026:2;15015:9;15011:18;15002:6;14960:70;:::i;:::-;14713:324;;;;;:::o;15043:118::-;15130:24;15148:5;15130:24;:::i;:::-;15125:3;15118:37;15043:118;;:::o;15167:222::-;15260:4;15298:2;15287:9;15283:18;15275:26;;15311:71;15379:1;15368:9;15364:17;15355:6;15311:71;:::i;:::-;15167:222;;;;:::o;15395:619::-;15472:6;15480;15488;15537:2;15525:9;15516:7;15512:23;15508:32;15505:119;;;15543:79;;:::i;:::-;15505:119;15663:1;15688:53;15733:7;15724:6;15713:9;15709:22;15688:53;:::i;:::-;15678:63;;15634:117;15790:2;15816:53;15861:7;15852:6;15841:9;15837:22;15816:53;:::i;:::-;15806:63;;15761:118;15918:2;15944:53;15989:7;15980:6;15969:9;15965:22;15944:53;:::i;:::-;15934:63;;15889:118;15395:619;;;;;:::o;16020:86::-;16055:7;16095:4;16088:5;16084:16;16073:27;;16020:86;;;:::o;16112:112::-;16195:22;16211:5;16195:22;:::i;:::-;16190:3;16183:35;16112:112;;:::o;16230:214::-;16319:4;16357:2;16346:9;16342:18;16334:26;;16370:67;16434:1;16423:9;16419:17;16410:6;16370:67;:::i;:::-;16230:214;;;;:::o;16450:93::-;16486:7;16526:10;16519:5;16515:22;16504:33;;16450:93;;;:::o;16549:120::-;16621:23;16638:5;16621:23;:::i;:::-;16614:5;16611:34;16601:62;;16659:1;16656;16649:12;16601:62;16549:120;:::o;16675:137::-;16720:5;16758:6;16745:20;16736:29;;16774:32;16800:5;16774:32;:::i;:::-;16675:137;;;;:::o;16818:472::-;16885:6;16893;16942:2;16930:9;16921:7;16917:23;16913:32;16910:119;;;16948:79;;:::i;:::-;16910:119;17068:1;17093:52;17137:7;17128:6;17117:9;17113:22;17093:52;:::i;:::-;17083:62;;17039:116;17194:2;17220:53;17265:7;17256:6;17245:9;17241:22;17220:53;:::i;:::-;17210:63;;17165:118;16818:472;;;;;:::o;17296:116::-;17366:21;17381:5;17366:21;:::i;:::-;17359:5;17356:32;17346:60;;17402:1;17399;17392:12;17346:60;17296:116;:::o;17418:133::-;17461:5;17499:6;17486:20;17477:29;;17515:30;17539:5;17515:30;:::i;:::-;17418:133;;;;:::o;17557:686::-;17651:6;17659;17708:2;17696:9;17687:7;17683:23;17679:32;17676:119;;;17714:79;;:::i;:::-;17676:119;17862:1;17851:9;17847:17;17834:31;17892:18;17884:6;17881:30;17878:117;;;17914:79;;:::i;:::-;17878:117;18019:82;18093:7;18084:6;18073:9;18069:22;18019:82;:::i;:::-;18009:92;;17805:306;18150:2;18176:50;18218:7;18209:6;18198:9;18194:22;18176:50;:::i;:::-;18166:60;;18121:115;17557:686;;;;;:::o;18299:528::-;18456:4;18451:3;18447:14;18548:4;18541:5;18537:16;18531:23;18567:63;18624:4;18619:3;18615:14;18601:12;18567:63;:::i;:::-;18471:169;18728:4;18721:5;18717:16;18711:23;18747:63;18804:4;18799:3;18795:14;18781:12;18747:63;:::i;:::-;18650:170;18425:402;18299:528;;:::o;18833:342::-;18986:4;19024:2;19013:9;19009:18;19001:26;;19037:131;19165:1;19154:9;19150:17;19141:6;19037:131;:::i;:::-;18833:342;;;;:::o;19181:329::-;19240:6;19289:2;19277:9;19268:7;19264:23;19260:32;19257:119;;;19295:79;;:::i;:::-;19257:119;19415:1;19440:53;19485:7;19476:6;19465:9;19461:22;19440:53;:::i;:::-;19430:63;;19386:117;19181:329;;;;:::o;19516:120::-;19588:23;19605:5;19588:23;:::i;:::-;19581:5;19578:34;19568:62;;19626:1;19623;19616:12;19568:62;19516:120;:::o;19642:137::-;19687:5;19725:6;19712:20;19703:29;;19741:32;19767:5;19741:32;:::i;:::-;19642:137;;;;:::o;19785:470::-;19851:6;19859;19908:2;19896:9;19887:7;19883:23;19879:32;19876:119;;;19914:79;;:::i;:::-;19876:119;20034:1;20059:52;20103:7;20094:6;20083:9;20079:22;20059:52;:::i;:::-;20049:62;;20005:116;20160:2;20186:52;20230:7;20221:6;20210:9;20206:22;20186:52;:::i;:::-;20176:62;;20131:117;19785:470;;;;;:::o;20261:98::-;20312:6;20346:5;20340:12;20330:22;;20261:98;;;:::o;20365:168::-;20448:11;20482:6;20477:3;20470:19;20522:4;20517:3;20513:14;20498:29;;20365:168;;;;:::o;20539:373::-;20625:3;20653:38;20685:5;20653:38;:::i;:::-;20707:70;20770:6;20765:3;20707:70;:::i;:::-;20700:77;;20786:65;20844:6;20839:3;20832:4;20825:5;20821:16;20786:65;:::i;:::-;20876:29;20898:6;20876:29;:::i;:::-;20871:3;20867:39;20860:46;;20629:283;20539:373;;;;:::o;20918:309::-;21029:4;21067:2;21056:9;21052:18;21044:26;;21116:9;21110:4;21106:20;21102:1;21091:9;21087:17;21080:47;21144:76;21215:4;21206:6;21144:76;:::i;:::-;21136:84;;20918:309;;;;:::o;21233:60::-;21261:3;21282:5;21275:12;;21233:60;;;:::o;21299:142::-;21349:9;21382:53;21400:34;21409:24;21427:5;21409:24;:::i;:::-;21400:34;:::i;:::-;21382:53;:::i;:::-;21369:66;;21299:142;;;:::o;21447:126::-;21497:9;21530:37;21561:5;21530:37;:::i;:::-;21517:50;;21447:126;;;:::o;21579:155::-;21658:9;21691:37;21722:5;21691:37;:::i;:::-;21678:50;;21579:155;;;:::o;21740:189::-;21856:66;21916:5;21856:66;:::i;:::-;21851:3;21844:79;21740:189;;:::o;21935:280::-;22057:4;22095:2;22084:9;22080:18;22072:26;;22108:100;22205:1;22194:9;22190:17;22181:6;22108:100;:::i;:::-;21935:280;;;;:::o;22221:329::-;22280:6;22329:2;22317:9;22308:7;22304:23;22300:32;22297:119;;;22335:79;;:::i;:::-;22297:119;22455:1;22480:53;22525:7;22516:6;22505:9;22501:22;22480:53;:::i;:::-;22470:63;;22426:117;22221:329;;;;:::o;22556:218::-;22647:4;22685:2;22674:9;22670:18;22662:26;;22698:69;22764:1;22753:9;22749:17;22740:6;22698:69;:::i;:::-;22556:218;;;;:::o;22780:871::-;22894:6;22902;22910;22918;22967:3;22955:9;22946:7;22942:23;22938:33;22935:120;;;22974:79;;:::i;:::-;22935:120;23094:1;23119:79;23190:7;23181:6;23170:9;23166:22;23119:79;:::i;:::-;23109:89;;23065:143;23275:2;23264:9;23260:18;23247:32;23306:18;23298:6;23295:30;23292:117;;;23328:79;;:::i;:::-;23292:117;23441:64;23497:7;23488:6;23477:9;23473:22;23441:64;:::i;:::-;23423:82;;;;23218:297;23554:3;23581:53;23626:7;23617:6;23606:9;23602:22;23581:53;:::i;:::-;23571:63;;23525:119;22780:871;;;;;;;:::o;23693:607::-;23805:8;23815:6;23865:3;23858:4;23850:6;23846:17;23842:27;23832:122;;23873:79;;:::i;:::-;23832:122;23986:6;23973:20;23963:30;;24016:18;24008:6;24005:30;24002:117;;;24038:79;;:::i;:::-;24002:117;24152:4;24144:6;24140:17;24128:29;;24206:3;24198:4;24190:6;24186:17;24176:8;24172:32;24169:41;24166:128;;;24213:79;;:::i;:::-;24166:128;23693:607;;;;;:::o;24306:637::-;24431:6;24439;24488:2;24476:9;24467:7;24463:23;24459:32;24456:119;;;24494:79;;:::i;:::-;24456:119;24642:1;24631:9;24627:17;24614:31;24672:18;24664:6;24661:30;24658:117;;;24694:79;;:::i;:::-;24658:117;24807:119;24918:7;24909:6;24898:9;24894:22;24807:119;:::i;:::-;24789:137;;;;24585:351;24306:637;;;;;:::o;24949:327::-;25007:6;25056:2;25044:9;25035:7;25031:23;25027:32;25024:119;;;25062:79;;:::i;:::-;25024:119;25182:1;25207:52;25251:7;25242:6;25231:9;25227:22;25207:52;:::i;:::-;25197:62;;25153:116;24949:327;;;;:::o;25282:118::-;25369:24;25387:5;25369:24;:::i;:::-;25364:3;25357:37;25282:118;;:::o;25406:222::-;25499:4;25537:2;25526:9;25522:18;25514:26;;25550:71;25618:1;25607:9;25603:17;25594:6;25550:71;:::i;:::-;25406:222;;;;:::o;25634:813::-;25720:6;25728;25736;25744;25793:2;25781:9;25772:7;25768:23;25764:32;25761:119;;;25799:79;;:::i;:::-;25761:119;25919:1;25944:52;25988:7;25979:6;25968:9;25964:22;25944:52;:::i;:::-;25934:62;;25890:116;26045:2;26071:52;26115:7;26106:6;26095:9;26091:22;26071:52;:::i;:::-;26061:62;;26016:117;26200:2;26189:9;26185:18;26172:32;26231:18;26223:6;26220:30;26217:117;;;26253:79;;:::i;:::-;26217:117;26366:64;26422:7;26413:6;26402:9;26398:22;26366:64;:::i;:::-;26348:82;;;;26143:297;25634:813;;;;;;;:::o;26483:601::-;26589:8;26599:6;26649:3;26642:4;26634:6;26630:17;26626:27;26616:122;;26657:79;;:::i;:::-;26616:122;26770:6;26757:20;26747:30;;26800:18;26792:6;26789:30;26786:117;;;26822:79;;:::i;:::-;26786:117;26936:4;26928:6;26924:17;26912:29;;26990:3;26982:4;26974:6;26970:17;26960:8;26956:32;26953:41;26950:128;;;26997:79;;:::i;:::-;26950:128;26483:601;;;;;:::o;27090:625::-;27209:6;27217;27266:2;27254:9;27245:7;27241:23;27237:32;27234:119;;;27272:79;;:::i;:::-;27234:119;27420:1;27409:9;27405:17;27392:31;27450:18;27442:6;27439:30;27436:117;;;27472:79;;:::i;:::-;27436:117;27585:113;27690:7;27681:6;27670:9;27666:22;27585:113;:::i;:::-;27567:131;;;;27363:345;27090:625;;;;;:::o;27748:236::-;27826:5;27867:2;27858:6;27853:3;27849:16;27845:25;27842:112;;;27873:79;;:::i;:::-;27842:112;27972:6;27963:15;;27748:236;;;;:::o;27990:902::-;28128:6;28136;28144;28193:3;28181:9;28172:7;28168:23;28164:33;28161:120;;;28200:79;;:::i;:::-;28161:120;28348:1;28337:9;28333:17;28320:31;28378:18;28370:6;28367:30;28364:117;;;28400:79;;:::i;:::-;28364:117;28505:82;28579:7;28570:6;28559:9;28555:22;28505:82;:::i;:::-;28495:92;;28291:306;28636:2;28662:85;28739:7;28730:6;28719:9;28715:22;28662:85;:::i;:::-;28652:95;;28607:150;28796:2;28822:53;28867:7;28858:6;28847:9;28843:22;28822:53;:::i;:::-;28812:63;;28767:118;27990:902;;;;;:::o;28898:108::-;28975:24;28993:5;28975:24;:::i;:::-;28970:3;28963:37;28898:108;;:::o;29012:105::-;29087:23;29104:5;29087:23;:::i;:::-;29082:3;29075:36;29012:105;;:::o;29173:518::-;29320:4;29315:3;29311:14;29412:4;29405:5;29401:16;29395:23;29431:63;29488:4;29483:3;29479:14;29465:12;29431:63;:::i;:::-;29335:169;29592:4;29585:5;29581:16;29575:23;29611:63;29668:4;29663:3;29659:14;29645:12;29611:63;:::i;:::-;29514:170;29289:402;29173:518;;:::o;29755:757::-;29920:4;29915:3;29911:14;30007:4;30000:5;29996:16;29990:23;30026:63;30083:4;30078:3;30074:14;30060:12;30026:63;:::i;:::-;29935:164;30182:4;30175:5;30171:16;30165:23;30201:61;30256:4;30251:3;30247:14;30233:12;30201:61;:::i;:::-;30109:163;30353:4;30346:5;30342:16;30336:23;30372:123;30489:4;30484:3;30480:14;30466:12;30372:123;:::i;:::-;30282:223;29889:623;29755:757;;:::o;30518:582::-;30763:4;30801:3;30790:9;30786:19;30778:27;;30815:139;30951:1;30940:9;30936:17;30927:6;30815:139;:::i;:::-;30964:129;31088:3;31077:9;31073:19;31064:6;30964:129;:::i;:::-;30518:582;;;;;:::o;31106:474::-;31174:6;31182;31231:2;31219:9;31210:7;31206:23;31202:32;31199:119;;;31237:79;;:::i;:::-;31199:119;31357:1;31382:53;31427:7;31418:6;31407:9;31403:22;31382:53;:::i;:::-;31372:63;;31328:117;31484:2;31510:53;31555:7;31546:6;31535:9;31531:22;31510:53;:::i;:::-;31500:63;;31455:118;31106:474;;;;;:::o;31586:381::-;31671:6;31720:2;31708:9;31699:7;31695:23;31691:32;31688:119;;;31726:79;;:::i;:::-;31688:119;31846:1;31871:79;31942:7;31933:6;31922:9;31918:22;31871:79;:::i;:::-;31861:89;;31817:143;31586:381;;;;:::o;31973:180::-;32021:77;32018:1;32011:88;32118:4;32115:1;32108:15;32142:4;32139:1;32132:15;32159:320;32203:6;32240:1;32234:4;32230:12;32220:22;;32287:1;32281:4;32277:12;32308:18;32298:81;;32364:4;32356:6;32352:17;32342:27;;32298:81;32426:2;32418:6;32415:14;32395:18;32392:38;32389:84;;32445:18;;:::i;:::-;32389:84;32210:269;32159:320;;;:::o;32485:180::-;32533:77;32530:1;32523:88;32630:4;32627:1;32620:15;32654:4;32651:1;32644:15;32671:115;32756:23;32773:5;32756:23;:::i;:::-;32751:3;32744:36;32671:115;;:::o;32792:328::-;32911:4;32949:2;32938:9;32934:18;32926:26;;32962:69;33028:1;33017:9;33013:17;33004:6;32962:69;:::i;:::-;33041:72;33109:2;33098:9;33094:18;33085:6;33041:72;:::i;:::-;32792:328;;;;;:::o;33126:281::-;33209:27;33231:4;33209:27;:::i;:::-;33201:6;33197:40;33339:6;33327:10;33324:22;33303:18;33291:10;33288:34;33285:62;33282:88;;;33350:18;;:::i;:::-;33282:88;33390:10;33386:2;33379:22;33169:238;33126:281;;:::o;33413:129::-;33447:6;33474:20;;:::i;:::-;33464:30;;33503:33;33531:4;33523:6;33503:33;:::i;:::-;33413:129;;;:::o;33548:348::-;33662:4;33752:18;33744:6;33741:30;33738:56;;;33774:18;;:::i;:::-;33738:56;33824:4;33816:6;33812:17;33804:25;;33884:4;33878;33874:15;33866:23;;33548:348;;;:::o;33902:117::-;34011:1;34008;34001:12;34025:117;34134:1;34131;34124:12;34148:117;34257:1;34254;34247:12;34271:307;34332:4;34422:18;34414:6;34411:30;34408:56;;;34444:18;;:::i;:::-;34408:56;34482:29;34504:6;34482:29;:::i;:::-;34474:37;;34566:4;34560;34556:15;34548:23;;34271:307;;;:::o;34584:146::-;34681:6;34676:3;34671;34658:30;34722:1;34713:6;34708:3;34704:16;34697:27;34584:146;;;:::o;34736:423::-;34813:5;34838:65;34854:48;34895:6;34854:48;:::i;:::-;34838:65;:::i;:::-;34829:74;;34926:6;34919:5;34912:21;34964:4;34957:5;34953:16;35002:3;34993:6;34988:3;34984:16;34981:25;34978:112;;;35009:79;;:::i;:::-;34978:112;35099:54;35146:6;35141:3;35136;35099:54;:::i;:::-;34819:340;34736:423;;;;;:::o;35178:338::-;35233:5;35282:3;35275:4;35267:6;35263:17;35259:27;35249:122;;35290:79;;:::i;:::-;35249:122;35407:6;35394:20;35432:78;35506:3;35498:6;35491:4;35483:6;35479:17;35432:78;:::i;:::-;35423:87;;35239:277;35178:338;;;;:::o;35556:919::-;35642:5;35686:4;35674:9;35669:3;35665:19;35661:30;35658:117;;;35694:79;;:::i;:::-;35658:117;35793:21;35809:4;35793:21;:::i;:::-;35784:30;;35872:1;35912:48;35956:3;35947:6;35936:9;35932:22;35912:48;:::i;:::-;35905:4;35898:5;35894:16;35887:74;35824:148;36034:2;36075:48;36119:3;36110:6;36099:9;36095:22;36075:48;:::i;:::-;36068:4;36061:5;36057:16;36050:74;35982:153;36225:2;36214:9;36210:18;36197:32;36256:18;36248:6;36245:30;36242:117;;;36278:79;;:::i;:::-;36242:117;36398:58;36452:3;36443:6;36432:9;36428:22;36398:58;:::i;:::-;36391:4;36384:5;36380:16;36373:84;36145:323;35556:919;;;;:::o;36517:1026::-;36650:5;36675:118;36691:101;36785:6;36691:101;:::i;:::-;36675:118;:::i;:::-;36666:127;;36813:5;36842:6;36835:5;36828:21;36876:4;36869:5;36865:16;36858:23;;36929:4;36921:6;36917:17;36909:6;36905:30;36958:3;36950:6;36947:15;36944:122;;;36977:79;;:::i;:::-;36944:122;37092:6;37075:462;37109:6;37104:3;37101:15;37075:462;;;37198:3;37185:17;37234:18;37221:11;37218:35;37215:122;;;37256:79;;:::i;:::-;37215:122;37380:11;37372:6;37368:24;37418:74;37488:3;37476:10;37418:74;:::i;:::-;37413:3;37406:87;37522:4;37517:3;37513:14;37506:21;;37151:386;;37135:4;37130:3;37126:14;37119:21;;37075:462;;;37079:21;36656:887;;36517:1026;;;;;:::o;37549:428::-;37741:9;37840:130;37955:14;37947:6;37940:5;37840:130;:::i;:::-;37818:152;;37549:428;;;;:::o;37983:117::-;38092:1;38089;38082:12;38106:117;38215:1;38212;38205:12;38229:469;38334:9;38345;38383:8;38371:10;38368:24;38365:111;;;38395:79;;:::i;:::-;38365:111;38501:6;38491:8;38488:20;38485:107;;;38511:79;;:::i;:::-;38485:107;38642:1;38630:10;38626:18;38618:6;38614:31;38601:44;;38681:10;38671:8;38667:25;38654:38;;38229:469;;;;;;;:::o;38704:147::-;38805:11;38842:3;38827:18;;38704:147;;;;:::o;38857:386::-;38961:3;38989:38;39021:5;38989:38;:::i;:::-;39043:88;39124:6;39119:3;39043:88;:::i;:::-;39036:95;;39140:65;39198:6;39193:3;39186:4;39179:5;39175:16;39140:65;:::i;:::-;39230:6;39225:3;39221:16;39214:23;;38965:278;38857:386;;;;:::o;39271:327::-;39385:3;39406:88;39487:6;39482:3;39406:88;:::i;:::-;39399:95;;39504:56;39553:6;39548:3;39541:5;39504:56;:::i;:::-;39585:6;39580:3;39576:16;39569:23;;39271:327;;;;;:::o;39604:453::-;39796:3;39818:93;39907:3;39898:6;39818:93;:::i;:::-;39811:100;;39928:103;40027:3;40018:6;40010;39928:103;:::i;:::-;39921:110;;40048:3;40041:10;;39604:453;;;;;;:::o;40085:314::-;40181:3;40202:70;40265:6;40260:3;40202:70;:::i;:::-;40195:77;;40282:56;40331:6;40326:3;40319:5;40282:56;:::i;:::-;40363:29;40385:6;40363:29;:::i;:::-;40358:3;40354:39;40347:46;;40085:314;;;;;:::o;40405:329::-;40526:4;40564:2;40553:9;40549:18;40541:26;;40613:9;40607:4;40603:20;40599:1;40588:9;40584:17;40577:47;40641:86;40722:4;40713:6;40705;40641:86;:::i;:::-;40633:94;;40405:329;;;;;:::o;40740:180::-;40788:77;40785:1;40778:88;40885:4;40882:1;40875:15;40909:4;40906:1;40899:15;40926:117;41035:1;41032;41025:12;41049:117;41158:1;41155;41148:12;41172:117;41281:1;41278;41271:12;41295:401;41394:4;41448:11;41435:25;41550:1;41542:6;41538:14;41527:8;41511:14;41507:29;41503:50;41483:18;41479:75;41469:170;;41558:79;;:::i;:::-;41469:170;41670:18;41660:8;41656:33;41648:41;;41399:297;41295:401;;;;:::o;41702:724::-;41779:4;41785:6;41841:11;41828:25;41941:1;41935:4;41931:12;41920:8;41904:14;41900:29;41896:48;41876:18;41872:73;41862:168;;41949:79;;:::i;:::-;41862:168;42061:18;42051:8;42047:33;42039:41;;42113:4;42100:18;42090:28;;42141:18;42133:6;42130:30;42127:117;;;42163:79;;:::i;:::-;42127:117;42271:2;42265:4;42261:13;42253:21;;42328:4;42320:6;42316:17;42300:14;42296:38;42290:4;42286:49;42283:136;;;42338:79;;:::i;:::-;42283:136;41792:634;41702:724;;;;;:::o;42432:120::-;42483:5;42508:38;42542:2;42537:3;42533:12;42528:3;42508:38;:::i;:::-;42499:47;;42432:120;;;;:::o;42558:105::-;42633:23;42650:5;42633:23;:::i;:::-;42628:3;42621:36;42558:105;;:::o;42669:122::-;42721:5;42746:39;42781:2;42776:3;42772:12;42767:3;42746:39;:::i;:::-;42737:48;;42669:122;;;;:::o;42797:120::-;42869:23;42886:5;42869:23;:::i;:::-;42862:5;42859:34;42849:62;;42907:1;42904;42897:12;42849:62;42797:120;:::o;42923:137::-;42968:5;43006:6;42993:20;42984:29;;43022:32;43048:5;43022:32;:::i;:::-;42923:137;;;;:::o;43066:120::-;43117:5;43142:38;43176:2;43171:3;43167:12;43162:3;43142:38;:::i;:::-;43133:47;;43066:120;;;;:::o;43230:761::-;43377:4;43372:3;43368:14;43449:49;43492:4;43485:5;43481:16;43474:5;43449:49;:::i;:::-;43511:61;43566:4;43561:3;43557:14;43543:12;43511:61;:::i;:::-;43392:190;43649:50;43693:4;43686:5;43682:16;43675:5;43649:50;:::i;:::-;43712:63;43769:4;43764:3;43760:14;43746:12;43712:63;:::i;:::-;43592:193;43851:49;43894:4;43887:5;43883:16;43876:5;43851:49;:::i;:::-;43913:61;43968:4;43963:3;43959:14;43945:12;43913:61;:::i;:::-;43795:189;43346:645;43230:761;;:::o;43997:980::-;44308:4;44346:3;44335:9;44331:19;44323:27;;44360:121;44478:1;44467:9;44463:17;44454:6;44360:121;:::i;:::-;44491:72;44559:2;44548:9;44544:18;44535:6;44491:72;:::i;:::-;44611:9;44605:4;44601:20;44595:3;44584:9;44580:19;44573:49;44639:86;44720:4;44711:6;44703;44639:86;:::i;:::-;44631:94;;44735:73;44803:3;44792:9;44788:19;44779:6;44735:73;:::i;:::-;44856:9;44850:4;44846:20;44840:3;44829:9;44825:19;44818:49;44884:86;44965:4;44956:6;44948;44884:86;:::i;:::-;44876:94;;43997:980;;;;;;;;;;:::o;44983:180::-;45031:77;45028:1;45021:88;45128:4;45125:1;45118:15;45152:4;45149:1;45142:15;45169:233;45208:3;45231:24;45249:5;45231:24;:::i;:::-;45222:33;;45277:66;45270:5;45267:77;45264:103;;45347:18;;:::i;:::-;45264:103;45394:1;45387:5;45383:13;45376:20;;45169:233;;;:::o;45408:432::-;45496:5;45521:65;45537:48;45578:6;45537:48;:::i;:::-;45521:65;:::i;:::-;45512:74;;45609:6;45602:5;45595:21;45647:4;45640:5;45636:16;45685:3;45676:6;45671:3;45667:16;45664:25;45661:112;;;45692:79;;:::i;:::-;45661:112;45782:52;45827:6;45822:3;45817;45782:52;:::i;:::-;45502:338;45408:432;;;;;:::o;45859:353::-;45925:5;45974:3;45967:4;45959:6;45955:17;45951:27;45941:122;;45982:79;;:::i;:::-;45941:122;46092:6;46086:13;46117:89;46202:3;46194:6;46187:4;46179:6;46175:17;46117:89;:::i;:::-;46108:98;;45931:281;45859:353;;;;:::o;46218:522::-;46297:6;46346:2;46334:9;46325:7;46321:23;46317:32;46314:119;;;46352:79;;:::i;:::-;46314:119;46493:1;46482:9;46478:17;46472:24;46523:18;46515:6;46512:30;46509:117;;;46545:79;;:::i;:::-;46509:117;46650:73;46715:7;46706:6;46695:9;46691:22;46650:73;:::i;:::-;46640:83;;46443:290;46218:522;;;;:::o;46746:332::-;46867:4;46905:2;46894:9;46890:18;46882:26;;46918:71;46986:1;46975:9;46971:17;46962:6;46918:71;:::i;:::-;46999:72;47067:2;47056:9;47052:18;47043:6;46999:72;:::i;:::-;46746:332;;;;;:::o;47084:218::-;47175:4;47213:2;47202:9;47198:18;47190:26;;47226:69;47292:1;47281:9;47277:17;47268:6;47226:69;:::i;:::-;47084:218;;;;:::o;47308:327::-;47366:6;47415:2;47403:9;47394:7;47390:23;47386:32;47383:119;;;47421:79;;:::i;:::-;47383:119;47541:1;47566:52;47610:7;47601:6;47590:9;47586:22;47566:52;:::i;:::-;47556:62;;47512:116;47308:327;;;;:::o;47641:85::-;47686:7;47715:5;47704:16;;47641:85;;;:::o;47732:156::-;47789:9;47822:60;47839:42;47848:32;47874:5;47848:32;:::i;:::-;47839:42;:::i;:::-;47822:60;:::i;:::-;47809:73;;47732:156;;;:::o;47894:145::-;47988:44;48026:5;47988:44;:::i;:::-;47983:3;47976:57;47894:145;;:::o;48045:654::-;48247:4;48285:3;48274:9;48270:19;48262:27;;48299:71;48367:1;48356:9;48352:17;48343:6;48299:71;:::i;:::-;48380:72;48448:2;48437:9;48433:18;48424:6;48380:72;:::i;:::-;48462:79;48537:2;48526:9;48522:18;48513:6;48462:79;:::i;:::-;48588:9;48582:4;48578:20;48573:2;48562:9;48558:18;48551:48;48616:76;48687:4;48678:6;48616:76;:::i;:::-;48608:84;;48045:654;;;;;;;:::o;48705:328::-;48824:4;48862:2;48851:9;48847:18;48839:26;;48875:69;48941:1;48930:9;48926:17;48917:6;48875:69;:::i;:::-;48954:72;49022:2;49011:9;49007:18;48998:6;48954:72;:::i;:::-;48705:328;;;;;:::o;49039:442::-;49188:4;49226:2;49215:9;49211:18;49203:26;;49239:71;49307:1;49296:9;49292:17;49283:6;49239:71;:::i;:::-;49320:72;49388:2;49377:9;49373:18;49364:6;49320:72;:::i;:::-;49402;49470:2;49459:9;49455:18;49446:6;49402:72;:::i;:::-;49039:442;;;;;;:::o;49487:506::-;49644:4;49682:2;49671:9;49667:18;49659:26;;49731:9;49725:4;49721:20;49717:1;49706:9;49702:17;49695:47;49759:76;49830:4;49821:6;49759:76;:::i;:::-;49751:84;;49882:9;49876:4;49872:20;49867:2;49856:9;49852:18;49845:48;49910:76;49981:4;49972:6;49910:76;:::i;:::-;49902:84;;49487:506;;;;;:::o;49999:137::-;50053:5;50084:6;50078:13;50069:22;;50100:30;50124:5;50100:30;:::i;:::-;49999:137;;;;:::o;50142:345::-;50209:6;50258:2;50246:9;50237:7;50233:23;50229:32;50226:119;;;50264:79;;:::i;:::-;50226:119;50384:1;50409:61;50462:7;50453:6;50442:9;50438:22;50409:61;:::i;:::-;50399:71;;50355:125;50142:345;;;;:::o;50493:158::-;50566:11;50600:6;50595:3;50588:19;50640:4;50635:3;50631:14;50616:29;;50493:158;;;;:::o;50657:353::-;50733:3;50761:38;50793:5;50761:38;:::i;:::-;50815:60;50868:6;50863:3;50815:60;:::i;:::-;50808:67;;50884:65;50942:6;50937:3;50930:4;50923:5;50919:16;50884:65;:::i;:::-;50974:29;50996:6;50974:29;:::i;:::-;50969:3;50965:39;50958:46;;50737:273;50657:353;;;;:::o;51016:99::-;51087:21;51102:5;51087:21;:::i;:::-;51082:3;51075:34;51016:99;;:::o;51177:1223::-;51312:3;51348:4;51343:3;51339:14;51437:4;51430:5;51426:16;51420:23;51456:61;51511:4;51506:3;51502:14;51488:12;51456:61;:::i;:::-;51363:164;51613:4;51606:5;51602:16;51596:23;51632:63;51689:4;51684:3;51680:14;51666:12;51632:63;:::i;:::-;51537:168;51790:4;51783:5;51779:16;51773:23;51843:3;51837:4;51833:14;51826:4;51821:3;51817:14;51810:38;51869:71;51935:4;51921:12;51869:71;:::i;:::-;51861:79;;51715:236;52036:4;52029:5;52025:16;52019:23;52089:3;52083:4;52079:14;52072:4;52067:3;52063:14;52056:38;52115:71;52181:4;52167:12;52115:71;:::i;:::-;52107:79;;51961:236;52287:4;52280:5;52276:16;52270:23;52306:57;52357:4;52352:3;52348:14;52334:12;52306:57;:::i;:::-;52207:166;52390:4;52383:11;;51317:1083;51177:1223;;;;:::o;52406:515::-;52593:4;52631:2;52620:9;52616:18;52608:26;;52680:9;52674:4;52670:20;52666:1;52655:9;52651:17;52644:47;52708:124;52827:4;52818:6;52708:124;:::i;:::-;52700:132;;52842:72;52910:2;52899:9;52895:18;52886:6;52842:72;:::i;:::-;52406:515;;;;;:::o;52927:143::-;52984:5;53015:6;53009:13;53000:22;;53031:33;53058:5;53031:33;:::i;:::-;52927:143;;;;:::o;53103:623::-;53193:5;53237:4;53225:9;53220:3;53216:19;53212:30;53209:117;;;53245:79;;:::i;:::-;53209:117;53344:21;53360:4;53344:21;:::i;:::-;53335:30;;53429:1;53469:60;53525:3;53516:6;53505:9;53501:22;53469:60;:::i;:::-;53462:4;53455:5;53451:16;53444:86;53375:166;53606:2;53647:60;53703:3;53694:6;53683:9;53679:22;53647:60;:::i;:::-;53640:4;53633:5;53629:16;53622:86;53551:168;53103:623;;;;:::o;53732:411::-;53832:6;53881:2;53869:9;53860:7;53856:23;53852:32;53849:119;;;53887:79;;:::i;:::-;53849:119;54007:1;54032:94;54118:7;54109:6;54098:9;54094:22;54032:94;:::i;:::-;54022:104;;53978:158;53732:411;;;;:::o;54149:140::-;54197:4;54220:3;54212:11;;54243:3;54240:1;54233:14;54277:4;54274:1;54264:18;54256:26;;54149:140;;;:::o;54295:93::-;54332:6;54379:2;54374;54367:5;54363:14;54359:23;54349:33;;54295:93;;;:::o;54394:107::-;54438:8;54488:5;54482:4;54478:16;54457:37;;54394:107;;;;:::o;54507:393::-;54576:6;54626:1;54614:10;54610:18;54649:97;54679:66;54668:9;54649:97;:::i;:::-;54767:39;54797:8;54786:9;54767:39;:::i;:::-;54755:51;;54839:4;54835:9;54828:5;54824:21;54815:30;;54888:4;54878:8;54874:19;54867:5;54864:30;54854:40;;54583:317;;54507:393;;;;;:::o;54906:142::-;54956:9;54989:53;55007:34;55016:24;55034:5;55016:24;:::i;:::-;55007:34;:::i;:::-;54989:53;:::i;:::-;54976:66;;54906:142;;;:::o;55054:75::-;55097:3;55118:5;55111:12;;55054:75;;;:::o;55135:269::-;55245:39;55276:7;55245:39;:::i;:::-;55306:91;55355:41;55379:16;55355:41;:::i;:::-;55347:6;55340:4;55334:11;55306:91;:::i;:::-;55300:4;55293:105;55211:193;55135:269;;;:::o;55410:73::-;55455:3;55410:73;:::o;55489:189::-;55566:32;;:::i;:::-;55607:65;55665:6;55657;55651:4;55607:65;:::i;:::-;55542:136;55489:189;;:::o;55684:186::-;55744:120;55761:3;55754:5;55751:14;55744:120;;;55815:39;55852:1;55845:5;55815:39;:::i;:::-;55788:1;55781:5;55777:13;55768:22;;55744:120;;;55684:186;;:::o;55876:541::-;55976:2;55971:3;55968:11;55965:445;;;56010:37;56041:5;56010:37;:::i;:::-;56093:29;56111:10;56093:29;:::i;:::-;56083:8;56079:44;56276:2;56264:10;56261:18;56258:49;;;56297:8;56282:23;;56258:49;56320:80;56376:22;56394:3;56376:22;:::i;:::-;56366:8;56362:37;56349:11;56320:80;:::i;:::-;55980:430;;55965:445;55876:541;;;:::o;56423:117::-;56477:8;56527:5;56521:4;56517:16;56496:37;;56423:117;;;;:::o;56546:169::-;56590:6;56623:51;56671:1;56667:6;56659:5;56656:1;56652:13;56623:51;:::i;:::-;56619:56;56704:4;56698;56694:15;56684:25;;56597:118;56546:169;;;;:::o;56720:295::-;56796:4;56942:29;56967:3;56961:4;56942:29;:::i;:::-;56934:37;;57004:3;57001:1;56997:11;56991:4;56988:21;56980:29;;56720:295;;;;:::o;57020:1390::-;57135:36;57167:3;57135:36;:::i;:::-;57236:18;57228:6;57225:30;57222:56;;;57258:18;;:::i;:::-;57222:56;57302:38;57334:4;57328:11;57302:38;:::i;:::-;57387:66;57446:6;57438;57432:4;57387:66;:::i;:::-;57480:1;57504:4;57491:17;;57536:2;57528:6;57525:14;57553:1;57548:617;;;;58209:1;58226:6;58223:77;;;58275:9;58270:3;58266:19;58260:26;58251:35;;58223:77;58326:67;58386:6;58379:5;58326:67;:::i;:::-;58320:4;58313:81;58182:222;57518:886;;57548:617;57600:4;57596:9;57588:6;57584:22;57634:36;57665:4;57634:36;:::i;:::-;57692:1;57706:208;57720:7;57717:1;57714:14;57706:208;;;57799:9;57794:3;57790:19;57784:26;57776:6;57769:42;57850:1;57842:6;57838:14;57828:24;;57897:2;57886:9;57882:18;57869:31;;57743:4;57740:1;57736:12;57731:17;;57706:208;;;57942:6;57933:7;57930:19;57927:179;;;58000:9;57995:3;57991:19;57985:26;58043:48;58085:4;58077:6;58073:17;58062:9;58043:48;:::i;:::-;58035:6;58028:64;57950:156;57927:179;58152:1;58148;58140:6;58136:14;58132:22;58126:4;58119:36;57555:610;;;57518:886;;57110:1300;;;57020:1390;;:::o;58416:151::-;58520:6;58554:5;58548:12;58538:22;;58416:151;;;:::o;58573:221::-;58709:11;58743:6;58738:3;58731:19;58783:4;58778:3;58774:14;58759:29;;58573:221;;;;:::o;58800:169::-;58904:4;58927:3;58919:11;;58957:4;58952:3;58948:14;58940:22;;58800:169;;;:::o;58975:105::-;59050:23;59067:5;59050:23;:::i;:::-;59045:3;59038:36;58975:105;;:::o;59150:793::-;59283:3;59319:4;59314:3;59310:14;59405:4;59398:5;59394:16;59388:23;59424:61;59479:4;59474:3;59470:14;59456:12;59424:61;:::i;:::-;59334:161;59580:4;59573:5;59569:16;59563:23;59599:61;59654:4;59649:3;59645:14;59631:12;59599:61;:::i;:::-;59505:165;59755:4;59748:5;59744:16;59738:23;59808:3;59802:4;59798:14;59791:4;59786:3;59782:14;59775:38;59834:71;59900:4;59886:12;59834:71;:::i;:::-;59826:79;;59680:236;59933:4;59926:11;;59288:655;59150:793;;;;:::o;59949:304::-;60092:10;60127:120;60243:3;60235:6;60127:120;:::i;:::-;60113:134;;59949:304;;;;:::o;60259:150::-;60366:4;60398;60393:3;60389:14;60381:22;;60259:150;;;:::o;60483:1207::-;60676:3;60705:91;60790:5;60705:91;:::i;:::-;60812:123;60928:6;60923:3;60812:123;:::i;:::-;60805:130;;60961:3;61006:4;60998:6;60994:17;60989:3;60985:27;61036:93;61123:5;61036:93;:::i;:::-;61152:7;61183:1;61168:477;61193:6;61190:1;61187:13;61168:477;;;61264:9;61258:4;61254:20;61249:3;61242:33;61315:6;61309:13;61343:138;61476:4;61461:13;61343:138;:::i;:::-;61335:146;;61504:97;61594:6;61504:97;:::i;:::-;61494:107;;61630:4;61625:3;61621:14;61614:21;;61228:417;61215:1;61212;61208:9;61203:14;;61168:477;;;61172:14;61661:4;61654:11;;61681:3;61674:10;;60681:1009;;;;;60483:1207;;;;:::o;61696:521::-;61913:4;61951:2;61940:9;61936:18;61928:26;;62000:9;61994:4;61990:20;61986:1;61975:9;61971:17;61964:47;62028:182;62205:4;62196:6;62028:182;:::i;:::-;62020:190;;61696:521;;;;:::o;62250:590::-;62329:5;62373:4;62361:9;62356:3;62352:19;62348:30;62345:117;;;62381:79;;:::i;:::-;62345:117;62480:21;62496:4;62480:21;:::i;:::-;62471:30;;62565:1;62605:49;62650:3;62641:6;62630:9;62626:22;62605:49;:::i;:::-;62598:4;62591:5;62587:16;62580:75;62511:155;62731:2;62772:49;62817:3;62808:6;62797:9;62793:22;62772:49;:::i;:::-;62765:4;62758:5;62754:16;62747:75;62676:157;62250:590;;;;:::o;62846:389::-;62935:6;62984:2;62972:9;62963:7;62959:23;62955:32;62952:119;;;62990:79;;:::i;:::-;62952:119;63110:1;63135:83;63210:7;63201:6;63190:9;63186:22;63135:83;:::i;:::-;63125:93;;63081:147;62846:389;;;;:::o;63241:438::-;63388:4;63426:2;63415:9;63411:18;63403:26;;63439:69;63505:1;63494:9;63490:17;63481:6;63439:69;:::i;:::-;63518:72;63586:2;63575:9;63571:18;63562:6;63518:72;:::i;:::-;63600;63668:2;63657:9;63653:18;63644:6;63600:72;:::i;:::-;63241:438;;;;;;:::o;63685:180::-;63733:77;63730:1;63723:88;63830:4;63827:1;63820:15;63854:4;63851:1;63844:15;63871:185;63911:1;63928:20;63946:1;63928:20;:::i;:::-;63923:25;;63962:20;63980:1;63962:20;:::i;:::-;63957:25;;64001:1;63991:35;;64006:18;;:::i;:::-;63991:35;64048:1;64045;64041:9;64036:14;;63871:185;;;;:::o;64062:410::-;64102:7;64125:20;64143:1;64125:20;:::i;:::-;64120:25;;64159:20;64177:1;64159:20;:::i;:::-;64154:25;;64214:1;64211;64207:9;64236:30;64254:11;64236:30;:::i;:::-;64225:41;;64415:1;64406:7;64402:15;64399:1;64396:22;64376:1;64369:9;64349:83;64326:139;;64445:18;;:::i;:::-;64326:139;64110:362;64062:410;;;;:::o;64478:96::-;64536:6;64564:3;64554:13;;64478:96;;;;:::o;64672:552::-;64763:5;64794:45;64835:3;64828:5;64794:45;:::i;:::-;64864:5;64888:41;64919:8;64906:22;64888:41;:::i;:::-;64879:50;;64953:2;64945:6;64942:14;64939:278;;;65024:169;65109:66;65079:6;65075:2;65071:15;65068:1;65064:23;65024:169;:::i;:::-;65001:5;64980:227;64971:236;;64939:278;64769:455;;64672:552;;;;:::o;65230:149::-;65266:7;65306:66;65299:5;65295:78;65284:89;;65230:149;;;:::o;65385:548::-;65475:5;65506:45;65547:3;65540:5;65506:45;:::i;:::-;65576:5;65600:40;65630:8;65617:22;65600:40;:::i;:::-;65591:49;;65664:1;65656:6;65653:13;65650:276;;;65734:168;65818:66;65788:6;65785:1;65781:14;65778:1;65774:22;65734:168;:::i;:::-;65711:5;65690:226;65681:235;;65650:276;65481:452;;65385:548;;;;:::o;65939:96::-;65973:8;66022:5;66017:3;66013:15;65992:36;;65939:96;;;:::o;66041:94::-;66079:7;66108:21;66123:5;66108:21;:::i;:::-;66097:32;;66041:94;;;:::o;66141:153::-;66244:43;66263:23;66280:5;66263:23;:::i;:::-;66244:43;:::i;:::-;66239:3;66232:56;66141:153;;:::o;66300:96::-;66334:8;66383:5;66378:3;66374:15;66353:36;;66300:96;;;:::o;66402:94::-;66440:7;66469:21;66484:5;66469:21;:::i;:::-;66458:32;;66402:94;;;:::o;66502:153::-;66605:43;66624:23;66641:5;66624:23;:::i;:::-;66605:43;:::i;:::-;66600:3;66593:56;66502:153;;:::o;66661:79::-;66700:7;66729:5;66718:16;;66661:79;;;:::o;66746:157::-;66851:45;66871:24;66889:5;66871:24;:::i;:::-;66851:45;:::i;:::-;66846:3;66839:58;66746:157;;:::o;66909:684::-;67119:3;67134:73;67203:3;67194:6;67134:73;:::i;:::-;67232:1;67227:3;67223:11;67216:18;;67244:73;67313:3;67304:6;67244:73;:::i;:::-;67342:1;67337:3;67333:11;67326:18;;67354:75;67425:3;67416:6;67354:75;:::i;:::-;67454:2;67449:3;67445:12;67438:19;;67474:93;67563:3;67554:6;67474:93;:::i;:::-;67467:100;;67584:3;67577:10;;66909:684;;;;;;;:::o;67599:191::-;67639:3;67658:20;67676:1;67658:20;:::i;:::-;67653:25;;67692:20;67710:1;67692:20;:::i;:::-;67687:25;;67735:1;67732;67728:9;67721:16;;67756:3;67753:1;67750:10;67747:36;;;67763:18;;:::i;:::-;67747:36;67599:191;;;;:::o;67796:79::-;67835:7;67864:5;67853:16;;67796:79;;;:::o;67881:157::-;67986:45;68006:24;68024:5;68006:24;:::i;:::-;67986:45;:::i;:::-;67981:3;67974:58;67881:157;;:::o;68044:392::-;68182:3;68197:75;68268:3;68259:6;68197:75;:::i;:::-;68297:2;68292:3;68288:12;68281:19;;68310:73;68379:3;68370:6;68310:73;:::i;:::-;68408:1;68403:3;68399:11;68392:18;;68427:3;68420:10;;68044:392;;;;;:::o;68442:689::-;68654:3;68669:75;68740:3;68731:6;68669:75;:::i;:::-;68769:2;68764:3;68760:12;68753:19;;68782:73;68851:3;68842:6;68782:73;:::i;:::-;68880:1;68875:3;68871:11;68864:18;;68892:75;68963:3;68954:6;68892:75;:::i;:::-;68992:2;68987:3;68983:12;68976:19;;69012:93;69101:3;69092:6;69012:93;:::i;:::-;69005:100;;69122:3;69115:10;;68442:689;;;;;;;:::o;69137:143::-;69194:5;69225:6;69219:13;69210:22;;69241:33;69268:5;69241:33;:::i;:::-;69137:143;;;;:::o;69286:141::-;69342:5;69373:6;69367:13;69358:22;;69389:32;69415:5;69389:32;:::i;:::-;69286:141;;;;:::o;69464:817::-;69558:5;69602:4;69590:9;69585:3;69581:19;69577:30;69574:117;;;69610:79;;:::i;:::-;69574:117;69709:21;69725:4;69709:21;:::i;:::-;69700:30;;69789:1;69829:60;69885:3;69876:6;69865:9;69861:22;69829:60;:::i;:::-;69822:4;69815:5;69811:16;69804:86;69740:161;69961:2;70002:59;70057:3;70048:6;70037:9;70033:22;70002:59;:::i;:::-;69995:4;69988:5;69984:16;69977:85;69911:162;70131:2;70172:90;70258:3;70249:6;70238:9;70234:22;70172:90;:::i;:::-;70165:4;70158:5;70154:16;70147:116;70083:191;69464:817;;;;:::o;70287:420::-;70391:6;70440:3;70428:9;70419:7;70415:23;70411:33;70408:120;;;70447:79;;:::i;:::-;70408:120;70567:1;70592:98;70682:7;70673:6;70662:9;70658:22;70592:98;:::i;:::-;70582:108;;70538:162;70287:420;;;;:::o;70713:143::-;70770:5;70801:6;70795:13;70786:22;;70817:33;70844:5;70817:33;:::i;:::-;70713:143;;;;:::o;70862:351::-;70932:6;70981:2;70969:9;70960:7;70956:23;70952:32;70949:119;;;70987:79;;:::i;:::-;70949:119;71107:1;71132:64;71188:7;71179:6;71168:9;71164:22;71132:64;:::i;:::-;71122:74;;71078:128;70862:351;;;;:::o;71219:442::-;71368:4;71406:2;71395:9;71391:18;71383:26;;71419:71;71487:1;71476:9;71472:17;71463:6;71419:71;:::i;:::-;71500:72;71568:2;71557:9;71553:18;71544:6;71500:72;:::i;:::-;71582;71650:2;71639:9;71635:18;71626:6;71582:72;:::i;:::-;71219:442;;;;;;:::o
Swarm Source
ipfs://1c18157387d31b0fd8e20457afe01588367229d7fc3b6a3341f5434a5c78287b
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.