ETH Price: $2,981.63 (-2.28%)
Gas: 4 Gwei

Token

Marathon OFT (MARA)
 

Overview

Max Total Supply

1,737 MARA

Holders

405

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
cowboycowboycowboy.eth
Balance
5 MARA

Value
$0.00
0x001aba7087f49a135ffb121a40684416824e9c34
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MarathonOFT

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-12
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @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;
    }
}

/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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 ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * 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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * 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[EIP 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);
}

/**
 * @dev Interface of the IOFT core standard
 */
interface IOFTCore is IERC165 {
    /**
     * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`)
     * _dstChainId - L0 defined chain id to send tokens too
     * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain
     * _amount - amount of the tokens to transfer
     * _useZro - indicates to use zro to pay L0 fees
     * _adapterParam - flexible bytes array to indicate messaging adapter services in L0
     */
    function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    /**
     * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from`
     * `_from` the owner of token
     * `_dstChainId` the destination chain identifier
     * `_toAddress` can be any size depending on the `dstChainId`.
     * `_amount` the quantity of tokens in wei
     * `_refundAddress` the address LayerZero refunds if too much message fee is sent
     * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
     * `_adapterParams` is a flexible bytes array to indicate messaging adapter services
     */
    function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;

    /**
     * @dev returns the circulating amount of tokens on current chain
     */
    function circulatingSupply() external view returns (uint);

    /**
     * @dev returns the address of the ERC20 token
     */
    function token() external view returns (address);

    /**
     * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`)
     * `_nonce` is the outbound nonce
     */
    event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes _toAddress, uint _amount);

    /**
     * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain.
     * `_nonce` is the inbound nonce.
     */
    event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount);

    event SetUseCustomAdapterParams(bool _useCustomAdapterParams);
}

/**
 * @dev Interface of the OFT standard
 */
interface IOFT is IOFTCore, IERC20 {

}

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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);
    }
}

interface ILayerZeroReceiver {
    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
}

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}

interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;

    // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);

    // @notice get the send() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

    // @notice get the lzReceive() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}

/*
 * @title Solidity Bytes Arrays Utils
 * @author Gonçalo Sá <[email protected]>
 *
 * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.
 *      The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.
 */

library BytesLib {
    function concat(
        bytes memory _preBytes,
        bytes memory _postBytes
    )
    internal
    pure
    returns (bytes memory)
    {
        bytes memory tempBytes;

        assembly {
        // Get a location of some free memory and store it in tempBytes as
        // Solidity does for memory variables.
            tempBytes := mload(0x40)

        // Store the length of the first bytes array at the beginning of
        // the memory for tempBytes.
            let length := mload(_preBytes)
            mstore(tempBytes, length)

        // Maintain a memory counter for the current write location in the
        // temp bytes array by adding the 32 bytes for the array length to
        // the starting location.
            let mc := add(tempBytes, 0x20)
        // Stop copying when the memory counter reaches the length of the
        // first bytes array.
            let end := add(mc, length)

            for {
            // Initialize a copy counter to the start of the _preBytes data,
            // 32 bytes into its memory.
                let cc := add(_preBytes, 0x20)
            } lt(mc, end) {
            // Increase both counters by 32 bytes each iteration.
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
            // Write the _preBytes data into the tempBytes memory 32 bytes
            // at a time.
                mstore(mc, mload(cc))
            }

        // Add the length of _postBytes to the current length of tempBytes
        // and store it as the new length in the first 32 bytes of the
        // tempBytes memory.
            length := mload(_postBytes)
            mstore(tempBytes, add(length, mload(tempBytes)))

        // Move the memory counter back from a multiple of 0x20 to the
        // actual end of the _preBytes data.
            mc := end
        // Stop copying when the memory counter reaches the new combined
        // length of the arrays.
            end := add(mc, length)

            for {
                let cc := add(_postBytes, 0x20)
            } lt(mc, end) {
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
                mstore(mc, mload(cc))
            }

        // Update the free-memory pointer by padding our last write location
        // to 32 bytes: add 31 bytes to the end of tempBytes to move to the
        // next 32 byte block, then round down to the nearest multiple of
        // 32. If the sum of the length of the two arrays is zero then add
        // one before rounding down to leave a blank 32 bytes (the length block with 0).
            mstore(0x40, and(
            add(add(end, iszero(add(length, mload(_preBytes)))), 31),
            not(31) // Round down to the nearest 32 bytes.
            ))
        }

        return tempBytes;
    }

    function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal {
        assembly {
        // Read the first 32 bytes of _preBytes storage, which is the length
        // of the array. (We don't need to use the offset into the slot
        // because arrays use the entire slot.)
            let fslot := sload(_preBytes.slot)
        // Arrays of 31 bytes or less have an even value in their slot,
        // while longer arrays have an odd value. The actual length is
        // the slot divided by two for odd values, and the lowest order
        // byte divided by two for even values.
        // If the slot is even, bitwise and the slot with 255 and divide by
        // two to get the length. If the slot is odd, bitwise and the slot
        // with -1 and divide by two.
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)
            let newlength := add(slength, mlength)
        // slength can contain both the length and contents of the array
        // if length < 32 bytes so let's prepare for that
        // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
            switch add(lt(slength, 32), lt(newlength, 32))
            case 2 {
            // Since the new array still fits in the slot, we just need to
            // update the contents of the slot.
            // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length
                sstore(
                _preBytes.slot,
                // all the modifications to the slot are inside this
                // next block
                add(
                // we can just add to the slot contents because the
                // bytes we want to change are the LSBs
                fslot,
                add(
                mul(
                div(
                // load the bytes from memory
                mload(add(_postBytes, 0x20)),
                // zero all bytes to the right
                exp(0x100, sub(32, mlength))
                ),
                // and now shift left the number of bytes to
                // leave space for the length in the slot
                exp(0x100, sub(32, newlength))
                ),
                // increase length by the double of the memory
                // bytes length
                mul(mlength, 2)
                )
                )
                )
            }
            case 1 {
            // The stored value fits in the slot, but the combined value
            // will exceed it.
            // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

            // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

            // The contents of the _postBytes array start 32 bytes into
            // the structure. Our first read should obtain the `submod`
            // bytes that can fit into the unused space in the last word
            // of the stored array. To get this, we read 32 bytes starting
            // from `submod`, so the data we read overlaps with the array
            // contents by `submod` bytes. Masking the lowest-order
            // `submod` bytes allows us to add that value directly to the
            // stored value.

                let submod := sub(32, slength)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(
                sc,
                add(
                and(
                fslot,
                0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00
                ),
                and(mload(mc), mask)
                )
                )

                for {
                    mc := add(mc, 0x20)
                    sc := add(sc, 1)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
            default {
            // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
            // Start copying to the last used word of the stored array.
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

            // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

            // Copy over the first `submod` bytes of the new data as in
            // case 1 above.
                let slengthmod := mod(slength, 32)
                let mlengthmod := mod(mlength, 32)
                let submod := sub(32, slengthmod)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(sc, add(sload(sc), and(mload(mc), mask)))

                for {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
        }
    }

    function slice(
        bytes memory _bytes,
        uint256 _start,
        uint256 _length
    )
    internal
    pure
    returns (bytes memory)
    {
        require(_length + 31 >= _length, "slice_overflow");
        require(_bytes.length >= _start + _length, "slice_outOfBounds");

        bytes memory tempBytes;

        assembly {
            switch iszero(_length)
            case 0 {
            // Get a location of some free memory and store it in tempBytes as
            // Solidity does for memory variables.
                tempBytes := mload(0x40)

            // The first word of the slice result is potentially a partial
            // word read from the original array. To read it, we calculate
            // the length of that partial word and start copying that many
            // bytes into the array. The first word we copy will start with
            // data we don't care about, but the last `lengthmod` bytes will
            // land at the beginning of the contents of the new array. When
            // we're done copying, we overwrite the full first word with
            // the actual length of the slice.
                let lengthmod := and(_length, 31)

            // The multiplication in the next line is necessary
            // because when slicing multiples of 32 bytes (lengthmod == 0)
            // the following copy loop was copying the origin's length
            // and then ending prematurely not copying everything it should.
                let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)))
                let end := add(mc, _length)

                for {
                // The multiplication in the next line has the same exact purpose
                // as the one above.
                    let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start)
                } lt(mc, end) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                    mstore(mc, mload(cc))
                }

                mstore(tempBytes, _length)

            //update free-memory pointer
            //allocating the array padded to 32 bytes like the compiler does now
                mstore(0x40, and(add(mc, 31), not(31)))
            }
            //if we want a zero-length slice let's just return a zero-length array
            default {
                tempBytes := mload(0x40)
            //zero out the 32 bytes slice we are about to return
            //we need to do it because Solidity does not garbage collect
                mstore(tempBytes, 0)

                mstore(0x40, add(tempBytes, 0x20))
            }
        }

        return tempBytes;
    }

    function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) {
        require(_bytes.length >= _start + 20, "toAddress_outOfBounds");
        address tempAddress;

        assembly {
            tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000)
        }

        return tempAddress;
    }

    function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) {
        require(_bytes.length >= _start + 1 , "toUint8_outOfBounds");
        uint8 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x1), _start))
        }

        return tempUint;
    }

    function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) {
        require(_bytes.length >= _start + 2, "toUint16_outOfBounds");
        uint16 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x2), _start))
        }

        return tempUint;
    }

    function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) {
        require(_bytes.length >= _start + 4, "toUint32_outOfBounds");
        uint32 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x4), _start))
        }

        return tempUint;
    }

    function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) {
        require(_bytes.length >= _start + 8, "toUint64_outOfBounds");
        uint64 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x8), _start))
        }

        return tempUint;
    }

    function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) {
        require(_bytes.length >= _start + 12, "toUint96_outOfBounds");
        uint96 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0xc), _start))
        }

        return tempUint;
    }

    function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) {
        require(_bytes.length >= _start + 16, "toUint128_outOfBounds");
        uint128 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x10), _start))
        }

        return tempUint;
    }

    function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint256 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x20), _start))
        }

        return tempUint;
    }

    function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) {
        require(_bytes.length >= _start + 32, "toBytes32_outOfBounds");
        bytes32 tempBytes32;

        assembly {
            tempBytes32 := mload(add(add(_bytes, 0x20), _start))
        }

        return tempBytes32;
    }

    function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) {
        bool success = true;

        assembly {
            let length := mload(_preBytes)

        // if lengths don't match the arrays are not equal
            switch eq(length, mload(_postBytes))
            case 1 {
            // cb is a circuit breaker in the for loop since there's
            //  no said feature for inline assembly loops
            // cb = 1 - don't breaker
            // cb = 0 - break
                let cb := 1

                let mc := add(_preBytes, 0x20)
                let end := add(mc, length)

                for {
                    let cc := add(_postBytes, 0x20)
                // the next line is the loop condition:
                // while(uint256(mc < end) + cb == 2)
                } eq(add(lt(mc, end), cb), 2) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                // if any of these checks fails then arrays are not equal
                    if iszero(eq(mload(mc), mload(cc))) {
                    // unsuccess:
                        success := 0
                        cb := 0
                    }
                }
            }
            default {
            // unsuccess:
                success := 0
            }
        }

        return success;
    }

    function equalStorage(
        bytes storage _preBytes,
        bytes memory _postBytes
    )
    internal
    view
    returns (bool)
    {
        bool success = true;

        assembly {
        // we know _preBytes_offset is 0
            let fslot := sload(_preBytes.slot)
        // Decode the length of the stored array like in concatStorage().
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)

        // if lengths don't match the arrays are not equal
            switch eq(slength, mlength)
            case 1 {
            // slength can contain both the length and contents of the array
            // if length < 32 bytes so let's prepare for that
            // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
                if iszero(iszero(slength)) {
                    switch lt(slength, 32)
                    case 1 {
                    // blank the last byte which is the length
                        fslot := mul(div(fslot, 0x100), 0x100)

                        if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) {
                        // unsuccess:
                            success := 0
                        }
                    }
                    default {
                    // cb is a circuit breaker in the for loop since there's
                    //  no said feature for inline assembly loops
                    // cb = 1 - don't breaker
                    // cb = 0 - break
                        let cb := 1

                    // get the keccak hash to get the contents of the array
                        mstore(0x0, _preBytes.slot)
                        let sc := keccak256(0x0, 0x20)

                        let mc := add(_postBytes, 0x20)
                        let end := add(mc, mlength)

                    // the next line is the loop condition:
                    // while(uint256(mc < end) + cb == 2)
                        for {} eq(add(lt(mc, end), cb), 2) {
                            sc := add(sc, 1)
                            mc := add(mc, 0x20)
                        } {
                            if iszero(eq(sload(sc), mload(mc))) {
                            // unsuccess:
                                success := 0
                                cb := 0
                            }
                        }
                    }
                }
            }
            default {
            // unsuccess:
                success := 0
            }
        }

        return success;
    }
}

/*
 * a generic LzReceiver implementation
 */
abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig {
    using BytesLib for bytes;

    // ua can not send payload larger than this by default, but it can be changed by the ua owner
    uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10000;

    ILayerZeroEndpoint public immutable lzEndpoint;
    mapping(uint16 => bytes) public trustedRemoteLookup;
    mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup;
    mapping(uint16 => uint) public payloadSizeLimitLookup;
    address public precrime;

    event SetPrecrime(address precrime);
    event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
    event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
    event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas);

    constructor(address _endpoint) {
        lzEndpoint = ILayerZeroEndpoint(_endpoint);
    }

    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override {
        // lzReceive must be called by the endpoint for security
        require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller");

        bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
        // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
        require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract");

        _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
    function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;

    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual {
        bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
        require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source");
        _checkPayloadSize(_dstChainId, _payload.length);
        lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams);
    }

    function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual {
        uint providedGasLimit = _getGasLimit(_adapterParams);
        uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas;
        require(minGasLimit > 0, "LzApp: minGasLimit not set");
        require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low");
    }

    function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) {
        require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");
        assembly {
            gasLimit := mload(add(_adapterParams, 34))
        }
    }

    function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual {
        uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId];
        if (payloadSizeLimit == 0) { // use default if not set
            payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT;
        }
        require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large");
    }

    //---------------------------UserApplication config----------------------------------------
    function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) {
        return lzEndpoint.getConfig(_version, _chainId, address(this), _configType);
    }

    // generic config for LayerZero user Application
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner {
        lzEndpoint.setConfig(_version, _chainId, _configType, _config);
    }

    function setSendVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setSendVersion(_version);
    }

    function setReceiveVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setReceiveVersion(_version);
    }

    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner {
        lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress);
    }

    // _path = abi.encodePacked(remoteAddress, localAddress)
    // this function set the trusted path for the cross-chain communication
    function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = _path;
        emit SetTrustedRemote(_remoteChainId, _path);
    }

    function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this));
        emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress);
    }

    function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) {
        bytes memory path = trustedRemoteLookup[_remoteChainId];
        require(path.length != 0, "LzApp: no trusted path record");
        return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
    }

    function setPrecrime(address _precrime) external onlyOwner {
        precrime = _precrime;
        emit SetPrecrime(_precrime);
    }

    function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner {
        require(_minGas > 0, "LzApp: invalid minGas");
        minDstGasLookup[_dstChainId][_packetType] = _minGas;
        emit SetMinDstGas(_dstChainId, _packetType, _minGas);
    }

    // if the size is 0, it means default size limit
    function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner {
        payloadSizeLimitLookup[_dstChainId] = _size;
    }

    //--------------------------- VIEW FUNCTION ----------------------------------------
    function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) {
        bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
        return keccak256(trustedSource) == keccak256(_srcAddress);
    }
}

library ExcessivelySafeCall {
    uint256 constant LOW_28_MASK =
    0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := call(
            _gas, // gas
            _target, // recipient
            0, // ether value
            add(_calldata, 0x20), // inloc
            mload(_calldata), // inlen
            0, // outloc
            0 // outlen
            )
        // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
        // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
        // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeStaticCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal view returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := staticcall(
            _gas, // gas
            _target, // recipient
            add(_calldata, 0x20), // inloc
            mload(_calldata), // inlen
            0, // outloc
            0 // outlen
            )
        // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
        // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
        // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /**
     * @notice Swaps function selectors in encoded contract calls
     * @dev Allows reuse of encoded calldata for functions with identical
     * argument types but different names. It simply swaps out the first 4 bytes
     * for the new selector. This function modifies memory in place, and should
     * only be used with caution.
     * @param _newSelector The new 4-byte selector
     * @param _buf The encoded contract args
     */
    function swapSelector(bytes4 _newSelector, bytes memory _buf)
    internal
    pure
    {
        require(_buf.length >= 4);
        uint256 _mask = LOW_28_MASK;
        assembly {
        // load the first word of
            let _word := mload(add(_buf, 0x20))
        // mask out the top 4 bytes
        // /x
            _word := and(_word, _mask)
            _word := or(_newSelector, _word)
            mstore(add(_buf, 0x20), _word)
        }
    }
}

/*
 * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel
 * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
 * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
 */
abstract contract NonblockingLzApp is LzApp {
    using ExcessivelySafeCall for address;

    constructor(address _endpoint) LzApp(_endpoint) {}

    mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason);
    event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash);

    // overriding the virtual function in LzReceiver
    function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload));
        // try-catch all errors/exceptions
        if (!success) {
            _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason);
        }
    }

    function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual {
        failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
        emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason);
    }

    function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual {
        // only internal transaction
        require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp");
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    //@notice override this function
    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;

    function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual {
        // assert there is message to retry
        bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message");
        require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload");
        // clear the stored message
        failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
        // execute the message. revert if it fails again
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
        emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

abstract contract OFTCore is NonblockingLzApp, ERC165, IOFTCore {
    using BytesLib for bytes;

    uint public constant NO_EXTRA_GAS = 0;

    // packet type
    uint16 public constant PT_SEND = 0;

    bool public useCustomAdapterParams;

    constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {}

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IOFTCore).interfaceId || super.supportsInterface(interfaceId);
    }

    function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendFrom()
        bytes memory payload = abi.encode(PT_SEND, _toAddress, _amount);
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) public payable virtual override {
        _send(_from, _dstChainId, _toAddress, _amount, _refundAddress, _zroPaymentAddress, _adapterParams);
    }

    function setUseCustomAdapterParams(bool _useCustomAdapterParams) public virtual onlyOwner {
        useCustomAdapterParams = _useCustomAdapterParams;
        emit SetUseCustomAdapterParams(_useCustomAdapterParams);
    }

    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
        uint16 packetType;
        assembly {
            packetType := mload(add(_payload, 32))
        }

        if (packetType == PT_SEND) {
            _sendAck(_srcChainId, _srcAddress, _nonce, _payload);
        } else {
            revert("OFTCore: unknown packet type");
        }
    }

    function _send(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual {
        _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS);

        uint amount = _debitFrom(_from, _dstChainId, _toAddress, _amount);

        bytes memory lzPayload = abi.encode(PT_SEND, _toAddress, amount);
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

        emit SendToChain(_dstChainId, _from, _toAddress, amount);
    }

    function _sendAck(uint16 _srcChainId, bytes memory, uint64, bytes memory _payload) internal virtual {
        (, bytes memory toAddressBytes, uint amount) = abi.decode(_payload, (uint16, bytes, uint));

        address to = toAddressBytes.toAddress(0);

        amount = _creditTo(_srcChainId, to, amount);
        emit ReceiveFromChain(_srcChainId, to, amount);
    }

    function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual {
        if (useCustomAdapterParams) {
            _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas);
        } else {
            require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty.");
        }
    }

    function _debitFrom(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount) internal virtual returns(uint);

    function _creditTo(uint16 _srcChainId, address _toAddress, uint _amount) internal virtual returns(uint);
}

// override decimal() function is needed
contract OFT is OFTCore, ERC20, IOFT {
    constructor(string memory _name, string memory _symbol, address _lzEndpoint) ERC20(_name, _symbol) OFTCore(_lzEndpoint) {}

    function supportsInterface(bytes4 interfaceId) public view virtual override(OFTCore, IERC165) returns (bool) {
        return interfaceId == type(IOFT).interfaceId || interfaceId == type(IERC20).interfaceId || super.supportsInterface(interfaceId);
    }

    function token() public view virtual override returns (address) {
        return address(this);
    }

    function circulatingSupply() public view virtual override returns (uint) {
        return totalSupply();
    }

    function _debitFrom(address _from, uint16, bytes memory, uint _amount) internal virtual override returns(uint) {
        address spender = _msgSender();
        if (_from != spender) _spendAllowance(_from, spender, _amount);
        _burn(_from, _amount);
        return _amount;
    }

    function _creditTo(uint16, address _toAddress, uint _amount) internal virtual override returns(uint) {
        _mint(_toAddress, _amount);
        return _amount;
    }
}

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

contract MarathonOFT is OFT {
    uint public fee = 0 ether;
    address public marathonAddress;

    mapping(uint256 => address) internal runnerIdToClaimer;

    constructor(address _layerZeroEndpoint, uint _fee, address _marathonAddress) OFT("Marathon OFT", "MARA", _layerZeroEndpoint) {
      fee = _fee;
      marathonAddress = _marathonAddress;
    }

    function claimTokens(address _to, uint256[] memory runnerIds) external payable {
        require(msg.value >= runnerIds.length * fee, "Not enough ETH sent");
        
        for (uint i = 0; i < runnerIds.length; i++) {
          require(IERC721(marathonAddress).ownerOf(runnerIds[i]) == msg.sender, "Sender is not the owner of this runner.");
          require(runnerIdToClaimer[runnerIds[i]] == address(0), "This runner has already claimed their tokens.");
        }
        
        _mint(_to, runnerIds.length * 5);
        
        for (uint i = 0; i < runnerIds.length; i++) {
          runnerIdToClaimer[runnerIds[i]] = msg.sender;
        }
    }

    function sendBatchFrom(address _from, uint16[] memory _dstChainIds, bytes calldata _toAddress, uint[] memory _amounts, address payable _refundAddress, address _zroPaymentAddress, bytes[] memory _adapterParams, uint[] memory _nativeFees) public payable {
        require(_amounts.length == _dstChainIds.length, "MarathonOFT: amounts and dstChainIds length mismatch");
        require(_amounts.length == _adapterParams.length, "MarathonOFT: amounts and adapterParams length mismatch");
        require(_amounts.length == _nativeFees.length, "MarathonOFT: amounts and nativeFees length mismatch");
        require(_nativeFees.length == _dstChainIds.length, "MarathonOFT: nativeFees and dstChainIds length mismatch");
        require(_adapterParams.length == _dstChainIds.length, "MarathonOFT: nativeFees and dstChainIds length mismatch");
        require(_adapterParams.length == _nativeFees.length, "MarathonOFT: nativeFees and adapterParams length mismatch");

        for (uint i = 0; i < _dstChainIds.length; i++) {
            uint16 _dstChainId = _dstChainIds[i];
            bytes memory _adapterParam = _adapterParams[i];
            uint _amount = _amounts[i];
            uint _nativeFee = _nativeFees[i];

            _makeItRain(_from, _dstChainId, _toAddress, _amount, _refundAddress, _zroPaymentAddress, _adapterParam, _nativeFee);
        }

    }

    function _makeItRain(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual {
        require(_nativeFee > 0, "nativeFee must be > 0");
        _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS);

        uint amount = _debitFrom(_from, _dstChainId, _toAddress, _amount);

        bytes memory lzPayload = abi.encode(PT_SEND, _toAddress, amount);
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, _nativeFee);

        emit SendToChain(_dstChainId, _from, _toAddress, amount);
    }

    function setMarathonAddress(address a) public onlyOwner {
        marathonAddress = a;
    }

    function claimFees() external onlyOwner returns (bool) {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        return success;
    }

    function decimals() public pure override returns (uint8) {
        return 0;
    }

    function hasClaimedTokens(uint256 runnerId) public view returns (bool) {
      return runnerIdToClaimer[runnerId] != address(0);
    }

    function hasClaimedSomeTokens(uint256[] memory runnerIds) public view returns (bool[] memory) {
      bool[] memory hasClaimed = new bool[](runnerIds.length);

      for (uint i = 0; i < runnerIds.length; i++) {
        hasClaimed[i] = hasClaimedTokens(runnerIds[i]);
      }
      return hasClaimed;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"address","name":"_marathonAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","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":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","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":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","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":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"runnerIds","type":"uint256[]"}],"name":"claimTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"runnerIds","type":"uint256[]"}],"name":"hasClaimedSomeTokens","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"runnerId","type":"uint256"}],"name":"hasClaimedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marathonAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16[]","name":"_dstChainIds","type":"uint16[]"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes[]","name":"_adapterParams","type":"bytes[]"},{"internalType":"uint256[]","name":"_nativeFees","type":"uint256[]"}],"name":"sendBatchFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"setMarathonAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"amount","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":"amount","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"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60a06040526000600c553480156200001657600080fd5b50604051620044cd380380620044cd83398101604081905262000039916200021f565b6040518060400160405280600c81526020016b13585c985d1a1bdb8813d19560a21b815250604051806040016040528060048152602001634d41524160e01b8152508482828280806200009b620000956200010860201b60201c565b6200010c565b6001600160a01b031660805250508151620000be90600a9060208501906200015c565b508051620000d490600b9060208401906200015c565b505050600c949094555050600d80546001600160a01b0319166001600160a01b0392909216919091179055506200029d9050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200016a9062000260565b90600052602060002090601f0160209004810192826200018e5760008555620001d9565b82601f10620001a957805160ff1916838001178555620001d9565b82800160010185558215620001d9579182015b82811115620001d9578251825591602001919060010190620001bc565b50620001e7929150620001eb565b5090565b5b80821115620001e75760008155600101620001ec565b80516001600160a01b03811681146200021a57600080fd5b919050565b6000806000606084860312156200023557600080fd5b620002408462000202565b925060208401519150620002576040850162000202565b90509250925092565b600181811c908216806200027557607f821691505b602082108114156200029757634e487b7160e01b600052602260045260246000fd5b50919050565b6080516141dc620002f16000396000818161080801528181610a1901528181610d3801528181610df801528181611133015281816112d001528181611908015281816121000152612cea01526141dc6000f3fe6080604052600436106103195760003560e01c80638da5cb5b116101ab578063c82e337e116100f7578063e685e54111610095578063ed629c5c1161006f578063ed629c5c146109a9578063f2fde38b146109c3578063f5ecbdbc146109e3578063fc0c546a14610a0357600080fd5b8063e685e54114610956578063eab45d9c14610969578063eb8d72b71461098957600080fd5b8063d294f093116100d1578063d294f093146108eb578063dd62ed3e14610900578063ddca3f4314610920578063df2a5b3b1461093657600080fd5b8063c82e337e14610898578063cbed8b9c146108b8578063d1deba1f146108d857600080fd5b8063a6c3d16511610164578063b353aaa71161013e578063b353aaa7146107f6578063baf3292d1461082a578063c17c7aee1461084a578063c44618341461088257600080fd5b8063a6c3d16514610789578063a8984e56146107a9578063a9059cbb146107d657600080fd5b80638da5cb5b146106e15780639358928b146106ff578063950c8a741461071457806395d89b41146107345780639f38369a14610749578063a457c2d71461076957600080fd5b80633d8b38f61161026a5780635b8c41e61161022357806370a08231116101fd57806370a082311461063e578063715018a6146106745780637533d788146106895780638cfd8f5c146106a957600080fd5b80635b8c41e61461059757806366ad5c8a146105e6578063695cc64b1461060657600080fd5b80633d8b38f6146104da5780633f1f4fa4146104fa57806342d65a8d1461052757806344770515146105475780634c42899a1461055c578063519056361461058457600080fd5b806310ddb137116102d757806326b89ad7116102b157806326b89ad7146104565780632a205e3d14610469578063313ce5671461049e57806339509351146104ba57600080fd5b806310ddb137146103f757806318160ddd1461041757806323b872dd1461043657600080fd5b80621d35671461031e57806301ffc9a71461034057806306fdde031461037557806307e0db1714610397578063095ea7b3146103b75780630df37483146103d7575b600080fd5b34801561032a57600080fd5b5061033e6103393660046132bf565b610a16565b005b34801561034c57600080fd5b5061036061035b366004613354565b610c47565b60405190151581526020015b60405180910390f35b34801561038157600080fd5b5061038a610c85565b60405161036c91906133d6565b3480156103a357600080fd5b5061033e6103b23660046133e9565b610d17565b3480156103c357600080fd5b506103606103d2366004613426565b610da0565b3480156103e357600080fd5b5061033e6103f2366004613452565b610db8565b34801561040357600080fd5b5061033e6104123660046133e9565b610dd7565b34801561042357600080fd5b506009545b60405190815260200161036c565b34801561044257600080fd5b50610360610451366004613470565b610e2f565b61033e610464366004613585565b610e53565b34801561047557600080fd5b506104896104843660046135e4565b6110f0565b6040805192835260208301919091520161036c565b3480156104aa57600080fd5b506040516000815260200161036c565b3480156104c657600080fd5b506103606104d5366004613426565b6111c3565b3480156104e657600080fd5b506103606104f5366004613683565b6111e5565b34801561050657600080fd5b506104286105153660046133e9565b60036020526000908152604090205481565b34801561053357600080fd5b5061033e610542366004613683565b6112b1565b34801561055357600080fd5b50610428600081565b34801561056857600080fd5b50610571600081565b60405161ffff909116815260200161036c565b61033e6105923660046136d7565b611337565b3480156105a357600080fd5b506104286105b2366004613818565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156105f257600080fd5b5061033e6106013660046132bf565b6113bc565b34801561061257600080fd5b50600d54610626906001600160a01b031681565b6040516001600160a01b03909116815260200161036c565b34801561064a57600080fd5b50610428610659366004613877565b6001600160a01b031660009081526007602052604090205490565b34801561068057600080fd5b5061033e611498565b34801561069557600080fd5b5061038a6106a43660046133e9565b6114ac565b3480156106b557600080fd5b506104286106c4366004613894565b600260209081526000928352604080842090915290825290205481565b3480156106ed57600080fd5b506000546001600160a01b0316610626565b34801561070b57600080fd5b50610428611546565b34801561072057600080fd5b50600454610626906001600160a01b031681565b34801561074057600080fd5b5061038a611556565b34801561075557600080fd5b5061038a6107643660046133e9565b611565565b34801561077557600080fd5b50610360610784366004613426565b61167c565b34801561079557600080fd5b5061033e6107a4366004613683565b6116f7565b3480156107b557600080fd5b506107c96107c43660046138cd565b61178a565b60405161036c9190613909565b3480156107e257600080fd5b506103606107f1366004613426565b611854565b34801561080257600080fd5b506106267f000000000000000000000000000000000000000000000000000000000000000081565b34801561083657600080fd5b5061033e610845366004613877565b611862565b34801561085657600080fd5b5061036061086536600461394f565b6000908152600e60205260409020546001600160a01b0316151590565b34801561088e57600080fd5b5061042861271081565b3480156108a457600080fd5b5061033e6108b3366004613877565b6118bf565b3480156108c457600080fd5b5061033e6108d3366004613968565b6118e9565b61033e6108e63660046132bf565b611973565b3480156108f757600080fd5b50610360611b89565b34801561090c57600080fd5b5061042861091b3660046139da565b611be3565b34801561092c57600080fd5b50610428600c5481565b34801561094257600080fd5b5061033e610951366004613a08565b611c0e565b61033e610964366004613b1b565b611cc0565b34801561097557600080fd5b5061033e610984366004613c23565b611fb3565b34801561099557600080fd5b5061033e6109a4366004613683565b611ffc565b3480156109b557600080fd5b506006546103609060ff1681565b3480156109cf57600080fd5b5061033e6109de366004613877565b612056565b3480156109ef57600080fd5b5061038a6109fe366004613c3e565b6120cf565b348015610a0f57600080fd5b5030610626565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610a935760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610ab190613c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610add90613c8f565b8015610b2a5780601f10610aff57610100808354040283529160200191610b2a565b820191906000526020600020905b815481529060010190602001808311610b0d57829003601f168201915b50505050509050805186869050148015610b45575060008151115b8015610b6d575080516020820120604051610b639088908890613cca565b6040518091039020145b610bc85760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610a8a565b610c3e8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061218092505050565b50505050505050565b60006001600160e01b031982161580610c7057506001600160e01b031982166336372b0760e01b145b80610c7f5750610c7f826121f9565b92915050565b6060600a8054610c9490613c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc090613c8f565b8015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b820191906000526020600020905b815481529060010190602001808311610cf057829003601f168201915b5050505050905090565b610d1f61222e565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610d8557600080fd5b505af1158015610d99573d6000803e3d6000fd5b5050505050565b600033610dae818585612288565b5060019392505050565b610dc061222e565b61ffff909116600090815260036020526040902055565b610ddf61222e565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610d6b565b600033610e3d8582856123ac565b610e48858585612426565b506001949350505050565b600c548151610e629190613cf0565b341015610ea75760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610a8a565b60005b815181101561106357600d54825133916001600160a01b031690636352211e90859085908110610edc57610edc613d0f565b60200260200101516040518263ffffffff1660e01b8152600401610f0291815260200190565b602060405180830381865afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f439190613d25565b6001600160a01b031614610fa95760405162461bcd60e51b815260206004820152602760248201527f53656e646572206973206e6f7420746865206f776e6572206f66207468697320604482015266393ab73732b91760c91b6064820152608401610a8a565b60006001600160a01b0316600e6000848481518110610fca57610fca613d0f565b6020908102919091018101518252810191909152604001600020546001600160a01b0316146110515760405162461bcd60e51b815260206004820152602d60248201527f546869732072756e6e65722068617320616c726561647920636c61696d65642060448201526c3a3432b4b9103a37b5b2b7399760991b6064820152608401610a8a565b8061105b81613d42565b915050610eaa565b5061107b82825160056110769190613cf0565b6125d1565b60005b81518110156110eb5733600e600084848151811061109e5761109e613d0f565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080806110e390613d42565b91505061107e565b505050565b60008060008089898960405160200161110c9493929190613d86565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090611172908d90309086908c908c908c90600401613db5565b6040805180830381865afa15801561118e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b29190613e0b565b925092505097509795505050505050565b600033610dae8185856111d68383611be3565b6111e09190613e2f565b612288565b61ffff83166000908152600160205260408120805482919061120690613c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461123290613c8f565b801561127f5780601f106112545761010080835404028352916020019161127f565b820191906000526020600020905b81548152906001019060200180831161126257829003601f168201915b505050505090508383604051611296929190613cca565b60405180910390208180519060200120149150509392505050565b6112b961222e565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d9061130990869086908690600401613e47565b600060405180830381600087803b15801561132357600080fd5b505af1158015610c3e573d6000803e3d6000fd5b6113b1898989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528c93508b92508a918a908a908190840183828082843760009201919091525061269292505050565b505050505050505050565b33301461141a5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610a8a565b6114908686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f89018190048102820181019092528781528993509150879087908190840183828082843760009201919091525061273992505050565b505050505050565b6114a061222e565b6114aa60006127a0565b565b600160205260009081526040902080546114c590613c8f565b80601f01602080910402602001604051908101604052809291908181526020018280546114f190613c8f565b801561153e5780601f106115135761010080835404028352916020019161153e565b820191906000526020600020905b81548152906001019060200180831161152157829003601f168201915b505050505081565b600061155160095490565b905090565b6060600b8054610c9490613c8f565b61ffff811660009081526001602052604081208054606092919061158890613c8f565b80601f01602080910402602001604051908101604052809291908181526020018280546115b490613c8f565b80156116015780601f106115d657610100808354040283529160200191611601565b820191906000526020600020905b8154815290600101906020018083116115e457829003601f168201915b5050505050905080516000141561165a5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610a8a565b61167560006014835161166d9190613e65565b8391906127f0565b9392505050565b6000338161168a8286611be3565b9050838110156116ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a8a565b610e488286868403612288565b6116ff61222e565b81813060405160200161171493929190613e7c565b60408051601f1981840301815291815261ffff851660009081526001602090815291902082516117499391929091019061313e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161177d93929190613e47565b60405180910390a1505050565b6060600082516001600160401b038111156117a7576117a76134b1565b6040519080825280602002602001820160405280156117d0578160200160208202803683370190505b50905060005b835181101561184d576118198482815181106117f4576117f4613d0f565b60200260200101516000908152600e60205260409020546001600160a01b0316151590565b82828151811061182b5761182b613d0f565b911515602092830291909101909101528061184581613d42565b9150506117d6565b5092915050565b600033610dae818585612426565b61186a61222e565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020015b60405180910390a150565b6118c761222e565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6118f161222e565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c906119459088908890889088908890600401613ea2565b600060405180830381600087803b15801561195f57600080fd5b505af11580156113b1573d6000803e3d6000fd5b61ffff861660009081526005602052604080822090516119969088908890613cca565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080611a165760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610a8a565b808383604051611a27929190613cca565b604051809103902014611a865760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610a8a565b61ffff87166000908152600560205260408082209051611aa99089908990613cca565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252611b41918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061273992505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611b78959493929190613edb565b60405180910390a150505050505050565b6000611b9361222e565b604051600090339047908381818185875af1925050503d8060008114611bd5576040519150601f19603f3d011682016040523d82523d6000602084013e611bda565b606091505b50909250505090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b611c1661222e565b60008111611c5e5760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606401610a8a565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161177d565b8751855114611d2e5760405162461bcd60e51b815260206004820152603460248201527f4d61726174686f6e4f46543a20616d6f756e747320616e6420647374436861696044820152730dc92c8e640d8cadccee8d040dad2e6dac2e8c6d60631b6064820152608401610a8a565b8151855114611d9e5760405162461bcd60e51b815260206004820152603660248201527f4d61726174686f6e4f46543a20616d6f756e747320616e6420616461707465726044820152750a0c2e4c2dae640d8cadccee8d040dad2e6dac2e8c6d60531b6064820152608401610a8a565b8051855114611e0b5760405162461bcd60e51b815260206004820152603360248201527f4d61726174686f6e4f46543a20616d6f756e747320616e64206e6174697665466044820152720cacae640d8cadccee8d040dad2e6dac2e8c6d606b1b6064820152608401610a8a565b8751815114611e2c5760405162461bcd60e51b8152600401610a8a90613f16565b8751825114611e4d5760405162461bcd60e51b8152600401610a8a90613f16565b8051825114611ec45760405162461bcd60e51b815260206004820152603960248201527f4d61726174686f6e4f46543a206e61746976654665657320616e64206164617060448201527f746572506172616d73206c656e677468206d69736d61746368000000000000006064820152608401610a8a565b60005b8851811015611fa7576000898281518110611ee457611ee4613d0f565b602002602001015190506000848381518110611f0257611f02613d0f565b602002602001015190506000888481518110611f2057611f20613d0f565b602002602001015190506000858581518110611f3e57611f3e613d0f565b60200260200101519050611f908e858e8e8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508892508f91508e905089886128fd565b505050508080611f9f90613d42565b915050611ec7565b50505050505050505050565b611fbb61222e565b6006805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a4906020016118b4565b61200461222e565b61ffff831660009081526001602052604090206120229083836131c2565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161177d93929190613e47565b61205e61222e565b6001600160a01b0381166120c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8a565b6120cc816127a0565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa15801561214f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121779190810190613fb8565b95945050505050565b6000806121e35a60966366ad5c8a60e01b898989896040516024016121a89493929190613fec565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152309291906129ed565b9150915081611490576114908686868685612a77565b60006001600160e01b03198216630a72677560e11b1480610c7f57506301ffc9a760e01b6001600160e01b0319831614610c7f565b6000546001600160a01b031633146114aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8a565b6001600160a01b0383166122ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a8a565b6001600160a01b03821661234b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a8a565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006123b88484611be3565b9050600019811461242057818110156124135760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a8a565b6124208484848403612288565b50505050565b6001600160a01b03831661248a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a8a565b6001600160a01b0382166124ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a8a565b6001600160a01b038316600090815260076020526040902054818110156125645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a8a565b6001600160a01b0380851660008181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906125c49086815260200190565b60405180910390a3612420565b6001600160a01b0382166126275760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a8a565b80600960008282546126399190613e2f565b90915550506001600160a01b0382166000818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6126a0866000836000612b14565b60006126ae88888888612b8e565b905060008087836040516020016126c79392919061402a565b60405160208183030381529060405290506126e6888287878734612bc0565b886001600160a01b03168861ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08985604051612726929190614057565b60405180910390a3505050505050505050565b602081015161ffff81166127585761275385858585612d66565b610d99565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610a8a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060816127fe81601f613e2f565b101561283d5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610a8a565b6128478284613e2f565b8451101561288b5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610a8a565b6060821580156128aa57604051915060008252602082016040526128f4565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156128e35780518352602092830192016128cb565b5050858452601f01601f1916604052505b50949350505050565b600081116129455760405162461bcd60e51b815260206004820152601560248201527406e6174697665466565206d757374206265203e203605c1b6044820152606401610a8a565b612953876000846000612b14565b600061296189898989612b8e565b9050600080888360405160200161297a9392919061402a565b6040516020818303038152906040529050612999898288888888612bc0565b896001600160a01b03168961ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08a856040516129d9929190614057565b60405180910390a350505050505050505050565b6000606060008060008661ffff166001600160401b03811115612a1257612a126134b1565b6040519080825280601f01601f191660200182016040528015612a3c576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115612a5e578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff16815260200190815260200160002085604051612aa89190614079565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612b059087908790879087908790614095565b60405180910390a15050505050565b60065460ff1615612b3057612b2b84848484612df0565b612420565b8151156124205760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608401610a8a565b6000336001600160a01b0386168114612bac57612bac8682856123ac565b612bb68684612ecf565b5090949350505050565b61ffff861660009081526001602052604081208054612bde90613c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054612c0a90613c8f565b8015612c575780601f10612c2c57610100808354040283529160200191612c57565b820191906000526020600020905b815481529060010190602001808311612c3a57829003601f168201915b50505050509050805160001415612cc95760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610a8a565b612cd4878751613003565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c5803100908490612d2b908b9086908c908c908c908c906004016140f3565b6000604051808303818588803b158015612d4457600080fd5b505af1158015612d58573d6000803e3d6000fd5b505050505050505050505050565b60008082806020019051810190612d7d919061414d565b909350915060009050612d908382613071565b9050612d9d8782846130d6565b9150806001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf84604051612ddf91815260200190565b60405180910390a350505050505050565b6000612dfb836130e2565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090612e2d908490613e2f565b905060008111612e7f5760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610a8a565b808210156114905760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610a8a565b6001600160a01b038216612f2f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a8a565b6001600160a01b03821660009081526007602052604090205481811015612fa35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a8a565b6001600160a01b03831660008181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82166000908152600360205260409020548061302157506127105b808211156110eb5760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610a8a565b600061307e826014613e2f565b835110156130c65760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610a8a565b500160200151600160601b900490565b600061184d83836125d1565b60006022825110156131365760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610a8a565b506022015190565b82805461314a90613c8f565b90600052602060002090601f01602090048101928261316c57600085556131b2565b82601f1061318557805160ff19168380011785556131b2565b828001600101855582156131b2579182015b828111156131b2578251825591602001919060010190613197565b506131be929150613236565b5090565b8280546131ce90613c8f565b90600052602060002090601f0160209004810192826131f057600085556131b2565b82601f106132095782800160ff198235161785556131b2565b828001600101855582156131b2579182015b828111156131b257823582559160200191906001019061321b565b5b808211156131be5760008155600101613237565b61ffff811681146120cc57600080fd5b60008083601f84011261326d57600080fd5b5081356001600160401b0381111561328457600080fd5b60208301915083602082850101111561329c57600080fd5b9250929050565b80356001600160401b03811681146132ba57600080fd5b919050565b600080600080600080608087890312156132d857600080fd5b86356132e38161324b565b955060208701356001600160401b03808211156132ff57600080fd5b61330b8a838b0161325b565b909750955085915061331f60408a016132a3565b9450606089013591508082111561333557600080fd5b5061334289828a0161325b565b979a9699509497509295939492505050565b60006020828403121561336657600080fd5b81356001600160e01b03198116811461167557600080fd5b60005b83811015613399578181015183820152602001613381565b838111156124205750506000910152565b600081518084526133c281602086016020860161337e565b601f01601f19169290920160200192915050565b60208152600061167560208301846133aa565b6000602082840312156133fb57600080fd5b81356116758161324b565b6001600160a01b03811681146120cc57600080fd5b80356132ba81613406565b6000806040838503121561343957600080fd5b823561344481613406565b946020939093013593505050565b6000806040838503121561346557600080fd5b82356134448161324b565b60008060006060848603121561348557600080fd5b833561349081613406565b925060208401356134a081613406565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156134ef576134ef6134b1565b604052919050565b60006001600160401b03821115613510576135106134b1565b5060051b60200190565b600082601f83011261352b57600080fd5b8135602061354061353b836134f7565b6134c7565b82815260059290921b8401810191818101908684111561355f57600080fd5b8286015b8481101561357a5780358352918301918301613563565b509695505050505050565b6000806040838503121561359857600080fd5b82356135a381613406565b915060208301356001600160401b038111156135be57600080fd5b6135ca8582860161351a565b9150509250929050565b803580151581146132ba57600080fd5b600080600080600080600060a0888a0312156135ff57600080fd5b873561360a8161324b565b965060208801356001600160401b038082111561362657600080fd5b6136328b838c0161325b565b909850965060408a0135955086915061364d60608b016135d4565b945060808a013591508082111561366357600080fd5b506136708a828b0161325b565b989b979a50959850939692959293505050565b60008060006040848603121561369857600080fd5b83356136a38161324b565b925060208401356001600160401b038111156136be57600080fd5b6136ca8682870161325b565b9497909650939450505050565b600080600080600080600080600060e08a8c0312156136f557600080fd5b893561370081613406565b985060208a01356137108161324b565b975060408a01356001600160401b038082111561372c57600080fd5b6137388d838e0161325b565b909950975060608c0135965060808c0135915061375482613406565b90945060a08b01359061376682613406565b90935060c08b0135908082111561377c57600080fd5b506137898c828d0161325b565b915080935050809150509295985092959850929598565b60006001600160401b038211156137b9576137b96134b1565b50601f01601f191660200190565b600082601f8301126137d857600080fd5b81356137e661353b826137a0565b8181528460208386010111156137fb57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561382d57600080fd5b83356138388161324b565b925060208401356001600160401b0381111561385357600080fd5b61385f868287016137c7565b92505061386e604085016132a3565b90509250925092565b60006020828403121561388957600080fd5b813561167581613406565b600080604083850312156138a757600080fd5b82356138b28161324b565b915060208301356138c28161324b565b809150509250929050565b6000602082840312156138df57600080fd5b81356001600160401b038111156138f557600080fd5b6139018482850161351a565b949350505050565b6020808252825182820181905260009190848201906040850190845b81811015613943578351151583529284019291840191600101613925565b50909695505050505050565b60006020828403121561396157600080fd5b5035919050565b60008060008060006080868803121561398057600080fd5b853561398b8161324b565b9450602086013561399b8161324b565b93506040860135925060608601356001600160401b038111156139bd57600080fd5b6139c98882890161325b565b969995985093965092949392505050565b600080604083850312156139ed57600080fd5b82356139f881613406565b915060208301356138c281613406565b600080600060608486031215613a1d57600080fd5b8335613a288161324b565b925060208401356134a08161324b565b600082601f830112613a4957600080fd5b81356020613a5961353b836134f7565b82815260059290921b84018101918181019086841115613a7857600080fd5b8286015b8481101561357a578035613a8f8161324b565b8352918301918301613a7c565b600082601f830112613aad57600080fd5b81356020613abd61353b836134f7565b82815260059290921b84018101918181019086841115613adc57600080fd5b8286015b8481101561357a5780356001600160401b03811115613aff5760008081fd5b613b0d8986838b01016137c7565b845250918301918301613ae0565b60008060008060008060008060006101008a8c031215613b3a57600080fd5b613b438a61341b565b985060208a01356001600160401b0380821115613b5f57600080fd5b613b6b8d838e01613a38565b995060408c0135915080821115613b8157600080fd5b613b8d8d838e0161325b565b909950975060608c0135915080821115613ba657600080fd5b613bb28d838e0161351a565b9650613bc060808d0161341b565b9550613bce60a08d0161341b565b945060c08c0135915080821115613be457600080fd5b613bf08d838e01613a9c565b935060e08c0135915080821115613c0657600080fd5b50613c138c828d0161351a565b9150509295985092959850929598565b600060208284031215613c3557600080fd5b611675826135d4565b60008060008060808587031215613c5457600080fd5b8435613c5f8161324b565b93506020850135613c6f8161324b565b92506040850135613c7f81613406565b9396929550929360600135925050565b600181811c90821680613ca357607f821691505b60208210811415613cc457634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613d0a57613d0a613cda565b500290565b634e487b7160e01b600052603260045260246000fd5b600060208284031215613d3757600080fd5b815161167581613406565b6000600019821415613d5657613d56613cda565b5060010190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff85168152606060208201526000613da4606083018587613d5d565b905082604083015295945050505050565b61ffff871681526001600160a01b038616602082015260a060408201819052600090613de3908301876133aa565b85151560608401528281036080840152613dfe818587613d5d565b9998505050505050505050565b60008060408385031215613e1e57600080fd5b505080516020909101519092909150565b60008219821115613e4257613e42613cda565b500190565b61ffff84168152604060208201526000612177604083018486613d5d565b600082821015613e7757613e77613cda565b500390565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b600061ffff808816835280871660208401525084604083015260806060830152613ed0608083018486613d5d565b979650505050505050565b61ffff86168152608060208201526000613ef9608083018688613d5d565b6001600160401b0394909416604083015250606001529392505050565b60208082526037908201527f4d61726174686f6e4f46543a206e61746976654665657320616e64206473744360408201527f6861696e496473206c656e677468206d69736d61746368000000000000000000606082015260800190565b600082601f830112613f8457600080fd5b8151613f9261353b826137a0565b818152846020838601011115613fa757600080fd5b61390182602083016020870161337e565b600060208284031215613fca57600080fd5b81516001600160401b03811115613fe057600080fd5b61390184828501613f73565b61ffff8516815260806020820152600061400960808301866133aa565b6001600160401b03851660408401528281036060840152613ed081856133aa565b61ffff8416815260606020820152600061404760608301856133aa565b9050826040830152949350505050565b60408152600061406a60408301856133aa565b90508260208301529392505050565b6000825161408b81846020870161337e565b9190910192915050565b61ffff8616815260a0602082015260006140b260a08301876133aa565b6001600160401b038616604084015282810360608401526140d381866133aa565b905082810360808401526140e781856133aa565b98975050505050505050565b61ffff8716815260c06020820152600061411060c08301886133aa565b828103604084015261412281886133aa565b6001600160a01b0387811660608601528616608085015283810360a08501529050613dfe81856133aa565b60008060006060848603121561416257600080fd5b835161416d8161324b565b60208501519093506001600160401b0381111561418957600080fd5b61419586828701613f73565b92505060408401519050925092509256fea2646970667358221220fa1982b56c35a1fb3ddadefa8bdf5a1b5b1c5bd304d9f4c4456624dba5d6b3bd64736f6c634300080c003300000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ff6a890249bcc6ab071c17a66db4c327154604c

Deployed Bytecode

0x6080604052600436106103195760003560e01c80638da5cb5b116101ab578063c82e337e116100f7578063e685e54111610095578063ed629c5c1161006f578063ed629c5c146109a9578063f2fde38b146109c3578063f5ecbdbc146109e3578063fc0c546a14610a0357600080fd5b8063e685e54114610956578063eab45d9c14610969578063eb8d72b71461098957600080fd5b8063d294f093116100d1578063d294f093146108eb578063dd62ed3e14610900578063ddca3f4314610920578063df2a5b3b1461093657600080fd5b8063c82e337e14610898578063cbed8b9c146108b8578063d1deba1f146108d857600080fd5b8063a6c3d16511610164578063b353aaa71161013e578063b353aaa7146107f6578063baf3292d1461082a578063c17c7aee1461084a578063c44618341461088257600080fd5b8063a6c3d16514610789578063a8984e56146107a9578063a9059cbb146107d657600080fd5b80638da5cb5b146106e15780639358928b146106ff578063950c8a741461071457806395d89b41146107345780639f38369a14610749578063a457c2d71461076957600080fd5b80633d8b38f61161026a5780635b8c41e61161022357806370a08231116101fd57806370a082311461063e578063715018a6146106745780637533d788146106895780638cfd8f5c146106a957600080fd5b80635b8c41e61461059757806366ad5c8a146105e6578063695cc64b1461060657600080fd5b80633d8b38f6146104da5780633f1f4fa4146104fa57806342d65a8d1461052757806344770515146105475780634c42899a1461055c578063519056361461058457600080fd5b806310ddb137116102d757806326b89ad7116102b157806326b89ad7146104565780632a205e3d14610469578063313ce5671461049e57806339509351146104ba57600080fd5b806310ddb137146103f757806318160ddd1461041757806323b872dd1461043657600080fd5b80621d35671461031e57806301ffc9a71461034057806306fdde031461037557806307e0db1714610397578063095ea7b3146103b75780630df37483146103d7575b600080fd5b34801561032a57600080fd5b5061033e6103393660046132bf565b610a16565b005b34801561034c57600080fd5b5061036061035b366004613354565b610c47565b60405190151581526020015b60405180910390f35b34801561038157600080fd5b5061038a610c85565b60405161036c91906133d6565b3480156103a357600080fd5b5061033e6103b23660046133e9565b610d17565b3480156103c357600080fd5b506103606103d2366004613426565b610da0565b3480156103e357600080fd5b5061033e6103f2366004613452565b610db8565b34801561040357600080fd5b5061033e6104123660046133e9565b610dd7565b34801561042357600080fd5b506009545b60405190815260200161036c565b34801561044257600080fd5b50610360610451366004613470565b610e2f565b61033e610464366004613585565b610e53565b34801561047557600080fd5b506104896104843660046135e4565b6110f0565b6040805192835260208301919091520161036c565b3480156104aa57600080fd5b506040516000815260200161036c565b3480156104c657600080fd5b506103606104d5366004613426565b6111c3565b3480156104e657600080fd5b506103606104f5366004613683565b6111e5565b34801561050657600080fd5b506104286105153660046133e9565b60036020526000908152604090205481565b34801561053357600080fd5b5061033e610542366004613683565b6112b1565b34801561055357600080fd5b50610428600081565b34801561056857600080fd5b50610571600081565b60405161ffff909116815260200161036c565b61033e6105923660046136d7565b611337565b3480156105a357600080fd5b506104286105b2366004613818565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156105f257600080fd5b5061033e6106013660046132bf565b6113bc565b34801561061257600080fd5b50600d54610626906001600160a01b031681565b6040516001600160a01b03909116815260200161036c565b34801561064a57600080fd5b50610428610659366004613877565b6001600160a01b031660009081526007602052604090205490565b34801561068057600080fd5b5061033e611498565b34801561069557600080fd5b5061038a6106a43660046133e9565b6114ac565b3480156106b557600080fd5b506104286106c4366004613894565b600260209081526000928352604080842090915290825290205481565b3480156106ed57600080fd5b506000546001600160a01b0316610626565b34801561070b57600080fd5b50610428611546565b34801561072057600080fd5b50600454610626906001600160a01b031681565b34801561074057600080fd5b5061038a611556565b34801561075557600080fd5b5061038a6107643660046133e9565b611565565b34801561077557600080fd5b50610360610784366004613426565b61167c565b34801561079557600080fd5b5061033e6107a4366004613683565b6116f7565b3480156107b557600080fd5b506107c96107c43660046138cd565b61178a565b60405161036c9190613909565b3480156107e257600080fd5b506103606107f1366004613426565b611854565b34801561080257600080fd5b506106267f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67581565b34801561083657600080fd5b5061033e610845366004613877565b611862565b34801561085657600080fd5b5061036061086536600461394f565b6000908152600e60205260409020546001600160a01b0316151590565b34801561088e57600080fd5b5061042861271081565b3480156108a457600080fd5b5061033e6108b3366004613877565b6118bf565b3480156108c457600080fd5b5061033e6108d3366004613968565b6118e9565b61033e6108e63660046132bf565b611973565b3480156108f757600080fd5b50610360611b89565b34801561090c57600080fd5b5061042861091b3660046139da565b611be3565b34801561092c57600080fd5b50610428600c5481565b34801561094257600080fd5b5061033e610951366004613a08565b611c0e565b61033e610964366004613b1b565b611cc0565b34801561097557600080fd5b5061033e610984366004613c23565b611fb3565b34801561099557600080fd5b5061033e6109a4366004613683565b611ffc565b3480156109b557600080fd5b506006546103609060ff1681565b3480156109cf57600080fd5b5061033e6109de366004613877565b612056565b3480156109ef57600080fd5b5061038a6109fe366004613c3e565b6120cf565b348015610a0f57600080fd5b5030610626565b337f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b031614610a935760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610ab190613c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610add90613c8f565b8015610b2a5780601f10610aff57610100808354040283529160200191610b2a565b820191906000526020600020905b815481529060010190602001808311610b0d57829003601f168201915b50505050509050805186869050148015610b45575060008151115b8015610b6d575080516020820120604051610b639088908890613cca565b6040518091039020145b610bc85760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610a8a565b610c3e8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061218092505050565b50505050505050565b60006001600160e01b031982161580610c7057506001600160e01b031982166336372b0760e01b145b80610c7f5750610c7f826121f9565b92915050565b6060600a8054610c9490613c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc090613c8f565b8015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b820191906000526020600020905b815481529060010190602001808311610cf057829003601f168201915b5050505050905090565b610d1f61222e565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610d8557600080fd5b505af1158015610d99573d6000803e3d6000fd5b5050505050565b600033610dae818585612288565b5060019392505050565b610dc061222e565b61ffff909116600090815260036020526040902055565b610ddf61222e565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906310ddb13790602401610d6b565b600033610e3d8582856123ac565b610e48858585612426565b506001949350505050565b600c548151610e629190613cf0565b341015610ea75760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610a8a565b60005b815181101561106357600d54825133916001600160a01b031690636352211e90859085908110610edc57610edc613d0f565b60200260200101516040518263ffffffff1660e01b8152600401610f0291815260200190565b602060405180830381865afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f439190613d25565b6001600160a01b031614610fa95760405162461bcd60e51b815260206004820152602760248201527f53656e646572206973206e6f7420746865206f776e6572206f66207468697320604482015266393ab73732b91760c91b6064820152608401610a8a565b60006001600160a01b0316600e6000848481518110610fca57610fca613d0f565b6020908102919091018101518252810191909152604001600020546001600160a01b0316146110515760405162461bcd60e51b815260206004820152602d60248201527f546869732072756e6e65722068617320616c726561647920636c61696d65642060448201526c3a3432b4b9103a37b5b2b7399760991b6064820152608401610a8a565b8061105b81613d42565b915050610eaa565b5061107b82825160056110769190613cf0565b6125d1565b60005b81518110156110eb5733600e600084848151811061109e5761109e613d0f565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080806110e390613d42565b91505061107e565b505050565b60008060008089898960405160200161110c9493929190613d86565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906340a7bb1090611172908d90309086908c908c908c90600401613db5565b6040805180830381865afa15801561118e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b29190613e0b565b925092505097509795505050505050565b600033610dae8185856111d68383611be3565b6111e09190613e2f565b612288565b61ffff83166000908152600160205260408120805482919061120690613c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461123290613c8f565b801561127f5780601f106112545761010080835404028352916020019161127f565b820191906000526020600020905b81548152906001019060200180831161126257829003601f168201915b505050505090508383604051611296929190613cca565b60405180910390208180519060200120149150509392505050565b6112b961222e565b6040516342d65a8d60e01b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906342d65a8d9061130990869086908690600401613e47565b600060405180830381600087803b15801561132357600080fd5b505af1158015610c3e573d6000803e3d6000fd5b6113b1898989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528c93508b92508a918a908a908190840183828082843760009201919091525061269292505050565b505050505050505050565b33301461141a5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610a8a565b6114908686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f89018190048102820181019092528781528993509150879087908190840183828082843760009201919091525061273992505050565b505050505050565b6114a061222e565b6114aa60006127a0565b565b600160205260009081526040902080546114c590613c8f565b80601f01602080910402602001604051908101604052809291908181526020018280546114f190613c8f565b801561153e5780601f106115135761010080835404028352916020019161153e565b820191906000526020600020905b81548152906001019060200180831161152157829003601f168201915b505050505081565b600061155160095490565b905090565b6060600b8054610c9490613c8f565b61ffff811660009081526001602052604081208054606092919061158890613c8f565b80601f01602080910402602001604051908101604052809291908181526020018280546115b490613c8f565b80156116015780601f106115d657610100808354040283529160200191611601565b820191906000526020600020905b8154815290600101906020018083116115e457829003601f168201915b5050505050905080516000141561165a5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610a8a565b61167560006014835161166d9190613e65565b8391906127f0565b9392505050565b6000338161168a8286611be3565b9050838110156116ea5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a8a565b610e488286868403612288565b6116ff61222e565b81813060405160200161171493929190613e7c565b60408051601f1981840301815291815261ffff851660009081526001602090815291902082516117499391929091019061313e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161177d93929190613e47565b60405180910390a1505050565b6060600082516001600160401b038111156117a7576117a76134b1565b6040519080825280602002602001820160405280156117d0578160200160208202803683370190505b50905060005b835181101561184d576118198482815181106117f4576117f4613d0f565b60200260200101516000908152600e60205260409020546001600160a01b0316151590565b82828151811061182b5761182b613d0f565b911515602092830291909101909101528061184581613d42565b9150506117d6565b5092915050565b600033610dae818585612426565b61186a61222e565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020015b60405180910390a150565b6118c761222e565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6118f161222e565b6040516332fb62e760e21b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063cbed8b9c906119459088908890889088908890600401613ea2565b600060405180830381600087803b15801561195f57600080fd5b505af11580156113b1573d6000803e3d6000fd5b61ffff861660009081526005602052604080822090516119969088908890613cca565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080611a165760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610a8a565b808383604051611a27929190613cca565b604051809103902014611a865760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610a8a565b61ffff87166000908152600560205260408082209051611aa99089908990613cca565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252611b41918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061273992505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611b78959493929190613edb565b60405180910390a150505050505050565b6000611b9361222e565b604051600090339047908381818185875af1925050503d8060008114611bd5576040519150601f19603f3d011682016040523d82523d6000602084013e611bda565b606091505b50909250505090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b611c1661222e565b60008111611c5e5760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606401610a8a565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161177d565b8751855114611d2e5760405162461bcd60e51b815260206004820152603460248201527f4d61726174686f6e4f46543a20616d6f756e747320616e6420647374436861696044820152730dc92c8e640d8cadccee8d040dad2e6dac2e8c6d60631b6064820152608401610a8a565b8151855114611d9e5760405162461bcd60e51b815260206004820152603660248201527f4d61726174686f6e4f46543a20616d6f756e747320616e6420616461707465726044820152750a0c2e4c2dae640d8cadccee8d040dad2e6dac2e8c6d60531b6064820152608401610a8a565b8051855114611e0b5760405162461bcd60e51b815260206004820152603360248201527f4d61726174686f6e4f46543a20616d6f756e747320616e64206e6174697665466044820152720cacae640d8cadccee8d040dad2e6dac2e8c6d606b1b6064820152608401610a8a565b8751815114611e2c5760405162461bcd60e51b8152600401610a8a90613f16565b8751825114611e4d5760405162461bcd60e51b8152600401610a8a90613f16565b8051825114611ec45760405162461bcd60e51b815260206004820152603960248201527f4d61726174686f6e4f46543a206e61746976654665657320616e64206164617060448201527f746572506172616d73206c656e677468206d69736d61746368000000000000006064820152608401610a8a565b60005b8851811015611fa7576000898281518110611ee457611ee4613d0f565b602002602001015190506000848381518110611f0257611f02613d0f565b602002602001015190506000888481518110611f2057611f20613d0f565b602002602001015190506000858581518110611f3e57611f3e613d0f565b60200260200101519050611f908e858e8e8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508892508f91508e905089886128fd565b505050508080611f9f90613d42565b915050611ec7565b50505050505050505050565b611fbb61222e565b6006805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a4906020016118b4565b61200461222e565b61ffff831660009081526001602052604090206120229083836131c2565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161177d93929190613e47565b61205e61222e565b6001600160a01b0381166120c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8a565b6120cc816127a0565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b03169063f5ecbdbc90608401600060405180830381865afa15801561214f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121779190810190613fb8565b95945050505050565b6000806121e35a60966366ad5c8a60e01b898989896040516024016121a89493929190613fec565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152309291906129ed565b9150915081611490576114908686868685612a77565b60006001600160e01b03198216630a72677560e11b1480610c7f57506301ffc9a760e01b6001600160e01b0319831614610c7f565b6000546001600160a01b031633146114aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8a565b6001600160a01b0383166122ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a8a565b6001600160a01b03821661234b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a8a565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006123b88484611be3565b9050600019811461242057818110156124135760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a8a565b6124208484848403612288565b50505050565b6001600160a01b03831661248a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a8a565b6001600160a01b0382166124ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a8a565b6001600160a01b038316600090815260076020526040902054818110156125645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a8a565b6001600160a01b0380851660008181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906125c49086815260200190565b60405180910390a3612420565b6001600160a01b0382166126275760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a8a565b80600960008282546126399190613e2f565b90915550506001600160a01b0382166000818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6126a0866000836000612b14565b60006126ae88888888612b8e565b905060008087836040516020016126c79392919061402a565b60405160208183030381529060405290506126e6888287878734612bc0565b886001600160a01b03168861ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08985604051612726929190614057565b60405180910390a3505050505050505050565b602081015161ffff81166127585761275385858585612d66565b610d99565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610a8a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060816127fe81601f613e2f565b101561283d5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610a8a565b6128478284613e2f565b8451101561288b5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610a8a565b6060821580156128aa57604051915060008252602082016040526128f4565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156128e35780518352602092830192016128cb565b5050858452601f01601f1916604052505b50949350505050565b600081116129455760405162461bcd60e51b815260206004820152601560248201527406e6174697665466565206d757374206265203e203605c1b6044820152606401610a8a565b612953876000846000612b14565b600061296189898989612b8e565b9050600080888360405160200161297a9392919061402a565b6040516020818303038152906040529050612999898288888888612bc0565b896001600160a01b03168961ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08a856040516129d9929190614057565b60405180910390a350505050505050505050565b6000606060008060008661ffff166001600160401b03811115612a1257612a126134b1565b6040519080825280601f01601f191660200182016040528015612a3c576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115612a5e578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff16815260200190815260200160002085604051612aa89190614079565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612b059087908790879087908790614095565b60405180910390a15050505050565b60065460ff1615612b3057612b2b84848484612df0565b612420565b8151156124205760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608401610a8a565b6000336001600160a01b0386168114612bac57612bac8682856123ac565b612bb68684612ecf565b5090949350505050565b61ffff861660009081526001602052604081208054612bde90613c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054612c0a90613c8f565b8015612c575780601f10612c2c57610100808354040283529160200191612c57565b820191906000526020600020905b815481529060010190602001808311612c3a57829003601f168201915b50505050509050805160001415612cc95760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610a8a565b612cd4878751613003565b60405162c5803160e81b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063c5803100908490612d2b908b9086908c908c908c908c906004016140f3565b6000604051808303818588803b158015612d4457600080fd5b505af1158015612d58573d6000803e3d6000fd5b505050505050505050505050565b60008082806020019051810190612d7d919061414d565b909350915060009050612d908382613071565b9050612d9d8782846130d6565b9150806001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf84604051612ddf91815260200190565b60405180910390a350505050505050565b6000612dfb836130e2565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090612e2d908490613e2f565b905060008111612e7f5760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610a8a565b808210156114905760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610a8a565b6001600160a01b038216612f2f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a8a565b6001600160a01b03821660009081526007602052604090205481811015612fa35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a8a565b6001600160a01b03831660008181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82166000908152600360205260409020548061302157506127105b808211156110eb5760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610a8a565b600061307e826014613e2f565b835110156130c65760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610a8a565b500160200151600160601b900490565b600061184d83836125d1565b60006022825110156131365760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610a8a565b506022015190565b82805461314a90613c8f565b90600052602060002090601f01602090048101928261316c57600085556131b2565b82601f1061318557805160ff19168380011785556131b2565b828001600101855582156131b2579182015b828111156131b2578251825591602001919060010190613197565b506131be929150613236565b5090565b8280546131ce90613c8f565b90600052602060002090601f0160209004810192826131f057600085556131b2565b82601f106132095782800160ff198235161785556131b2565b828001600101855582156131b2579182015b828111156131b257823582559160200191906001019061321b565b5b808211156131be5760008155600101613237565b61ffff811681146120cc57600080fd5b60008083601f84011261326d57600080fd5b5081356001600160401b0381111561328457600080fd5b60208301915083602082850101111561329c57600080fd5b9250929050565b80356001600160401b03811681146132ba57600080fd5b919050565b600080600080600080608087890312156132d857600080fd5b86356132e38161324b565b955060208701356001600160401b03808211156132ff57600080fd5b61330b8a838b0161325b565b909750955085915061331f60408a016132a3565b9450606089013591508082111561333557600080fd5b5061334289828a0161325b565b979a9699509497509295939492505050565b60006020828403121561336657600080fd5b81356001600160e01b03198116811461167557600080fd5b60005b83811015613399578181015183820152602001613381565b838111156124205750506000910152565b600081518084526133c281602086016020860161337e565b601f01601f19169290920160200192915050565b60208152600061167560208301846133aa565b6000602082840312156133fb57600080fd5b81356116758161324b565b6001600160a01b03811681146120cc57600080fd5b80356132ba81613406565b6000806040838503121561343957600080fd5b823561344481613406565b946020939093013593505050565b6000806040838503121561346557600080fd5b82356134448161324b565b60008060006060848603121561348557600080fd5b833561349081613406565b925060208401356134a081613406565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156134ef576134ef6134b1565b604052919050565b60006001600160401b03821115613510576135106134b1565b5060051b60200190565b600082601f83011261352b57600080fd5b8135602061354061353b836134f7565b6134c7565b82815260059290921b8401810191818101908684111561355f57600080fd5b8286015b8481101561357a5780358352918301918301613563565b509695505050505050565b6000806040838503121561359857600080fd5b82356135a381613406565b915060208301356001600160401b038111156135be57600080fd5b6135ca8582860161351a565b9150509250929050565b803580151581146132ba57600080fd5b600080600080600080600060a0888a0312156135ff57600080fd5b873561360a8161324b565b965060208801356001600160401b038082111561362657600080fd5b6136328b838c0161325b565b909850965060408a0135955086915061364d60608b016135d4565b945060808a013591508082111561366357600080fd5b506136708a828b0161325b565b989b979a50959850939692959293505050565b60008060006040848603121561369857600080fd5b83356136a38161324b565b925060208401356001600160401b038111156136be57600080fd5b6136ca8682870161325b565b9497909650939450505050565b600080600080600080600080600060e08a8c0312156136f557600080fd5b893561370081613406565b985060208a01356137108161324b565b975060408a01356001600160401b038082111561372c57600080fd5b6137388d838e0161325b565b909950975060608c0135965060808c0135915061375482613406565b90945060a08b01359061376682613406565b90935060c08b0135908082111561377c57600080fd5b506137898c828d0161325b565b915080935050809150509295985092959850929598565b60006001600160401b038211156137b9576137b96134b1565b50601f01601f191660200190565b600082601f8301126137d857600080fd5b81356137e661353b826137a0565b8181528460208386010111156137fb57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561382d57600080fd5b83356138388161324b565b925060208401356001600160401b0381111561385357600080fd5b61385f868287016137c7565b92505061386e604085016132a3565b90509250925092565b60006020828403121561388957600080fd5b813561167581613406565b600080604083850312156138a757600080fd5b82356138b28161324b565b915060208301356138c28161324b565b809150509250929050565b6000602082840312156138df57600080fd5b81356001600160401b038111156138f557600080fd5b6139018482850161351a565b949350505050565b6020808252825182820181905260009190848201906040850190845b81811015613943578351151583529284019291840191600101613925565b50909695505050505050565b60006020828403121561396157600080fd5b5035919050565b60008060008060006080868803121561398057600080fd5b853561398b8161324b565b9450602086013561399b8161324b565b93506040860135925060608601356001600160401b038111156139bd57600080fd5b6139c98882890161325b565b969995985093965092949392505050565b600080604083850312156139ed57600080fd5b82356139f881613406565b915060208301356138c281613406565b600080600060608486031215613a1d57600080fd5b8335613a288161324b565b925060208401356134a08161324b565b600082601f830112613a4957600080fd5b81356020613a5961353b836134f7565b82815260059290921b84018101918181019086841115613a7857600080fd5b8286015b8481101561357a578035613a8f8161324b565b8352918301918301613a7c565b600082601f830112613aad57600080fd5b81356020613abd61353b836134f7565b82815260059290921b84018101918181019086841115613adc57600080fd5b8286015b8481101561357a5780356001600160401b03811115613aff5760008081fd5b613b0d8986838b01016137c7565b845250918301918301613ae0565b60008060008060008060008060006101008a8c031215613b3a57600080fd5b613b438a61341b565b985060208a01356001600160401b0380821115613b5f57600080fd5b613b6b8d838e01613a38565b995060408c0135915080821115613b8157600080fd5b613b8d8d838e0161325b565b909950975060608c0135915080821115613ba657600080fd5b613bb28d838e0161351a565b9650613bc060808d0161341b565b9550613bce60a08d0161341b565b945060c08c0135915080821115613be457600080fd5b613bf08d838e01613a9c565b935060e08c0135915080821115613c0657600080fd5b50613c138c828d0161351a565b9150509295985092959850929598565b600060208284031215613c3557600080fd5b611675826135d4565b60008060008060808587031215613c5457600080fd5b8435613c5f8161324b565b93506020850135613c6f8161324b565b92506040850135613c7f81613406565b9396929550929360600135925050565b600181811c90821680613ca357607f821691505b60208210811415613cc457634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613d0a57613d0a613cda565b500290565b634e487b7160e01b600052603260045260246000fd5b600060208284031215613d3757600080fd5b815161167581613406565b6000600019821415613d5657613d56613cda565b5060010190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff85168152606060208201526000613da4606083018587613d5d565b905082604083015295945050505050565b61ffff871681526001600160a01b038616602082015260a060408201819052600090613de3908301876133aa565b85151560608401528281036080840152613dfe818587613d5d565b9998505050505050505050565b60008060408385031215613e1e57600080fd5b505080516020909101519092909150565b60008219821115613e4257613e42613cda565b500190565b61ffff84168152604060208201526000612177604083018486613d5d565b600082821015613e7757613e77613cda565b500390565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b600061ffff808816835280871660208401525084604083015260806060830152613ed0608083018486613d5d565b979650505050505050565b61ffff86168152608060208201526000613ef9608083018688613d5d565b6001600160401b0394909416604083015250606001529392505050565b60208082526037908201527f4d61726174686f6e4f46543a206e61746976654665657320616e64206473744360408201527f6861696e496473206c656e677468206d69736d61746368000000000000000000606082015260800190565b600082601f830112613f8457600080fd5b8151613f9261353b826137a0565b818152846020838601011115613fa757600080fd5b61390182602083016020870161337e565b600060208284031215613fca57600080fd5b81516001600160401b03811115613fe057600080fd5b61390184828501613f73565b61ffff8516815260806020820152600061400960808301866133aa565b6001600160401b03851660408401528281036060840152613ed081856133aa565b61ffff8416815260606020820152600061404760608301856133aa565b9050826040830152949350505050565b60408152600061406a60408301856133aa565b90508260208301529392505050565b6000825161408b81846020870161337e565b9190910192915050565b61ffff8616815260a0602082015260006140b260a08301876133aa565b6001600160401b038616604084015282810360608401526140d381866133aa565b905082810360808401526140e781856133aa565b98975050505050505050565b61ffff8716815260c06020820152600061411060c08301886133aa565b828103604084015261412281886133aa565b6001600160a01b0387811660608601528616608085015283810360a08501529050613dfe81856133aa565b60008060006060848603121561416257600080fd5b835161416d8161324b565b60208501519093506001600160401b0381111561418957600080fd5b61419586828701613f73565b92505060408401519050925092509256fea2646970667358221220fa1982b56c35a1fb3ddadefa8bdf5a1b5b1c5bd304d9f4c4456624dba5d6b3bd64736f6c634300080c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ff6a890249bcc6ab071c17a66db4c327154604c

-----Decoded View---------------
Arg [0] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [1] : _fee (uint256): 0
Arg [2] : _marathonAddress (address): 0x2FF6a890249bcc6ab071c17a66Db4C327154604C

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000002ff6a890249bcc6ab071c17a66db4c327154604c


Deployed Bytecode Sourcemap

75571:3975:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50686:762;;;;;;;;;;-1:-1:-1;50686:762:0;;;;;:::i;:::-;;:::i;:::-;;69701:255;;;;;;;;;;-1:-1:-1;69701:255:0;;;;;:::i;:::-;;:::i;:::-;;;2048:14:1;;2041:22;2023:41;;2011:2;1996:18;69701:255:0;;;;;;;;6310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53984:123::-;;;;;;;;;;-1:-1:-1;53984:123:0;;;;;:::i;:::-;;:::i;8670:201::-;;;;;;;;;;-1:-1:-1;8670:201:0;;;;;:::i;:::-;;:::i;55909:142::-;;;;;;;;;;-1:-1:-1;55909:142:0;;;;;:::i;:::-;;:::i;54115:129::-;;;;;;;;;;-1:-1:-1;54115:129:0;;;;;:::i;:::-;;:::i;7439:108::-;;;;;;;;;;-1:-1:-1;7527:12:0;;7439:108;;;4135:25:1;;;4123:2;4108:18;7439:108:0;3989:177:1;9451:261:0;;;;;;;;;;-1:-1:-1;9451:261:0;;;;;:::i;:::-;;:::i;75943:668::-;;;;;;:::i;:::-;;:::i;66390:427::-;;;;;;;;;;-1:-1:-1;66390:427:0;;;;;:::i;:::-;;:::i;:::-;;;;7719:25:1;;;7775:2;7760:18;;7753:34;;;;7692:18;66390:427:0;7545:248:1;78994:84:0;;;;;;;;;;-1:-1:-1;78994:84:0;;79044:5;7940:36:1;;7928:2;7913:18;78994:84:0;7798:184:1;10121:238:0;;;;;;;;;;-1:-1:-1;10121:238:0;;;;;:::i;:::-;;:::i;56149:250::-;;;;;;;;;;-1:-1:-1;56149:250:0;;;;;:::i;:::-;;:::i;50228:53::-;;;;;;;;;;-1:-1:-1;50228:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;54252:178;;;;;;;;;;-1:-1:-1;54252:178:0;;;;;:::i;:::-;;:::i;65942:37::-;;;;;;;;;;;;65978:1;65942:37;;66008:34;;;;;;;;;;;;66041:1;66008:34;;;;;8708:6:1;8696:19;;;8678:38;;8666:2;8651:18;66008:34:0;8534:188:1;66825:334:0;;;;;;:::i;:::-;;:::i;62379:85::-;;;;;;;;;;-1:-1:-1;62379:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63601:346;;;;;;;;;;-1:-1:-1;63601:346:0;;;;;:::i;:::-;;:::i;75638:30::-;;;;;;;;;;-1:-1:-1;75638:30:0;;;;-1:-1:-1;;;;;75638:30:0;;;;;;-1:-1:-1;;;;;11619:32:1;;;11601:51;;11589:2;11574:18;75638:30:0;11455:203:1;7610:127:0;;;;;;;;;;-1:-1:-1;7610:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7711:18:0;7684:7;7711:18;;;:9;:18;;;;;;;7610:127;22438:103;;;;;;;;;;;;;:::i;50098:51::-;;;;;;;;;;-1:-1:-1;50098:51:0;;;;;:::i;:::-;;:::i;50156:65::-;;;;;;;;;;-1:-1:-1;50156:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;21797:87;;;;;;;;;;-1:-1:-1;21843:7:0;21870:6;-1:-1:-1;;;;;21870:6:0;21797:87;;70075:112;;;;;;;;;;;;;:::i;50288:23::-;;;;;;;;;;-1:-1:-1;50288:23:0;;;;-1:-1:-1;;;;;50288:23:0;;;6529:104;;;;;;;;;;;;;:::i;55081:330::-;;;;;;;;;;-1:-1:-1;55081:330:0;;;;;:::i;:::-;;:::i;10862:436::-;;;;;;;;;;-1:-1:-1;10862:436:0;;;;;:::i;:::-;;:::i;54792:281::-;;;;;;;;;;-1:-1:-1;54792:281:0;;;;;:::i;:::-;;:::i;79230:313::-;;;;;;;;;;-1:-1:-1;79230:313:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7943:193::-;;;;;;;;;;-1:-1:-1;7943:193:0;;;;;:::i;:::-;;:::i;50045:46::-;;;;;;;;;;;;;;;55419:136;;;;;;;;;;-1:-1:-1;55419:136:0;;;;;:::i;:::-;;:::i;79086:::-;;;;;;;;;;-1:-1:-1;79086:136:0;;;;;:::i;:::-;79151:4;79173:27;;;:17;:27;;;;;;-1:-1:-1;;;;;79173:27:0;:41;;;79086:136;49981:55;;;;;;;;;;;;50031:5;49981:55;;78708:94;;;;;;;;;;-1:-1:-1;78708:94:0;;;;;:::i;:::-;;:::i;53772:204::-;;;;;;;;;;-1:-1:-1;53772:204:0;;;;;:::i;:::-;;:::i;64133:767::-;;;;;;:::i;:::-;;:::i;78810:176::-;;;;;;;;;;;;;:::i;8199:151::-;;;;;;;;;;-1:-1:-1;8199:151:0;;;;;:::i;:::-;;:::i;75606:25::-;;;;;;;;;;;;;;;;55563:284;;;;;;;;;;-1:-1:-1;55563:284:0;;;;;:::i;:::-;;:::i;76619:1376::-;;;;;;:::i;:::-;;:::i;67167:223::-;;;;;;;;;;-1:-1:-1;67167:223:0;;;;;:::i;:::-;;:::i;54577:207::-;;;;;;;;;;-1:-1:-1;54577:207:0;;;;;:::i;:::-;;:::i;66051:34::-;;;;;;;;;;-1:-1:-1;66051:34:0;;;;;;;;22696:201;;;;;;;;;;-1:-1:-1;22696:201:0;;;;;:::i;:::-;;:::i;53499:211::-;;;;;;;;;;-1:-1:-1;53499:211:0;;;;;:::i;:::-;;:::i;69964:103::-;;;;;;;;;;-1:-1:-1;70054:4:0;69964:103;;50686:762;4196:10;50926;-1:-1:-1;;;;;50902:35:0;;50894:78;;;;-1:-1:-1;;;50894:78:0;;19748:2:1;50894:78:0;;;19730:21:1;19787:2;19767:18;;;19760:30;19826:32;19806:18;;;19799:60;19876:18;;50894:78:0;;;;;;;;;51014:32;;;50985:26;51014:32;;;:19;:32;;;;;50985:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51220:13;:20;51198:11;;:18;;:42;:70;;;;;51267:1;51244:13;:20;:24;51198:70;:124;;;;-1:-1:-1;51298:24:0;;;;;;51272:22;;;;51282:11;;;;51272:22;:::i;:::-;;;;;;;;:50;51198:124;51190:175;;;;-1:-1:-1;;;51190:175:0;;20768:2:1;51190:175:0;;;20750:21:1;20807:2;20787:18;;;20780:30;20846:34;20826:18;;;20819:62;-1:-1:-1;;;20897:18:1;;;20890:36;20943:19;;51190:175:0;20566:402:1;51190:175:0;51378:62;51397:11;51410;;51378:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51378:62:0;;;;;;;;;;;;;;;;;;;;;;51423:6;;-1:-1:-1;51378:62:0;-1:-1:-1;51431:8:0;;;;;;51378:62;;51431:8;;;;51378:62;;;;;;;;;-1:-1:-1;51378:18:0;;-1:-1:-1;;;51378:62:0:i;:::-;50817:631;50686:762;;;;;;:::o;69701:255::-;69804:4;-1:-1:-1;;;;;;69828:37:0;;;;:80;;-1:-1:-1;;;;;;;69869:39:0;;-1:-1:-1;;;69869:39:0;69828:80;:120;;;;69912:36;69936:11;69912:23;:36::i;:::-;69821:127;69701:255;-1:-1:-1;;69701:255:0:o;6310:100::-;6364:13;6397:5;6390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6310:100;:::o;53984:123::-;21683:13;:11;:13::i;:::-;54064:35:::1;::::0;-1:-1:-1;;;54064:35:0;;8708:6:1;8696:19;;54064:35:0::1;::::0;::::1;8678:38:1::0;54064:10:0::1;-1:-1:-1::0;;;;;54064:25:0::1;::::0;::::1;::::0;8651:18:1;;54064:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53984:123:::0;:::o;8670:201::-;8753:4;4196:10;8809:32;4196:10;8825:7;8834:6;8809:8;:32::i;:::-;-1:-1:-1;8859:4:0;;8670:201;-1:-1:-1;;;8670:201:0:o;55909:142::-;21683:13;:11;:13::i;:::-;56000:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;55909:142::o;54115:129::-;21683:13;:11;:13::i;:::-;54198:38:::1;::::0;-1:-1:-1;;;54198:38:0;;8708:6:1;8696:19;;54198:38:0::1;::::0;::::1;8678::1::0;54198:10:0::1;-1:-1:-1::0;;;;;54198:28:0::1;::::0;::::1;::::0;8651:18:1;;54198:38:0::1;8534:188:1::0;9451:261:0;9548:4;4196:10;9606:38;9622:4;4196:10;9637:6;9606:15;:38::i;:::-;9655:27;9665:4;9671:2;9675:6;9655:9;:27::i;:::-;-1:-1:-1;9700:4:0;;9451:261;-1:-1:-1;;;;9451:261:0:o;75943:668::-;76073:3;;76054:9;:16;:22;;;;:::i;:::-;76041:9;:35;;76033:67;;;;-1:-1:-1;;;76033:67:0;;21480:2:1;76033:67:0;;;21462:21:1;21519:2;21499:18;;;21492:30;-1:-1:-1;;;21538:18:1;;;21531:49;21597:18;;76033:67:0;21278:343:1;76033:67:0;76126:6;76121:297;76142:9;:16;76138:1;:20;76121:297;;;76194:15;;76219:12;;76236:10;;-1:-1:-1;;;;;76194:15:0;;76186:32;;76219:9;;76229:1;;76219:12;;;;;;:::i;:::-;;;;;;;76186:46;;;;;;;;;;;;;4135:25:1;;4123:2;4108:18;;3989:177;76186:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;76186:60:0;;76178:112;;;;-1:-1:-1;;;76178:112:0;;22216:2:1;76178:112:0;;;22198:21:1;22255:2;22235:18;;;22228:30;22294:34;22274:18;;;22267:62;-1:-1:-1;;;22345:18:1;;;22338:37;22392:19;;76178:112:0;22014:403:1;76178:112:0;76354:1;-1:-1:-1;;;;;76311:45:0;:17;:31;76329:9;76339:1;76329:12;;;;;;;;:::i;:::-;;;;;;;;;;;;76311:31;;;;;;;;;;-1:-1:-1;76311:31:0;;-1:-1:-1;;;;;76311:31:0;:45;76303:103;;;;-1:-1:-1;;;76303:103:0;;22624:2:1;76303:103:0;;;22606:21:1;22663:2;22643:18;;;22636:30;22702:34;22682:18;;;22675:62;-1:-1:-1;;;22753:18:1;;;22746:43;22806:19;;76303:103:0;22422:409:1;76303:103:0;76160:3;;;;:::i;:::-;;;;76121:297;;;;76438:32;76444:3;76449:9;:16;76468:1;76449:20;;;;:::i;:::-;76438:5;:32::i;:::-;76496:6;76491:113;76512:9;:16;76508:1;:20;76491:113;;;76582:10;76548:17;:31;76566:9;76576:1;76566:12;;;;;;;;:::i;:::-;;;;;;;76548:31;;;;;;;;;;;;:44;;;;;-1:-1:-1;;;;;76548:44:0;;;;;-1:-1:-1;;;;;76548:44:0;;;;;;76530:3;;;;;:::i;:::-;;;;76491:113;;;;75943:668;;:::o;66390:427::-;66559:14;66575:11;66643:20;66041:1;66686:10;;66698:7;66666:40;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;66666:40:0;;;;;;;;;;-1:-1:-1;;;66724:85:0;;66666:40;-1:-1:-1;;;;;;66724:10:0;:23;;;;:85;;66748:11;;66769:4;;66666:40;;66785:7;;66794:14;;;;66724:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66717:92;;;;;66390:427;;;;;;;;;;:::o;10121:238::-;10209:4;4196:10;10265:64;4196:10;10281:7;10318:10;10290:25;4196:10;10281:7;10290:9;:25::i;:::-;:38;;;;:::i;:::-;10265:8;:64::i;56149:250::-;56291:32;;;56245:4;56291:32;;;:19;:32;;;;;56262:61;;56245:4;;56291:32;56262:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56379:11;;56369:22;;;;;;;:::i;:::-;;;;;;;;56351:13;56341:24;;;;;;:50;56334:57;;;56149:250;;;;;:::o;54252:178::-;21683:13;:11;:13::i;:::-;54367:55:::1;::::0;-1:-1:-1;;;54367:55:0;;-1:-1:-1;;;;;54367:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;54397:11;;54410;;;;54367:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;66825:334:::0;67053:98;67059:5;67066:11;67079:10;;67053:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;67053:98:0;;;;;;;;;;;;;;;;;;;;;;67091:7;;-1:-1:-1;67100:14:0;;-1:-1:-1;67116:18:0;;67136:14;;;;;;67053:98;;67136:14;;;;67053:98;;;;;;;;;-1:-1:-1;67053:5:0;;-1:-1:-1;;;67053:98:0:i;:::-;66825:334;;;;;;;;;:::o;63601:346::-;4196:10;63815:4;63791:29;63783:80;;;;-1:-1:-1;;;63783:80:0;;25238:2:1;63783:80:0;;;25220:21:1;25277:2;25257:18;;;25250:30;25316:34;25296:18;;;25289:62;-1:-1:-1;;;25367:18:1;;;25360:36;25413:19;;63783:80:0;25036:402:1;63783:80:0;63874:65;63896:11;63909;;63874:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63874:65:0;;;;;;;;;;;;;;;;;;;;;;63922:6;;-1:-1:-1;63874:65:0;-1:-1:-1;63930:8:0;;;;;;63874:65;;63930:8;;;;63874:65;;;;;;;;;-1:-1:-1;63874:21:0;;-1:-1:-1;;;63874:65:0:i;:::-;63601:346;;;;;;:::o;22438:103::-;21683:13;:11;:13::i;:::-;22503:30:::1;22530:1;22503:18;:30::i;:::-;22438:103::o:0;50098:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70075:112::-;70142:4;70166:13;7527:12;;;7439:108;70166:13;70159:20;;70075:112;:::o;6529:104::-;6585:13;6618:7;6611:14;;;;;:::i;55081:330::-;55205:35;;;55185:17;55205:35;;;:19;:35;;;;;55185:55;;55160:12;;55185:17;55205:35;55185:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55259:4;:11;55274:1;55259:16;;55251:58;;;;-1:-1:-1;;;55251:58:0;;25645:2:1;55251:58:0;;;25627:21:1;25684:2;25664:18;;;25657:30;25723:31;25703:18;;;25696:59;25772:18;;55251:58:0;25443:353:1;55251:58:0;55327:31;55338:1;55355:2;55341:4;:11;:16;;;;:::i;:::-;55327:4;;:31;:10;:31::i;:::-;55320:38;55081:330;-1:-1:-1;;;55081:330:0:o;10862:436::-;10955:4;4196:10;10955:4;11038:25;4196:10;11055:7;11038:9;:25::i;:::-;11011:52;;11102:15;11082:16;:35;;11074:85;;;;-1:-1:-1;;;11074:85:0;;26133:2:1;11074:85:0;;;26115:21:1;26172:2;26152:18;;;26145:30;26211:34;26191:18;;;26184:62;-1:-1:-1;;;26262:18:1;;;26255:35;26307:19;;11074:85:0;25931:401:1;11074:85:0;11195:60;11204:5;11211:7;11239:15;11220:16;:34;11195:8;:60::i;54792:281::-;21683:13;:11;:13::i;:::-;54964:14:::1;;54988:4;54947:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;54947:47:0;;::::1;::::0;;;;;;54909:35:::1;::::0;::::1;;::::0;;;:19:::1;54947:47;54909:35:::0;;;;;;:85;;::::1;::::0;:35;;:85;;::::1;::::0;::::1;:::i;:::-;;55010:55;55034:14;55050;;55010:55;;;;;;;;:::i;:::-;;;;;;;;54792:281:::0;;;:::o;79230:313::-;79309:13;79333:24;79371:9;:16;-1:-1:-1;;;;;79360:28:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79360:28:0;;79333:55;;79404:6;79399:111;79420:9;:16;79416:1;:20;79399:111;;;79470:30;79487:9;79497:1;79487:12;;;;;;;;:::i;:::-;;;;;;;79151:4;79173:27;;;:17;:27;;;;;;-1:-1:-1;;;;;79173:27:0;:41;;;79086:136;79470:30;79454:10;79465:1;79454:13;;;;;;;;:::i;:::-;:46;;;:13;;;;;;;;;;;:46;79438:3;;;;:::i;:::-;;;;79399:111;;;-1:-1:-1;79525:10:0;79230:313;-1:-1:-1;;79230:313:0:o;7943:193::-;8022:4;4196:10;8078:28;4196:10;8095:2;8099:6;8078:9;:28::i;55419:136::-;21683:13;:11;:13::i;:::-;55489:8:::1;:20:::0;;-1:-1:-1;;;;;;55489:20:0::1;-1:-1:-1::0;;;;;55489:20:0;::::1;::::0;;::::1;::::0;;;55525:22:::1;::::0;11601:51:1;;;55525:22:0::1;::::0;11589:2:1;11574:18;55525:22:0::1;;;;;;;;55419:136:::0;:::o;78708:94::-;21683:13;:11;:13::i;:::-;78775:15:::1;:19:::0;;-1:-1:-1;;;;;;78775:19:0::1;-1:-1:-1::0;;;;;78775:19:0;;;::::1;::::0;;;::::1;::::0;;78708:94::o;53772:204::-;21683:13;:11;:13::i;:::-;53906:62:::1;::::0;-1:-1:-1;;;53906:62:0;;-1:-1:-1;;;;;53906:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;53927:8;;53937;;53947:11;;53960:7;;;;53906:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;64133:767:::0;64344:27;;;64322:19;64344:27;;;:14;:27;;;;;;:40;;;;64372:11;;;;64344:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;64344:48:0;;;;;;;;;;;;-1:-1:-1;64344:48:0;64403:73;;;;-1:-1:-1;;;64403:73:0;;27429:2:1;64403:73:0;;;27411:21:1;27468:2;27448:18;;;27441:30;27507:34;27487:18;;;27480:62;-1:-1:-1;;;27558:18:1;;;27551:33;27601:19;;64403:73:0;27227:399:1;64403:73:0;64518:11;64505:8;;64495:19;;;;;;;:::i;:::-;;;;;;;;:34;64487:80;;;;-1:-1:-1;;;64487:80:0;;27833:2:1;64487:80:0;;;27815:21:1;27872:2;27852:18;;;27845:30;27911:34;27891:18;;;27884:62;-1:-1:-1;;;27962:18:1;;;27955:31;28003:19;;64487:80:0;27631:397:1;64487:80:0;64615:27;;;64674:1;64615:27;;;:14;:27;;;;;;:40;;;;64643:11;;;;64615:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;64615:48:0;;;;;;;;;;;;:61;;;;64745:65;;;;;;;;;;;;;;;;;;;64767:11;;64780;;64745:65;;;;;;64780:11;64745:65;;64780:11;64745:65;;;;;;;;;-1:-1:-1;;64745:65:0;;;;;;;;;;;;;;;;;;;;;;64793:6;;-1:-1:-1;64745:65:0;-1:-1:-1;64801:8:0;;;;;;64745:65;;64801:8;;;;64745:65;;;;;;;;;-1:-1:-1;64745:21:0;;-1:-1:-1;;;64745:65:0:i;:::-;64826:66;64846:11;64859;;64872:6;64880:11;64826:66;;;;;;;;;;:::i;:::-;;;;;;;;64266:634;64133:767;;;;;;:::o;78810:176::-;78859:4;21683:13;:11;:13::i;:::-;78895:58:::1;::::0;78877:12:::1;::::0;78903:10:::1;::::0;78927:21:::1;::::0;78877:12;78895:58;78877:12;78895:58;78927:21;78903:10;78895:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;78876:77:0;;-1:-1:-1;;;78810:176:0;:::o;8199:151::-;-1:-1:-1;;;;;8315:18:0;;;8288:7;8315:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8199:151::o;55563:284::-;21683:13;:11;:13::i;:::-;55687:1:::1;55677:7;:11;55669:45;;;::::0;-1:-1:-1;;;55669:45:0;;28943:2:1;55669:45:0::1;::::0;::::1;28925:21:1::0;28982:2;28962:18;;;28955:30;-1:-1:-1;;;29001:18:1;;;28994:51;29062:18;;55669:45:0::1;28741:345:1::0;55669:45:0::1;55725:28;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;55792:47;;29314:34:1;;;29364:18;;29357:43;;;;29416:18;;;29409:34;;;55792:47:0::1;::::0;29277:2:1;29262:18;55792:47:0::1;29091:358:1::0;76619:1376:0;76909:12;:19;76890:8;:15;:38;76882:103;;;;-1:-1:-1;;;76882:103:0;;29656:2:1;76882:103:0;;;29638:21:1;29695:2;29675:18;;;29668:30;29734:34;29714:18;;;29707:62;-1:-1:-1;;;29785:18:1;;;29778:50;29845:19;;76882:103:0;29454:416:1;76882:103:0;77023:14;:21;77004:8;:15;:40;76996:107;;;;-1:-1:-1;;;76996:107:0;;30077:2:1;76996:107:0;;;30059:21:1;30116:2;30096:18;;;30089:30;30155:34;30135:18;;;30128:62;-1:-1:-1;;;30206:18:1;;;30199:52;30268:19;;76996:107:0;29875:418:1;76996:107:0;77141:11;:18;77122:8;:15;:37;77114:101;;;;-1:-1:-1;;;77114:101:0;;30500:2:1;77114:101:0;;;30482:21:1;30539:2;30519:18;;;30512:30;30578:34;30558:18;;;30551:62;-1:-1:-1;;;30629:18:1;;;30622:49;30688:19;;77114:101:0;30298:415:1;77114:101:0;77256:12;:19;77234:11;:18;:41;77226:109;;;;-1:-1:-1;;;77226:109:0;;;;;;;:::i;:::-;77379:12;:19;77354:14;:21;:44;77346:112;;;;-1:-1:-1;;;77346:112:0;;;;;;;:::i;:::-;77502:11;:18;77477:14;:21;:43;77469:113;;;;-1:-1:-1;;;77469:113:0;;31344:2:1;77469:113:0;;;31326:21:1;31383:2;31363:18;;;31356:30;31422:34;31402:18;;;31395:62;31493:27;31473:18;;;31466:55;31538:19;;77469:113:0;31142:421:1;77469:113:0;77600:6;77595:391;77616:12;:19;77612:1;:23;77595:391;;;77657:18;77678:12;77691:1;77678:15;;;;;;;;:::i;:::-;;;;;;;77657:36;;77708:26;77737:14;77752:1;77737:17;;;;;;;;:::i;:::-;;;;;;;77708:46;;77769:12;77784:8;77793:1;77784:11;;;;;;;;:::i;:::-;;;;;;;77769:26;;77810:15;77828:11;77840:1;77828:14;;;;;;;;:::i;:::-;;;;;;;77810:32;;77859:115;77871:5;77878:11;77891:10;;77859:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77903:7:0;;-1:-1:-1;77912:14:0;;-1:-1:-1;77928:18:0;;-1:-1:-1;77948:13:0;77963:10;77859:11;:115::i;:::-;77642:344;;;;77637:3;;;;;:::i;:::-;;;;77595:391;;;;76619:1376;;;;;;;;;:::o;67167:223::-;21683:13;:11;:13::i;:::-;67268:22:::1;:48:::0;;-1:-1:-1;;67268:48:0::1;::::0;::::1;;::::0;;::::1;::::0;;;67332:50:::1;::::0;2023:41:1;;;67332:50:0::1;::::0;2011:2:1;1996:18;67332:50:0::1;1883:187:1::0;54577:207:0;21683:13;:11;:13::i;:::-;54678:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;::::0;54716:5;;54678:43:::1;:::i;:::-;;54737:39;54754:14;54770:5;;54737:39;;;;;;;;:::i;22696:201::-:0;21683:13;:11;:13::i;:::-;-1:-1:-1;;;;;22785:22:0;::::1;22777:73;;;::::0;-1:-1:-1;;;22777:73:0;;31770:2:1;22777:73:0::1;::::0;::::1;31752:21:1::0;31809:2;31789:18;;;31782:30;31848:34;31828:18;;;31821:62;-1:-1:-1;;;31899:18:1;;;31892:36;31945:19;;22777:73:0::1;31568:402:1::0;22777:73:0::1;22861:28;22880:8;22861:18;:28::i;:::-;22696:201:::0;:::o;53499:211::-;53634:68;;-1:-1:-1;;;53634:68:0;;32212:6:1;32245:15;;;53634:68:0;;;32227:34:1;32297:15;;32277:18;;;32270:43;53683:4:0;32329:18:1;;;32322:60;32398:18;;;32391:34;;;53602:12:0;;53634:10;-1:-1:-1;;;;;53634:20:0;;;;32174:19:1;;53634:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53634:68:0;;;;;;;;;;;;:::i;:::-;53627:75;53499:211;-1:-1:-1;;;;;53499:211:0:o;62748:514::-;62898:12;62912:19;62935:153;62969:9;62980:3;63008:34;;;63044:11;63057;63070:6;63078:8;62985:102;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;62985:102:0;;;;;;;;;;;;;;-1:-1:-1;;;;;62985:102:0;-1:-1:-1;;;;;;62985:102:0;;;;;;;;;;62943:4;;62935:153;;:33;:153::i;:::-;62897:191;;;;63148:7;63143:112;;63172:71;63192:11;63205;63218:6;63226:8;63236:6;63172:19;:71::i;66167:215::-;66269:4;-1:-1:-1;;;;;;66293:41:0;;-1:-1:-1;;;66293:41:0;;:81;;-1:-1:-1;;;;;;;;;;65783:40:0;;;66338:36;65674:157;21962:132;21843:7;21870:6;-1:-1:-1;;;;;21870:6:0;4196:10;22026:23;22018:68;;;;-1:-1:-1;;;22018:68:0;;33973:2:1;22018:68:0;;;33955:21:1;;;33992:18;;;33985:30;34051:34;34031:18;;;34024:62;34103:18;;22018:68:0;33771:356:1;14855:346:0;-1:-1:-1;;;;;14957:19:0;;14949:68;;;;-1:-1:-1;;;14949:68:0;;34334:2:1;14949:68:0;;;34316:21:1;34373:2;34353:18;;;34346:30;34412:34;34392:18;;;34385:62;-1:-1:-1;;;34463:18:1;;;34456:34;34507:19;;14949:68:0;34132:400:1;14949:68:0;-1:-1:-1;;;;;15036:21:0;;15028:68;;;;-1:-1:-1;;;15028:68:0;;34739:2:1;15028:68:0;;;34721:21:1;34778:2;34758:18;;;34751:30;34817:34;34797:18;;;34790:62;-1:-1:-1;;;34868:18:1;;;34861:32;34910:19;;15028:68:0;34537:398:1;15028:68:0;-1:-1:-1;;;;;15109:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15161:32;;4135:25:1;;;15161:32:0;;4108:18:1;15161:32:0;;;;;;;14855:346;;;:::o;15492:419::-;15593:24;15620:25;15630:5;15637:7;15620:9;:25::i;:::-;15593:52;;-1:-1:-1;;15660:16:0;:37;15656:248;;15742:6;15722:16;:26;;15714:68;;;;-1:-1:-1;;;15714:68:0;;35142:2:1;15714:68:0;;;35124:21:1;35181:2;35161:18;;;35154:30;35220:31;35200:18;;;35193:59;35269:18;;15714:68:0;34940:353:1;15714:68:0;15826:51;15835:5;15842:7;15870:6;15851:16;:25;15826:8;:51::i;:::-;15582:329;15492:419;;;:::o;11768:806::-;-1:-1:-1;;;;;11865:18:0;;11857:68;;;;-1:-1:-1;;;11857:68:0;;35500:2:1;11857:68:0;;;35482:21:1;35539:2;35519:18;;;35512:30;35578:34;35558:18;;;35551:62;-1:-1:-1;;;35629:18:1;;;35622:35;35674:19;;11857:68:0;35298:401:1;11857:68:0;-1:-1:-1;;;;;11944:16:0;;11936:64;;;;-1:-1:-1;;;11936:64:0;;35906:2:1;11936:64:0;;;35888:21:1;35945:2;35925:18;;;35918:30;35984:34;35964:18;;;35957:62;-1:-1:-1;;;36035:18:1;;;36028:33;36078:19;;11936:64:0;35704:399:1;11936:64:0;-1:-1:-1;;;;;12086:15:0;;12064:19;12086:15;;;:9;:15;;;;;;12120:21;;;;12112:72;;;;-1:-1:-1;;;12112:72:0;;36310:2:1;12112:72:0;;;36292:21:1;36349:2;36329:18;;;36322:30;36388:34;36368:18;;;36361:62;-1:-1:-1;;;36439:18:1;;;36432:36;36485:19;;12112:72:0;36108:402:1;12112:72:0;-1:-1:-1;;;;;12220:15:0;;;;;;;:9;:15;;;;;;12238:20;;;12220:38;;12438:13;;;;;;;;;;:23;;;;;;12490:26;;;;;;12252:6;4135:25:1;;4123:2;4108:18;;3989:177;12490:26:0;;;;;;;;12529:37;75943:668;12861:548;-1:-1:-1;;;;;12945:21:0;;12937:65;;;;-1:-1:-1;;;12937:65:0;;36717:2:1;12937:65:0;;;36699:21:1;36756:2;36736:18;;;36729:30;36795:33;36775:18;;;36768:61;36846:18;;12937:65:0;36515:355:1;12937:65:0;13093:6;13077:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13248:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;13303:37;4135:25:1;;;13303:37:0;;4108:18:1;13303:37:0;;;;;;;12861:548;;:::o;67855:614::-;68061:71;68081:11;66041:1;68103:14;65978:1;68061:19;:71::i;:::-;68145:11;68159:51;68170:5;68177:11;68190:10;68202:7;68159:10;:51::i;:::-;68145:65;;68223:22;66041:1;68268:10;68280:6;68248:39;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68223:64;;68298:94;68306:11;68319:9;68330:14;68346:18;68366:14;68382:9;68298:7;:94::i;:::-;68435:5;-1:-1:-1;;;;;68410:51:0;68422:11;68410:51;;;68442:10;68454:6;68410:51;;;;;;;:::i;:::-;;;;;;;;68050:419;;67855:614;;;;;;;:::o;67398:449::-;67636:2;67622:17;;67616:24;67667:21;;;67663:177;;67705:52;67714:11;67727;67740:6;67748:8;67705;:52::i;:::-;67663:177;;;67790:38;;-1:-1:-1;;;67790:38:0;;37747:2:1;67790:38:0;;;37729:21:1;37786:2;37766:18;;;37759:30;37825;37805:18;;;37798:58;37873:18;;67790:38:0;37545:352:1;23057:191:0;23131:16;23150:6;;-1:-1:-1;;;;;23167:17:0;;;-1:-1:-1;;;;;;23167:17:0;;;;;;23200:40;;23150:6;;;;;;;23200:40;;23131:16;23200:40;23120:128;23057:191;:::o;39806:2779::-;39947:12;40001:7;39985:12;40001:7;39995:2;39985:12;:::i;:::-;:23;;39977:50;;;;-1:-1:-1;;;39977:50:0;;38104:2:1;39977:50:0;;;38086:21:1;38143:2;38123:18;;;38116:30;-1:-1:-1;;;38162:18:1;;;38155:44;38216:18;;39977:50:0;37902:338:1;39977:50:0;40063:16;40072:7;40063:6;:16;:::i;:::-;40046:6;:13;:33;;40038:63;;;;-1:-1:-1;;;40038:63:0;;38447:2:1;40038:63:0;;;38429:21:1;38486:2;38466:18;;;38459:30;-1:-1:-1;;;38505:18:1;;;38498:47;38562:18;;40038:63:0;38245:341:1;40038:63:0;40114:22;40180:15;;40209:1933;;;;42286:4;42280:11;42267:24;;42467:1;42456:9;42449:20;42517:4;42506:9;42502:20;42496:4;42489:34;40173:2365;;40209:1933;40386:4;40380:11;40367:24;;41023:2;41014:7;41010:16;41395:9;41388:17;41382:4;41378:28;41366:9;41355;41351:25;41347:60;41444:7;41440:2;41436:16;41693:6;41679:9;41672:17;41666:4;41662:28;41650:9;41642:6;41638:22;41634:57;41630:70;41472:426;41727:3;41723:2;41720:11;41472:426;;;41869:9;;41858:21;;41769:4;41761:13;;;;41802;41472:426;;;-1:-1:-1;;41918:26:0;;;42122:2;42105:11;-1:-1:-1;;42101:25:0;42095:4;42088:39;-1:-1:-1;40173:2365:0;-1:-1:-1;42568:9:0;39806:2779;-1:-1:-1;;;;39806:2779:0:o;78003:697::-;78253:1;78240:10;:14;78232:48;;;;-1:-1:-1;;;78232:48:0;;38793:2:1;78232:48:0;;;38775:21:1;38832:2;38812:18;;;38805:30;-1:-1:-1;;;38851:18:1;;;38844:51;38912:18;;78232:48:0;38591:345:1;78232:48:0;78291:71;78311:11;66041:1;78333:14;65978:1;78291:19;:71::i;:::-;78375:11;78389:51;78400:5;78407:11;78420:10;78432:7;78389:10;:51::i;:::-;78375:65;;78453:22;66041:1;78498:10;78510:6;78478:39;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78453:64;;78528:95;78536:11;78549:9;78560:14;78576:18;78596:14;78612:10;78528:7;:95::i;:::-;78666:5;-1:-1:-1;;;;;78641:51:0;78653:11;78641:51;;;78673:10;78685:6;78641:51;;;;;;;:::i;:::-;;;;;;;;78221:479;;78003:697;;;;;;;;:::o;57471:1275::-;57633:4;57639:12;57701:15;57727:13;57751:24;57788:8;57778:19;;-1:-1:-1;;;;;57778:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57778:19:0;;57751:46;;58279:1;58253;58219:9;58213:16;58184:4;58173:9;58169:20;58138:1;58103:7;58077:4;58058:247;58046:259;;58370:16;58359:27;;58415:8;58406:7;58403:21;58400:78;;;58455:8;58444:19;;58400:78;58561:7;58548:11;58541:28;58679:7;58676:1;58669:4;58656:11;58652:22;58637:50;58716:8;;;;-1:-1:-1;57471:1275:0;-1:-1:-1;;;;;;57471:1275:0:o;63270:323::-;63494:8;63484:19;;;;;;63433:14;:27;63448:11;63433:27;;;;;;;;;;;;;;;63461:11;63433:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63433:48:0;;;;;;;;;:70;;;;63519:66;;;;63533:11;;63546;;63474:6;;63567:8;;63577:7;;63519:66;:::i;:::-;;;;;;;;63270:323;;;;;:::o;68860:373::-;69002:22;;;;68998:228;;;69041:63;69056:11;69069:7;69078:14;69094:9;69041:14;:63::i;:::-;68998:228;;;69145:21;;:26;69137:77;;;;-1:-1:-1;;;69137:77:0;;40146:2:1;69137:77:0;;;40128:21:1;40185:2;40165:18;;;40158:30;40224:34;40204:18;;;40197:62;-1:-1:-1;;;40275:18:1;;;40268:36;40321:19;;69137:77:0;39944:402:1;70195:290:0;70300:4;4196:10;-1:-1:-1;;;;;70362:16:0;;;;70358:62;;70380:40;70396:5;70403:7;70412;70380:15;:40::i;:::-;70431:21;70437:5;70444:7;70431:5;:21::i;:::-;-1:-1:-1;70470:7:0;;70195:290;-1:-1:-1;;;;70195:290:0:o;51737:553::-;51960:32;;;51931:26;51960:32;;;:19;:32;;;;;51931:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52011:13;:20;52035:1;52011:25;;52003:86;;;;-1:-1:-1;;;52003:86:0;;40553:2:1;52003:86:0;;;40535:21:1;40592:2;40572:18;;;40565:30;40631:34;40611:18;;;40604:62;-1:-1:-1;;;40682:18:1;;;40675:46;40738:19;;52003:86:0;40351:412:1;52003:86:0;52100:47;52118:11;52131:8;:15;52100:17;:47::i;:::-;52158:124;;-1:-1:-1;;;52158:124:0;;-1:-1:-1;;;;;52158:10:0;:15;;;;52181:10;;52158:124;;52193:11;;52206:13;;52221:8;;52231:14;;52247:18;;52267:14;;52158:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51920:370;51737:553;;;;;;:::o;68477:375::-;68591:27;68620:11;68646:8;68635:43;;;;;;;;;;;;:::i;:::-;68588:90;;-1:-1:-1;68588:90:0;-1:-1:-1;68691:10:0;;-1:-1:-1;68704:27:0;68588:90;68691:10;68704:24;:27::i;:::-;68691:40;;68753:34;68763:11;68776:2;68780:6;68753:9;:34::i;:::-;68744:43;;68833:2;-1:-1:-1;;;;;68803:41:0;68820:11;68803:41;;;68837:6;68803:41;;;;4135:25:1;;4123:2;4108:18;;3989:177;68803:41:0;;;;;;;;68577:275;;;68477:375;;;;:::o;52298:420::-;52434:21;52458:28;52471:14;52458:12;:28::i;:::-;52516;;;;52497:16;52516:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;;;52434:52;;-1:-1:-1;52497:16:0;52516:47;;52554:9;;52516:47;:::i;:::-;52497:66;;52596:1;52582:11;:15;52574:54;;;;-1:-1:-1;;;52574:54:0;;42342:2:1;52574:54:0;;;42324:21:1;42381:2;42361:18;;;42354:30;42420:28;42400:18;;;42393:56;42466:18;;52574:54:0;42140:350:1;52574:54:0;52667:11;52647:16;:31;;52639:71;;;;-1:-1:-1;;;52639:71:0;;42697:2:1;52639:71:0;;;42679:21:1;42736:2;42716:18;;;42709:30;42775:29;42755:18;;;42748:57;42822:18;;52639:71:0;42495:351:1;13742:675:0;-1:-1:-1;;;;;13826:21:0;;13818:67;;;;-1:-1:-1;;;13818:67:0;;43053:2:1;13818:67:0;;;43035:21:1;43092:2;43072:18;;;43065:30;43131:34;43111:18;;;43104:62;-1:-1:-1;;;43182:18:1;;;43175:31;43223:19;;13818:67:0;42851:397:1;13818:67:0;-1:-1:-1;;;;;13985:18:0;;13960:22;13985:18;;;:9;:18;;;;;;14022:24;;;;14014:71;;;;-1:-1:-1;;;14014:71:0;;43455:2:1;14014:71:0;;;43437:21:1;43494:2;43474:18;;;43467:30;43533:34;43513:18;;;43506:62;-1:-1:-1;;;43584:18:1;;;43577:32;43626:19;;14014:71:0;43253:398:1;14014:71:0;-1:-1:-1;;;;;14121:18:0;;;;;;:9;:18;;;;;;;;14142:23;;;14121:44;;14260:12;:22;;;;;;;14311:37;4135:25:1;;;14121:18:0;;;14311:37;;4108:18:1;14311:37:0;;;;;;;76491:113;75943:668;;:::o;53005:389::-;53128:35;;;53104:21;53128:35;;;:22;:35;;;;;;53178:21;53174:125;;-1:-1:-1;50031:5:0;53174:125;53333:16;53317:12;:32;;53309:77;;;;-1:-1:-1;;;53309:77:0;;43858:2:1;53309:77:0;;;43840:21:1;;;43877:18;;;43870:30;43936:34;43916:18;;;43909:62;43988:18;;53309:77:0;43656:356:1;42593:363:0;42672:7;42717:11;:6;42726:2;42717:11;:::i;:::-;42700:6;:13;:28;;42692:62;;;;-1:-1:-1;;;42692:62:0;;44219:2:1;42692:62:0;;;44201:21:1;44258:2;44238:18;;;44231:30;-1:-1:-1;;;44277:18:1;;;44270:51;44338:18;;42692:62:0;44017:345:1;42692:62:0;-1:-1:-1;42846:30:0;42862:4;42846:30;42840:37;-1:-1:-1;;;42836:71:0;;;42593:363::o;70493:171::-;70588:4;70605:26;70611:10;70623:7;70605:5;:26::i;52726:271::-;52808:13;52867:2;52842:14;:21;:27;;52834:68;;;;-1:-1:-1;;;52834:68:0;;44569:2:1;52834:68:0;;;44551:21:1;44608:2;44588:18;;;44581:30;44647;44627:18;;;44620:58;44695:18;;52834:68:0;44367:352:1;52834:68:0;-1:-1:-1;52975:2:0;52955:23;52949:30;;52726:271::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:117:1;99:6;92:5;88:18;81:5;78:29;68:57;;121:1;118;111:12;136:347;187:8;197:6;251:3;244:4;236:6;232:17;228:27;218:55;;269:1;266;259:12;218:55;-1:-1:-1;292:20:1;;-1:-1:-1;;;;;324:30:1;;321:50;;;367:1;364;357:12;321:50;404:4;396:6;392:17;380:29;;456:3;449:4;440:6;432;428:19;424:30;421:39;418:59;;;473:1;470;463:12;418:59;136:347;;;;;:::o;488:171::-;555:20;;-1:-1:-1;;;;;604:30:1;;594:41;;584:69;;649:1;646;639:12;584:69;488:171;;;:::o;664:923::-;770:6;778;786;794;802;810;863:3;851:9;842:7;838:23;834:33;831:53;;;880:1;877;870:12;831:53;919:9;906:23;938:30;962:5;938:30;:::i;:::-;987:5;-1:-1:-1;1043:2:1;1028:18;;1015:32;-1:-1:-1;;;;;1096:14:1;;;1093:34;;;1123:1;1120;1113:12;1093:34;1162:58;1212:7;1203:6;1192:9;1188:22;1162:58;:::i;:::-;1239:8;;-1:-1:-1;1136:84:1;-1:-1:-1;1136:84:1;;-1:-1:-1;1293:37:1;1326:2;1311:18;;1293:37;:::i;:::-;1283:47;;1383:2;1372:9;1368:18;1355:32;1339:48;;1412:2;1402:8;1399:16;1396:36;;;1428:1;1425;1418:12;1396:36;;1467:60;1519:7;1508:8;1497:9;1493:24;1467:60;:::i;:::-;664:923;;;;-1:-1:-1;664:923:1;;-1:-1:-1;664:923:1;;1546:8;;664:923;-1:-1:-1;;;664:923:1:o;1592:286::-;1650:6;1703:2;1691:9;1682:7;1678:23;1674:32;1671:52;;;1719:1;1716;1709:12;1671:52;1745:23;;-1:-1:-1;;;;;;1797:32:1;;1787:43;;1777:71;;1844:1;1841;1834:12;2075:258;2147:1;2157:113;2171:6;2168:1;2165:13;2157:113;;;2247:11;;;2241:18;2228:11;;;2221:39;2193:2;2186:10;2157:113;;;2288:6;2285:1;2282:13;2279:48;;;-1:-1:-1;;2323:1:1;2305:16;;2298:27;2075:258::o;2338:::-;2380:3;2418:5;2412:12;2445:6;2440:3;2433:19;2461:63;2517:6;2510:4;2505:3;2501:14;2494:4;2487:5;2483:16;2461:63;:::i;:::-;2578:2;2557:15;-1:-1:-1;;2553:29:1;2544:39;;;;2585:4;2540:50;;2338:258;-1:-1:-1;;2338:258:1:o;2601:220::-;2750:2;2739:9;2732:21;2713:4;2770:45;2811:2;2800:9;2796:18;2788:6;2770:45;:::i;2826:245::-;2884:6;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2992:9;2979:23;3011:30;3035:5;3011:30;:::i;3076:131::-;-1:-1:-1;;;;;3151:31:1;;3141:42;;3131:70;;3197:1;3194;3187:12;3212:134;3280:20;;3309:31;3280:20;3309:31;:::i;3351:315::-;3419:6;3427;3480:2;3468:9;3459:7;3455:23;3451:32;3448:52;;;3496:1;3493;3486:12;3448:52;3535:9;3522:23;3554:31;3579:5;3554:31;:::i;:::-;3604:5;3656:2;3641:18;;;;3628:32;;-1:-1:-1;;;3351:315:1:o;3671:313::-;3738:6;3746;3799:2;3787:9;3778:7;3774:23;3770:32;3767:52;;;3815:1;3812;3805:12;3767:52;3854:9;3841:23;3873:30;3897:5;3873:30;:::i;4171:456::-;4248:6;4256;4264;4317:2;4305:9;4296:7;4292:23;4288:32;4285:52;;;4333:1;4330;4323:12;4285:52;4372:9;4359:23;4391:31;4416:5;4391:31;:::i;:::-;4441:5;-1:-1:-1;4498:2:1;4483:18;;4470:32;4511:33;4470:32;4511:33;:::i;:::-;4171:456;;4563:7;;-1:-1:-1;;;4617:2:1;4602:18;;;;4589:32;;4171:456::o;4632:127::-;4693:10;4688:3;4684:20;4681:1;4674:31;4724:4;4721:1;4714:15;4748:4;4745:1;4738:15;4764:275;4835:2;4829:9;4900:2;4881:13;;-1:-1:-1;;4877:27:1;4865:40;;-1:-1:-1;;;;;4920:34:1;;4956:22;;;4917:62;4914:88;;;4982:18;;:::i;:::-;5018:2;5011:22;4764:275;;-1:-1:-1;4764:275:1:o;5044:183::-;5104:4;-1:-1:-1;;;;;5129:6:1;5126:30;5123:56;;;5159:18;;:::i;:::-;-1:-1:-1;5204:1:1;5200:14;5216:4;5196:25;;5044:183::o;5232:662::-;5286:5;5339:3;5332:4;5324:6;5320:17;5316:27;5306:55;;5357:1;5354;5347:12;5306:55;5393:6;5380:20;5419:4;5443:60;5459:43;5499:2;5459:43;:::i;:::-;5443:60;:::i;:::-;5537:15;;;5623:1;5619:10;;;;5607:23;;5603:32;;;5568:12;;;;5647:15;;;5644:35;;;5675:1;5672;5665:12;5644:35;5711:2;5703:6;5699:15;5723:142;5739:6;5734:3;5731:15;5723:142;;;5805:17;;5793:30;;5843:12;;;;5756;;5723:142;;;-1:-1:-1;5883:5:1;5232:662;-1:-1:-1;;;;;;5232:662:1:o;5899:483::-;5992:6;6000;6053:2;6041:9;6032:7;6028:23;6024:32;6021:52;;;6069:1;6066;6059:12;6021:52;6108:9;6095:23;6127:31;6152:5;6127:31;:::i;:::-;6177:5;-1:-1:-1;6233:2:1;6218:18;;6205:32;-1:-1:-1;;;;;6249:30:1;;6246:50;;;6292:1;6289;6282:12;6246:50;6315:61;6368:7;6359:6;6348:9;6344:22;6315:61;:::i;:::-;6305:71;;;5899:483;;;;;:::o;6387:160::-;6452:20;;6508:13;;6501:21;6491:32;;6481:60;;6537:1;6534;6527:12;6552:988;6665:6;6673;6681;6689;6697;6705;6713;6766:3;6754:9;6745:7;6741:23;6737:33;6734:53;;;6783:1;6780;6773:12;6734:53;6822:9;6809:23;6841:30;6865:5;6841:30;:::i;:::-;6890:5;-1:-1:-1;6946:2:1;6931:18;;6918:32;-1:-1:-1;;;;;6999:14:1;;;6996:34;;;7026:1;7023;7016:12;6996:34;7065:58;7115:7;7106:6;7095:9;7091:22;7065:58;:::i;:::-;7142:8;;-1:-1:-1;7039:84:1;-1:-1:-1;7224:2:1;7209:18;;7196:32;;-1:-1:-1;7039:84:1;;-1:-1:-1;7247:35:1;7278:2;7263:18;;7247:35;:::i;:::-;7237:45;;7335:3;7324:9;7320:19;7307:33;7291:49;;7365:2;7355:8;7352:16;7349:36;;;7381:1;7378;7371:12;7349:36;;7420:60;7472:7;7461:8;7450:9;7446:24;7420:60;:::i;:::-;6552:988;;;;-1:-1:-1;6552:988:1;;-1:-1:-1;6552:988:1;;;;7394:86;;-1:-1:-1;;;6552:988:1:o;7987:542::-;8065:6;8073;8081;8134:2;8122:9;8113:7;8109:23;8105:32;8102:52;;;8150:1;8147;8140:12;8102:52;8189:9;8176:23;8208:30;8232:5;8208:30;:::i;:::-;8257:5;-1:-1:-1;8313:2:1;8298:18;;8285:32;-1:-1:-1;;;;;8329:30:1;;8326:50;;;8372:1;8369;8362:12;8326:50;8411:58;8461:7;8452:6;8441:9;8437:22;8411:58;:::i;:::-;7987:542;;8488:8;;-1:-1:-1;8385:84:1;;-1:-1:-1;;;;7987:542:1:o;8727:1353::-;8869:6;8877;8885;8893;8901;8909;8917;8925;8933;8986:3;8974:9;8965:7;8961:23;8957:33;8954:53;;;9003:1;9000;8993:12;8954:53;9042:9;9029:23;9061:31;9086:5;9061:31;:::i;:::-;9111:5;-1:-1:-1;9168:2:1;9153:18;;9140:32;9181;9140;9181;:::i;:::-;9232:7;-1:-1:-1;9290:2:1;9275:18;;9262:32;-1:-1:-1;;;;;9343:14:1;;;9340:34;;;9370:1;9367;9360:12;9340:34;9409:58;9459:7;9450:6;9439:9;9435:22;9409:58;:::i;:::-;9486:8;;-1:-1:-1;9383:84:1;-1:-1:-1;9568:2:1;9553:18;;9540:32;;-1:-1:-1;9624:3:1;9609:19;;9596:33;;-1:-1:-1;9638:33:1;9596;9638;:::i;:::-;9690:7;;-1:-1:-1;9749:3:1;9734:19;;9721:33;;9763;9721;9763;:::i;:::-;9815:7;;-1:-1:-1;9875:3:1;9860:19;;9847:33;;9892:16;;;9889:36;;;9921:1;9918;9911:12;9889:36;;9960:60;10012:7;10001:8;9990:9;9986:24;9960:60;:::i;:::-;9934:86;;10039:8;10029:18;;;10066:8;10056:18;;;8727:1353;;;;;;;;;;;:::o;10085:186::-;10133:4;-1:-1:-1;;;;;10158:6:1;10155:30;10152:56;;;10188:18;;:::i;:::-;-1:-1:-1;10254:2:1;10233:15;-1:-1:-1;;10229:29:1;10260:4;10225:40;;10085:186::o;10276:462::-;10318:5;10371:3;10364:4;10356:6;10352:17;10348:27;10338:55;;10389:1;10386;10379:12;10338:55;10425:6;10412:20;10456:48;10472:31;10500:2;10472:31;:::i;10456:48::-;10529:2;10520:7;10513:19;10575:3;10568:4;10563:2;10555:6;10551:15;10547:26;10544:35;10541:55;;;10592:1;10589;10582:12;10541:55;10657:2;10650:4;10642:6;10638:17;10631:4;10622:7;10618:18;10605:55;10705:1;10680:16;;;10698:4;10676:27;10669:38;;;;10684:7;10276:462;-1:-1:-1;;;10276:462:1:o;10743:525::-;10827:6;10835;10843;10896:2;10884:9;10875:7;10871:23;10867:32;10864:52;;;10912:1;10909;10902:12;10864:52;10951:9;10938:23;10970:30;10994:5;10970:30;:::i;:::-;11019:5;-1:-1:-1;11075:2:1;11060:18;;11047:32;-1:-1:-1;;;;;11091:30:1;;11088:50;;;11134:1;11131;11124:12;11088:50;11157:49;11198:7;11189:6;11178:9;11174:22;11157:49;:::i;:::-;11147:59;;;11225:37;11258:2;11247:9;11243:18;11225:37;:::i;:::-;11215:47;;10743:525;;;;;:::o;11663:247::-;11722:6;11775:2;11763:9;11754:7;11750:23;11746:32;11743:52;;;11791:1;11788;11781:12;11743:52;11830:9;11817:23;11849:31;11874:5;11849:31;:::i;12138:384::-;12204:6;12212;12265:2;12253:9;12244:7;12240:23;12236:32;12233:52;;;12281:1;12278;12271:12;12233:52;12320:9;12307:23;12339:30;12363:5;12339:30;:::i;:::-;12388:5;-1:-1:-1;12445:2:1;12430:18;;12417:32;12458;12417;12458;:::i;:::-;12509:7;12499:17;;;12138:384;;;;;:::o;12527:348::-;12611:6;12664:2;12652:9;12643:7;12639:23;12635:32;12632:52;;;12680:1;12677;12670:12;12632:52;12720:9;12707:23;-1:-1:-1;;;;;12745:6:1;12742:30;12739:50;;;12785:1;12782;12775:12;12739:50;12808:61;12861:7;12852:6;12841:9;12837:22;12808:61;:::i;:::-;12798:71;12527:348;-1:-1:-1;;;;12527:348:1:o;12880:642::-;13045:2;13097:21;;;13167:13;;13070:18;;;13189:22;;;13016:4;;13045:2;13268:15;;;;13242:2;13227:18;;;13016:4;13311:185;13325:6;13322:1;13319:13;13311:185;;;13400:13;;13393:21;13386:29;13374:42;;13471:15;;;;13436:12;;;;13347:1;13340:9;13311:185;;;-1:-1:-1;13513:3:1;;12880:642;-1:-1:-1;;;;;;12880:642:1:o;13762:180::-;13821:6;13874:2;13862:9;13853:7;13849:23;13845:32;13842:52;;;13890:1;13887;13880:12;13842:52;-1:-1:-1;13913:23:1;;13762:180;-1:-1:-1;13762:180:1:o;13947:750::-;14042:6;14050;14058;14066;14074;14127:3;14115:9;14106:7;14102:23;14098:33;14095:53;;;14144:1;14141;14134:12;14095:53;14183:9;14170:23;14202:30;14226:5;14202:30;:::i;:::-;14251:5;-1:-1:-1;14308:2:1;14293:18;;14280:32;14321;14280;14321;:::i;:::-;14372:7;-1:-1:-1;14426:2:1;14411:18;;14398:32;;-1:-1:-1;14481:2:1;14466:18;;14453:32;-1:-1:-1;;;;;14497:30:1;;14494:50;;;14540:1;14537;14530:12;14494:50;14579:58;14629:7;14620:6;14609:9;14605:22;14579:58;:::i;:::-;13947:750;;;;-1:-1:-1;13947:750:1;;-1:-1:-1;14656:8:1;;14553:84;13947:750;-1:-1:-1;;;13947:750:1:o;14702:388::-;14770:6;14778;14831:2;14819:9;14810:7;14806:23;14802:32;14799:52;;;14847:1;14844;14837:12;14799:52;14886:9;14873:23;14905:31;14930:5;14905:31;:::i;:::-;14955:5;-1:-1:-1;15012:2:1;14997:18;;14984:32;15025:33;14984:32;15025:33;:::i;15095:452::-;15170:6;15178;15186;15239:2;15227:9;15218:7;15214:23;15210:32;15207:52;;;15255:1;15252;15245:12;15207:52;15294:9;15281:23;15313:30;15337:5;15313:30;:::i;:::-;15362:5;-1:-1:-1;15419:2:1;15404:18;;15391:32;15432;15391;15432;:::i;15552:735::-;15605:5;15658:3;15651:4;15643:6;15639:17;15635:27;15625:55;;15676:1;15673;15666:12;15625:55;15712:6;15699:20;15738:4;15762:60;15778:43;15818:2;15778:43;:::i;15762:60::-;15856:15;;;15942:1;15938:10;;;;15926:23;;15922:32;;;15887:12;;;;15966:15;;;15963:35;;;15994:1;15991;15984:12;15963:35;16030:2;16022:6;16018:15;16042:216;16058:6;16053:3;16050:15;16042:216;;;16138:3;16125:17;16155:30;16179:5;16155:30;:::i;:::-;16198:18;;16236:12;;;;16075;;16042:216;;16292:886;16344:5;16397:3;16390:4;16382:6;16378:17;16374:27;16364:55;;16415:1;16412;16405:12;16364:55;16451:6;16438:20;16477:4;16501:60;16517:43;16557:2;16517:43;:::i;16501:60::-;16595:15;;;16681:1;16677:10;;;;16665:23;;16661:32;;;16626:12;;;;16705:15;;;16702:35;;;16733:1;16730;16723:12;16702:35;16769:2;16761:6;16757:15;16781:368;16797:6;16792:3;16789:15;16781:368;;;16883:3;16870:17;-1:-1:-1;;;;;16906:11:1;16903:35;16900:125;;;16979:1;17008:2;17004;16997:14;16900:125;17050:56;17102:3;17097:2;17083:11;17075:6;17071:24;17067:33;17050:56;:::i;:::-;17038:69;;-1:-1:-1;17127:12:1;;;;16814;;16781:368;;17183:1574;17432:6;17440;17448;17456;17464;17472;17480;17488;17496;17549:3;17537:9;17528:7;17524:23;17520:33;17517:53;;;17566:1;17563;17556:12;17517:53;17589:29;17608:9;17589:29;:::i;:::-;17579:39;;17669:2;17658:9;17654:18;17641:32;-1:-1:-1;;;;;17733:2:1;17725:6;17722:14;17719:34;;;17749:1;17746;17739:12;17719:34;17772:60;17824:7;17815:6;17804:9;17800:22;17772:60;:::i;:::-;17762:70;;17885:2;17874:9;17870:18;17857:32;17841:48;;17914:2;17904:8;17901:16;17898:36;;;17930:1;17927;17920:12;17898:36;17969:60;18021:7;18010:8;17999:9;17995:24;17969:60;:::i;:::-;18048:8;;-1:-1:-1;17943:86:1;-1:-1:-1;18136:2:1;18121:18;;18108:32;;-1:-1:-1;18152:16:1;;;18149:36;;;18181:1;18178;18171:12;18149:36;18204:63;18259:7;18248:8;18237:9;18233:24;18204:63;:::i;:::-;18194:73;;18286:39;18320:3;18309:9;18305:19;18286:39;:::i;:::-;18276:49;;18344:39;18378:3;18367:9;18363:19;18344:39;:::i;:::-;18334:49;;18436:3;18425:9;18421:19;18408:33;18392:49;;18466:2;18456:8;18453:16;18450:36;;;18482:1;18479;18472:12;18450:36;18505:61;18558:7;18547:8;18536:9;18532:24;18505:61;:::i;:::-;18495:71;;18619:3;18608:9;18604:19;18591:33;18575:49;;18649:2;18639:8;18636:16;18633:36;;;18665:1;18662;18655:12;18633:36;;18688:63;18743:7;18732:8;18721:9;18717:24;18688:63;:::i;:::-;18678:73;;;17183:1574;;;;;;;;;;;:::o;18762:180::-;18818:6;18871:2;18859:9;18850:7;18846:23;18842:32;18839:52;;;18887:1;18884;18877:12;18839:52;18910:26;18926:9;18910:26;:::i;18947:594::-;19031:6;19039;19047;19055;19108:3;19096:9;19087:7;19083:23;19079:33;19076:53;;;19125:1;19122;19115:12;19076:53;19164:9;19151:23;19183:30;19207:5;19183:30;:::i;:::-;19232:5;-1:-1:-1;19289:2:1;19274:18;;19261:32;19302;19261;19302;:::i;:::-;19353:7;-1:-1:-1;19412:2:1;19397:18;;19384:32;19425:33;19384:32;19425:33;:::i;:::-;18947:594;;;;-1:-1:-1;19477:7:1;;19531:2;19516:18;19503:32;;-1:-1:-1;;18947:594:1:o;19905:380::-;19984:1;19980:12;;;;20027;;;20048:61;;20102:4;20094:6;20090:17;20080:27;;20048:61;20155:2;20147:6;20144:14;20124:18;20121:38;20118:161;;;20201:10;20196:3;20192:20;20189:1;20182:31;20236:4;20233:1;20226:15;20264:4;20261:1;20254:15;20118:161;;19905:380;;;:::o;20290:271::-;20473:6;20465;20460:3;20447:33;20429:3;20499:16;;20524:13;;;20499:16;20290:271;-1:-1:-1;20290:271:1:o;20973:127::-;21034:10;21029:3;21025:20;21022:1;21015:31;21065:4;21062:1;21055:15;21089:4;21086:1;21079:15;21105:168;21145:7;21211:1;21207;21203:6;21199:14;21196:1;21193:21;21188:1;21181:9;21174:17;21170:45;21167:71;;;21218:18;;:::i;:::-;-1:-1:-1;21258:9:1;;21105:168::o;21626:127::-;21687:10;21682:3;21678:20;21675:1;21668:31;21718:4;21715:1;21708:15;21742:4;21739:1;21732:15;21758:251;21828:6;21881:2;21869:9;21860:7;21856:23;21852:32;21849:52;;;21897:1;21894;21887:12;21849:52;21929:9;21923:16;21948:31;21973:5;21948:31;:::i;22836:135::-;22875:3;-1:-1:-1;;22896:17:1;;22893:43;;;22916:18;;:::i;:::-;-1:-1:-1;22963:1:1;22952:13;;22836:135::o;22976:266::-;23064:6;23059:3;23052:19;23116:6;23109:5;23102:4;23097:3;23093:14;23080:43;-1:-1:-1;23168:1:1;23143:16;;;23161:4;23139:27;;;23132:38;;;;23224:2;23203:15;;;-1:-1:-1;;23199:29:1;23190:39;;;23186:50;;22976:266::o;23247:397::-;23470:6;23462;23458:19;23447:9;23440:38;23514:2;23509;23498:9;23494:18;23487:30;23421:4;23534:61;23591:2;23580:9;23576:18;23568:6;23560;23534:61;:::i;:::-;23526:69;;23631:6;23626:2;23615:9;23611:18;23604:34;23247:397;;;;;;;:::o;23649:668::-;23940:6;23928:19;;23910:38;;-1:-1:-1;;;;;23984:32:1;;23979:2;23964:18;;23957:60;24004:3;24048:2;24033:18;;24026:31;;;-1:-1:-1;;24080:46:1;;24106:19;;24098:6;24080:46;:::i;:::-;24176:6;24169:14;24162:22;24157:2;24146:9;24142:18;24135:50;24234:9;24226:6;24222:22;24216:3;24205:9;24201:19;24194:51;24262:49;24304:6;24296;24288;24262:49;:::i;:::-;24254:57;23649:668;-1:-1:-1;;;;;;;;;23649:668:1:o;24322:245::-;24401:6;24409;24462:2;24450:9;24441:7;24437:23;24433:32;24430:52;;;24478:1;24475;24468:12;24430:52;-1:-1:-1;;24501:16:1;;24557:2;24542:18;;;24536:25;24501:16;;24536:25;;-1:-1:-1;24322:245:1:o;24572:128::-;24612:3;24643:1;24639:6;24636:1;24633:13;24630:39;;;24649:18;;:::i;:::-;-1:-1:-1;24685:9:1;;24572:128::o;24705:326::-;24900:6;24892;24888:19;24877:9;24870:38;24944:2;24939;24928:9;24924:18;24917:30;24851:4;24964:61;25021:2;25010:9;25006:18;24998:6;24990;24964:61;:::i;25801:125::-;25841:4;25869:1;25866;25863:8;25860:34;;;25874:18;;:::i;:::-;-1:-1:-1;25911:9:1;;25801:125::o;26337:382::-;26548:6;26540;26535:3;26522:33;26640:2;26636:15;;;;-1:-1:-1;;26632:53:1;26574:16;;26621:65;;;26710:2;26702:11;;26337:382;-1:-1:-1;26337:382:1:o;26724:498::-;26924:4;26953:6;26998:2;26990:6;26986:15;26975:9;26968:34;27050:2;27042:6;27038:15;27033:2;27022:9;27018:18;27011:43;;27090:6;27085:2;27074:9;27070:18;27063:34;27133:3;27128:2;27117:9;27113:18;27106:31;27154:62;27211:3;27200:9;27196:19;27188:6;27180;27154:62;:::i;:::-;27146:70;26724:498;-1:-1:-1;;;;;;;26724:498:1:o;28033:493::-;28282:6;28274;28270:19;28259:9;28252:38;28326:3;28321:2;28310:9;28306:18;28299:31;28233:4;28347:62;28404:3;28393:9;28389:19;28381:6;28373;28347:62;:::i;:::-;-1:-1:-1;;;;;28445:31:1;;;;28440:2;28425:18;;28418:59;-1:-1:-1;28508:2:1;28493:18;28486:34;28339:70;28033:493;-1:-1:-1;;;28033:493:1:o;30718:419::-;30920:2;30902:21;;;30959:2;30939:18;;;30932:30;30998:34;30993:2;30978:18;;30971:62;31069:25;31064:2;31049:18;;31042:53;31127:3;31112:19;;30718:419::o;32436:428::-;32489:5;32542:3;32535:4;32527:6;32523:17;32519:27;32509:55;;32560:1;32557;32550:12;32509:55;32589:6;32583:13;32620:48;32636:31;32664:2;32636:31;:::i;32620:48::-;32693:2;32684:7;32677:19;32739:3;32732:4;32727:2;32719:6;32715:15;32711:26;32708:35;32705:55;;;32756:1;32753;32746:12;32705:55;32769:64;32830:2;32823:4;32814:7;32810:18;32803:4;32795:6;32791:17;32769:64;:::i;32869:335::-;32948:6;33001:2;32989:9;32980:7;32976:23;32972:32;32969:52;;;33017:1;33014;33007:12;32969:52;33050:9;33044:16;-1:-1:-1;;;;;33075:6:1;33072:30;33069:50;;;33115:1;33112;33105:12;33069:50;33138:60;33190:7;33181:6;33170:9;33166:22;33138:60;:::i;33209:557::-;33466:6;33458;33454:19;33443:9;33436:38;33510:3;33505:2;33494:9;33490:18;33483:31;33417:4;33537:46;33578:3;33567:9;33563:19;33555:6;33537:46;:::i;:::-;-1:-1:-1;;;;;33623:6:1;33619:31;33614:2;33603:9;33599:18;33592:59;33699:9;33691:6;33687:22;33682:2;33671:9;33667:18;33660:50;33727:33;33753:6;33745;33727:33;:::i;36875:371::-;37088:6;37080;37076:19;37065:9;37058:38;37132:2;37127;37116:9;37112:18;37105:30;37039:4;37152:45;37193:2;37182:9;37178:18;37170:6;37152:45;:::i;:::-;37144:53;;37233:6;37228:2;37217:9;37213:18;37206:34;36875:371;;;;;;:::o;37251:289::-;37426:2;37415:9;37408:21;37389:4;37446:45;37487:2;37476:9;37472:18;37464:6;37446:45;:::i;:::-;37438:53;;37527:6;37522:2;37511:9;37507:18;37500:34;37251:289;;;;;:::o;38941:274::-;39070:3;39108:6;39102:13;39124:53;39170:6;39165:3;39158:4;39150:6;39146:17;39124:53;:::i;:::-;39193:16;;;;;38941:274;-1:-1:-1;;38941:274:1:o;39220:719::-;39523:6;39515;39511:19;39500:9;39493:38;39567:3;39562:2;39551:9;39547:18;39540:31;39474:4;39594:46;39635:3;39624:9;39620:19;39612:6;39594:46;:::i;:::-;-1:-1:-1;;;;;39680:6:1;39676:31;39671:2;39660:9;39656:18;39649:59;39756:9;39748:6;39744:22;39739:2;39728:9;39724:18;39717:50;39790:33;39816:6;39808;39790:33;:::i;:::-;39776:47;;39872:9;39864:6;39860:22;39854:3;39843:9;39839:19;39832:51;39900:33;39926:6;39918;39900:33;:::i;:::-;39892:41;39220:719;-1:-1:-1;;;;;;;;39220:719:1:o;40768:840::-;41117:6;41109;41105:19;41094:9;41087:38;41161:3;41156:2;41145:9;41141:18;41134:31;41068:4;41188:46;41229:3;41218:9;41214:19;41206:6;41188:46;:::i;:::-;41282:9;41274:6;41270:22;41265:2;41254:9;41250:18;41243:50;41316:33;41342:6;41334;41316:33;:::i;:::-;-1:-1:-1;;;;;41423:15:1;;;41418:2;41403:18;;41396:43;41476:15;;41470:3;41455:19;;41448:44;41529:22;;;41376:3;41508:19;;41501:51;41302:47;-1:-1:-1;41569:33:1;41302:47;41587:6;41569:33;:::i;41613:522::-;41709:6;41717;41725;41778:2;41766:9;41757:7;41753:23;41749:32;41746:52;;;41794:1;41791;41784:12;41746:52;41826:9;41820:16;41845:30;41869:5;41845:30;:::i;:::-;41943:2;41928:18;;41922:25;41894:5;;-1:-1:-1;;;;;;41959:30:1;;41956:50;;;42002:1;41999;41992:12;41956:50;42025:60;42077:7;42068:6;42057:9;42053:22;42025:60;:::i;:::-;42015:70;;;42125:2;42114:9;42110:18;42104:25;42094:35;;41613:522;;;;;:::o

Swarm Source

ipfs://fa1982b56c35a1fb3ddadefa8bdf5a1b5b1c5bd304d9f4c4456624dba5d6b3bd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.