ETH Price: $3,286.98 (-4.43%)

Token

OmniCat (OMNI)

Overview

Max Total Supply

4,127,541,491.66560314 OMNI

Holders

4,304 ( -0.046%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (+13.73%)

Onchain Market Cap

$111,980.20

Circulating Supply Market Cap

$1,132,046.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

OmniCat is the first omnichain memecoin. Powered by LayerZero, $OMNI is currently live and tradeable on 7 different ecosystems including Ethereum, Arbitrum and Solana.

Market

Volume (24H):$84,598.00
Market Capitalization:$1,132,046.00
Circulating Supply:41,725,187,737.00 OMNI
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
OFTV2

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-12-22
*/

// Sources flattened with hardhat v2.19.3 https://hardhat.org

// SPDX-License-Identifier: BUSL-1.1 AND MIT AND Unlicense

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



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


// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


// File contracts/lzApp/interfaces/ILayerZeroUserApplicationConfig.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity >=0.5.0;

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;
}


// File contracts/lzApp/interfaces/ILayerZeroEndpoint.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity >=0.5.0;

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);
}


// File contracts/libraries/BytesLib.sol

// Original license: SPDX_License_Identifier: Unlicense
/*
 * @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.
 */
pragma solidity >=0.8.0 <0.9.0;

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,
        uint _start,
        uint _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, uint _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, uint _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, uint _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, uint _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, uint _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, uint _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, uint _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, uint _start) internal pure returns (uint) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint tempUint;

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

        return tempUint;
    }

    function toBytes32(bytes memory _bytes, uint _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;
    }
}


// File contracts/lzApp/interfaces/ILayerZeroReceiver.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity >=0.5.0;

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;
}


// File contracts/lzApp/LzApp.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;





/*
 * 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 public constant 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];
        require(minGasLimit > 0, "LzApp: minGasLimit not set");
        require(providedGasLimit >= minGasLimit + _extraGas, "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 {
        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);
    }
}


// File contracts/libraries/ExcessivelySafeCall.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity >=0.7.6;

library ExcessivelySafeCall {
    uint 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,
        uint _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal returns (bool, bytes memory) {
        // set up for assembly call
        uint _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,
        uint _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal view returns (bool, bytes memory) {
        // set up for assembly call
        uint _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);
        uint _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)
        }
    }
}


// File contracts/lzApp/NonblockingLzApp.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;


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


// File contracts/token/oft/v2/interfaces/ICommonOFT.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity >=0.5.0;

/**
 * @dev Interface of the IOFT core standard
 */
interface ICommonOFT is IERC165 {

    struct LzCallParams {
        address payable refundAddress;
        address zroPaymentAddress;
        bytes adapterParams;
    }

    /**
     * @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, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

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


// File contracts/token/oft/v2/interfaces/IOFTV2.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity >=0.5.0;

/**
 * @dev Interface of the IOFT core standard
 */
interface IOFTV2 is ICommonOFT {

    /**
     * @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, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) external payable;

    function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable;
}


// File contracts/token/oft/v2/interfaces/IOFTReceiverV2.sol

// Original license: SPDX_License_Identifier: BUSL-1.1

pragma solidity >=0.5.0;

interface IOFTReceiverV2 {
    /**
     * @dev Called by the OFT contract when tokens are received from source chain.
     * @param _srcChainId The chain id of the source chain.
     * @param _srcAddress The address of the OFT token contract on the source chain.
     * @param _nonce The nonce of the transaction on the source chain.
     * @param _from The address of the account who calls the sendAndCall() on the source chain.
     * @param _amount The amount of tokens to transfer.
     * @param _payload Additional data with no specified format.
     */
    function onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external;
}


// File contracts/token/oft/v2/OFTCoreV2.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;




abstract contract OFTCoreV2 is NonblockingLzApp {
    using BytesLib for bytes;
    using ExcessivelySafeCall for address;

    uint public constant NO_EXTRA_GAS = 0;

    // packet type
    uint8 public constant PT_SEND = 0;
    uint8 public constant PT_SEND_AND_CALL = 1;

    uint8 public immutable sharedDecimals;

    mapping(uint16 => mapping(bytes => mapping(uint64 => bool))) public creditedPackets;

    /**
     * @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, bytes32 indexed _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 CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash);

    event NonContractAddress(address _address);

    // _sharedDecimals should be the minimum decimals on all chains
    constructor(uint8 _sharedDecimals, address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {
        sharedDecimals = _sharedDecimals;
    }

    /************************************************************************
     * public functions
     ************************************************************************/
    function callOnOFTReceived(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes32 _from,
        address _to,
        uint _amount,
        bytes calldata _payload,
        uint _gasForCall
    ) public virtual {
        require(_msgSender() == address(this), "OFTCore: caller must be OFTCore");

        // send
        _amount = _transferFrom(address(this), _to, _amount);
        emit ReceiveFromChain(_srcChainId, _to, _amount);

        // call
        IOFTReceiverV2(_to).onOFTReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload);
    }

    /************************************************************************
     * internal functions
     ************************************************************************/
    function _estimateSendFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bool _useZro,
        bytes memory _adapterParams
    ) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendFrom()
        bytes memory payload = _encodeSendPayload(_toAddress, _ld2sd(_amount));
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _estimateSendAndCallFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes memory _payload,
        uint64 _dstGasForCall,
        bool _useZro,
        bytes memory _adapterParams
    ) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendAndCall()
        bytes memory payload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(_amount), _payload, _dstGasForCall);
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _nonblockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual override {
        uint8 packetType = _payload.toUint8(0);

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

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

        (amount, ) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount); // amount returned should not have dust
        require(amount > 0, "OFTCore: amount too small");

        bytes memory lzPayload = _encodeSendPayload(_toAddress, _ld2sd(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 {
        (address to, uint64 amountSD) = _decodeSendPayload(_payload);
        if (to == address(0)) {
            to = address(0xdead);
        }

        uint amount = _sd2ld(amountSD);
        amount = _creditTo(_srcChainId, to, amount);

        emit ReceiveFromChain(_srcChainId, to, amount);
    }

    function _sendAndCall(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes memory _payload,
        uint64 _dstGasForCall,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _adapterParams
    ) internal virtual returns (uint amount) {
        _checkGasLimit(_dstChainId, PT_SEND_AND_CALL, _adapterParams, _dstGasForCall);

        (amount, ) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount);
        require(amount > 0, "OFTCore: amount too small");

        // encode the msg.sender into the payload instead of _from
        bytes memory lzPayload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(amount), _payload, _dstGasForCall);
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

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

    function _sendAndCallAck(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual {
        (bytes32 from, address to, uint64 amountSD, bytes memory payloadForCall, uint64 gasForCall) = _decodeSendAndCallPayload(_payload);

        bool credited = creditedPackets[_srcChainId][_srcAddress][_nonce];
        uint amount = _sd2ld(amountSD);

        // credit to this contract first, and then transfer to receiver only if callOnOFTReceived() succeeds
        if (!credited) {
            amount = _creditTo(_srcChainId, address(this), amount);
            creditedPackets[_srcChainId][_srcAddress][_nonce] = true;
        }

        if (!_isContract(to)) {
            emit NonContractAddress(to);
            return;
        }

        // workaround for stack too deep
        uint16 srcChainId = _srcChainId;
        bytes memory srcAddress = _srcAddress;
        uint64 nonce = _nonce;
        bytes memory payload = _payload;
        bytes32 from_ = from;
        address to_ = to;
        uint amount_ = amount;
        bytes memory payloadForCall_ = payloadForCall;

        // no gas limit for the call if retry
        uint gas = credited ? gasleft() : gasForCall;
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(
            gasleft(),
            150,
            abi.encodeWithSelector(this.callOnOFTReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas)
        );

        if (success) {
            bytes32 hash = keccak256(payload);
            emit CallOFTReceivedSuccess(srcChainId, srcAddress, nonce, hash);
        } else {
            // store the failed message into the nonblockingLzApp
            _storeFailedMessage(srcChainId, srcAddress, nonce, payload, reason);
        }
    }

    function _isContract(address _account) internal view returns (bool) {
        return _account.code.length > 0;
    }

    function _ld2sd(uint _amount) internal view virtual returns (uint64) {
        uint amountSD = _amount / _ld2sdRate();
        require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow");
        return uint64(amountSD);
    }

    function _sd2ld(uint64 _amountSD) internal view virtual returns (uint) {
        return _amountSD * _ld2sdRate();
    }

    function _removeDust(uint _amount) internal view virtual returns (uint amountAfter, uint dust) {
        dust = _amount % _ld2sdRate();
        amountAfter = _amount - dust;
    }

    function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal view virtual returns (bytes memory) {
        return abi.encodePacked(PT_SEND, _toAddress, _amountSD);
    }

    function _decodeSendPayload(bytes memory _payload) internal view virtual returns (address to, uint64 amountSD) {
        require(_payload.toUint8(0) == PT_SEND && _payload.length == 41, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
    }

    function _encodeSendAndCallPayload(
        address _from,
        bytes32 _toAddress,
        uint64 _amountSD,
        bytes memory _payload,
        uint64 _dstGasForCall
    ) internal view virtual returns (bytes memory) {
        return abi.encodePacked(PT_SEND_AND_CALL, _toAddress, _amountSD, _addressToBytes32(_from), _dstGasForCall, _payload);
    }

    function _decodeSendAndCallPayload(bytes memory _payload)
        internal
        view
        virtual
        returns (
            bytes32 from,
            address to,
            uint64 amountSD,
            bytes memory payload,
            uint64 dstGasForCall
        )
    {
        require(_payload.toUint8(0) == PT_SEND_AND_CALL, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
        from = _payload.toBytes32(41);
        dstGasForCall = _payload.toUint64(73);
        payload = _payload.slice(81, _payload.length - 81);
    }

    function _addressToBytes32(address _address) internal pure virtual returns (bytes32) {
        return bytes32(uint(uint160(_address)));
    }

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

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

    function _transferFrom(
        address _from,
        address _to,
        uint _amount
    ) internal virtual returns (uint);

    function _ld2sdRate() internal view virtual returns (uint);
}


// File contracts/token/oft/v2/BaseOFTV2.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;



abstract contract BaseOFTV2 is OFTCoreV2, ERC165, IOFTV2 {
    constructor(uint8 _sharedDecimals, address _lzEndpoint) OFTCoreV2(_sharedDecimals, _lzEndpoint) {}

    /************************************************************************
     * public functions
     ************************************************************************/
    function sendFrom(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        LzCallParams calldata _callParams
    ) public payable virtual override {
        _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams);
    }

    function sendAndCall(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes calldata _payload,
        uint64 _dstGasForCall,
        LzCallParams calldata _callParams
    ) public payable virtual override {
        _sendAndCall(
            _from,
            _dstChainId,
            _toAddress,
            _amount,
            _payload,
            _dstGasForCall,
            _callParams.refundAddress,
            _callParams.zroPaymentAddress,
            _callParams.adapterParams
        );
    }

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

    function estimateSendFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bool _useZro,
        bytes calldata _adapterParams
    ) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams);
    }

    function estimateSendAndCallFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes calldata _payload,
        uint64 _dstGasForCall,
        bool _useZro,
        bytes calldata _adapterParams
    ) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendAndCallFee(_dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _useZro, _adapterParams);
    }

    function circulatingSupply() public view virtual override returns (uint);

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


// File contracts/token/oft/v2/OFTV2.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;


contract OFTV2 is BaseOFTV2, ERC20 {
    uint256 public maxHolding = 399000000000000000000000000000000;
    address public uniswapV2Pair;
    mapping (address => bool) public noMeowList;

    uint internal immutable ld2sdRate;

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _sharedDecimals,
        address _lzEndpoint
    ) ERC20(_name, _symbol) BaseOFTV2(_sharedDecimals, _lzEndpoint) {
        uint8 decimals = decimals();
        require(_sharedDecimals <= decimals, "OFT: sharedDecimals must be <= decimals");
        ld2sdRate = 10**(decimals - _sharedDecimals);
    }

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

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

    /************************************************************************
     * internal functions
     ************************************************************************/
    function _debitFrom(
        address _from,
        uint16,
        bytes32,
        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;
    }

    function _transferFrom(
        address _from,
        address _to,
        uint _amount
    ) internal virtual override returns (uint) {
        address spender = _msgSender();
        // if transfer from this contract, no need to check allowance
        if (_from != address(this) && _from != spender) _spendAllowance(_from, spender, _amount);
        _transfer(_from, _to, _amount);
        return _amount;
    }

    function _ld2sdRate() internal view virtual override returns (uint) {
        return ld2sdRate;
    }

    // @notice  Initialize the pair and the max bid amount
    // @dev     Tokens cannot be transferred before first meow
    function firstMeow(address _uniswapV2Pair, uint256 _maxHolding) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
        maxHolding = _maxHolding;
    }

    function addToNoMeowList(address _address) external onlyOwner {
        noMeowList[_address] = true;
    }

    // @notice  Can't trade if on noMeowList or if pair not set
    // @dev     Override update to check for noMeowList and maxBuy
    function _beforeTokenTransfer(address from, address to, uint256 value) override internal virtual {

        require(!noMeowList[from] || !noMeowList[to], "OMNI: No ~meow~ list!");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "OMNI: You can't transfer before first meow");
        }

        require(super.balanceOf(to) + value <= maxHolding, "OMNI: You can't transfer more than maxHolding");
    
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_sharedDecimals","type":"uint8"},{"internalType":"address","name":"_lzEndpoint","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":true,"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":"_hash","type":"bytes32"}],"name":"CallOFTReceivedSuccess","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":false,"internalType":"address","name":"_address","type":"address"}],"name":"NonContractAddress","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":true,"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"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":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":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToNoMeowList","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes32","name":"_from","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint256","name":"_gasForCall","type":"uint256"}],"name":"callOnOFTReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"creditedPackets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendAndCallFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"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":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHolding","type":"uint256"}],"name":"firstMeow","outputs":[],"stateMutability":"nonpayable","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":"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":"maxHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"","type":"address"}],"name":"noMeowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"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":"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":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60e06040526d13ac1688689dd03ed019c0000000600c553480156200002357600080fd5b5060405162004b4b38038062004b4b833981016040819052620000469162000251565b8383838381818080620000593362000137565b6001600160a01b0316608052505060ff1660a05250600a90506200007e838262000384565b50600b6200008d828262000384565b5050506000620000a26200018760201b60201c565b90508060ff168360ff1611156200010f5760405162461bcd60e51b815260206004820152602760248201527f4f46543a20736861726564446563696d616c73206d757374206265203c3d20646044820152666563696d616c7360c81b606482015260840160405180910390fd5b6200011b838262000466565b6200012890600a62000585565b60c052506200059d9350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001b457600080fd5b81516001600160401b0380821115620001d157620001d16200018c565b604051601f8301601f19908116603f01168101908282118183101715620001fc57620001fc6200018c565b816040528381526020925086838588010111156200021957600080fd5b600091505b838210156200023d57858201830151818301840152908201906200021e565b600093810190920192909252949350505050565b600080600080608085870312156200026857600080fd5b84516001600160401b03808211156200028057600080fd5b6200028e88838901620001a2565b95506020870151915080821115620002a557600080fd5b50620002b487828801620001a2565b935050604085015160ff81168114620002cc57600080fd5b60608601519092506001600160a01b0381168114620002ea57600080fd5b939692955090935050565b600181811c908216806200030a57607f821691505b6020821081036200032b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200037f57600081815260208120601f850160051c810160208610156200035a5750805b601f850160051c820191505b818110156200037b5782815560010162000366565b5050505b505050565b81516001600160401b03811115620003a057620003a06200018c565b620003b881620003b18454620002f5565b8462000331565b602080601f831160018114620003f05760008415620003d75750858301515b600019600386901b1c1916600185901b1785556200037b565b600085815260208120601f198616915b82811015620004215788860151825594840194600190910190840162000400565b5085821015620004405787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60ff828116828216039081111562000482576200048262000450565b92915050565b600181815b80851115620004c9578160001904821115620004ad57620004ad62000450565b80851615620004bb57918102915b93841c93908002906200048d565b509250929050565b600082620004e25750600162000482565b81620004f15750600062000482565b81600181146200050a5760028114620005155762000535565b600191505062000482565b60ff84111562000529576200052962000450565b50506001821b62000482565b5060208310610133831016604e8410600b84101617156200055a575081810a62000482565b62000566838362000488565b80600019048211156200057d576200057d62000450565b029392505050565b60006200059660ff841683620004d1565b9392505050565b60805160a05160c0516145316200061a6000396000818161296101528181612db601526130920152600061072f01526000818161091501528181610a8b01528181610da301528181610e630152818161104c015281816116d601528181611c0f0152818161211e0152818161259f0152612f4901526145316000f3fe6080604052600436106103345760003560e01c806376203b48116101ab578063a9059cbb116100f7578063df2a5b3b11610095578063eb8d72b71161006f578063eb8d72b714610a15578063f2fde38b14610a35578063f5ecbdbc14610a55578063fc0c546a14610a7557600080fd5b8063df2a5b3b146109c0578063e6a20ae6146109e0578063eaffd49a146109f557600080fd5b8063c4461834116100d1578063c446183414610957578063cbed8b9c1461096d578063d1deba1f1461098d578063dd62ed3e146109a057600080fd5b8063a9059cbb146108e3578063b353aaa714610903578063baf3292d1461093757600080fd5b806395d89b41116101645780639f7e99931161013e5780639f7e999314610863578063a457c2d714610883578063a4c51df5146108a3578063a6c3d165146108c357600080fd5b806395d89b41146107dc5780639bdb9812146107f15780639f38369a1461084357600080fd5b806376203b481461070a578063857749b01461071d5780638cfd8f5c146107515780638da5cb5b146107895780639358928b146107a7578063950c8a74146107bc57600080fd5b80633691d9a4116102855780634c42899a11610223578063695ef6bf116101fd578063695ef6bf1461068c57806370a082311461069f578063715018a6146106d55780637533d788146106ea57600080fd5b80634c42899a146106085780635b8c41e61461061d57806366ad5c8a1461066c57600080fd5b80633f1f4fa41161025f5780633f1f4fa41461056e57806342d65a8d1461059b57806344770515146105bb57806349bd5a5e146105d057600080fd5b80633691d9a4146104fe578063395093511461052e5780633d8b38f61461054e57600080fd5b806310ddb137116102f257806325672969116102cc5780632567296914610471578063313ce56714610491578063333e6f06146104b3578063365260b4146104c957600080fd5b806310ddb1371461041257806318160ddd1461043257806323b872dd1461045157600080fd5b80621d35671461033957806301ffc9a71461035b57806306fdde031461039057806307e0db17146103b2578063095ea7b3146103d25780630df37483146103f2575b600080fd5b34801561034557600080fd5b506103596103543660046135fa565b610a88565b005b34801561036757600080fd5b5061037b61037636600461368d565b610cb9565b60405190151581526020015b60405180910390f35b34801561039c57600080fd5b506103a5610cf0565b6040516103879190613707565b3480156103be57600080fd5b506103596103cd36600461371a565b610d82565b3480156103de57600080fd5b5061037b6103ed36600461374a565b610e0b565b3480156103fe57600080fd5b5061035961040d366004613776565b610e23565b34801561041e57600080fd5b5061035961042d36600461371a565b610e42565b34801561043e57600080fd5b506009545b604051908152602001610387565b34801561045d57600080fd5b5061037b61046c366004613792565b610e9a565b34801561047d57600080fd5b5061035961048c3660046137d3565b610ebe565b34801561049d57600080fd5b5060125b60405160ff9091168152602001610387565b3480156104bf57600080fd5b50610443600c5481565b3480156104d557600080fd5b506104e96104e4366004613800565b610eea565b60408051928352602083019190915201610387565b34801561050a57600080fd5b5061037b6105193660046137d3565b600e6020526000908152604090205460ff1681565b34801561053a57600080fd5b5061037b61054936600461374a565b610f3f565b34801561055a57600080fd5b5061037b610569366004613865565b610f61565b34801561057a57600080fd5b5061044361058936600461371a565b60036020526000908152604090205481565b3480156105a757600080fd5b506103596105b6366004613865565b61102d565b3480156105c757600080fd5b50610443600081565b3480156105dc57600080fd5b50600d546105f0906001600160a01b031681565b6040516001600160a01b039091168152602001610387565b34801561061457600080fd5b506104a1600081565b34801561062957600080fd5b50610443610638366004613924565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561067857600080fd5b506103596106873660046135fa565b6110b3565b61035961069a3660046139dc565b61118f565b3480156106ab57600080fd5b506104436106ba3660046137d3565b6001600160a01b031660009081526007602052604090205490565b3480156106e157600080fd5b506103596111fa565b3480156106f657600080fd5b506103a561070536600461371a565b61120e565b610359610718366004613a4f565b6112a8565b34801561072957600080fd5b506104a17f000000000000000000000000000000000000000000000000000000000000000081565b34801561075d57600080fd5b5061044361076c366004613b01565b600260209081526000928352604080842090915290825290205481565b34801561079557600080fd5b506000546001600160a01b03166105f0565b3480156107b357600080fd5b50610443611357565b3480156107c857600080fd5b506004546105f0906001600160a01b031681565b3480156107e857600080fd5b506103a5611367565b3480156107fd57600080fd5b5061037b61080c366004613924565b6006602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b34801561084f57600080fd5b506103a561085e36600461371a565b611376565b34801561086f57600080fd5b5061035961087e36600461374a565b61148c565b34801561088f57600080fd5b5061037b61089e36600461374a565b6114ba565b3480156108af57600080fd5b506104e96108be366004613b34565b611535565b3480156108cf57600080fd5b506103596108de366004613865565b6115c4565b3480156108ef57600080fd5b5061037b6108fe36600461374a565b61164d565b34801561090f57600080fd5b506105f07f000000000000000000000000000000000000000000000000000000000000000081565b34801561094357600080fd5b506103596109523660046137d3565b61165b565b34801561096357600080fd5b5061044361271081565b34801561097957600080fd5b50610359610988366004613bed565b6116b7565b61035961099b3660046135fa565b611741565b3480156109ac57600080fd5b506104436109bb366004613c5b565b611957565b3480156109cc57600080fd5b506103596109db366004613c94565b611982565b3480156109ec57600080fd5b506104a1600181565b348015610a0157600080fd5b50610359610a10366004613cd0565b6119ec565b348015610a2157600080fd5b50610359610a30366004613865565b611b0b565b348015610a4157600080fd5b50610359610a503660046137d3565b611b65565b348015610a6157600080fd5b506103a5610a70366004613d98565b611bde565b348015610a8157600080fd5b50306105f0565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610b055760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610b2390613de5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f90613de5565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b50505050509050805186869050148015610bb7575060008151115b8015610bdf575080516020820120604051610bd59088908890613e19565b6040518091039020145b610c3a5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610afc565b610cb08787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250611c8f92505050565b50505050505050565b60006001600160e01b03198216631f7ecdf760e01b1480610cea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610cff90613de5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2b90613de5565b8015610d785780601f10610d4d57610100808354040283529160200191610d78565b820191906000526020600020905b815481529060010190602001808311610d5b57829003601f168201915b5050505050905090565b610d8a611d08565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610df057600080fd5b505af1158015610e04573d6000803e3d6000fd5b5050505050565b600033610e19818585611d62565b5060019392505050565b610e2b611d08565b61ffff909116600090815260036020526040902055565b610e4a611d08565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610dd6565b600033610ea8858285611e86565b610eb3858585611f00565b506001949350505050565b610ec6611d08565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b600080610f308888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120b692505050565b91509150965096945050505050565b600033610e19818585610f528383611957565b610f5c9190613e3f565b611d62565b61ffff831660009081526001602052604081208054829190610f8290613de5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fae90613de5565b8015610ffb5780601f10610fd057610100808354040283529160200191610ffb565b820191906000526020600020905b815481529060010190602001808311610fde57829003601f168201915b505050505090508383604051611012929190613e19565b60405180910390208180519060200120149150509392505050565b611035611d08565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d9061108590869086908690600401613e7b565b600060405180830381600087803b15801561109f57600080fd5b505af1158015610cb0573d6000803e3d6000fd5b3330146111115760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610afc565b6111878686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284376000920191909152506121aa92505050565b505050505050565b611187858585856111a360208701876137d3565b6111b360408801602089016137d3565b6111c06040890189613e99565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061223192505050565b611202611d08565b61120c6000612319565b565b6001602052600090815260409020805461122790613de5565b80601f016020809104026020016040519081016040528092919081815260200182805461125390613de5565b80156112a05780601f10611275576101008083540402835291602001916112a0565b820191906000526020600020905b81548152906001019060200180831161128357829003601f168201915b505050505081565b61134c8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a92506112f591505060208901896137d3565b61130560408a0160208b016137d3565b61131260408b018b613e99565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061236992505050565b505050505050505050565b600061136260095490565b905090565b6060600b8054610cff90613de5565b61ffff811660009081526001602052604081208054606092919061139990613de5565b80601f01602080910402602001604051908101604052809291908181526020018280546113c590613de5565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b50505050509050805160000361146a5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610afc565b61148560006014835161147d9190613edf565b839190612465565b9392505050565b611494611d08565b600d80546001600160a01b0319166001600160a01b039390931692909217909155600c55565b600033816114c88286611957565b9050838110156115285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610afc565b610eb38286868403611d62565b6000806115b28b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c908190840183828082843760009201919091525061257292505050565b91509150995099975050505050505050565b6115cc611d08565b8181306040516020016115e193929190613ef2565b60408051601f1981840301815291815261ffff851660009081526001602052209061160c9082613f5e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161164093929190613e7b565b60405180910390a1505050565b600033610e19818585611f00565b611663611d08565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b6116bf611d08565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90611713908890889088908890889060040161401d565b600060405180830381600087803b15801561172d57600080fd5b505af115801561134c573d6000803e3d6000fd5b61ffff861660009081526005602052604080822090516117649088908890613e19565b90815260408051602092819003830190206001600160401b038716600090815292529020549050806117e45760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610afc565b8083836040516117f5929190613e19565b6040518091039020146118545760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610afc565b61ffff871660009081526005602052604080822090516118779089908990613e19565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f8801829004820283018201905286825261190f918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506121aa92505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611946959493929190614056565b60405180910390a150505050505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b61198a611d08565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611640565b333014611a3b5760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610afc565b611a4630868661262d565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611a8891815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611acc908e908e908e908e908e908d908d908d90600401614091565b600060405180830381600088803b158015611ae657600080fd5b5087f1158015611afa573d6000803e3d6000fd5b505050505050505050505050505050565b611b13611d08565b61ffff83166000908152600160205260409020611b318284836140ec565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161164093929190613e7b565b611b6d611d08565b6001600160a01b038116611bd25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afc565b611bdb81612319565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015611c5e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c8691908101906141ab565b95945050505050565b600080611cf25a60966366ad5c8a60e01b89898989604051602401611cb79493929190614218565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091523092919061267f565b9150915081611187576111878686868685612709565b6000546001600160a01b0316331461120c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610afc565b6001600160a01b038316611dc45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610afc565b6001600160a01b038216611e255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610afc565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e928484611957565b90506000198114611efa5781811015611eed5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610afc565b611efa8484848403611d62565b50505050565b6001600160a01b038316611f645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610afc565b6001600160a01b038216611fc65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610afc565b611fd18383836127a6565b6001600160a01b038316600090815260076020526040902054818110156120495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610afc565b6001600160a01b0380851660008181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120a99086815260200190565b60405180910390a3611efa565b6000806000612104876120c888612959565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb109061215b908b90309086908b908b90600401614256565b6040805180830381865afa158015612177573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219b91906142aa565b92509250509550959350505050565b60006121b682826129df565b905060ff81166121d1576121cc85858585612a3b565b610e04565b60001960ff8216016121e9576121cc85858585612acb565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610afc565b600061223f87828481612cd9565b61224885612dae565b50905061225788888884612dee565b9050600081116122a55760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610afc565b60006122b4876120c884612959565b90506122c4888287878734612e20565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161230591815260200190565b60405180910390a450979650505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000612381896001846001600160401b038916612cd9565b61238a87612dae565b5090506123998a8a8a84612dee565b9050600081116123e75760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610afc565b60006123fe338a6123f785612959565b8a8a612fc5565b905061240e8a8287878734612e20565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161244f91815260200190565b60405180910390a4509998505050505050505050565b60608161247381601f613e3f565b10156124b25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610afc565b6124bc8284613e3f565b845110156125005760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610afc565b60608215801561251f5760405191506000825260208201604052612569565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612558578051835260209283019201612540565b5050858452601f01601f1916604052505b50949350505050565b6000806000612585338a6123f78b612959565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906125dc908d90309086908b908b90600401614256565b6040805180830381865afa1580156125f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261c91906142aa565b925092505097509795505050505050565b600033306001600160a01b0386161480159061265b5750806001600160a01b0316856001600160a01b031614155b1561266b5761266b858285611e86565b612676858585611f00565b50909392505050565b6000606060008060008661ffff166001600160401b038111156126a4576126a46138b7565b6040519080825280601f01601f1916602001820160405280156126ce576020820181803683370190505b50905060008087516020890160008d8df191503d9250868311156126f0578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161273a91906142ce565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c9061279790879087908790879087906142ea565b60405180910390a15050505050565b6001600160a01b0383166000908152600e602052604090205460ff1615806127e757506001600160a01b0382166000908152600e602052604090205460ff16155b61282b5760405162461bcd60e51b81526020600482015260156024820152744f4d4e493a204e6f207e6d656f777e206c6973742160581b6044820152606401610afc565b600d546001600160a01b03166128c3576000546001600160a01b038481169116148061286457506000546001600160a01b038381169116145b6128c35760405162461bcd60e51b815260206004820152602a60248201527f4f4d4e493a20596f752063616e2774207472616e73666572206265666f7265206044820152696669727374206d656f7760b01b6064820152608401610afc565b600c54816128e6846001600160a01b031660009081526007602052604090205490565b6128f09190613e3f565b11156129545760405162461bcd60e51b815260206004820152602d60248201527f4f4d4e493a20596f752063616e2774207472616e73666572206d6f726520746860448201526c616e206d6178486f6c64696e6760981b6064820152608401610afc565b505050565b6000806129867f000000000000000000000000000000000000000000000000000000000000000084614352565b90506001600160401b03811115610cea5760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610afc565b60006129ec826001613e3f565b83511015612a325760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610afc565b50016001015190565b600080612a4783613006565b90925090506001600160a01b038216612a605761dead91505b6000612a6b8261308b565b9050612a788784836130c0565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf83604051612aba91815260200190565b60405180910390a350505050505050565b6000806000806000612adc866130d3565b945094509450945094506000600660008b61ffff1661ffff16815260200190815260200160002089604051612b1191906142ce565b90815260408051602092819003830190206001600160401b038b166000908152925281205460ff169150612b448561308b565b905081612bb257612b568b30836130c0565b61ffff8c16600090815260066020526040908190209051919250600191612b7e908d906142ce565b90815260408051602092819003830190206001600160401b038d16600090815292529020805460ff19169115159190911790555b6001600160a01b0386163b612c09576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a150505050505050611efa565b8a8a8a8a8a8a868a60008a612c27578b6001600160401b0316612c29565b5a5b9050600080612c5b5a609663eaffd49a60e01b8e8e8e8d8d8d8d8d604051602401611cb7989796959493929190614366565b915091508115612cb4578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd88490612ca6908e908e9086906143da565b60405180910390a250612cc1565b612cc18b8b8b8b85612709565b50505050505050505050505050505050505050505050565b6000612ce48361318a565b61ffff80871660009081526002602090815260408083209389168352929052205490915080612d555760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610afc565b612d5f8382613e3f565b8210156111875760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610afc565b600080612ddb7f000000000000000000000000000000000000000000000000000000000000000084614408565b9050612de78184613edf565b9150915091565b6000336001600160a01b0386168114612e0c57612e0c868285611e86565b612e1686846131e6565b5090949350505050565b61ffff861660009081526001602052604081208054612e3e90613de5565b80601f0160208091040260200160405190810160405280929190818152602001828054612e6a90613de5565b8015612eb75780601f10612e8c57610100808354040283529160200191612eb7565b820191906000526020600020905b815481529060010190602001808311612e9a57829003601f168201915b505050505090508051600003612f285760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610afc565b612f33878751613326565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c5803100908490612f8a908b9086908c908c908c908c9060040161441c565b6000604051808303818588803b158015612fa357600080fd5b505af1158015612fb7573d6000803e3d6000fd5b505050505050505050505050565b6060600185856001600160a01b0389168587604051602001612fec96959493929190614483565b604051602081830303815290604052905095945050505050565b6000808061301484826129df565b60ff16148015613025575082516029145b61306c5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610afc565b61307783600d613397565b91506130848360216133fc565b9050915091565b6000610cea7f00000000000000000000000000000000000000000000000000000000000000006001600160401b0384166144e4565b60006130cc8383613459565b5092915050565b6000808060608160016130e687836129df565b60ff16146131315760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610afc565b61313c86600d613397565b93506131498660216133fc565b9250613156866029613526565b94506131638660496133fc565b905061317f60518088516131779190613edf565b889190612465565b915091939590929450565b60006022825110156131de5760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610afc565b506022015190565b6001600160a01b0382166132465760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610afc565b613252826000836127a6565b6001600160a01b038216600090815260076020526040902054818110156132c65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610afc565b6001600160a01b03831660008181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82166000908152600360205260408120549081900361334757506127105b808211156129545760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610afc565b60006133a4826014613e3f565b835110156133ec5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610afc565b500160200151600160601b900490565b6000613409826008613e3f565b835110156134505760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610afc565b50016008015190565b6001600160a01b0382166134af5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610afc565b6134bb600083836127a6565b80600960008282546134cd9190613e3f565b90915550506001600160a01b0382166000818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000613533826020613e3f565b8351101561357b5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610afc565b50016020015190565b803561ffff8116811461359657600080fd5b919050565b60008083601f8401126135ad57600080fd5b5081356001600160401b038111156135c457600080fd5b6020830191508360208285010111156135dc57600080fd5b9250929050565b80356001600160401b038116811461359657600080fd5b6000806000806000806080878903121561361357600080fd5b61361c87613584565b955060208701356001600160401b038082111561363857600080fd5b6136448a838b0161359b565b909750955085915061365860408a016135e3565b9450606089013591508082111561366e57600080fd5b5061367b89828a0161359b565b979a9699509497509295939492505050565b60006020828403121561369f57600080fd5b81356001600160e01b03198116811461148557600080fd5b60005b838110156136d25781810151838201526020016136ba565b50506000910152565b600081518084526136f38160208601602086016136b7565b601f01601f19169290920160200192915050565b60208152600061148560208301846136db565b60006020828403121561372c57600080fd5b61148582613584565b6001600160a01b0381168114611bdb57600080fd5b6000806040838503121561375d57600080fd5b823561376881613735565b946020939093013593505050565b6000806040838503121561378957600080fd5b61376883613584565b6000806000606084860312156137a757600080fd5b83356137b281613735565b925060208401356137c281613735565b929592945050506040919091013590565b6000602082840312156137e557600080fd5b813561148581613735565b8035801515811461359657600080fd5b60008060008060008060a0878903121561381957600080fd5b61382287613584565b9550602087013594506040870135935061383e606088016137f0565b925060808701356001600160401b0381111561385957600080fd5b61367b89828a0161359b565b60008060006040848603121561387a57600080fd5b61388384613584565b925060208401356001600160401b0381111561389e57600080fd5b6138aa8682870161359b565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156138f5576138f56138b7565b604052919050565b60006001600160401b03821115613916576139166138b7565b50601f01601f191660200190565b60008060006060848603121561393957600080fd5b61394284613584565b925060208401356001600160401b0381111561395d57600080fd5b8401601f8101861361396e57600080fd5b803561398161397c826138fd565b6138cd565b81815287602083850101111561399657600080fd5b816020840160208301376000602083830101528094505050506139bb604085016135e3565b90509250925092565b6000606082840312156139d657600080fd5b50919050565b600080600080600060a086880312156139f457600080fd5b85356139ff81613735565b9450613a0d60208701613584565b9350604086013592506060860135915060808601356001600160401b03811115613a3657600080fd5b613a42888289016139c4565b9150509295509295909350565b60008060008060008060008060e0898b031215613a6b57600080fd5b8835613a7681613735565b9750613a8460208a01613584565b9650604089013595506060890135945060808901356001600160401b0380821115613aae57600080fd5b613aba8c838d0161359b565b9096509450849150613ace60a08c016135e3565b935060c08b0135915080821115613ae457600080fd5b50613af18b828c016139c4565b9150509295985092959890939650565b60008060408385031215613b1457600080fd5b613b1d83613584565b9150613b2b60208401613584565b90509250929050565b600080600080600080600080600060e08a8c031215613b5257600080fd5b613b5b8a613584565b985060208a0135975060408a0135965060608a01356001600160401b0380821115613b8557600080fd5b613b918d838e0161359b565b9098509650869150613ba560808d016135e3565b9550613bb360a08d016137f0565b945060c08c0135915080821115613bc957600080fd5b50613bd68c828d0161359b565b915080935050809150509295985092959850929598565b600080600080600060808688031215613c0557600080fd5b613c0e86613584565b9450613c1c60208701613584565b93506040860135925060608601356001600160401b03811115613c3e57600080fd5b613c4a8882890161359b565b969995985093965092949392505050565b60008060408385031215613c6e57600080fd5b8235613c7981613735565b91506020830135613c8981613735565b809150509250929050565b600080600060608486031215613ca957600080fd5b613cb284613584565b9250613cc060208501613584565b9150604084013590509250925092565b6000806000806000806000806000806101008b8d031215613cf057600080fd5b613cf98b613584565b995060208b01356001600160401b0380821115613d1557600080fd5b613d218e838f0161359b565b909b509950899150613d3560408e016135e3565b985060608d0135975060808d01359150613d4e82613735565b90955060a08c0135945060c08c01359080821115613d6b57600080fd5b50613d788d828e0161359b565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060008060808587031215613dae57600080fd5b613db785613584565b9350613dc560208601613584565b92506040850135613dd581613735565b9396929550929360600135925050565b600181811c90821680613df957607f821691505b6020821081036139d657634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610cea57610cea613e29565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000611c86604083018486613e52565b6000808335601e19843603018112613eb057600080fd5b8301803591506001600160401b03821115613eca57600080fd5b6020019150368190038213156135dc57600080fd5b81810381811115610cea57610cea613e29565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f82111561295457600081815260208120601f850160051c81016020861015613f3f5750805b601f850160051c820191505b8181101561118757828155600101613f4b565b81516001600160401b03811115613f7757613f776138b7565b613f8b81613f858454613de5565b84613f18565b602080601f831160018114613fc05760008415613fa85750858301515b600019600386901b1c1916600185901b178555611187565b600085815260208120601f198616915b82811015613fef57888601518255948401946001909101908401613fd0565b508582101561400d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600061ffff80881683528087166020840152508460408301526080606083015261404b608083018486613e52565b979650505050505050565b61ffff86168152608060208201526000614074608083018688613e52565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c0602082015260006140af60c08301898b613e52565b6001600160401b038816604084015286606084015285608084015282810360a08401526140dd818587613e52565b9b9a5050505050505050505050565b6001600160401b03831115614103576141036138b7565b614117836141118354613de5565b83613f18565b6000601f84116001811461414b57600085156141335750838201355b600019600387901b1c1916600186901b178355610e04565b600083815260209020601f19861690835b8281101561417c578685013582556020948501946001909201910161415c565b50868210156141995760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000602082840312156141bd57600080fd5b81516001600160401b038111156141d357600080fd5b8201601f810184136141e457600080fd5b80516141f261397c826138fd565b81815285602083850101111561420757600080fd5b611c868260208301602086016136b7565b61ffff8516815260806020820152600061423560808301866136db565b6001600160401b0385166040840152828103606084015261404b81856136db565b61ffff861681526001600160a01b038516602082015260a060408201819052600090614284908301866136db565b8415156060840152828103608084015261429e81856136db565b98975050505050505050565b600080604083850312156142bd57600080fd5b505080516020909101519092909150565b600082516142e08184602087016136b7565b9190910192915050565b61ffff8616815260a06020820152600061430760a08301876136db565b6001600160401b0386166040840152828103606084015261432881866136db565b9050828103608084015261429e81856136db565b634e487b7160e01b600052601260045260246000fd5b6000826143615761436161433c565b500490565b600061010061ffff8b1683528060208401526143848184018b6136db565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c085015290506143c481866136db565b9150508260e08301529998505050505050505050565b6060815260006143ed60608301866136db565b6001600160401b039490941660208301525060400152919050565b6000826144175761441761433c565b500690565b61ffff8716815260c06020820152600061443960c08301886136db565b828103604084015261444b81886136db565b6001600160a01b0387811660608601528616608085015283810360a0850152905061447681856136db565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b1660498401525082516144d28160518501602087016136b7565b91909101605101979650505050505050565b8082028115828204841417610cea57610cea613e2956fea2646970667358221220b1363cdac6a5db21f4bf1cf52d85975fa9234f6082e6c686e151a4237cfb7e5164736f6c63430008130033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000080000000000000000000000003c2269811836af69497e5f486a85d7316753cf6200000000000000000000000000000000000000000000000000000000000000074f6d6e694361740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f4d4e4900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103345760003560e01c806376203b48116101ab578063a9059cbb116100f7578063df2a5b3b11610095578063eb8d72b71161006f578063eb8d72b714610a15578063f2fde38b14610a35578063f5ecbdbc14610a55578063fc0c546a14610a7557600080fd5b8063df2a5b3b146109c0578063e6a20ae6146109e0578063eaffd49a146109f557600080fd5b8063c4461834116100d1578063c446183414610957578063cbed8b9c1461096d578063d1deba1f1461098d578063dd62ed3e146109a057600080fd5b8063a9059cbb146108e3578063b353aaa714610903578063baf3292d1461093757600080fd5b806395d89b41116101645780639f7e99931161013e5780639f7e999314610863578063a457c2d714610883578063a4c51df5146108a3578063a6c3d165146108c357600080fd5b806395d89b41146107dc5780639bdb9812146107f15780639f38369a1461084357600080fd5b806376203b481461070a578063857749b01461071d5780638cfd8f5c146107515780638da5cb5b146107895780639358928b146107a7578063950c8a74146107bc57600080fd5b80633691d9a4116102855780634c42899a11610223578063695ef6bf116101fd578063695ef6bf1461068c57806370a082311461069f578063715018a6146106d55780637533d788146106ea57600080fd5b80634c42899a146106085780635b8c41e61461061d57806366ad5c8a1461066c57600080fd5b80633f1f4fa41161025f5780633f1f4fa41461056e57806342d65a8d1461059b57806344770515146105bb57806349bd5a5e146105d057600080fd5b80633691d9a4146104fe578063395093511461052e5780633d8b38f61461054e57600080fd5b806310ddb137116102f257806325672969116102cc5780632567296914610471578063313ce56714610491578063333e6f06146104b3578063365260b4146104c957600080fd5b806310ddb1371461041257806318160ddd1461043257806323b872dd1461045157600080fd5b80621d35671461033957806301ffc9a71461035b57806306fdde031461039057806307e0db17146103b2578063095ea7b3146103d25780630df37483146103f2575b600080fd5b34801561034557600080fd5b506103596103543660046135fa565b610a88565b005b34801561036757600080fd5b5061037b61037636600461368d565b610cb9565b60405190151581526020015b60405180910390f35b34801561039c57600080fd5b506103a5610cf0565b6040516103879190613707565b3480156103be57600080fd5b506103596103cd36600461371a565b610d82565b3480156103de57600080fd5b5061037b6103ed36600461374a565b610e0b565b3480156103fe57600080fd5b5061035961040d366004613776565b610e23565b34801561041e57600080fd5b5061035961042d36600461371a565b610e42565b34801561043e57600080fd5b506009545b604051908152602001610387565b34801561045d57600080fd5b5061037b61046c366004613792565b610e9a565b34801561047d57600080fd5b5061035961048c3660046137d3565b610ebe565b34801561049d57600080fd5b5060125b60405160ff9091168152602001610387565b3480156104bf57600080fd5b50610443600c5481565b3480156104d557600080fd5b506104e96104e4366004613800565b610eea565b60408051928352602083019190915201610387565b34801561050a57600080fd5b5061037b6105193660046137d3565b600e6020526000908152604090205460ff1681565b34801561053a57600080fd5b5061037b61054936600461374a565b610f3f565b34801561055a57600080fd5b5061037b610569366004613865565b610f61565b34801561057a57600080fd5b5061044361058936600461371a565b60036020526000908152604090205481565b3480156105a757600080fd5b506103596105b6366004613865565b61102d565b3480156105c757600080fd5b50610443600081565b3480156105dc57600080fd5b50600d546105f0906001600160a01b031681565b6040516001600160a01b039091168152602001610387565b34801561061457600080fd5b506104a1600081565b34801561062957600080fd5b50610443610638366004613924565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561067857600080fd5b506103596106873660046135fa565b6110b3565b61035961069a3660046139dc565b61118f565b3480156106ab57600080fd5b506104436106ba3660046137d3565b6001600160a01b031660009081526007602052604090205490565b3480156106e157600080fd5b506103596111fa565b3480156106f657600080fd5b506103a561070536600461371a565b61120e565b610359610718366004613a4f565b6112a8565b34801561072957600080fd5b506104a17f000000000000000000000000000000000000000000000000000000000000000881565b34801561075d57600080fd5b5061044361076c366004613b01565b600260209081526000928352604080842090915290825290205481565b34801561079557600080fd5b506000546001600160a01b03166105f0565b3480156107b357600080fd5b50610443611357565b3480156107c857600080fd5b506004546105f0906001600160a01b031681565b3480156107e857600080fd5b506103a5611367565b3480156107fd57600080fd5b5061037b61080c366004613924565b6006602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b34801561084f57600080fd5b506103a561085e36600461371a565b611376565b34801561086f57600080fd5b5061035961087e36600461374a565b61148c565b34801561088f57600080fd5b5061037b61089e36600461374a565b6114ba565b3480156108af57600080fd5b506104e96108be366004613b34565b611535565b3480156108cf57600080fd5b506103596108de366004613865565b6115c4565b3480156108ef57600080fd5b5061037b6108fe36600461374a565b61164d565b34801561090f57600080fd5b506105f07f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6281565b34801561094357600080fd5b506103596109523660046137d3565b61165b565b34801561096357600080fd5b5061044361271081565b34801561097957600080fd5b50610359610988366004613bed565b6116b7565b61035961099b3660046135fa565b611741565b3480156109ac57600080fd5b506104436109bb366004613c5b565b611957565b3480156109cc57600080fd5b506103596109db366004613c94565b611982565b3480156109ec57600080fd5b506104a1600181565b348015610a0157600080fd5b50610359610a10366004613cd0565b6119ec565b348015610a2157600080fd5b50610359610a30366004613865565b611b0b565b348015610a4157600080fd5b50610359610a503660046137d3565b611b65565b348015610a6157600080fd5b506103a5610a70366004613d98565b611bde565b348015610a8157600080fd5b50306105f0565b337f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b031614610b055760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610b2390613de5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f90613de5565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b50505050509050805186869050148015610bb7575060008151115b8015610bdf575080516020820120604051610bd59088908890613e19565b6040518091039020145b610c3a5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610afc565b610cb08787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250611c8f92505050565b50505050505050565b60006001600160e01b03198216631f7ecdf760e01b1480610cea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610cff90613de5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2b90613de5565b8015610d785780601f10610d4d57610100808354040283529160200191610d78565b820191906000526020600020905b815481529060010190602001808311610d5b57829003601f168201915b5050505050905090565b610d8a611d08565b6040516307e0db1760e01b815261ffff821660048201527f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610df057600080fd5b505af1158015610e04573d6000803e3d6000fd5b5050505050565b600033610e19818585611d62565b5060019392505050565b610e2b611d08565b61ffff909116600090815260036020526040902055565b610e4a611d08565b6040516310ddb13760e01b815261ffff821660048201527f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b0316906310ddb13790602401610dd6565b600033610ea8858285611e86565b610eb3858585611f00565b506001949350505050565b610ec6611d08565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b600080610f308888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120b692505050565b91509150965096945050505050565b600033610e19818585610f528383611957565b610f5c9190613e3f565b611d62565b61ffff831660009081526001602052604081208054829190610f8290613de5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fae90613de5565b8015610ffb5780601f10610fd057610100808354040283529160200191610ffb565b820191906000526020600020905b815481529060010190602001808311610fde57829003601f168201915b505050505090508383604051611012929190613e19565b60405180910390208180519060200120149150509392505050565b611035611d08565b6040516342d65a8d60e01b81526001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6216906342d65a8d9061108590869086908690600401613e7b565b600060405180830381600087803b15801561109f57600080fd5b505af1158015610cb0573d6000803e3d6000fd5b3330146111115760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610afc565b6111878686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284376000920191909152506121aa92505050565b505050505050565b611187858585856111a360208701876137d3565b6111b360408801602089016137d3565b6111c06040890189613e99565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061223192505050565b611202611d08565b61120c6000612319565b565b6001602052600090815260409020805461122790613de5565b80601f016020809104026020016040519081016040528092919081815260200182805461125390613de5565b80156112a05780601f10611275576101008083540402835291602001916112a0565b820191906000526020600020905b81548152906001019060200180831161128357829003601f168201915b505050505081565b61134c8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a92506112f591505060208901896137d3565b61130560408a0160208b016137d3565b61131260408b018b613e99565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061236992505050565b505050505050505050565b600061136260095490565b905090565b6060600b8054610cff90613de5565b61ffff811660009081526001602052604081208054606092919061139990613de5565b80601f01602080910402602001604051908101604052809291908181526020018280546113c590613de5565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b50505050509050805160000361146a5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610afc565b61148560006014835161147d9190613edf565b839190612465565b9392505050565b611494611d08565b600d80546001600160a01b0319166001600160a01b039390931692909217909155600c55565b600033816114c88286611957565b9050838110156115285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610afc565b610eb38286868403611d62565b6000806115b28b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c908190840183828082843760009201919091525061257292505050565b91509150995099975050505050505050565b6115cc611d08565b8181306040516020016115e193929190613ef2565b60408051601f1981840301815291815261ffff851660009081526001602052209061160c9082613f5e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161164093929190613e7b565b60405180910390a1505050565b600033610e19818585611f00565b611663611d08565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b6116bf611d08565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62169063cbed8b9c90611713908890889088908890889060040161401d565b600060405180830381600087803b15801561172d57600080fd5b505af115801561134c573d6000803e3d6000fd5b61ffff861660009081526005602052604080822090516117649088908890613e19565b90815260408051602092819003830190206001600160401b038716600090815292529020549050806117e45760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610afc565b8083836040516117f5929190613e19565b6040518091039020146118545760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610afc565b61ffff871660009081526005602052604080822090516118779089908990613e19565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f8801829004820283018201905286825261190f918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506121aa92505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611946959493929190614056565b60405180910390a150505050505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b61198a611d08565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611640565b333014611a3b5760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610afc565b611a4630868661262d565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611a8891815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611acc908e908e908e908e908e908d908d908d90600401614091565b600060405180830381600088803b158015611ae657600080fd5b5087f1158015611afa573d6000803e3d6000fd5b505050505050505050505050505050565b611b13611d08565b61ffff83166000908152600160205260409020611b318284836140ec565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161164093929190613e7b565b611b6d611d08565b6001600160a01b038116611bd25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afc565b611bdb81612319565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015611c5e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c8691908101906141ab565b95945050505050565b600080611cf25a60966366ad5c8a60e01b89898989604051602401611cb79493929190614218565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091523092919061267f565b9150915081611187576111878686868685612709565b6000546001600160a01b0316331461120c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610afc565b6001600160a01b038316611dc45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610afc565b6001600160a01b038216611e255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610afc565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e928484611957565b90506000198114611efa5781811015611eed5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610afc565b611efa8484848403611d62565b50505050565b6001600160a01b038316611f645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610afc565b6001600160a01b038216611fc65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610afc565b611fd18383836127a6565b6001600160a01b038316600090815260076020526040902054818110156120495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610afc565b6001600160a01b0380851660008181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120a99086815260200190565b60405180910390a3611efa565b6000806000612104876120c888612959565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6216906340a7bb109061215b908b90309086908b908b90600401614256565b6040805180830381865afa158015612177573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219b91906142aa565b92509250509550959350505050565b60006121b682826129df565b905060ff81166121d1576121cc85858585612a3b565b610e04565b60001960ff8216016121e9576121cc85858585612acb565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610afc565b600061223f87828481612cd9565b61224885612dae565b50905061225788888884612dee565b9050600081116122a55760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610afc565b60006122b4876120c884612959565b90506122c4888287878734612e20565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161230591815260200190565b60405180910390a450979650505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000612381896001846001600160401b038916612cd9565b61238a87612dae565b5090506123998a8a8a84612dee565b9050600081116123e75760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610afc565b60006123fe338a6123f785612959565b8a8a612fc5565b905061240e8a8287878734612e20565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161244f91815260200190565b60405180910390a4509998505050505050505050565b60608161247381601f613e3f565b10156124b25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610afc565b6124bc8284613e3f565b845110156125005760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610afc565b60608215801561251f5760405191506000825260208201604052612569565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612558578051835260209283019201612540565b5050858452601f01601f1916604052505b50949350505050565b6000806000612585338a6123f78b612959565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6216906340a7bb10906125dc908d90309086908b908b90600401614256565b6040805180830381865afa1580156125f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261c91906142aa565b925092505097509795505050505050565b600033306001600160a01b0386161480159061265b5750806001600160a01b0316856001600160a01b031614155b1561266b5761266b858285611e86565b612676858585611f00565b50909392505050565b6000606060008060008661ffff166001600160401b038111156126a4576126a46138b7565b6040519080825280601f01601f1916602001820160405280156126ce576020820181803683370190505b50905060008087516020890160008d8df191503d9250868311156126f0578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161273a91906142ce565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c9061279790879087908790879087906142ea565b60405180910390a15050505050565b6001600160a01b0383166000908152600e602052604090205460ff1615806127e757506001600160a01b0382166000908152600e602052604090205460ff16155b61282b5760405162461bcd60e51b81526020600482015260156024820152744f4d4e493a204e6f207e6d656f777e206c6973742160581b6044820152606401610afc565b600d546001600160a01b03166128c3576000546001600160a01b038481169116148061286457506000546001600160a01b038381169116145b6128c35760405162461bcd60e51b815260206004820152602a60248201527f4f4d4e493a20596f752063616e2774207472616e73666572206265666f7265206044820152696669727374206d656f7760b01b6064820152608401610afc565b600c54816128e6846001600160a01b031660009081526007602052604090205490565b6128f09190613e3f565b11156129545760405162461bcd60e51b815260206004820152602d60248201527f4f4d4e493a20596f752063616e2774207472616e73666572206d6f726520746860448201526c616e206d6178486f6c64696e6760981b6064820152608401610afc565b505050565b6000806129867f00000000000000000000000000000000000000000000000000000002540be40084614352565b90506001600160401b03811115610cea5760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610afc565b60006129ec826001613e3f565b83511015612a325760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610afc565b50016001015190565b600080612a4783613006565b90925090506001600160a01b038216612a605761dead91505b6000612a6b8261308b565b9050612a788784836130c0565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf83604051612aba91815260200190565b60405180910390a350505050505050565b6000806000806000612adc866130d3565b945094509450945094506000600660008b61ffff1661ffff16815260200190815260200160002089604051612b1191906142ce565b90815260408051602092819003830190206001600160401b038b166000908152925281205460ff169150612b448561308b565b905081612bb257612b568b30836130c0565b61ffff8c16600090815260066020526040908190209051919250600191612b7e908d906142ce565b90815260408051602092819003830190206001600160401b038d16600090815292529020805460ff19169115159190911790555b6001600160a01b0386163b612c09576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a150505050505050611efa565b8a8a8a8a8a8a868a60008a612c27578b6001600160401b0316612c29565b5a5b9050600080612c5b5a609663eaffd49a60e01b8e8e8e8d8d8d8d8d604051602401611cb7989796959493929190614366565b915091508115612cb4578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd88490612ca6908e908e9086906143da565b60405180910390a250612cc1565b612cc18b8b8b8b85612709565b50505050505050505050505050505050505050505050565b6000612ce48361318a565b61ffff80871660009081526002602090815260408083209389168352929052205490915080612d555760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610afc565b612d5f8382613e3f565b8210156111875760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610afc565b600080612ddb7f00000000000000000000000000000000000000000000000000000002540be40084614408565b9050612de78184613edf565b9150915091565b6000336001600160a01b0386168114612e0c57612e0c868285611e86565b612e1686846131e6565b5090949350505050565b61ffff861660009081526001602052604081208054612e3e90613de5565b80601f0160208091040260200160405190810160405280929190818152602001828054612e6a90613de5565b8015612eb75780601f10612e8c57610100808354040283529160200191612eb7565b820191906000526020600020905b815481529060010190602001808311612e9a57829003601f168201915b505050505090508051600003612f285760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610afc565b612f33878751613326565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62169063c5803100908490612f8a908b9086908c908c908c908c9060040161441c565b6000604051808303818588803b158015612fa357600080fd5b505af1158015612fb7573d6000803e3d6000fd5b505050505050505050505050565b6060600185856001600160a01b0389168587604051602001612fec96959493929190614483565b604051602081830303815290604052905095945050505050565b6000808061301484826129df565b60ff16148015613025575082516029145b61306c5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610afc565b61307783600d613397565b91506130848360216133fc565b9050915091565b6000610cea7f00000000000000000000000000000000000000000000000000000002540be4006001600160401b0384166144e4565b60006130cc8383613459565b5092915050565b6000808060608160016130e687836129df565b60ff16146131315760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610afc565b61313c86600d613397565b93506131498660216133fc565b9250613156866029613526565b94506131638660496133fc565b905061317f60518088516131779190613edf565b889190612465565b915091939590929450565b60006022825110156131de5760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610afc565b506022015190565b6001600160a01b0382166132465760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610afc565b613252826000836127a6565b6001600160a01b038216600090815260076020526040902054818110156132c65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610afc565b6001600160a01b03831660008181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82166000908152600360205260408120549081900361334757506127105b808211156129545760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610afc565b60006133a4826014613e3f565b835110156133ec5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610afc565b500160200151600160601b900490565b6000613409826008613e3f565b835110156134505760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610afc565b50016008015190565b6001600160a01b0382166134af5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610afc565b6134bb600083836127a6565b80600960008282546134cd9190613e3f565b90915550506001600160a01b0382166000818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000613533826020613e3f565b8351101561357b5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610afc565b50016020015190565b803561ffff8116811461359657600080fd5b919050565b60008083601f8401126135ad57600080fd5b5081356001600160401b038111156135c457600080fd5b6020830191508360208285010111156135dc57600080fd5b9250929050565b80356001600160401b038116811461359657600080fd5b6000806000806000806080878903121561361357600080fd5b61361c87613584565b955060208701356001600160401b038082111561363857600080fd5b6136448a838b0161359b565b909750955085915061365860408a016135e3565b9450606089013591508082111561366e57600080fd5b5061367b89828a0161359b565b979a9699509497509295939492505050565b60006020828403121561369f57600080fd5b81356001600160e01b03198116811461148557600080fd5b60005b838110156136d25781810151838201526020016136ba565b50506000910152565b600081518084526136f38160208601602086016136b7565b601f01601f19169290920160200192915050565b60208152600061148560208301846136db565b60006020828403121561372c57600080fd5b61148582613584565b6001600160a01b0381168114611bdb57600080fd5b6000806040838503121561375d57600080fd5b823561376881613735565b946020939093013593505050565b6000806040838503121561378957600080fd5b61376883613584565b6000806000606084860312156137a757600080fd5b83356137b281613735565b925060208401356137c281613735565b929592945050506040919091013590565b6000602082840312156137e557600080fd5b813561148581613735565b8035801515811461359657600080fd5b60008060008060008060a0878903121561381957600080fd5b61382287613584565b9550602087013594506040870135935061383e606088016137f0565b925060808701356001600160401b0381111561385957600080fd5b61367b89828a0161359b565b60008060006040848603121561387a57600080fd5b61388384613584565b925060208401356001600160401b0381111561389e57600080fd5b6138aa8682870161359b565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156138f5576138f56138b7565b604052919050565b60006001600160401b03821115613916576139166138b7565b50601f01601f191660200190565b60008060006060848603121561393957600080fd5b61394284613584565b925060208401356001600160401b0381111561395d57600080fd5b8401601f8101861361396e57600080fd5b803561398161397c826138fd565b6138cd565b81815287602083850101111561399657600080fd5b816020840160208301376000602083830101528094505050506139bb604085016135e3565b90509250925092565b6000606082840312156139d657600080fd5b50919050565b600080600080600060a086880312156139f457600080fd5b85356139ff81613735565b9450613a0d60208701613584565b9350604086013592506060860135915060808601356001600160401b03811115613a3657600080fd5b613a42888289016139c4565b9150509295509295909350565b60008060008060008060008060e0898b031215613a6b57600080fd5b8835613a7681613735565b9750613a8460208a01613584565b9650604089013595506060890135945060808901356001600160401b0380821115613aae57600080fd5b613aba8c838d0161359b565b9096509450849150613ace60a08c016135e3565b935060c08b0135915080821115613ae457600080fd5b50613af18b828c016139c4565b9150509295985092959890939650565b60008060408385031215613b1457600080fd5b613b1d83613584565b9150613b2b60208401613584565b90509250929050565b600080600080600080600080600060e08a8c031215613b5257600080fd5b613b5b8a613584565b985060208a0135975060408a0135965060608a01356001600160401b0380821115613b8557600080fd5b613b918d838e0161359b565b9098509650869150613ba560808d016135e3565b9550613bb360a08d016137f0565b945060c08c0135915080821115613bc957600080fd5b50613bd68c828d0161359b565b915080935050809150509295985092959850929598565b600080600080600060808688031215613c0557600080fd5b613c0e86613584565b9450613c1c60208701613584565b93506040860135925060608601356001600160401b03811115613c3e57600080fd5b613c4a8882890161359b565b969995985093965092949392505050565b60008060408385031215613c6e57600080fd5b8235613c7981613735565b91506020830135613c8981613735565b809150509250929050565b600080600060608486031215613ca957600080fd5b613cb284613584565b9250613cc060208501613584565b9150604084013590509250925092565b6000806000806000806000806000806101008b8d031215613cf057600080fd5b613cf98b613584565b995060208b01356001600160401b0380821115613d1557600080fd5b613d218e838f0161359b565b909b509950899150613d3560408e016135e3565b985060608d0135975060808d01359150613d4e82613735565b90955060a08c0135945060c08c01359080821115613d6b57600080fd5b50613d788d828e0161359b565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060008060808587031215613dae57600080fd5b613db785613584565b9350613dc560208601613584565b92506040850135613dd581613735565b9396929550929360600135925050565b600181811c90821680613df957607f821691505b6020821081036139d657634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610cea57610cea613e29565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000611c86604083018486613e52565b6000808335601e19843603018112613eb057600080fd5b8301803591506001600160401b03821115613eca57600080fd5b6020019150368190038213156135dc57600080fd5b81810381811115610cea57610cea613e29565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f82111561295457600081815260208120601f850160051c81016020861015613f3f5750805b601f850160051c820191505b8181101561118757828155600101613f4b565b81516001600160401b03811115613f7757613f776138b7565b613f8b81613f858454613de5565b84613f18565b602080601f831160018114613fc05760008415613fa85750858301515b600019600386901b1c1916600185901b178555611187565b600085815260208120601f198616915b82811015613fef57888601518255948401946001909101908401613fd0565b508582101561400d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600061ffff80881683528087166020840152508460408301526080606083015261404b608083018486613e52565b979650505050505050565b61ffff86168152608060208201526000614074608083018688613e52565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c0602082015260006140af60c08301898b613e52565b6001600160401b038816604084015286606084015285608084015282810360a08401526140dd818587613e52565b9b9a5050505050505050505050565b6001600160401b03831115614103576141036138b7565b614117836141118354613de5565b83613f18565b6000601f84116001811461414b57600085156141335750838201355b600019600387901b1c1916600186901b178355610e04565b600083815260209020601f19861690835b8281101561417c578685013582556020948501946001909201910161415c565b50868210156141995760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6000602082840312156141bd57600080fd5b81516001600160401b038111156141d357600080fd5b8201601f810184136141e457600080fd5b80516141f261397c826138fd565b81815285602083850101111561420757600080fd5b611c868260208301602086016136b7565b61ffff8516815260806020820152600061423560808301866136db565b6001600160401b0385166040840152828103606084015261404b81856136db565b61ffff861681526001600160a01b038516602082015260a060408201819052600090614284908301866136db565b8415156060840152828103608084015261429e81856136db565b98975050505050505050565b600080604083850312156142bd57600080fd5b505080516020909101519092909150565b600082516142e08184602087016136b7565b9190910192915050565b61ffff8616815260a06020820152600061430760a08301876136db565b6001600160401b0386166040840152828103606084015261432881866136db565b9050828103608084015261429e81856136db565b634e487b7160e01b600052601260045260246000fd5b6000826143615761436161433c565b500490565b600061010061ffff8b1683528060208401526143848184018b6136db565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c085015290506143c481866136db565b9150508260e08301529998505050505050505050565b6060815260006143ed60608301866136db565b6001600160401b039490941660208301525060400152919050565b6000826144175761441761433c565b500690565b61ffff8716815260c06020820152600061443960c08301886136db565b828103604084015261444b81886136db565b6001600160a01b0387811660608601528616608085015283810360a0850152905061447681856136db565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b1660498401525082516144d28160518501602087016136b7565b91909101605101979650505050505050565b8082028115828204841417610cea57610cea613e2956fea2646970667358221220b1363cdac6a5db21f4bf1cf52d85975fa9234f6082e6c686e151a4237cfb7e5164736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000080000000000000000000000003c2269811836af69497e5f486a85d7316753cf6200000000000000000000000000000000000000000000000000000000000000074f6d6e694361740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f4d4e4900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): OmniCat
Arg [1] : _symbol (string): OMNI
Arg [2] : _sharedDecimals (uint8): 8
Arg [3] : _lzEndpoint (address): 0x3c2269811836af69497E5F486A85D7316753cf62

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 4f6d6e6943617400000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4f4d4e4900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

84679:3355:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51737:842;;;;;;;;;;-1:-1:-1;51737:842:0;;;;;:::i;:::-;;:::i;:::-;;83368:213;;;;;;;;;;-1:-1:-1;83368:213:0;;;;;:::i;:::-;;:::i;:::-;;;2029:14:1;;2022:22;2004:41;;1992:2;1977:18;83368:213:0;;;;;;;;9718:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55361:123::-;;;;;;;;;;-1:-1:-1;55361:123:0;;;;;:::i;:::-;;:::i;12078:201::-;;;;;;;;;;-1:-1:-1;12078:201:0;;;;;:::i;:::-;;:::i;57264:142::-;;;;;;;;;;-1:-1:-1;57264:142:0;;;;;:::i;:::-;;:::i;55492:129::-;;;;;;;;;;-1:-1:-1;55492:129:0;;;;;:::i;:::-;;:::i;10847:108::-;;;;;;;;;;-1:-1:-1;10935:12:0;;10847:108;;;3860:25:1;;;3848:2;3833:18;10847:108:0;3714:177:1;12859:261:0;;;;;;;;;;-1:-1:-1;12859:261:0;;;;;:::i;:::-;;:::i;87317:108::-;;;;;;;;;;-1:-1:-1;87317:108:0;;;;;:::i;:::-;;:::i;10689:93::-;;;;;;;;;;-1:-1:-1;10772:2:0;10689:93;;;4781:4:1;4769:17;;;4751:36;;4739:2;4724:18;10689:93:0;4609:184:1;84721:61:0;;;;;;;;;;;;;;;;83589:344;;;;;;;;;;-1:-1:-1;83589:344:0;;;;;:::i;:::-;;:::i;:::-;;;;5829:25:1;;;5885:2;5870:18;;5863:34;;;;5802:18;83589:344:0;5655:248:1;84824:43:0;;;;;;;;;;-1:-1:-1;84824:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13529:238;;;;;;;;;;-1:-1:-1;13529:238:0;;;;;:::i;:::-;;:::i;57504:250::-;;;;;;;;;;-1:-1:-1;57504:250:0;;;;;:::i;:::-;;:::i;51279:53::-;;;;;;;;;;-1:-1:-1;51279:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;55629:178;;;;;;;;;;-1:-1:-1;55629:178:0;;;;;:::i;:::-;;:::i;70670:37::-;;;;;;;;;;;;70706:1;70670:37;;84789:28;;;;;;;;;;-1:-1:-1;84789:28:0;;;;-1:-1:-1;;;;;84789:28:0;;;;;;-1:-1:-1;;;;;6558:32:1;;;6540:51;;6528:2;6513:18;84789:28:0;6394:203:1;70736:33:0;;;;;;;;;;;;70768:1;70736:33;;64052:85;;;;;;;;;;-1:-1:-1;64052:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65375:389;;;;;;;;;;-1:-1:-1;65375:389:0;;;;;:::i;:::-;;:::i;82221:356::-;;;;;;:::i;:::-;;:::i;11018:127::-;;;;;;;;;;-1:-1:-1;11018:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11119:18:0;11092:7;11119:18;;;:9;:18;;;;;;;11018:127;3006:103;;;;;;;;;;;;;:::i;51149:51::-;;;;;;;;;;-1:-1:-1;51149:51:0;;;;;:::i;:::-;;:::i;82585:586::-;;;;;;:::i;:::-;;:::i;70827:37::-;;;;;;;;;;;;;;;51207:65;;;;;;;;;;-1:-1:-1;51207:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2365:87;;;;;;;;;;-1:-1:-1;2411:7:0;2438:6;-1:-1:-1;;;;;2438:6:0;2365:87;;85506:112;;;;;;;;;;;;;:::i;51339:23::-;;;;;;;;;;-1:-1:-1;51339:23:0;;;;-1:-1:-1;;;;;51339:23:0;;;9937:104;;;;;;;;;;;;;:::i;70873:83::-;;;;;;;;;;-1:-1:-1;70873:83:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56458:330;;;;;;;;;;-1:-1:-1;56458:330:0;;;;;:::i;:::-;;:::i;87142:167::-;;;;;;;;;;-1:-1:-1;87142:167:0;;;;;:::i;:::-;;:::i;14270:436::-;;;;;;;;;;-1:-1:-1;14270:436:0;;;;;:::i;:::-;;:::i;83941:450::-;;;;;;;;;;-1:-1:-1;83941:450:0;;;;;:::i;:::-;;:::i;56169:281::-;;;;;;;;;;-1:-1:-1;56169:281:0;;;;;:::i;:::-;;:::i;11351:193::-;;;;;;;;;;-1:-1:-1;11351:193:0;;;;;:::i;:::-;;:::i;51096:46::-;;;;;;;;;;;;;;;56796:136;;;;;;;;;;-1:-1:-1;56796:136:0;;;;;:::i;:::-;;:::i;51032:55::-;;;;;;;;;;;;51082:5;51032:55;;55106:247;;;;;;;;;;-1:-1:-1;55106:247:0;;;;;:::i;:::-;;:::i;65993:810::-;;;;;;:::i;:::-;;:::i;11607:151::-;;;;;;;;;;-1:-1:-1;11607:151:0;;;;;:::i;:::-;;:::i;56940:262::-;;;;;;;;;;-1:-1:-1;56940:262:0;;;;;:::i;:::-;;:::i;70776:42::-;;;;;;;;;;;;70817:1;70776:42;;72077:643;;;;;;;;;;-1:-1:-1;72077:643:0;;;;;:::i;:::-;;:::i;55954:207::-;;;;;;;;;;-1:-1:-1;55954:207:0;;;;;:::i;:::-;;:::i;3264:201::-;;;;;;;;;;-1:-1:-1;3264:201:0;;;;;:::i;:::-;;:::i;54790:254::-;;;;;;;;;;-1:-1:-1;54790:254:0;;;;;:::i;:::-;;:::i;85626:103::-;;;;;;;;;;-1:-1:-1;85716:4:0;85626:103;;51737:842;941:10;52020;-1:-1:-1;;;;;51996:35:0;;51988:78;;;;-1:-1:-1;;;51988:78:0;;15205:2:1;51988:78:0;;;15187:21:1;15244:2;15224:18;;;15217:30;15283:32;15263:18;;;15256:60;15333:18;;51988:78:0;;;;;;;;;52108:32;;;52079:26;52108:32;;;:19;:32;;;;;52079:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52328:13;:20;52306:11;;:18;;:42;:70;;;;;52375:1;52352:13;:20;:24;52306:70;:124;;;;-1:-1:-1;52406:24:0;;;;;;52380:22;;;;52390:11;;;;52380:22;:::i;:::-;;;;;;;;:50;52306:124;52284:212;;;;-1:-1:-1;;;52284:212:0;;16225:2:1;52284:212:0;;;16207:21:1;16264:2;16244:18;;;16237:30;16303:34;16283:18;;;16276:62;-1:-1:-1;;;16354:18:1;;;16347:36;16400:19;;52284:212:0;16023:402:1;52284:212:0;52509:62;52528:11;52541;;52509:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52509:62:0;;;;;;;;;;;;;;;;;;;;;;52554:6;;-1:-1:-1;52509:62:0;-1:-1:-1;52562:8:0;;;;;;52509:62;;52562:8;;;;52509:62;;;;;;;;;-1:-1:-1;52509:18:0;;-1:-1:-1;;;52509:62:0:i;:::-;51911:668;51737:842;;;;;;:::o;83368:213::-;83470:4;-1:-1:-1;;;;;;83494:39:0;;-1:-1:-1;;;83494:39:0;;:79;;-1:-1:-1;;;;;;;;;;22714:40:0;;;83537:36;83487:86;83368:213;-1:-1:-1;;83368:213:0:o;9718:100::-;9772:13;9805:5;9798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9718:100;:::o;55361:123::-;2251:13;:11;:13::i;:::-;55441:35:::1;::::0;-1:-1:-1;;;55441:35:0;;16604:6:1;16592:19;;55441:35:0::1;::::0;::::1;16574:38:1::0;55441:10:0::1;-1:-1:-1::0;;;;;55441:25:0::1;::::0;::::1;::::0;16547:18:1;;55441:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55361:123:::0;:::o;12078:201::-;12161:4;941:10;12217:32;941:10;12233:7;12242:6;12217:8;:32::i;:::-;-1:-1:-1;12267:4:0;;12078:201;-1:-1:-1;;;12078:201:0:o;57264:142::-;2251:13;:11;:13::i;:::-;57355:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;57264:142::o;55492:129::-;2251:13;:11;:13::i;:::-;55575:38:::1;::::0;-1:-1:-1;;;55575:38:0;;16604:6:1;16592:19;;55575:38:0::1;::::0;::::1;16574::1::0;55575:10:0::1;-1:-1:-1::0;;;;;55575:28:0::1;::::0;::::1;::::0;16547:18:1;;55575:38:0::1;16430:188:1::0;12859:261:0;12956:4;941:10;13014:38;13030:4;941:10;13045:6;13014:15;:38::i;:::-;13063:27;13073:4;13079:2;13083:6;13063:9;:27::i;:::-;-1:-1:-1;13108:4:0;;12859:261;-1:-1:-1;;;;12859:261:0:o;87317:108::-;2251:13;:11;:13::i;:::-;-1:-1:-1;;;;;87390:20:0::1;;::::0;;;:10:::1;:20;::::0;;;;:27;;-1:-1:-1;;87390:27:0::1;87413:4;87390:27;::::0;;87317:108::o;83589:344::-;83803:14;83819:11;83850:75;83867:11;83880:10;83892:7;83901;83910:14;;83850:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83850:16:0;;-1:-1:-1;;;83850:75:0:i;:::-;83843:82;;;;83589:344;;;;;;;;;:::o;13529:238::-;13617:4;941:10;13673:64;941:10;13689:7;13726:10;13698:25;941:10;13689:7;13698:9;:25::i;:::-;:38;;;;:::i;:::-;13673:8;:64::i;57504:250::-;57646:32;;;57600:4;57646:32;;;:19;:32;;;;;57617:61;;57600:4;;57646:32;57617:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57734:11;;57724:22;;;;;;;:::i;:::-;;;;;;;;57706:13;57696:24;;;;;;:50;57689:57;;;57504:250;;;;;:::o;55629:178::-;2251:13;:11;:13::i;:::-;55744:55:::1;::::0;-1:-1:-1;;;55744:55:0;;-1:-1:-1;;;;;55744:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;55774:11;;55787;;;;55744:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;65375:389:::0;941:10;65632:4;65608:29;65600:80;;;;-1:-1:-1;;;65600:80:0;;17689:2:1;65600:80:0;;;17671:21:1;17728:2;17708:18;;;17701:30;17767:34;17747:18;;;17740:62;-1:-1:-1;;;17818:18:1;;;17811:36;17864:19;;65600:80:0;17487:402:1;65600:80:0;65691:65;65713:11;65726;;65691:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65691:65:0;;;;;;;;;;;;;;;;;;;;;;65739:6;;-1:-1:-1;65691:65:0;-1:-1:-1;65747:8:0;;;;;;65691:65;;65747:8;;;;65691:65;;;;;;;;;-1:-1:-1;65691:21:0;;-1:-1:-1;;;65691:65:0:i;:::-;65375:389;;;;;;:::o;82221:356::-;82438:131;82444:5;82451:11;82464:10;82476:7;82485:25;;;;:11;:25;:::i;:::-;82512:29;;;;;;;;:::i;:::-;82543:25;;;;:11;:25;:::i;:::-;82438:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;82438:5:0;;-1:-1:-1;;;82438:131:0:i;3006:103::-;2251:13;:11;:13::i;:::-;3071:30:::1;3098:1;3071:18;:30::i;:::-;3006:103::o:0;51149:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82585:586::-;82871:292;82898:5;82918:11;82944:10;82969:7;82991:8;;82871:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83014:14:0;;-1:-1:-1;83043:25:0;;-1:-1:-1;;83043:25:0;;;:11;:25;:::i;:::-;83083:29;;;;;;;;:::i;:::-;83127:25;;;;:11;:25;:::i;:::-;82871:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;82871:12:0;;-1:-1:-1;;;82871:292:0:i;:::-;;82585:586;;;;;;;;:::o;85506:112::-;85573:4;85597:13;10935:12;;;10847:108;85597:13;85590:20;;85506:112;:::o;9937:104::-;9993:13;10026:7;10019:14;;;;;:::i;56458:330::-;56582:35;;;56562:17;56582:35;;;:19;:35;;;;;56562:55;;56537:12;;56562:17;56582:35;56562:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56636:4;:11;56651:1;56636:16;56628:58;;;;-1:-1:-1;;;56628:58:0;;18882:2:1;56628:58:0;;;18864:21:1;18921:2;18901:18;;;18894:30;18960:31;18940:18;;;18933:59;19009:18;;56628:58:0;18680:353:1;56628:58:0;56704:31;56715:1;56732:2;56718:4;:11;:16;;;;:::i;:::-;56704:4;;:31;:10;:31::i;:::-;56697:38;56458:330;-1:-1:-1;;;56458:330:0:o;87142:167::-;2251:13;:11;:13::i;:::-;87236::::1;:30:::0;;-1:-1:-1;;;;;;87236:30:0::1;-1:-1:-1::0;;;;;87236:30:0;;;::::1;::::0;;;::::1;::::0;;;87277:10:::1;:24:::0;87142:167::o;14270:436::-;14363:4;941:10;14363:4;14446:25;941:10;14463:7;14446:9;:25::i;:::-;14419:52;;14510:15;14490:16;:35;;14482:85;;;;-1:-1:-1;;;14482:85:0;;19373:2:1;14482:85:0;;;19355:21:1;19412:2;19392:18;;;19385:30;19451:34;19431:18;;;19424:62;-1:-1:-1;;;19502:18:1;;;19495:35;19547:19;;14482:85:0;19171:401:1;14482:85:0;14603:60;14612:5;14619:7;14647:15;14628:16;:34;14603:8;:60::i;83941:450::-;84228:14;84244:11;84275:108;84299:11;84312:10;84324:7;84333:8;;84275:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;84275:108:0;;;;;;;;;;;;;;;;;;;;;;84343:14;;-1:-1:-1;84359:7:0;;-1:-1:-1;84275:108:0;84368:14;;;;;;84275:108;;84368:14;;;;84275:108;;;;;;;;;-1:-1:-1;84275:23:0;;-1:-1:-1;;;84275:108:0:i;:::-;84268:115;;;;83941:450;;;;;;;;;;;;:::o;56169:281::-;2251:13;:11;:13::i;:::-;56341:14:::1;;56365:4;56324:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;56324:47:0;;::::1;::::0;;;;;;56286:35:::1;::::0;::::1;;::::0;;;:19:::1;56324:47;56286:35:::0;;;:85:::1;::::0;:35;:85:::1;:::i;:::-;;56387:55;56411:14;56427;;56387:55;;;;;;;;:::i;:::-;;;;;;;;56169:281:::0;;;:::o;11351:193::-;11430:4;941:10;11486:28;941:10;11503:2;11507:6;11486:9;:28::i;56796:136::-;2251:13;:11;:13::i;:::-;56866:8:::1;:20:::0;;-1:-1:-1;;;;;;56866:20:0::1;-1:-1:-1::0;;;;;56866:20:0;::::1;::::0;;::::1;::::0;;;56902:22:::1;::::0;6540:51:1;;;56902:22:0::1;::::0;6528:2:1;6513:18;56902:22:0::1;;;;;;;56796:136:::0;:::o;55106:247::-;2251:13;:11;:13::i;:::-;55283:62:::1;::::0;-1:-1:-1;;;55283:62:0;;-1:-1:-1;;;;;55283:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;55304:8;;55314;;55324:11;;55337:7;;;;55283:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;65993:810:::0;66247:27;;;66225:19;66247:27;;;:14;:27;;;;;;:40;;;;66275:11;;;;66247:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66247:48:0;;;;;;;;;;;;-1:-1:-1;66247:48:0;66306:73;;;;-1:-1:-1;;;66306:73:0;;22845:2:1;66306:73:0;;;22827:21:1;22884:2;22864:18;;;22857:30;22923:34;22903:18;;;22896:62;-1:-1:-1;;;22974:18:1;;;22967:33;23017:19;;66306:73:0;22643:399:1;66306:73:0;66421:11;66408:8;;66398:19;;;;;;;:::i;:::-;;;;;;;;:34;66390:80;;;;-1:-1:-1;;;66390:80:0;;23249:2:1;66390:80:0;;;23231:21:1;23288:2;23268:18;;;23261:30;23327:34;23307:18;;;23300:62;-1:-1:-1;;;23378:18:1;;;23371:31;23419:19;;66390:80:0;23047:397:1;66390:80:0;66518:27;;;66577:1;66518:27;;;:14;:27;;;;;;:40;;;;66546:11;;;;66518:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66518:48:0;;;;;;;;;;;;:61;;;;66648:65;;;;;;;;;;;;;;;;;;;66670:11;;66683;;66648:65;;;;;;66683:11;66648:65;;66683:11;66648:65;;;;;;;;;-1:-1:-1;;66648:65:0;;;;;;;;;;;;;;;;;;;;;;66696:6;;-1:-1:-1;66648:65:0;-1:-1:-1;66704:8:0;;;;;;66648:65;;66704:8;;;;66648:65;;;;;;;;;-1:-1:-1;66648:21:0;;-1:-1:-1;;;66648:65:0:i;:::-;66729:66;66749:11;66762;;66775:6;66783:11;66729:66;;;;;;;;;;:::i;:::-;;;;;;;;66169:634;65993:810;;;;;;:::o;11607:151::-;-1:-1:-1;;;;;11723:18:0;;;11696:7;11723:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11607:151::o;56940:262::-;2251:13;:11;:13::i;:::-;57080:28:::1;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;57147:47;;24170:34:1;;;24220:18;;24213:43;;;;24272:18;;;24265:34;;;57147:47:0::1;::::0;24133:2:1;24118:18;57147:47:0::1;23947:358:1::0;72077:643:0;941:10;72389:4;72365:29;72357:73;;;;-1:-1:-1;;;72357:73:0;;24512:2:1;72357:73:0;;;24494:21:1;24551:2;24531:18;;;24524:30;24590:33;24570:18;;;24563:61;24641:18;;72357:73:0;24310:355:1;72357:73:0;72470:42;72492:4;72499:3;72504:7;72470:13;:42::i;:::-;72460:52;;72558:3;-1:-1:-1;;;;;72528:43:0;72545:11;72528:43;;;72563:7;72528:43;;;;3860:25:1;;3848:2;3833:18;;3714:177;72528:43:0;;;;;;;;72601:111;;-1:-1:-1;;;72601:111:0;;-1:-1:-1;;;;;72601:33:0;;;;;72640:11;;72601:111;;72653:11;;72666;;;;72679:6;;72687:5;;72694:7;;72703:8;;;;72601:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72077:643;;;;;;;;;;:::o;55954:207::-;2251:13;:11;:13::i;:::-;56055:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;56093:5:::0;;56055:35;:43:::1;:::i;:::-;;56114:39;56131:14;56147:5;;56114:39;;;;;;;;:::i;3264:201::-:0;2251:13;:11;:13::i;:::-;-1:-1:-1;;;;;3353:22:0;::::1;3345:73;;;::::0;-1:-1:-1;;;3345:73:0;;26837:2:1;3345:73:0::1;::::0;::::1;26819:21:1::0;26876:2;26856:18;;;26849:30;26915:34;26895:18;;;26888:62;-1:-1:-1;;;26966:18:1;;;26959:36;27012:19;;3345:73:0::1;26635:402:1::0;3345:73:0::1;3429:28;3448:8;3429:18;:28::i;:::-;3264:201:::0;:::o;54790:254::-;54968:68;;-1:-1:-1;;;54968:68:0;;27279:6:1;27312:15;;;54968:68:0;;;27294:34:1;27364:15;;27344:18;;;27337:43;55017:4:0;27396:18:1;;;27389:60;27465:18;;;27458:34;;;54936:12:0;;54968:10;-1:-1:-1;;;;;54968:20:0;;;;27241:19:1;;54968:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54968:68:0;;;;;;;;;;;;:::i;:::-;54961:75;54790:254;-1:-1:-1;;;;;54790:254:0:o;64421:563::-;64614:12;64628:19;64651:203;64699:9;64723:3;64764:34;;;64800:11;64813;64826:6;64834:8;64741:102;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;64741:102:0;;;;;;;;;;;;;;-1:-1:-1;;;;;64741:102:0;-1:-1:-1;;;;;;64741:102:0;;;;;;;;;;64659:4;;64651:203;;:33;:203::i;:::-;64613:241;;;;64870:7;64865:112;;64894:71;64914:11;64927;64940:6;64948:8;64958:6;64894:19;:71::i;2530:132::-;2411:7;2438:6;-1:-1:-1;;;;;2438:6:0;941:10;2594:23;2586:68;;;;-1:-1:-1;;;2586:68:0;;28919:2:1;2586:68:0;;;28901:21:1;;;28938:18;;;28931:30;28997:34;28977:18;;;28970:62;29049:18;;2586:68:0;28717:356:1;18263:346:0;-1:-1:-1;;;;;18365:19:0;;18357:68;;;;-1:-1:-1;;;18357:68:0;;29280:2:1;18357:68:0;;;29262:21:1;29319:2;29299:18;;;29292:30;29358:34;29338:18;;;29331:62;-1:-1:-1;;;29409:18:1;;;29402:34;29453:19;;18357:68:0;29078:400:1;18357:68:0;-1:-1:-1;;;;;18444:21:0;;18436:68;;;;-1:-1:-1;;;18436:68:0;;29685:2:1;18436:68:0;;;29667:21:1;29724:2;29704:18;;;29697:30;29763:34;29743:18;;;29736:62;-1:-1:-1;;;29814:18:1;;;29807:32;29856:19;;18436:68:0;29483:398:1;18436:68:0;-1:-1:-1;;;;;18517:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18569:32;;3860:25:1;;;18569:32:0;;3833:18:1;18569:32:0;;;;;;;18263:346;;;:::o;18900:419::-;19001:24;19028:25;19038:5;19045:7;19028:9;:25::i;:::-;19001:52;;-1:-1:-1;;19068:16:0;:37;19064:248;;19150:6;19130:16;:26;;19122:68;;;;-1:-1:-1;;;19122:68:0;;30088:2:1;19122:68:0;;;30070:21:1;30127:2;30107:18;;;30100:30;30166:31;30146:18;;;30139:59;30215:18;;19122:68:0;29886:353:1;19122:68:0;19234:51;19243:5;19250:7;19278:6;19259:16;:25;19234:8;:51::i;:::-;18990:329;18900:419;;;:::o;15176:806::-;-1:-1:-1;;;;;15273:18:0;;15265:68;;;;-1:-1:-1;;;15265:68:0;;30446:2:1;15265:68:0;;;30428:21:1;30485:2;30465:18;;;30458:30;30524:34;30504:18;;;30497:62;-1:-1:-1;;;30575:18:1;;;30568:35;30620:19;;15265:68:0;30244:401:1;15265:68:0;-1:-1:-1;;;;;15352:16:0;;15344:64;;;;-1:-1:-1;;;15344:64:0;;30852:2:1;15344:64:0;;;30834:21:1;30891:2;30871:18;;;30864:30;30930:34;30910:18;;;30903:62;-1:-1:-1;;;30981:18:1;;;30974:33;31024:19;;15344:64:0;30650:399:1;15344:64:0;15421:38;15442:4;15448:2;15452:6;15421:20;:38::i;:::-;-1:-1:-1;;;;;15494:15:0;;15472:19;15494:15;;;:9;:15;;;;;;15528:21;;;;15520:72;;;;-1:-1:-1;;;15520:72:0;;31256:2:1;15520:72:0;;;31238:21:1;31295:2;31275:18;;;31268:30;31334:34;31314:18;;;31307:62;-1:-1:-1;;;31385:18:1;;;31378:36;31431:19;;15520:72:0;31054:402:1;15520:72:0;-1:-1:-1;;;;;15628:15:0;;;;;;;:9;:15;;;;;;15646:20;;;15628:38;;15846:13;;;;;;;;;;:23;;;;;;15898:26;;;;;;15660:6;3860:25:1;;3848:2;3833:18;;3714:177;15898:26:0;;;;;;;;15937:37;87566:465;72914:471;73120:14;73136:11;73204:20;73227:47;73246:10;73258:15;73265:7;73258:6;:15::i;:::-;79603:48;;;70768:1;79603:48;;;36740:49:1;36805:11;;;36798:27;;;;36881:3;36859:16;;;;-1:-1:-1;;;;;;36855:51:1;36841:12;;;36834:73;79603:48:0;;;;;;;;;36923:12:1;;;;79603:48:0;;;79474:185;73227:47;73292:85;;-1:-1:-1;;;73292:85:0;;73204:70;;-1:-1:-1;;;;;;73292:10:0;:23;;;;:85;;73316:11;;73337:4;;73204:70;;73353:7;;73362:14;;73292:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73285:92;;;;;72914:471;;;;;;;;:::o;73991:558::-;74186:16;74205:19;:8;74186:16;74205;:19::i;:::-;74186:38;-1:-1:-1;74241:21:0;;;74237:305;;74279:52;74288:11;74301;74314:6;74322:8;74279;:52::i;:::-;74237:305;;;-1:-1:-1;;74353:30:0;;;;74349:193;;74400:59;74416:11;74429;74442:6;74450:8;74400:15;:59::i;74349:193::-;74492:38;;-1:-1:-1;;;74492:38:0;;32560:2:1;74492:38:0;;;32542:21:1;32599:2;32579:18;;;32572:30;32638;32618:18;;;32611:58;32686:18;;74492:38:0;32358:352:1;74557:840:0;74826:11;74850:66;74865:11;74826;74887:14;74826:11;74850:14;:66::i;:::-;74942:20;74954:7;74942:11;:20::i;:::-;-1:-1:-1;74929:33:0;-1:-1:-1;74982:50:0;74993:5;75000:11;75013:10;74929:33;74982:10;:50::i;:::-;74973:59;;75100:1;75091:6;:10;75083:48;;;;-1:-1:-1;;;75083:48:0;;32917:2:1;75083:48:0;;;32899:21:1;32956:2;32936:18;;;32929:30;-1:-1:-1;;;32975:18:1;;;32968:55;33040:18;;75083:48:0;32715:349:1;75083:48:0;75144:22;75169:46;75188:10;75200:14;75207:6;75200;:14::i;75169:46::-;75144:71;;75226:94;75234:11;75247:9;75258:14;75274:18;75294:14;75310:9;75226:7;:94::i;:::-;75370:10;75363:5;-1:-1:-1;;;;;75338:51:0;75350:11;75338:51;;;75382:6;75338:51;;;;3860:25:1;;3848:2;3833:18;;3714:177;75338:51:0;;;;;;;;74839:558;74557:840;;;;;;;;;:::o;3625:191::-;3699:16;3718:6;;-1:-1:-1;;;;;3735:17:0;;;-1:-1:-1;;;;;;3735:17:0;;;;;;3768:40;;3718:6;;;;;;;3768:40;;3699:16;3768:40;3688:128;3625:191;:::o;75870:995::-;76210:11;76234:77;76249:11;70817:1;76280:14;-1:-1:-1;;;;;76234:77:0;;:14;:77::i;:::-;76337:20;76349:7;76337:11;:20::i;:::-;-1:-1:-1;76324:33:0;-1:-1:-1;76377:50:0;76388:5;76395:11;76408:10;76324:33;76377:10;:50::i;:::-;76368:59;;76455:1;76446:6;:10;76438:48;;;;-1:-1:-1;;;76438:48:0;;32917:2:1;76438:48:0;;;32899:21:1;32956:2;32936:18;;;32929:30;-1:-1:-1;;;32975:18:1;;;32968:55;33040:18;;76438:48:0;32715:349:1;76438:48:0;76567:22;76592:91;76618:10;76630;76642:14;76649:6;76642;:14::i;:::-;76658:8;76668:14;76592:25;:91::i;:::-;76567:116;;76694:94;76702:11;76715:9;76726:14;76742:18;76762:14;76778:9;76694:7;:94::i;:::-;76838:10;76831:5;-1:-1:-1;;;;;76806:51:0;76818:11;76806:51;;;76850:6;76806:51;;;;3860:25:1;;3848:2;3833:18;;3714:177;76806:51:0;;;;;;;;76223:642;75870:995;;;;;;;;;;;:::o;39889:2833::-;40009:12;40058:7;40042:12;40058:7;40052:2;40042:12;:::i;:::-;:23;;40034:50;;;;-1:-1:-1;;;40034:50:0;;33271:2:1;40034:50:0;;;33253:21:1;33310:2;33290:18;;;33283:30;-1:-1:-1;;;33329:18:1;;;33322:44;33383:18;;40034:50:0;33069:338:1;40034:50:0;40120:16;40129:7;40120:6;:16;:::i;:::-;40103:6;:13;:33;;40095:63;;;;-1:-1:-1;;;40095:63:0;;33614:2:1;40095:63:0;;;33596:21:1;33653:2;33633:18;;;33626:30;-1:-1:-1;;;33672:18:1;;;33665:47;33729:18;;40095:63:0;33412:341:1;40095:63:0;40171:22;40237:15;;40266:2005;;;;42415:4;42409:11;42396:24;;42604:1;42593:9;42586:20;42654:4;42643:9;42639:20;42633:4;42626:34;40230:2445;;40266:2005;40451:4;40445:11;40432:24;;41120:2;41111:7;41107:16;41508:9;41501:17;41495:4;41491:28;41479:9;41468;41464:25;41460:60;41557:7;41553:2;41549:16;41814:6;41800:9;41793:17;41787:4;41783:28;41771:9;41763:6;41759:22;41755:57;41751:70;41585:434;41848:3;41844:2;41841:11;41585:434;;;41990:9;;41979:21;;41890:4;41882:13;;;;41923;41585:434;;;-1:-1:-1;;42039:26:0;;;42251:2;42234:11;-1:-1:-1;;42230:25:0;42224:4;42217:39;-1:-1:-1;40230:2445:0;-1:-1:-1;42705:9:0;39889:2833;-1:-1:-1;;;;39889:2833:0:o;73393:590::-;73670:14;73686:11;73757:20;73780:92;73806:10;73818;73830:15;73837:7;73830:6;:15::i;73780:92::-;73890:85;;-1:-1:-1;;;73890:85:0;;73757:115;;-1:-1:-1;;;;;;73890:10:0;:23;;;;:85;;73914:11;;73935:4;;73757:115;;73951:7;;73960:14;;73890:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73883:92;;;;;73393:590;;;;;;;;;;:::o;86474:425::-;86608:4;941:10;86758:4;-1:-1:-1;;;;;86741:22:0;;;;;;:42;;;86776:7;-1:-1:-1;;;;;86767:16:0;:5;-1:-1:-1;;;;;86767:16:0;;;86741:42;86737:88;;;86785:40;86801:5;86808:7;86817;86785:15;:40::i;:::-;86836:30;86846:5;86853:3;86858:7;86836:9;:30::i;:::-;-1:-1:-1;86884:7:0;;86474:425;-1:-1:-1;;;86474:425:0:o;58954:1309::-;59113:4;59119:12;59181;59204:13;59228:24;59265:8;59255:19;;-1:-1:-1;;;;;59255:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59255:19:0;;59228:46;;59784:1;59754;59716:9;59710:16;59677:4;59666:9;59662:20;59627:1;59588:7;59558:4;59535:275;59523:287;;59879:16;59868:27;;59924:8;59915:7;59912:21;59909:78;;;59964:8;59953:19;;59909:78;60074:7;60061:11;60054:28;60196:7;60193:1;60186:4;60173:11;60169:22;60154:50;60233:8;;;;-1:-1:-1;58954:1309:0;-1:-1:-1;;;;;;58954:1309:0:o;64992:375::-;65268:8;65258:19;;;;;;65207:14;:27;65222:11;65207:27;;;;;;;;;;;;;;;65235:11;65207:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;65207:48:0;;;;;;;;;:70;;;;65293:66;;;;65307:11;;65320;;65248:6;;65341:8;;65351:7;;65293:66;:::i;:::-;;;;;;;;64992:375;;;;;:::o;87566:465::-;-1:-1:-1;;;;;87685:16:0;;;;;;:10;:16;;;;;;;;87684:17;;:36;;-1:-1:-1;;;;;;87706:14:0;;;;;;:10;:14;;;;;;;;87705:15;87684:36;87676:70;;;;-1:-1:-1;;;87676:70:0;;34976:2:1;87676:70:0;;;34958:21:1;35015:2;34995:18;;;34988:30;-1:-1:-1;;;35034:18:1;;;35027:51;35095:18;;87676:70:0;34774:345:1;87676:70:0;87763:13;;-1:-1:-1;;;;;87763:13:0;87759:147;;2411:7;2438:6;-1:-1:-1;;;;;87815:15:0;;;2438:6;;87815:15;;:32;;-1:-1:-1;2411:7:0;2438:6;-1:-1:-1;;;;;87834:13:0;;;2438:6;;87834:13;87815:32;87807:87;;;;-1:-1:-1;;;87807:87:0;;35326:2:1;87807:87:0;;;35308:21:1;35365:2;35345:18;;;35338:30;35404:34;35384:18;;;35377:62;-1:-1:-1;;;35455:18:1;;;35448:40;35505:19;;87807:87:0;35124:406:1;87807:87:0;87957:10;;87948:5;87926:19;87942:2;-1:-1:-1;;;;;11119:18:0;11092:7;11119:18;;;:9;:18;;;;;;;11018:127;87926:19;:27;;;;:::i;:::-;:41;;87918:99;;;;-1:-1:-1;;;87918:99:0;;35737:2:1;87918:99:0;;;35719:21:1;35776:2;35756:18;;;35749:30;35815:34;35795:18;;;35788:62;-1:-1:-1;;;35866:18:1;;;35859:43;35919:19;;87918:99:0;35535:409:1;87918:99:0;87566:465;;;:::o;78909:238::-;78970:6;;79005:22;86993:9;79005:7;:22;:::i;:::-;78989:38;-1:-1:-1;;;;;;79046:28:0;;;79038:67;;;;-1:-1:-1;;;79038:67:0;;36408:2:1;79038:67:0;;;36390:21:1;36447:2;36427:18;;;36420:30;36486:28;36466:18;;;36459:56;36532:18;;79038:67:0;36206:350:1;43098:307:0;43172:5;43215:10;:6;43224:1;43215:10;:::i;:::-;43198:6;:13;:27;;43190:59;;;;-1:-1:-1;;;43190:59:0;;37148:2:1;43190:59:0;;;37130:21:1;37187:2;37167:18;;;37160:30;-1:-1:-1;;;37206:18:1;;;37199:49;37265:18;;43190:59:0;36946:343:1;43190:59:0;-1:-1:-1;43329:29:0;43345:3;43329:29;43323:36;;43098:307::o;75405:457::-;75560:10;75572:15;75591:28;75610:8;75591:18;:28::i;:::-;75559:60;;-1:-1:-1;75559:60:0;-1:-1:-1;;;;;;75634:16:0;;75630:69;;75680:6;75667:20;;75630:69;75711:11;75725:16;75732:8;75725:6;:16::i;:::-;75711:30;;75761:34;75771:11;75784:2;75788:6;75761:9;:34::i;:::-;75752:43;;75843:2;-1:-1:-1;;;;;75813:41:0;75830:11;75813:41;;;75847:6;75813:41;;;;3860:25:1;;3848:2;3833:18;;3714:177;75813:41:0;;;;;;;;75548:314;;;75405:457;;;;:::o;76873:1902::-;77054:12;77068:10;77080:15;77097:27;77126:17;77147:35;77173:8;77147:25;:35::i;:::-;77053:129;;;;;;;;;;77195:13;77211:15;:28;77227:11;77211:28;;;;;;;;;;;;;;;77240:11;77211:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;77211:49:0;;;;;;;;;;;;;;-1:-1:-1;77285:16:0;77292:8;77285:6;:16::i;:::-;77271:30;;77429:8;77424:167;;77463:45;77473:11;77494:4;77501:6;77463:9;:45::i;:::-;77523:28;;;;;;;:15;:28;;;;;;;:41;;77454:54;;-1:-1:-1;77575:4:0;;77523:41;;77552:11;;77523:41;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;77523:49:0;;;;;;;;;;:56;;-1:-1:-1;;77523:56:0;;;;;;;;;;77424:167;-1:-1:-1;;;;;78869:20:0;;;77603:97;;77645:22;;-1:-1:-1;;;;;6558:32:1;;6540:51;;77645:22:0;;6528:2:1;6513:18;77645:22:0;;;;;;;77682:7;;;;;;;;;77603:97;77774:11;77822;77859:6;77899:8;77934:4;77963:2;77991:6;78039:14;77754:17;78124:8;:33;;78147:10;-1:-1:-1;;;;;78124:33:0;;;;78135:9;78124:33;78113:44;;78169:12;78183:19;78206:230;78254:9;78278:3;78319:31;;;78352:10;78364;78376:5;78383;78390:3;78395:7;78404:15;78421:3;78296:129;;;;;;;;;;;;;;;:::i;78206:230::-;78168:268;;;;78453:7;78449:319;;;78492:18;;;;;;78530:59;;;;;;;;;;78565:10;;78577:5;;78492:18;;78530:59;:::i;:::-;;;;;;;;78462:139;78449:319;;;78689:67;78709:10;78721;78733:5;78740:7;78749:6;78689:19;:67::i;:::-;77042:1733;;;;;;;;;;;;;;;;;;76873:1902;;;;:::o;53533:463::-;53712:21;53736:28;53749:14;53736:12;:28::i;:::-;53794;;;;53775:16;53794:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;53712:52;;-1:-1:-1;53848:15:0;53840:54;;;;-1:-1:-1;;;53840:54:0;;38780:2:1;53840:54:0;;;38762:21:1;38819:2;38799:18;;;38792:30;38858:28;38838:18;;;38831:56;38904:18;;53840:54:0;38578:350:1;53840:54:0;53933:23;53947:9;53933:11;:23;:::i;:::-;53913:16;:43;;53905:83;;;;-1:-1:-1;;;53905:83:0;;39135:2:1;53905:83:0;;;39117:21:1;39174:2;39154:18;;;39147:30;39213:29;39193:18;;;39186:57;39260:18;;53905:83:0;38933:351:1;79284:182:0;79350:16;;79397:22;86993:9;79397:7;:22;:::i;:::-;79390:29;-1:-1:-1;79444:14:0;79390:29;79444:7;:14;:::i;:::-;79430:28;;79284:182;;;:::o;85923:329::-;86067:4;941:10;-1:-1:-1;;;;;86129:16:0;;;;86125:62;;86147:40;86163:5;86170:7;86179;86147:15;:40::i;:::-;86198:21;86204:5;86211:7;86198:5;:21::i;:::-;-1:-1:-1;86237:7:0;;85923:329;-1:-1:-1;;;;85923:329:0:o;52911:614::-;53195:32;;;53166:26;53195:32;;;:19;:32;;;;;53166:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53246:13;:20;53270:1;53246:25;53238:86;;;;-1:-1:-1;;;53238:86:0;;39608:2:1;53238:86:0;;;39590:21:1;39647:2;39627:18;;;39620:30;39686:34;39666:18;;;39659:62;-1:-1:-1;;;39737:18:1;;;39730:46;39793:19;;53238:86:0;39406:412:1;53238:86:0;53335:47;53353:11;53366:8;:15;53335:17;:47::i;:::-;53393:124;;-1:-1:-1;;;53393:124:0;;-1:-1:-1;;;;;53393:10:0;:15;;;;53416:10;;53393:124;;53428:11;;53441:13;;53456:8;;53466:14;;53482:18;;53502:14;;53393:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53155:370;52911:614;;;;;;:::o;80018:366::-;80235:12;70817:1;80302:10;80314:9;-1:-1:-1;;;;;81169:23:0;;80351:14;80367:8;80267:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80260:116;;80018:366;;;;;;;:::o;79667:343::-;79749:10;;;79797:19;:8;79749:10;79797:16;:19::i;:::-;:30;;;:55;;;;;79831:8;:15;79850:2;79831:21;79797:55;79789:92;;;;-1:-1:-1;;;79789:92:0;;41602:2:1;79789:92:0;;;41584:21:1;41641:2;41621:18;;;41614:30;-1:-1:-1;;;41660:18:1;;;41653:54;41724:18;;79789:92:0;41400:348:1;79789:92:0;79899:22;:8;79918:2;79899:18;:22::i;:::-;79894:27;-1:-1:-1;79981:21:0;:8;79999:2;79981:17;:21::i;:::-;79970:32;;79667:343;;;:::o;79155:121::-;79220:4;79244:24;86993:9;-1:-1:-1;;;;;79244:24:0;;;:::i;86260:206::-;86390:4;86407:26;86413:10;86425:7;86407:5;:26::i;:::-;-1:-1:-1;86451:7:0;86260:206;-1:-1:-1;;86260:206:0:o;80392:658::-;80531:12;;;80613:20;80531:12;70817:1;80704:19;:8;80531:12;80704:16;:19::i;:::-;:39;;;80696:76;;;;-1:-1:-1;;;80696:76:0;;41602:2:1;80696:76:0;;;41584:21:1;41641:2;41621:18;;;41614:30;-1:-1:-1;;;41660:18:1;;;41653:54;41724:18;;80696:76:0;41400:348:1;80696:76:0;80790:22;:8;80809:2;80790:18;:22::i;:::-;80785:27;-1:-1:-1;80872:21:0;:8;80890:2;80872:17;:21::i;:::-;80861:32;-1:-1:-1;80911:22:0;:8;80930:2;80911:18;:22::i;:::-;80904:29;-1:-1:-1;80960:21:0;:8;80978:2;80960:17;:21::i;:::-;80944:37;;81002:40;81017:2;81039;81021:8;:15;:20;;;;:::i;:::-;81002:8;;:40;:14;:40::i;:::-;80992:50;;80392:658;;;;;;;:::o;54004:271::-;54086:13;54145:2;54120:14;:21;:27;;54112:68;;;;-1:-1:-1;;;54112:68:0;;42128:2:1;54112:68:0;;;42110:21:1;42167:2;42147:18;;;42140:30;42206;42186:18;;;42179:58;42254:18;;54112:68:0;41926:352:1;54112:68:0;-1:-1:-1;54253:2:0;54233:23;54227:30;;54004:271::o;17150:675::-;-1:-1:-1;;;;;17234:21:0;;17226:67;;;;-1:-1:-1;;;17226:67:0;;42485:2:1;17226:67:0;;;42467:21:1;42524:2;42504:18;;;42497:30;42563:34;42543:18;;;42536:62;-1:-1:-1;;;42614:18:1;;;42607:31;42655:19;;17226:67:0;42283:397:1;17226:67:0;17306:49;17327:7;17344:1;17348:6;17306:20;:49::i;:::-;-1:-1:-1;;;;;17393:18:0;;17368:22;17393:18;;;:9;:18;;;;;;17430:24;;;;17422:71;;;;-1:-1:-1;;;17422:71:0;;42887:2:1;17422:71:0;;;42869:21:1;42926:2;42906:18;;;42899:30;42965:34;42945:18;;;42938:62;-1:-1:-1;;;43016:18:1;;;43009:32;43058:19;;17422:71:0;42685:398:1;17422:71:0;-1:-1:-1;;;;;17529:18:0;;;;;;:9;:18;;;;;;;;17550:23;;;17529:44;;17668:12;:22;;;;;;;17719:37;3860:25:1;;;17529:18:0;;;17719:37;;3833:18:1;17719:37:0;;;;;;;87566:465;;;:::o;54283:402::-;54406:35;;;54382:21;54406:35;;;:22;:35;;;;;;;54456:21;;;54452:138;;-1:-1:-1;51082:5:0;54452:138;54624:16;54608:12;:32;;54600:77;;;;-1:-1:-1;;;54600:77:0;;43290:2:1;54600:77:0;;;43272:21:1;;;43309:18;;;43302:30;43368:34;43348:18;;;43341:62;43420:18;;54600:77:0;43088:356:1;42730:360:0;42806:7;42851:11;:6;42860:2;42851:11;:::i;:::-;42834:6;:13;:28;;42826:62;;;;-1:-1:-1;;;42826:62:0;;43651:2:1;42826:62:0;;;43633:21:1;43690:2;43670:18;;;43663:30;-1:-1:-1;;;43709:18:1;;;43702:51;43770:18;;42826:62:0;43449:345:1;42826:62:0;-1:-1:-1;42980:30:0;42996:4;42980:30;42974:37;-1:-1:-1;;;42970:71:0;;;42730:360::o;44051:311::-;44126:6;44170:10;:6;44179:1;44170:10;:::i;:::-;44153:6;:13;:27;;44145:60;;;;-1:-1:-1;;;44145:60:0;;44001:2:1;44145:60:0;;;43983:21:1;44040:2;44020:18;;;44013:30;-1:-1:-1;;;44059:18:1;;;44052:50;44119:18;;44145:60:0;43799:344:1;44145:60:0;-1:-1:-1;44286:29:0;44302:3;44286:29;44280:36;;44051:311::o;16269:548::-;-1:-1:-1;;;;;16353:21:0;;16345:65;;;;-1:-1:-1;;;16345:65:0;;44350:2:1;16345:65:0;;;44332:21:1;44389:2;44369:18;;;44362:30;44428:33;44408:18;;;44401:61;44479:18;;16345:65:0;44148:355:1;16345:65:0;16423:49;16452:1;16456:7;16465:6;16423:20;:49::i;:::-;16501:6;16485:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16656:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;16711:37;3860:25:1;;;16711:37:0;;3833:18:1;16711:37:0;;;;;;;16269:548;;:::o;45334:326::-;45410:7;45455:11;:6;45464:2;45455:11;:::i;:::-;45438:6;:13;:28;;45430:62;;;;-1:-1:-1;;;45430:62:0;;44710:2:1;45430:62:0;;;44692:21:1;44749:2;44729:18;;;44722:30;-1:-1:-1;;;44768:18:1;;;44761:51;44829:18;;45430:62:0;44508:345:1;45430:62:0;-1:-1:-1;45580:30:0;45596:4;45580:30;45574:37;;45334:326::o;14:159:1:-;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:347::-;229:8;239:6;293:3;286:4;278:6;274:17;270:27;260:55;;311:1;308;301:12;260:55;-1:-1:-1;334:20:1;;-1:-1:-1;;;;;366:30:1;;363:50;;;409:1;406;399:12;363:50;446:4;438:6;434:17;422:29;;498:3;491:4;482:6;474;470:19;466:30;463:39;460:59;;;515:1;512;505:12;460:59;178:347;;;;;:::o;530:171::-;597:20;;-1:-1:-1;;;;;646:30:1;;636:41;;626:69;;691:1;688;681:12;706:862;812:6;820;828;836;844;852;905:3;893:9;884:7;880:23;876:33;873:53;;;922:1;919;912:12;873:53;945:28;963:9;945:28;:::i;:::-;935:38;;1024:2;1013:9;1009:18;996:32;-1:-1:-1;;;;;1088:2:1;1080:6;1077:14;1074:34;;;1104:1;1101;1094:12;1074:34;1143:58;1193:7;1184:6;1173:9;1169:22;1143:58;:::i;:::-;1220:8;;-1:-1:-1;1117:84:1;-1:-1:-1;1117:84:1;;-1:-1:-1;1274:37:1;1307:2;1292:18;;1274:37;:::i;:::-;1264:47;;1364:2;1353:9;1349:18;1336:32;1320:48;;1393:2;1383:8;1380:16;1377:36;;;1409:1;1406;1399:12;1377:36;;1448:60;1500:7;1489:8;1478:9;1474:24;1448:60;:::i;:::-;706:862;;;;-1:-1:-1;706:862:1;;-1:-1:-1;706:862:1;;1527:8;;706:862;-1:-1:-1;;;706:862:1:o;1573:286::-;1631:6;1684:2;1672:9;1663:7;1659:23;1655:32;1652:52;;;1700:1;1697;1690:12;1652:52;1726:23;;-1:-1:-1;;;;;;1778:32:1;;1768:43;;1758:71;;1825:1;1822;1815:12;2056:250;2141:1;2151:113;2165:6;2162:1;2159:13;2151:113;;;2241:11;;;2235:18;2222:11;;;2215:39;2187:2;2180:10;2151:113;;;-1:-1:-1;;2298:1:1;2280:16;;2273:27;2056:250::o;2311:271::-;2353:3;2391:5;2385:12;2418:6;2413:3;2406:19;2434:76;2503:6;2496:4;2491:3;2487:14;2480:4;2473:5;2469:16;2434:76;:::i;:::-;2564:2;2543:15;-1:-1:-1;;2539:29:1;2530:39;;;;2571:4;2526:50;;2311:271;-1:-1:-1;;2311:271:1:o;2587:220::-;2736:2;2725:9;2718:21;2699:4;2756:45;2797:2;2786:9;2782:18;2774:6;2756:45;:::i;2812:184::-;2870:6;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2962:28;2980:9;2962:28;:::i;3001:131::-;-1:-1:-1;;;;;3076:31:1;;3066:42;;3056:70;;3122:1;3119;3112:12;3137:315;3205:6;3213;3266:2;3254:9;3245:7;3241:23;3237:32;3234:52;;;3282:1;3279;3272:12;3234:52;3321:9;3308:23;3340:31;3365:5;3340:31;:::i;:::-;3390:5;3442:2;3427:18;;;;3414:32;;-1:-1:-1;;;3137:315:1:o;3457:252::-;3524:6;3532;3585:2;3573:9;3564:7;3560:23;3556:32;3553:52;;;3601:1;3598;3591:12;3553:52;3624:28;3642:9;3624:28;:::i;3896:456::-;3973:6;3981;3989;4042:2;4030:9;4021:7;4017:23;4013:32;4010:52;;;4058:1;4055;4048:12;4010:52;4097:9;4084:23;4116:31;4141:5;4116:31;:::i;:::-;4166:5;-1:-1:-1;4223:2:1;4208:18;;4195:32;4236:33;4195:32;4236:33;:::i;:::-;3896:456;;4288:7;;-1:-1:-1;;;4342:2:1;4327:18;;;;4314:32;;3896:456::o;4357:247::-;4416:6;4469:2;4457:9;4448:7;4444:23;4440:32;4437:52;;;4485:1;4482;4475:12;4437:52;4524:9;4511:23;4543:31;4568:5;4543:31;:::i;4798:160::-;4863:20;;4919:13;;4912:21;4902:32;;4892:60;;4948:1;4945;4938:12;4963:687;5065:6;5073;5081;5089;5097;5105;5158:3;5146:9;5137:7;5133:23;5129:33;5126:53;;;5175:1;5172;5165:12;5126:53;5198:28;5216:9;5198:28;:::i;:::-;5188:38;;5273:2;5262:9;5258:18;5245:32;5235:42;;5324:2;5313:9;5309:18;5296:32;5286:42;;5347:35;5378:2;5367:9;5363:18;5347:35;:::i;:::-;5337:45;;5433:3;5422:9;5418:19;5405:33;-1:-1:-1;;;;;5453:6:1;5450:30;5447:50;;;5493:1;5490;5483:12;5447:50;5532:58;5582:7;5573:6;5562:9;5558:22;5532:58;:::i;5908:481::-;5986:6;5994;6002;6055:2;6043:9;6034:7;6030:23;6026:32;6023:52;;;6071:1;6068;6061:12;6023:52;6094:28;6112:9;6094:28;:::i;:::-;6084:38;;6173:2;6162:9;6158:18;6145:32;-1:-1:-1;;;;;6192:6:1;6189:30;6186:50;;;6232:1;6229;6222:12;6186:50;6271:58;6321:7;6312:6;6301:9;6297:22;6271:58;:::i;:::-;5908:481;;6348:8;;-1:-1:-1;6245:84:1;;-1:-1:-1;;;;5908:481:1:o;6602:127::-;6663:10;6658:3;6654:20;6651:1;6644:31;6694:4;6691:1;6684:15;6718:4;6715:1;6708:15;6734:275;6805:2;6799:9;6870:2;6851:13;;-1:-1:-1;;6847:27:1;6835:40;;-1:-1:-1;;;;;6890:34:1;;6926:22;;;6887:62;6884:88;;;6952:18;;:::i;:::-;6988:2;6981:22;6734:275;;-1:-1:-1;6734:275:1:o;7014:186::-;7062:4;-1:-1:-1;;;;;7087:6:1;7084:30;7081:56;;;7117:18;;:::i;:::-;-1:-1:-1;7183:2:1;7162:15;-1:-1:-1;;7158:29:1;7189:4;7154:40;;7014:186::o;7205:815::-;7289:6;7297;7305;7358:2;7346:9;7337:7;7333:23;7329:32;7326:52;;;7374:1;7371;7364:12;7326:52;7397:28;7415:9;7397:28;:::i;:::-;7387:38;;7476:2;7465:9;7461:18;7448:32;-1:-1:-1;;;;;7495:6:1;7492:30;7489:50;;;7535:1;7532;7525:12;7489:50;7558:22;;7611:4;7603:13;;7599:27;-1:-1:-1;7589:55:1;;7640:1;7637;7630:12;7589:55;7676:2;7663:16;7701:48;7717:31;7745:2;7717:31;:::i;:::-;7701:48;:::i;:::-;7772:2;7765:5;7758:17;7812:7;7807:2;7802;7798;7794:11;7790:20;7787:33;7784:53;;;7833:1;7830;7823:12;7784:53;7888:2;7883;7879;7875:11;7870:2;7863:5;7859:14;7846:45;7932:1;7927:2;7922;7915:5;7911:14;7907:23;7900:34;7953:5;7943:15;;;;;7977:37;8010:2;7999:9;7995:18;7977:37;:::i;:::-;7967:47;;7205:815;;;;;:::o;8207:160::-;8272:5;8317:2;8308:6;8303:3;8299:16;8295:25;8292:45;;;8333:1;8330;8323:12;8292:45;-1:-1:-1;8355:6:1;8207:160;-1:-1:-1;8207:160:1:o;8372:711::-;8498:6;8506;8514;8522;8530;8583:3;8571:9;8562:7;8558:23;8554:33;8551:53;;;8600:1;8597;8590:12;8551:53;8639:9;8626:23;8658:31;8683:5;8658:31;:::i;:::-;8708:5;-1:-1:-1;8732:37:1;8765:2;8750:18;;8732:37;:::i;:::-;8722:47;;8816:2;8805:9;8801:18;8788:32;8778:42;;8867:2;8856:9;8852:18;8839:32;8829:42;;8922:3;8911:9;8907:19;8894:33;-1:-1:-1;;;;;8942:6:1;8939:30;8936:50;;;8982:1;8979;8972:12;8936:50;9005:72;9069:7;9060:6;9049:9;9045:22;9005:72;:::i;:::-;8995:82;;;8372:711;;;;;;;;:::o;9311:1093::-;9465:6;9473;9481;9489;9497;9505;9513;9521;9574:3;9562:9;9553:7;9549:23;9545:33;9542:53;;;9591:1;9588;9581:12;9542:53;9630:9;9617:23;9649:31;9674:5;9649:31;:::i;:::-;9699:5;-1:-1:-1;9723:37:1;9756:2;9741:18;;9723:37;:::i;:::-;9713:47;;9807:2;9796:9;9792:18;9779:32;9769:42;;9858:2;9847:9;9843:18;9830:32;9820:42;;9913:3;9902:9;9898:19;9885:33;-1:-1:-1;;;;;9978:2:1;9970:6;9967:14;9964:34;;;9994:1;9991;9984:12;9964:34;10033:58;10083:7;10074:6;10063:9;10059:22;10033:58;:::i;:::-;10110:8;;-1:-1:-1;10007:84:1;-1:-1:-1;10007:84:1;;-1:-1:-1;10164:38:1;10197:3;10182:19;;10164:38;:::i;:::-;10154:48;;10255:3;10244:9;10240:19;10227:33;10211:49;;10285:2;10275:8;10272:16;10269:36;;;10301:1;10298;10291:12;10269:36;;10324:74;10390:7;10379:8;10368:9;10364:24;10324:74;:::i;:::-;10314:84;;;9311:1093;;;;;;;;;;;:::o;10409:256::-;10475:6;10483;10536:2;10524:9;10515:7;10511:23;10507:32;10504:52;;;10552:1;10549;10542:12;10504:52;10575:28;10593:9;10575:28;:::i;:::-;10565:38;;10622:37;10655:2;10644:9;10640:18;10622:37;:::i;:::-;10612:47;;10409:256;;;;;:::o;10670:1069::-;10800:6;10808;10816;10824;10832;10840;10848;10856;10864;10917:3;10905:9;10896:7;10892:23;10888:33;10885:53;;;10934:1;10931;10924:12;10885:53;10957:28;10975:9;10957:28;:::i;:::-;10947:38;;11032:2;11021:9;11017:18;11004:32;10994:42;;11083:2;11072:9;11068:18;11055:32;11045:42;;11138:2;11127:9;11123:18;11110:32;-1:-1:-1;;;;;11202:2:1;11194:6;11191:14;11188:34;;;11218:1;11215;11208:12;11188:34;11257:58;11307:7;11298:6;11287:9;11283:22;11257:58;:::i;:::-;11334:8;;-1:-1:-1;11231:84:1;-1:-1:-1;11231:84:1;;-1:-1:-1;11388:38:1;11421:3;11406:19;;11388:38;:::i;:::-;11378:48;;11445:36;11476:3;11465:9;11461:19;11445:36;:::i;:::-;11435:46;;11534:3;11523:9;11519:19;11506:33;11490:49;;11564:2;11554:8;11551:16;11548:36;;;11580:1;11577;11570:12;11548:36;;11619:60;11671:7;11660:8;11649:9;11645:24;11619:60;:::i;:::-;11593:86;;11698:8;11688:18;;;11725:8;11715:18;;;10670:1069;;;;;;;;;;;:::o;11979:622::-;12074:6;12082;12090;12098;12106;12159:3;12147:9;12138:7;12134:23;12130:33;12127:53;;;12176:1;12173;12166:12;12127:53;12199:28;12217:9;12199:28;:::i;:::-;12189:38;;12246:37;12279:2;12268:9;12264:18;12246:37;:::i;:::-;12236:47;;12330:2;12319:9;12315:18;12302:32;12292:42;;12385:2;12374:9;12370:18;12357:32;-1:-1:-1;;;;;12404:6:1;12401:30;12398:50;;;12444:1;12441;12434:12;12398:50;12483:58;12533:7;12524:6;12513:9;12509:22;12483:58;:::i;:::-;11979:622;;;;-1:-1:-1;11979:622:1;;-1:-1:-1;12560:8:1;;12457:84;11979:622;-1:-1:-1;;;11979:622:1:o;12606:388::-;12674:6;12682;12735:2;12723:9;12714:7;12710:23;12706:32;12703:52;;;12751:1;12748;12741:12;12703:52;12790:9;12777:23;12809:31;12834:5;12809:31;:::i;:::-;12859:5;-1:-1:-1;12916:2:1;12901:18;;12888:32;12929:33;12888:32;12929:33;:::i;:::-;12981:7;12971:17;;;12606:388;;;;;:::o;12999:324::-;13074:6;13082;13090;13143:2;13131:9;13122:7;13118:23;13114:32;13111:52;;;13159:1;13156;13149:12;13111:52;13182:28;13200:9;13182:28;:::i;:::-;13172:38;;13229:37;13262:2;13251:9;13247:18;13229:37;:::i;:::-;13219:47;;13313:2;13302:9;13298:18;13285:32;13275:42;;12999:324;;;;;:::o;13328:1205::-;13470:6;13478;13486;13494;13502;13510;13518;13526;13534;13542;13595:3;13583:9;13574:7;13570:23;13566:33;13563:53;;;13612:1;13609;13602:12;13563:53;13635:28;13653:9;13635:28;:::i;:::-;13625:38;;13714:2;13703:9;13699:18;13686:32;-1:-1:-1;;;;;13778:2:1;13770:6;13767:14;13764:34;;;13794:1;13791;13784:12;13764:34;13833:58;13883:7;13874:6;13863:9;13859:22;13833:58;:::i;:::-;13910:8;;-1:-1:-1;13807:84:1;-1:-1:-1;13807:84:1;;-1:-1:-1;13964:37:1;13997:2;13982:18;;13964:37;:::i;:::-;13954:47;;14048:2;14037:9;14033:18;14020:32;14010:42;;14102:3;14091:9;14087:19;14074:33;14061:46;;14116:31;14141:5;14116:31;:::i;:::-;14166:5;;-1:-1:-1;14218:3:1;14203:19;;14190:33;;-1:-1:-1;14276:3:1;14261:19;;14248:33;;14293:16;;;14290:36;;;14322:1;14319;14312:12;14290:36;;14361:60;14413:7;14402:8;14391:9;14387:24;14361:60;:::i;:::-;14335:86;;14440:8;14430:18;;;14467:8;14457:18;;;14522:3;14511:9;14507:19;14494:33;14484:43;;13328:1205;;;;;;;;;;;;;:::o;14538:460::-;14622:6;14630;14638;14646;14699:3;14687:9;14678:7;14674:23;14670:33;14667:53;;;14716:1;14713;14706:12;14667:53;14739:28;14757:9;14739:28;:::i;:::-;14729:38;;14786:37;14819:2;14808:9;14804:18;14786:37;:::i;:::-;14776:47;;14873:2;14862:9;14858:18;14845:32;14886:31;14911:5;14886:31;:::i;:::-;14538:460;;;;-1:-1:-1;14936:5:1;;14988:2;14973:18;14960:32;;-1:-1:-1;;14538:460:1:o;15362:380::-;15441:1;15437:12;;;;15484;;;15505:61;;15559:4;15551:6;15547:17;15537:27;;15505:61;15612:2;15604:6;15601:14;15581:18;15578:38;15575:161;;15658:10;15653:3;15649:20;15646:1;15639:31;15693:4;15690:1;15683:15;15721:4;15718:1;15711:15;15747:271;15930:6;15922;15917:3;15904:33;15886:3;15956:16;;15981:13;;;15956:16;15747:271;-1:-1:-1;15747:271:1:o;16623:127::-;16684:10;16679:3;16675:20;16672:1;16665:31;16715:4;16712:1;16705:15;16739:4;16736:1;16729:15;16755:125;16820:9;;;16841:10;;;16838:36;;;16854:18;;:::i;16885:266::-;16973:6;16968:3;16961:19;17025:6;17018:5;17011:4;17006:3;17002:14;16989:43;-1:-1:-1;17077:1:1;17052:16;;;17070:4;17048:27;;;17041:38;;;;17133:2;17112:15;;;-1:-1:-1;;17108:29:1;17099:39;;;17095:50;;16885:266::o;17156:326::-;17351:6;17343;17339:19;17328:9;17321:38;17395:2;17390;17379:9;17375:18;17368:30;17302:4;17415:61;17472:2;17461:9;17457:18;17449:6;17441;17415:61;:::i;18154:521::-;18231:4;18237:6;18297:11;18284:25;18391:2;18387:7;18376:8;18360:14;18356:29;18352:43;18332:18;18328:68;18318:96;;18410:1;18407;18400:12;18318:96;18437:33;;18489:20;;;-1:-1:-1;;;;;;18521:30:1;;18518:50;;;18564:1;18561;18554:12;18518:50;18597:4;18585:17;;-1:-1:-1;18628:14:1;18624:27;;;18614:38;;18611:58;;;18665:1;18662;18655:12;19038:128;19105:9;;;19126:11;;;19123:37;;;19140:18;;:::i;19577:360::-;19788:6;19780;19775:3;19762:33;19858:2;19854:15;;;;-1:-1:-1;;19850:53:1;19814:16;;19839:65;;;19928:2;19920:11;;19577:360;-1:-1:-1;19577:360:1:o;20067:544::-;20168:2;20163:3;20160:11;20157:448;;;20204:1;20229:5;20225:2;20218:17;20274:4;20270:2;20260:19;20344:2;20332:10;20328:19;20325:1;20321:27;20315:4;20311:38;20380:4;20368:10;20365:20;20362:47;;;-1:-1:-1;20403:4:1;20362:47;20458:2;20453:3;20449:12;20446:1;20442:20;20436:4;20432:31;20422:41;;20513:82;20531:2;20524:5;20521:13;20513:82;;;20576:17;;;20557:1;20546:13;20513:82;;20787:1348;20911:3;20905:10;-1:-1:-1;;;;;20930:6:1;20927:30;20924:56;;;20960:18;;:::i;:::-;20989:96;21078:6;21038:38;21070:4;21064:11;21038:38;:::i;:::-;21032:4;20989:96;:::i;:::-;21140:4;;21204:2;21193:14;;21221:1;21216:662;;;;21922:1;21939:6;21936:89;;;-1:-1:-1;21991:19:1;;;21985:26;21936:89;-1:-1:-1;;20744:1:1;20740:11;;;20736:24;20732:29;20722:40;20768:1;20764:11;;;20719:57;22038:81;;21186:943;;21216:662;20014:1;20007:14;;;20051:4;20038:18;;-1:-1:-1;;21252:20:1;;;21369:236;21383:7;21380:1;21377:14;21369:236;;;21472:19;;;21466:26;21451:42;;21564:27;;;;21532:1;21520:14;;;;21399:19;;21369:236;;;21373:3;21633:6;21624:7;21621:19;21618:201;;;21694:19;;;21688:26;-1:-1:-1;;21777:1:1;21773:14;;;21789:3;21769:24;21765:37;21761:42;21746:58;21731:74;;21618:201;-1:-1:-1;;;;;21865:1:1;21849:14;;;21845:22;21832:36;;-1:-1:-1;20787:1348:1:o;22140:498::-;22340:4;22369:6;22414:2;22406:6;22402:15;22391:9;22384:34;22466:2;22458:6;22454:15;22449:2;22438:9;22434:18;22427:43;;22506:6;22501:2;22490:9;22486:18;22479:34;22549:3;22544:2;22533:9;22529:18;22522:31;22570:62;22627:3;22616:9;22612:19;22604:6;22596;22570:62;:::i;:::-;22562:70;22140:498;-1:-1:-1;;;;;;;22140:498:1:o;23449:493::-;23698:6;23690;23686:19;23675:9;23668:38;23742:3;23737:2;23726:9;23722:18;23715:31;23649:4;23763:62;23820:3;23809:9;23805:19;23797:6;23789;23763:62;:::i;:::-;-1:-1:-1;;;;;23861:31:1;;;;23856:2;23841:18;;23834:59;-1:-1:-1;23924:2:1;23909:18;23902:34;23755:70;23449:493;-1:-1:-1;;;23449:493:1:o;24670:753::-;25003:6;24995;24991:19;24980:9;24973:38;25047:3;25042:2;25031:9;25027:18;25020:31;24954:4;25074:62;25131:3;25120:9;25116:19;25108:6;25100;25074:62;:::i;:::-;-1:-1:-1;;;;;25176:6:1;25172:31;25167:2;25156:9;25152:18;25145:59;25240:6;25235:2;25224:9;25220:18;25213:34;25284:6;25278:3;25267:9;25263:19;25256:35;25340:9;25332:6;25328:22;25322:3;25311:9;25307:19;25300:51;25368:49;25410:6;25402;25394;25368:49;:::i;:::-;25360:57;24670:753;-1:-1:-1;;;;;;;;;;;24670:753:1:o;25428:1202::-;-1:-1:-1;;;;;25545:3:1;25542:27;25539:53;;;25572:18;;:::i;:::-;25601:93;25690:3;25650:38;25682:4;25676:11;25650:38;:::i;:::-;25644:4;25601:93;:::i;:::-;25720:1;25745:2;25740:3;25737:11;25762:1;25757:615;;;;26416:1;26433:3;26430:93;;;-1:-1:-1;26489:19:1;;;26476:33;26430:93;-1:-1:-1;;20744:1:1;20740:11;;;20736:24;20732:29;20722:40;20768:1;20764:11;;;20719:57;26536:78;;25730:894;;25757:615;20014:1;20007:14;;;20051:4;20038:18;;-1:-1:-1;;25793:17:1;;;25893:9;25915:229;25929:7;25926:1;25923:14;25915:229;;;26018:19;;;26005:33;25990:49;;26125:4;26110:20;;;;26078:1;26066:14;;;;25945:12;25915:229;;;25919:3;26172;26163:7;26160:16;26157:159;;;26296:1;26292:6;26286:3;26280;26277:1;26273:11;26269:21;26265:34;26261:39;26248:9;26243:3;26239:19;26226:33;26222:79;26214:6;26207:95;26157:159;;;26359:1;26353:3;26350:1;26346:11;26342:19;26336:4;26329:33;25730:894;;25428:1202;;;:::o;27503:647::-;27582:6;27635:2;27623:9;27614:7;27610:23;27606:32;27603:52;;;27651:1;27648;27641:12;27603:52;27684:9;27678:16;-1:-1:-1;;;;;27709:6:1;27706:30;27703:50;;;27749:1;27746;27739:12;27703:50;27772:22;;27825:4;27817:13;;27813:27;-1:-1:-1;27803:55:1;;27854:1;27851;27844:12;27803:55;27883:2;27877:9;27908:48;27924:31;27952:2;27924:31;:::i;27908:48::-;27979:2;27972:5;27965:17;28019:7;28014:2;28009;28005;28001:11;27997:20;27994:33;27991:53;;;28040:1;28037;28030:12;27991:53;28053:67;28117:2;28112;28105:5;28101:14;28096:2;28092;28088:11;28053:67;:::i;28155:557::-;28412:6;28404;28400:19;28389:9;28382:38;28456:3;28451:2;28440:9;28436:18;28429:31;28363:4;28483:46;28524:3;28513:9;28509:19;28501:6;28483:46;:::i;:::-;-1:-1:-1;;;;;28569:6:1;28565:31;28560:2;28549:9;28545:18;28538:59;28645:9;28637:6;28633:22;28628:2;28617:9;28613:18;28606:50;28673:33;28699:6;28691;28673:33;:::i;31461:642::-;31742:6;31730:19;;31712:38;;-1:-1:-1;;;;;31786:32:1;;31781:2;31766:18;;31759:60;31806:3;31850:2;31835:18;;31828:31;;;-1:-1:-1;;31882:46:1;;31908:19;;31900:6;31882:46;:::i;:::-;31978:6;31971:14;31964:22;31959:2;31948:9;31944:18;31937:50;32036:9;32028:6;32024:22;32018:3;32007:9;32003:19;31996:51;32064:33;32090:6;32082;32064:33;:::i;:::-;32056:41;31461:642;-1:-1:-1;;;;;;;;31461:642:1:o;32108:245::-;32187:6;32195;32248:2;32236:9;32227:7;32223:23;32219:32;32216:52;;;32264:1;32261;32254:12;32216:52;-1:-1:-1;;32287:16:1;;32343:2;32328:18;;;32322:25;32287:16;;32322:25;;-1:-1:-1;32108:245:1:o;33758:287::-;33887:3;33925:6;33919:13;33941:66;34000:6;33995:3;33988:4;33980:6;33976:17;33941:66;:::i;:::-;34023:16;;;;;33758:287;-1:-1:-1;;33758:287:1:o;34050:719::-;34353:6;34345;34341:19;34330:9;34323:38;34397:3;34392:2;34381:9;34377:18;34370:31;34304:4;34424:46;34465:3;34454:9;34450:19;34442:6;34424:46;:::i;:::-;-1:-1:-1;;;;;34510:6:1;34506:31;34501:2;34490:9;34486:18;34479:59;34586:9;34578:6;34574:22;34569:2;34558:9;34554:18;34547:50;34620:33;34646:6;34638;34620:33;:::i;:::-;34606:47;;34702:9;34694:6;34690:22;34684:3;34673:9;34669:19;34662:51;34730:33;34756:6;34748;34730:33;:::i;35949:127::-;36010:10;36005:3;36001:20;35998:1;35991:31;36041:4;36038:1;36031:15;36065:4;36062:1;36055:15;36081:120;36121:1;36147;36137:35;;36152:18;;:::i;:::-;-1:-1:-1;36186:9:1;;36081:120::o;37294:891::-;37614:4;37643:3;37685:6;37677;37673:19;37662:9;37655:38;37729:2;37724;37713:9;37709:18;37702:30;37755:45;37796:2;37785:9;37781:18;37773:6;37755:45;:::i;:::-;-1:-1:-1;;;;;37836:31:1;;37831:2;37816:18;;37809:59;37899:2;37884:18;;37877:34;;;-1:-1:-1;;;;;37948:32:1;;37942:3;37927:19;;37920:61;37968:3;37997:19;;37990:35;;;38062:22;;;38056:3;38041:19;;38034:51;37741:59;-1:-1:-1;38102:33:1;37741:59;38120:6;38102:33;:::i;:::-;38094:41;;;38172:6;38166:3;38155:9;38151:19;38144:35;37294:891;;;;;;;;;;;:::o;38190:383::-;38391:2;38380:9;38373:21;38354:4;38411:45;38452:2;38441:9;38437:18;38429:6;38411:45;:::i;:::-;-1:-1:-1;;;;;38492:31:1;;;;38487:2;38472:18;;38465:59;-1:-1:-1;38555:2:1;38540:18;38533:34;38403:53;38190:383;-1:-1:-1;38190:383:1:o;39289:112::-;39321:1;39347;39337:35;;39352:18;;:::i;:::-;-1:-1:-1;39386:9:1;;39289:112::o;39823:840::-;40172:6;40164;40160:19;40149:9;40142:38;40216:3;40211:2;40200:9;40196:18;40189:31;40123:4;40243:46;40284:3;40273:9;40269:19;40261:6;40243:46;:::i;:::-;40337:9;40329:6;40325:22;40320:2;40309:9;40305:18;40298:50;40371:33;40397:6;40389;40371:33;:::i;:::-;-1:-1:-1;;;;;40478:15:1;;;40473:2;40458:18;;40451:43;40531:15;;40525:3;40510:19;;40503:44;40584:22;;;40431:3;40563:19;;40556:51;40357:47;-1:-1:-1;40624:33:1;40357:47;40642:6;40624:33;:::i;:::-;40616:41;39823:840;-1:-1:-1;;;;;;;;;39823:840:1:o;40668:727::-;40990:3;40985;40981:13;40972:6;40967:3;40963:16;40959:36;40954:3;40947:49;41025:6;41021:1;41016:3;41012:11;41005:27;40929:3;-1:-1:-1;;;;;41055:3:1;41051:28;41131:2;41122:6;41117:3;41113:16;41109:25;41104:2;41099:3;41095:12;41088:47;41165:6;41160:2;41155:3;41151:12;41144:28;41224:2;41215:6;41210:3;41206:16;41202:25;41197:2;41192:3;41188:12;41181:47;;41257:6;41251:13;41273:75;41341:6;41336:2;41331:3;41327:12;41320:4;41312:6;41308:17;41273:75;:::i;:::-;41368:16;;;;41386:2;41364:25;;40668:727;-1:-1:-1;;;;;;;40668:727:1:o;41753:168::-;41826:9;;;41857;;41874:15;;;41868:22;;41854:37;41844:71;;41895:18;;:::i

Swarm Source

ipfs://b1363cdac6a5db21f4bf1cf52d85975fa9234f6082e6c686e151a4237cfb7e51
[ 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.