ETH Price: $2,607.31 (+6.59%)
Gas: 0.19 GWei

Token

StakeStone Ether (STONE)

Overview

Max Total Supply

124,246.659632808518973781 STONE

Holders

68,900

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
StoneCross

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 10 runs

Other Settings:
paris EvmVersion, MIT license
File 1 of 19 : StoneCross.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "@layerzerolabs/solidity-examples/contracts/token/oft/OFT.sol";

contract StoneCross is OFT {
    using BytesLib for bytes;

    uint256 public constant DAY_INTERVAL = 24 * 60 * 60;

    uint16 public constant PT_FEED = 1;
    uint16 public constant PT_SET_ENABLE = 2;
    uint16 public constant PT_SET_CAP = 3;

    uint256 public tokenPrice = 1e18;
    uint256 public cap;
    uint256 public updatedTime;

    mapping(uint256 => uint256) public quota;

    bool public enable = true;

    constructor(
        address _layerZeroEndpoint,
        uint256 _cap
    ) OFT("StakeStone Ether", "STONE", _layerZeroEndpoint) {
        updatedTime = block.timestamp;
        cap = _cap;
    }

    function sendFrom(
        address _from,
        uint16 _dstChainId,
        bytes calldata _toAddress,
        uint _amount,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes calldata _adapterParams
    ) public payable override(IOFTCore, OFTCore) {
        require(enable, "invalid");

        uint256 id;
        assembly {
            id := chainid()
        }
        require(id != _dstChainId, "same chain");

        uint256 day = block.timestamp / DAY_INTERVAL;
        require(_amount + quota[day] <= cap, "Exceed cap");

        quota[day] = quota[day] + _amount;

        super.sendFrom(
            _from,
            _dstChainId,
            _toAddress,
            _amount,
            _refundAddress,
            _zroPaymentAddress,
            _adapterParams
        );
    }

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

        if (packetType == PT_SEND) {
            _sendAck(_srcChainId, _srcAddress, _nonce, _payload);
        } else if (packetType == PT_FEED) {
            (, bytes memory toAddressBytes, uint256 price, uint256 time) = abi
                .decode(_payload, (uint16, bytes, uint256, uint256));

            address to = toAddressBytes.toAddress(0);
            require(to == address(this), "not this contract");
            require(time > updatedTime, "stale price");

            tokenPrice = price;
            updatedTime = time;
        } else if (packetType == PT_SET_ENABLE) {
            (, bytes memory toAddressBytes, bool flag) = abi.decode(
                _payload,
                (uint16, bytes, bool)
            );

            address to = toAddressBytes.toAddress(0);
            require(to == address(this), "not this contract");

            enable = flag;
        } else if (packetType == PT_SET_CAP) {
            (, bytes memory toAddressBytes, uint256 _cap) = abi.decode(
                _payload,
                (uint16, bytes, uint256)
            );

            address to = toAddressBytes.toAddress(0);
            require(to == address(this), "not this contract");

            cap = _cap;
        } else {
            revert("unknown packet type");
        }
    }

    function getQuota() external returns (uint256) {
        uint256 amount = quota[block.timestamp / DAY_INTERVAL];
        if (cap > amount && enable) {
            return cap - amount;
        }
    }
}

File 2 of 19 : Context.sol
// 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 3 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 19 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 5 of 19 : IERC20.sol
// 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 6 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 19 : IERC165.sol
// 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 8 of 19 : LzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "../interfaces/ILayerZeroReceiver.sol";
import "../interfaces/ILayerZeroUserApplicationConfig.sol";
import "../interfaces/ILayerZeroEndpoint.sol";
import "../util/BytesLib.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 19 : OFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import "./IOFT.sol";
import "./OFTCore.sol";

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

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

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

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

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

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

File 10 of 19 : BytesLib.sol
// 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,
        uint256 _start,
        uint256 _length
    )
    internal
    pure
    returns (bytes memory)
    {
        require(_length + 31 >= _length, "slice_overflow");
        require(_bytes.length >= _start + _length, "slice_outOfBounds");

        bytes memory tempBytes;

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

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

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

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

                mstore(tempBytes, _length)

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

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

        return tempBytes;
    }

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

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

        return tempAddress;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempUint;
    }

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

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

        return tempBytes32;
    }

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

        assembly {
            let length := mload(_preBytes)

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

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

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

        return success;
    }

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

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

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

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

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

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

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

        return success;
    }
}

File 11 of 19 : IOFT.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./IOFTCore.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

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

}

File 12 of 19 : OFTCore.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../lzApp/NonblockingLzApp.sol";
import "./IOFTCore.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

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

    uint public constant NO_EXTRA_GAS = 0;

    // packet type
    uint16 public constant PT_SEND = 0;

    bool public useCustomAdapterParams;

    constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {}

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

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

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

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

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

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

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

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

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

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

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

        address to = toAddressBytes.toAddress(0);

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

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

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

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

File 13 of 19 : IOFTCore.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

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

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

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

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

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

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

    event SetUseCustomAdapterParams(bool _useCustomAdapterParams);
}

File 14 of 19 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 15 of 19 : NonblockingLzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./LzApp.sol";
import "../util/ExcessivelySafeCall.sol";

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

    constructor(address _endpoint) LzApp(_endpoint) {}

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

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

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

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

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

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

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

File 16 of 19 : ExcessivelySafeCall.sol
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.7.6;

library ExcessivelySafeCall {
    uint256 constant LOW_28_MASK =
    0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;

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

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

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

File 17 of 19 : ILayerZeroEndpoint.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./ILayerZeroUserApplicationConfig.sol";

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 18 of 19 : ILayerZeroReceiver.sol
// 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 19 of 19 : ILayerZeroUserApplicationConfig.sol
// 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;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 10
  },
  "viaIR": true,
  "evmVersion": "paris",
  "remappings": [],
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_cap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DAY_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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_FEED","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SET_CAP","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SET_ENABLE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"enable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"getQuota","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"quota","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"updatedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60a034620003f957601f601f196001600160401b03620036893881900384810184168601919083831187841017620003fe578087926040948552833981010312620003f95783516001600160a01b03939084811690819003620003f957602080960151946200006d62000414565b94601086526f29ba30b5b2a9ba37b7329022ba3432b960811b888701526200009462000414565b600581526453544f4e4560d81b8982015260008054336001600160a01b031982168117835592959194919291167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08580a36080528551858111620003e557600a54966001978881811c91168015620003da575b8b821014620003c65790818784931162000372575b508a908783116001146200030d57859262000301575b5050600019600383901b1c191690871b17600a555b8251948511620002ed57600b548681811c91168015620002e2575b89821014620002ce5784811162000285575b50879385116001146200021e575083949596509262000212575b5050600019600383901b1c191690821b17600b555b670de0b6b3a7640000600c5560ff19601054161760105542600e55600d55604051613254908162000435823960805181818161043b0152818161072a0152818161084e015281816109ff01528181610bf2015281816117b8015281816118e401528181611ec80152612b110152f35b0151905038806200018e565b84939291931696600b845280842093905b8882106200026d575050838596971062000253575b505050811b01600b55620001a3565b015160001960f88460031b161c1916905538808062000244565b8087859682949686015181550195019301906200022f565b600b83528883208580880160051c8201928b8910620002c4575b0160051c019087905b828110620002b857505062000174565b848155018790620002a8565b925081926200029f565b634e487b7160e01b83526022600452602483fd5b90607f169062000162565b634e487b7160e01b82526041600452602482fd5b01519050388062000132565b90848a941691600a87528c8720928d88905b8282106200035a575050841162000340575b505050811b01600a5562000147565b015160001960f88460031b161c1916905538808062000331565b8385015186558d979095019493840193018e6200031f565b909150600a85528a85208780850160051c8201928d8610620003bc575b918b91869594930160051c01915b828110620003ad5750506200011c565b8781558594508b91016200039d565b925081926200038f565b634e487b7160e01b85526022600452602485fd5b90607f169062000107565b634e487b7160e01b83526041600452602483fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b60408051919082016001600160401b03811183821017620003fe5760405256fe6080604052600436101561001257600080fd5b60003560e01c80621d35671461037c57806301ffc9a71461037757806306fdde031461037257806307e0db171461036d578063095ea7b3146103685780630df374831461036357806310ddb1371461035e57806318160ddd146102eb5780631df8ba771461035957806323b872dd146103545780632a205e3d1461034f578063313ce5671461034a578063355274ea1461034557806339509351146103405780633d8b38f61461033b5780633f1f4fa41461033657806342d65a8d1461033157806343bdfb721461032c5780634477051514610322578063471744d1146103275780634c42899a14610322578063519056361461031d5780635b8c41e61461031857806366ad5c8a146103135780636abe0abf1461030e57806370a0823114610309578063715018a6146103045780637533d788146102ff5780637ff9b596146102fa5780638cfd8f5c146102f55780638da5cb5b146102f05780639358928b146102eb578063950c8a74146102e657806395d89b41146102e15780639f38369a146102dc578063a162b0a2146102d7578063a3907d71146102d2578063a457c2d7146102cd578063a6c3d165146102c8578063a9059cbb146102c3578063b353aaa7146102be578063baf3292d146102b9578063c4461834146102b4578063ca5ea406146102af578063cbed8b9c146102aa578063d1deba1f146102a5578063dd62ed3e146102a0578063df2a5b3b1461029b578063e3ec18ae14610296578063eab45d9c14610291578063eb8d72b71461028c578063ed629c5c14610287578063f2fde38b14610282578063f5ecbdbc1461027d5763fc0c546a1461027857600080fd5b611f32565b611e5e565b611da9565b611d86565b611c5d565b611bfb565b611bdf565b611af2565b611aa8565b61197c565b611890565b611874565b611857565b6117e7565b6117a2565b611778565b611616565b61156a565b611547565b61151b565b611478565b6113d4565b6113ab565b6108af565b611382565b611327565b611309565b6112b2565b61117c565b61113f565b611121565b610f7a565b610ee1565b610caf565b610c77565b610c93565b610c59565b610bd8565b610b9f565b610b43565b610abb565b610a9d565b610a81565b61093a565b6108f0565b6108cd565b610825565b6107e6565b6107b1565b610701565b610621565b61053a565b610424565b61ffff81160361038d57565b600080fd5b9181601f8401121561038d578235916001600160401b03831161038d576020838186019501011161038d57565b90608060031983011261038d576004356103d881610381565b916001600160401b039060243582811161038d57816103f991600401610392565b93909392604435818116810361038d579260643591821161038d5761042091600401610392565b9091565b3461038d57610432366103bf565b929493919291907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036104f5576104b86104c0926104c6976104b16104976104928a61ffff166000526001602052604060002090565b611295565b80519081841491826104eb575b50816104c8575b50611f4d565b3691610e6d565b923691610e6d565b926120d0565b005b90506104d5368486610e6d565b60208151910120906020815191012014386104ab565b15159150386104a4565b60405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200006044820152606490fd5b3461038d57602036600319011261038d5760043563ffffffff60e01b811680910361038d5780602091159081156105a9575b811561057e575b506040519015158152f35b630a72677560e11b811491508115610598575b5038610573565b6301ffc9a760e01b14905038610591565b6336372b0760e01b8114915061056c565b600091031261038d57565b60005b8381106105d85750506000910152565b81810151838201526020016105c8565b90602091610601815180928185528580860191016105c5565b601f01601f1916010190565b90602061061e9281815201906105e8565b90565b3461038d576000806003193601126106fe5760405181600a54610643816111c5565b808452906001908181169081156106d6575060011461067d575b6106798461066d81880382610e2f565b6040519182918261060d565b0390f35b600a8352602094507fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a85b8284106106c357505050816106799361066d928201019361065d565b80548585018701529285019281016106a7565b610679965061066d9450602092508593915060ff191682840152151560051b8201019361065d565b80fd5b3461038d57600060203660031901126106fe5760043561072081610381565b610728612476565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316908290823b1561079c57602461ffff918360405195869485936307e0db1760e01b85521660048401525af180156107975761078b575080f35b61079490610dfc565b80f35b61200f565b5080fd5b6001600160a01b0381160361038d57565b3461038d57604036600319011261038d576107db6004356107d1816107a0565b6024359033612681565b602060405160018152f35b3461038d57604036600319011261038d5761ffff60043561080681610381565b61080e612476565b166000526003602052602435604060002055600080f35b3461038d57600060203660031901126106fe5760043561084481610381565b61084c612476565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316908290823b1561079c57602461ffff918360405195869485936310ddb13760e01b85521660048401525af180156107975761078b575080f35b3461038d57600036600319011261038d576020600954604051908152f35b3461038d57600036600319011261038d5760206108e8613136565b604051908152f35b3461038d57606036600319011261038d576107db600435610910816107a0565b60243561091c816107a0565b6044359161092b83338361279a565b6125b2565b8015150361038d57565b3461038d5760a036600319011261038d5760043561095781610381565b6001600160401b039060243582811161038d57610978903690600401610392565b906064359261098684610930565b60843594851161038d576109fb6109a46109df963690600401610392565b9060409788966109c988519788926000602085015260608b850152608084019161201b565b604435606083015203601f198101875286610e2f565b855163040a7bb160e41b81529687958695309060048801612318565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa918215610797576000918293610a4c575b50519081526020810191909152604090f35b81610a7292945061067993503d8511610a7a575b610a6a8183610e2f565b810190612302565b929091610a3a565b503d610a60565b3461038d57600036600319011261038d57602060405160128152f35b3461038d57600036600319011261038d576020600d54604051908152f35b3461038d57604036600319011261038d57600435610ad8816107a0565b336000526008602052610aef8160406000206124e8565b546024358101809111610b06576107db9133612681565b6120ab565b90604060031983011261038d57600435610b2481610381565b91602435906001600160401b03821161038d5761042091600401610392565b3461038d57602061ffff610b90610b5936610b0b565b9390911660005260018452610b7b610b826040600020604051928380926111ff565b0382610e2f565b848151910120923691610e6d565b82815191012014604051908152f35b3461038d57602036600319011261038d5761ffff600435610bbf81610381565b1660005260036020526020604060002054604051908152f35b3461038d57610be636610b0b565b9190610bf0612476565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691823b1561038d57604051928380926342d65a8d60e01b825281610c47600098899788946004850161203c565b03925af180156107975761078b575080f35b3461038d57600036600319011261038d576020600e54604051908152f35b3461038d57600036600319011261038d57602060405160008152f35b3461038d57600036600319011261038d57602060405160018152f35b60e036600319011261038d57600435610cc7816107a0565b602435610cd381610381565b6001600160401b039060443582811161038d57610cf4903690600401610392565b60649391933560843591610d07836107a0565b60a43593610d14856107a0565b60c43590811161038d57610d2c903690600401610392565b96909560ff6010541615610db7576104c698610d4e61ffff831646141561282a565b620151804204610d7f610d75610d6e83600052600f602052604060002090565b548861236c565b600d541015612863565b610db1610da087610d9a84600052600f602052604060002090565b5461236c565b91600052600f602052604060002090565b5561289c565b60405162461bcd60e51b81526020600482015260076024820152661a5b9d985b1a5960ca1b6044820152606490fd5b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610e0f57604052565b610de6565b60c081019081106001600160401b03821117610e0f57604052565b601f909101601f19168101906001600160401b03821190821017610e0f57604052565b6001600160401b038111610e0f57601f01601f191660200190565b929192610e7982610e52565b91610e876040519384610e2f565b82948184528183011161038d578281602093846000960137010152565b602090610ebe9282604051948386809551938492016105c5565b82019081520301902090565b9060018060401b0316600052602052604060002090565b3461038d57606036600319011261038d57600435610efe81610381565b6001600160401b0360243581811161038d573660238201121561038d57610f2f903690602481600401359101610e6d565b90604435908116810361038d57610f64610f6992610f5e6106799561ffff166000526005602052604060002090565b90610ea4565b610eca565b546040519081529081906020820190565b3461038d57610f88366103bf565b9150913033036110cd57610fa993610fa1913691610e6d565b503691610e6d565b906020820161ffff8151168015600014610fc9575050906104c691612fee565b909150600181036110265750611021610fef61100f926020856104c69651010190612ec0565b949092509030906001600160a01b0390611008906130e6565b1614612e39565b61101c600e548411612f06565b600c55565b600e55565b6002810361106f575061104661105d916020846104c69551010190612e79565b92915030906001600160a01b0390611008906130e6565b60ff8019601054169115151617601055565b6003036110925761104661108d916020846104c69551010190612df8565b600d55565b60405162461bcd60e51b8152602060048201526013602482015272756e6b6e6f776e207061636b6574207479706560681b6044820152606490fd5b60405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608490fd5b3461038d57600036600319011261038d576020604051620151808152f35b3461038d57602036600319011261038d5760043561115c816107a0565b60018060a01b031660005260076020526020604060002054604051908152f35b3461038d576000806003193601126106fe57611196612476565b80546001600160a01b03198116825581906001600160a01b03166000805160206131bf8339815191528280a380f35b90600182811c921680156111f5575b60208310146111df57565b634e487b7160e01b600052602260045260246000fd5b91607f16916111d4565b9060009291805491611210836111c5565b9182825260019384811690816000146112725750600114611232575b50505050565b90919394506000526020928360002092846000945b83861061125e57505050500101903880808061122c565b805485870183015294019385908201611247565b9294505050602093945060ff191683830152151560051b0101903880808061122c565b906112b06112a992604051938480926111ff565b0383610e2f565b565b3461038d57602036600319011261038d5761ffff6004356112d281610381565b166000526001602052610679610b7b6112f56040600020604051928380926111ff565b6040519182916020835260208301906105e8565b3461038d57600036600319011261038d576020600c54604051908152f35b3461038d57604036600319011261038d57602061137960043561134981610381565b61ffff6024359161135983610381565b166000526002835260406000209061ffff16600052602052604060002090565b54604051908152f35b3461038d57600036600319011261038d576000546040516001600160a01b039091168152602090f35b3461038d57600036600319011261038d576004546040516001600160a01b039091168152602090f35b3461038d576000806003193601126106fe5760405181600b546113f6816111c5565b808452906001908181169081156106d6575060011461141f576106798461066d81880382610e2f565b600b8352602094507f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b82841061146557505050816106799361066d928201019361065d565b8054858501870152928501928101611449565b3461038d57602036600319011261038d5761ffff60043561149881610381565b166000526001602052610b7b6114b86040600020604051928380926111ff565b8051156114d65761066d816114d061067993516120c1565b906123f6565b60405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606490fd5b3461038d57602036600319011261038d57600435600052600f6020526020604060002054604051908152f35b3461038d57600036600319011261038d57602060ff601054166040519015158152f35b3461038d57604036600319011261038d57600435611587816107a0565b602435903360005260086020526115a28160406000206124e8565b54918083106115c3576115b792039033612681565b60405160018152602090f35b60405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608490fd5b3461038d5761162436610b0b565b9061162d612476565b604051926020928083858701376116596034868381013060601b88820152036014810188520186610e2f565b61ffff8216600090815260018086526040822087519296909291906001600160401b038311610e0f576116968361169086546111c5565b86612057565b80601f84116001146116f45750918080926116e39695948a9b60008051602061317f8339815191529b946116e9575b50501b916000199060031b1c19161790555b6040519384938461203c565b0390a180f35b0151925038806116c5565b91939498601f19841661170c87600052602060002090565b938a905b8282106117615750509160008051602061317f833981519152999a959391856116e398969410611748575b505050811b0190556116d7565b015160001960f88460031b161c1916905538808061173b565b808886978294978701518155019601940190611710565b3461038d57604036600319011261038d576107db600435611798816107a0565b60243590336125b2565b3461038d57600036600319011261038d576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461038d57602036600319011261038d577f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b6020600435611827816107a0565b61182f612476565b600480546001600160a01b0319166001600160a01b03929092169182179055604051908152a1005b3461038d57600036600319011261038d5760206040516127108152f35b3461038d57600036600319011261038d57602060405160028152f35b3461038d57608036600319011261038d576004356118ad81610381565b6024356118b981610381565b6064356001600160401b03811161038d576118d8903690600401610392565b90926118e2612476565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690813b1561038d5760008094611959604051978896879586946332fb62e760e21b865261ffff8092166004870152166024850152604435604485015260806064850152608484019161201b565b03925af180156107975761196957005b806119766104c692610dfc565b806105ba565b611985366103bf565b9161ffff869492961660005260056020526119b981604060002060206040518092878b833787820190815203019020610eca565b54918215611a57577fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e596611a5294611a4691611a40916000611a3487610f648d89611a2e8f611a1a8f611a0d368c8e610e6d565b6020815191012014612275565b61ffff166000526005602052604060002090565b9161225c565b55610fa136868c610e6d565b86612f40565b604051958695866122cb565b0390a1005b60405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608490fd5b3461038d57604036600319011261038d576020611379600435611aca816107a0565b60243590611ad7826107a0565b6001600160a01b0316600090815260088452604090206124e8565b3461038d57606036600319011261038d57600435611b0f81610381565b602435611b1b81610381565b60443591611b27612476565b8215611ba257611a527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09361ffff8316600052600260205280611b7c8560406000209061ffff16600052602052604060002090565b556040519384938460409194939294606082019561ffff80921683521660208201520152565b60405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606490fd5b3461038d57600036600319011261038d57602060405160038152f35b3461038d57602036600319011261038d577f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a46020600435611c3b81610930565b611c43612476565b151560ff196006541660ff821617600655604051908152a1005b3461038d57611c6b36610b0b565b9190611c75612476565b61ffff82166000908152600160208181526040832092949291906001600160401b038711610e0f57611cb187611cab85546111c5565b85612057565b8590601f8811600114611d0657509186808798936116e3956000805160206131ff8339815191529993611cfb575b501b906000198460031b1c19161790556040519384938461203c565b880135925038611cdf565b90601f198816611d1b85600052602060002090565b9288905b828210611d6f575050918893916000805160206131ff83398151915298996116e3969410611d55575b505082811b0190556116d7565b870135600019600386901b60f8161c191690553880611d48565b808685968294968c01358155019501930190611d1f565b3461038d57600036600319011261038d57602060ff600654166040519015158152f35b3461038d57602036600319011261038d57600435611dc6816107a0565b611dce612476565b6001600160a01b039081168015611e0a57600080546001600160a01b03198116831782559092166000805160206131bf8339815191528380a380f35b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b3461038d57608036600319011261038d57600435611e7b81610381565b60243590611e8882610381565b611e936044356107a0565b604051633d7b2f6f60e21b815261ffff91821660048201529116602482015230604482015260648035908201526000816084817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa80156107975761067991600091611f11575b506040519182918261060d565b611f2c913d8091833e611f248183610e2f565b810190611fea565b38611f04565b3461038d57600036600319011261038d576020604051308152f35b15611f5457565b60405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608490fd5b81601f8201121561038d578051611fbe81610e52565b92611fcc6040519485610e2f565b8184526020828401011161038d5761061e91602080850191016105c5565b9060208282031261038d5781516001600160401b03811161038d5761061e9201611fa8565b6040513d6000823e3d90fd5b908060209392818452848401376000828201840152601f01601f1916010190565b60409061ffff61061e9593168152816020820152019161201b565b90601f811161206557505050565b600091825260208220906020601f850160051c830194106120a1575b601f0160051c01915b82811061209657505050565b81815560010161208a565b9092508290612081565b634e487b7160e01b600052601160045260246000fd5b601319810191908211610b0657565b9290915a604051633356ae4560e11b6020820190815261ffff8716602483015260806044830152949161213c8261212e61210d60a48301876105e8565b6001600160401b0388166064840152828103602319016084840152886105e8565b03601f198101845283610e2f565b600080916040519761214d89610e14565b609689528260208a019560a036883751923090f1903d9060968211612194575b6000908288523e15612181575b5050505050565b61218a9461219d565b388080808061217a565b6096915061216d565b91936122497fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c95612257939561ffff8151602083012096169586600052600560205261220f8361220160208b604060002082604051948386809551938492016105c5565b820190815203019020610eca565b5561222c604051978897885260a0602089015260a08801906105e8565b6001600160401b03909216604087015285820360608701526105e8565b9083820360808501526105e8565b0390a1565b6020919283604051948593843782019081520301902090565b1561227c57565b60405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608490fd5b9160609361ffff6122ee939897969816845260806020850152608084019161201b565b6001600160401b0390951660408201520152565b919082604091031261038d576020825192015190565b919261061e9694959361ffff6123499316845260018060a01b0316602084015260a0604084015260a08301906105e8565b9315156060820152608081850391015261201b565b90601f8201809211610b0657565b91908201809211610b0657565b1561238057565b60405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606490fd5b156123bd57565b60405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606490fd5b61240a826124038161235e565b1015612379565b61241782825110156123b6565b8161242f575050604051600081526020810160405290565b60405191601f811691821560051b808486010193838501920101905b8084106124635750508252601f01601f191660405290565b909283518152602080910193019061244b565b6000546001600160a01b0316330361248a57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b0316600090815260076020526040902090565b9060018060a01b0316600052602052604060002090565b1561250657565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b1561255e57565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b916001600160a01b03808416929091831561262e57612613826000805160206131df833981519152946126299416966125ec8815156124ff565b61260d846125f9836124ce565b5461260682821015612557565b03916124ce565b556124ce565b8054820190556040519081529081906020820190565b0390a3565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b6001600160a01b0380821692919083156127495782169384156126f957806126e87f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925946126e36126299560018060a01b03166000526008602052604060002090565b6124e8565b556040519081529081906020820190565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9060018060a01b03821660005260086020526127ba8160406000206124e8565b5492600184016127ca5750505050565b8084106127e5576127dc930391612681565b3880808061122c565b60405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b1561283157565b60405162461bcd60e51b815260206004820152600a60248201526939b0b6b29031b430b4b760b11b6044820152606490fd5b1561286a57565b60405162461bcd60e51b815260206004820152600a6024820152690457863656564206361760b41b6044820152606490fd5b9395926128ba926128b291999892993691610e6d565b963691610e6d565b9060ff600654166000146129be57602282511061297a5761296361ffff948361293460008051602061319f8339815191529861292e8c8a60226126299a01519116600052600260205261291a604060002060008052602052604060002090565b5490612927821515612d0e565b1015612d57565b87612c4f565b93849261295b8b61294d60405196879260208401612a3b565b03601f198101865285610e2f565b34938c612acd565b60405193849360018060a01b031697169583612a5e565b60405162461bcd60e51b815260206004820152601c60248201527b4c7a4170703a20696e76616c69642061646170746572506172616d7360201b6044820152606490fd5b81516129e75761296361ffff946126299361293460008051602061319f8339815191529861292e565b60405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608490fd5b929190612a59604091600086526060602087015260608601906105e8565b930152565b929190612a596020916040865260408601906105e8565b92612a9a61061e97959361ffff612aa89416865260c0602087015260c08601906105e8565b9084820360408601526105e8565b6001600160a01b0391821660608401529316608082015280830360a0909101526105e8565b94612af69193929561ffff81166000526001602052612afd6040600020604051948580926111ff565b0384610e2f565b825115612b8257612b0f855182612be0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031693843b1561038d57600096612b6491604051998a988997889662c5803160e81b885260048801612a75565b03925af1801561079757612b755750565b806119766112b092610dfc565b60405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608490fd5b61ffff166000526003602052604060002054908115612c45575b11612c0157565b606460405162461bcd60e51b815260206004820152602060248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152fd5b6127109150612bfa565b6001600160a01b038116338103612cfe575b8015612caf5781612c8484612c776000956124ce565b5461260682821015612da1565b55612c928360095403600955565b6040518381526000805160206131df83398151915290602090a390565b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b612d0983338461279a565b612c61565b15612d1557565b60405162461bcd60e51b815260206004820152601a602482015279131e905c1c0e881b5a5b91d85cd31a5b5a5d081b9bdd081cd95d60321b6044820152606490fd5b15612d5e57565b60405162461bcd60e51b815260206004820152601b60248201527a4c7a4170703a20676173206c696d697420697320746f6f206c6f7760281b6044820152606490fd5b15612da857565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b909160608284031261038d578151612e0f81610381565b60208301519093906001600160401b03811161038d57604091612e33918501611fa8565b92015190565b15612e4057565b60405162461bcd60e51b81526020600482015260116024820152701b9bdd081d1a1a5cc818dbdb9d1c9858dd607a1b6044820152606490fd5b909160608284031261038d578151612e9081610381565b60208301519093906001600160401b03811161038d57604091612eb4918501611fa8565b92015161061e81610930565b91909160808184031261038d578051612ed881610381565b602082015190936001600160401b03821161038d57612ef8918301611fa8565b916060604083015192015190565b15612f0d57565b60405162461bcd60e51b815260206004820152600b60248201526a7374616c6520707269636560a81b6044820152606490fd5b90602081019161ffff8351168015600014612f6057506112b09250612fee565b905060018103612fa25750611021612f92612f886112b09460208561100f9651010190612ec0565b95925092906130e6565b6001600160a01b03163014612e39565b60028103612fcd575061105d612fc56112b093602084612f929551010190612e79565b9391506130e6565b6003036110925761108d612fc56112b093602084612f929551010190612df8565b9061300561300d9160208082518301019101612df8565b9291506130e6565b6001600160a01b038116929083156130a1577fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf9161306161ffff9261305c6130578760095461236c565b600955565b6124ce565b8481540190558460006000805160206131df8339815191526040518061308c89829190602083019252565b0390a360405193845216918060208101612629565b60405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b60148151106130f9576020015160601c90565b60405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606490fd5b600090620151804204600052600f602052604060002054600d549080821180613172575b613162575050565b908092935003908111610b065790565b5060ff6010541661315a56fe8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3effa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470daba264697066735822122032d8d4095ee27c4ec8452bc7d1f1c11e22c95b0822fe07bc032a942c6c2864cc64736f6c63430008130033000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd700000000000000000000000000000000000000000000003635c9adc5dea00000

Deployed Bytecode

0x6080604052600436101561001257600080fd5b60003560e01c80621d35671461037c57806301ffc9a71461037757806306fdde031461037257806307e0db171461036d578063095ea7b3146103685780630df374831461036357806310ddb1371461035e57806318160ddd146102eb5780631df8ba771461035957806323b872dd146103545780632a205e3d1461034f578063313ce5671461034a578063355274ea1461034557806339509351146103405780633d8b38f61461033b5780633f1f4fa41461033657806342d65a8d1461033157806343bdfb721461032c5780634477051514610322578063471744d1146103275780634c42899a14610322578063519056361461031d5780635b8c41e61461031857806366ad5c8a146103135780636abe0abf1461030e57806370a0823114610309578063715018a6146103045780637533d788146102ff5780637ff9b596146102fa5780638cfd8f5c146102f55780638da5cb5b146102f05780639358928b146102eb578063950c8a74146102e657806395d89b41146102e15780639f38369a146102dc578063a162b0a2146102d7578063a3907d71146102d2578063a457c2d7146102cd578063a6c3d165146102c8578063a9059cbb146102c3578063b353aaa7146102be578063baf3292d146102b9578063c4461834146102b4578063ca5ea406146102af578063cbed8b9c146102aa578063d1deba1f146102a5578063dd62ed3e146102a0578063df2a5b3b1461029b578063e3ec18ae14610296578063eab45d9c14610291578063eb8d72b71461028c578063ed629c5c14610287578063f2fde38b14610282578063f5ecbdbc1461027d5763fc0c546a1461027857600080fd5b611f32565b611e5e565b611da9565b611d86565b611c5d565b611bfb565b611bdf565b611af2565b611aa8565b61197c565b611890565b611874565b611857565b6117e7565b6117a2565b611778565b611616565b61156a565b611547565b61151b565b611478565b6113d4565b6113ab565b6108af565b611382565b611327565b611309565b6112b2565b61117c565b61113f565b611121565b610f7a565b610ee1565b610caf565b610c77565b610c93565b610c59565b610bd8565b610b9f565b610b43565b610abb565b610a9d565b610a81565b61093a565b6108f0565b6108cd565b610825565b6107e6565b6107b1565b610701565b610621565b61053a565b610424565b61ffff81160361038d57565b600080fd5b9181601f8401121561038d578235916001600160401b03831161038d576020838186019501011161038d57565b90608060031983011261038d576004356103d881610381565b916001600160401b039060243582811161038d57816103f991600401610392565b93909392604435818116810361038d579260643591821161038d5761042091600401610392565b9091565b3461038d57610432366103bf565b929493919291907f000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd76001600160a01b031633036104f5576104b86104c0926104c6976104b16104976104928a61ffff166000526001602052604060002090565b611295565b80519081841491826104eb575b50816104c8575b50611f4d565b3691610e6d565b923691610e6d565b926120d0565b005b90506104d5368486610e6d565b60208151910120906020815191012014386104ab565b15159150386104a4565b60405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200006044820152606490fd5b3461038d57602036600319011261038d5760043563ffffffff60e01b811680910361038d5780602091159081156105a9575b811561057e575b506040519015158152f35b630a72677560e11b811491508115610598575b5038610573565b6301ffc9a760e01b14905038610591565b6336372b0760e01b8114915061056c565b600091031261038d57565b60005b8381106105d85750506000910152565b81810151838201526020016105c8565b90602091610601815180928185528580860191016105c5565b601f01601f1916010190565b90602061061e9281815201906105e8565b90565b3461038d576000806003193601126106fe5760405181600a54610643816111c5565b808452906001908181169081156106d6575060011461067d575b6106798461066d81880382610e2f565b6040519182918261060d565b0390f35b600a8352602094507fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a85b8284106106c357505050816106799361066d928201019361065d565b80548585018701529285019281016106a7565b610679965061066d9450602092508593915060ff191682840152151560051b8201019361065d565b80fd5b3461038d57600060203660031901126106fe5760043561072081610381565b610728612476565b7f000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd76001600160a01b0316908290823b1561079c57602461ffff918360405195869485936307e0db1760e01b85521660048401525af180156107975761078b575080f35b61079490610dfc565b80f35b61200f565b5080fd5b6001600160a01b0381160361038d57565b3461038d57604036600319011261038d576107db6004356107d1816107a0565b6024359033612681565b602060405160018152f35b3461038d57604036600319011261038d5761ffff60043561080681610381565b61080e612476565b166000526003602052602435604060002055600080f35b3461038d57600060203660031901126106fe5760043561084481610381565b61084c612476565b7f000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd76001600160a01b0316908290823b1561079c57602461ffff918360405195869485936310ddb13760e01b85521660048401525af180156107975761078b575080f35b3461038d57600036600319011261038d576020600954604051908152f35b3461038d57600036600319011261038d5760206108e8613136565b604051908152f35b3461038d57606036600319011261038d576107db600435610910816107a0565b60243561091c816107a0565b6044359161092b83338361279a565b6125b2565b8015150361038d57565b3461038d5760a036600319011261038d5760043561095781610381565b6001600160401b039060243582811161038d57610978903690600401610392565b906064359261098684610930565b60843594851161038d576109fb6109a46109df963690600401610392565b9060409788966109c988519788926000602085015260608b850152608084019161201b565b604435606083015203601f198101875286610e2f565b855163040a7bb160e41b81529687958695309060048801612318565b03817f000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd76001600160a01b03165afa918215610797576000918293610a4c575b50519081526020810191909152604090f35b81610a7292945061067993503d8511610a7a575b610a6a8183610e2f565b810190612302565b929091610a3a565b503d610a60565b3461038d57600036600319011261038d57602060405160128152f35b3461038d57600036600319011261038d576020600d54604051908152f35b3461038d57604036600319011261038d57600435610ad8816107a0565b336000526008602052610aef8160406000206124e8565b546024358101809111610b06576107db9133612681565b6120ab565b90604060031983011261038d57600435610b2481610381565b91602435906001600160401b03821161038d5761042091600401610392565b3461038d57602061ffff610b90610b5936610b0b565b9390911660005260018452610b7b610b826040600020604051928380926111ff565b0382610e2f565b848151910120923691610e6d565b82815191012014604051908152f35b3461038d57602036600319011261038d5761ffff600435610bbf81610381565b1660005260036020526020604060002054604051908152f35b3461038d57610be636610b0b565b9190610bf0612476565b7f000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd76001600160a01b031691823b1561038d57604051928380926342d65a8d60e01b825281610c47600098899788946004850161203c565b03925af180156107975761078b575080f35b3461038d57600036600319011261038d576020600e54604051908152f35b3461038d57600036600319011261038d57602060405160008152f35b3461038d57600036600319011261038d57602060405160018152f35b60e036600319011261038d57600435610cc7816107a0565b602435610cd381610381565b6001600160401b039060443582811161038d57610cf4903690600401610392565b60649391933560843591610d07836107a0565b60a43593610d14856107a0565b60c43590811161038d57610d2c903690600401610392565b96909560ff6010541615610db7576104c698610d4e61ffff831646141561282a565b620151804204610d7f610d75610d6e83600052600f602052604060002090565b548861236c565b600d541015612863565b610db1610da087610d9a84600052600f602052604060002090565b5461236c565b91600052600f602052604060002090565b5561289c565b60405162461bcd60e51b81526020600482015260076024820152661a5b9d985b1a5960ca1b6044820152606490fd5b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610e0f57604052565b610de6565b60c081019081106001600160401b03821117610e0f57604052565b601f909101601f19168101906001600160401b03821190821017610e0f57604052565b6001600160401b038111610e0f57601f01601f191660200190565b929192610e7982610e52565b91610e876040519384610e2f565b82948184528183011161038d578281602093846000960137010152565b602090610ebe9282604051948386809551938492016105c5565b82019081520301902090565b9060018060401b0316600052602052604060002090565b3461038d57606036600319011261038d57600435610efe81610381565b6001600160401b0360243581811161038d573660238201121561038d57610f2f903690602481600401359101610e6d565b90604435908116810361038d57610f64610f6992610f5e6106799561ffff166000526005602052604060002090565b90610ea4565b610eca565b546040519081529081906020820190565b3461038d57610f88366103bf565b9150913033036110cd57610fa993610fa1913691610e6d565b503691610e6d565b906020820161ffff8151168015600014610fc9575050906104c691612fee565b909150600181036110265750611021610fef61100f926020856104c69651010190612ec0565b949092509030906001600160a01b0390611008906130e6565b1614612e39565b61101c600e548411612f06565b600c55565b600e55565b6002810361106f575061104661105d916020846104c69551010190612e79565b92915030906001600160a01b0390611008906130e6565b60ff8019601054169115151617601055565b6003036110925761104661108d916020846104c69551010190612df8565b600d55565b60405162461bcd60e51b8152602060048201526013602482015272756e6b6e6f776e207061636b6574207479706560681b6044820152606490fd5b60405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608490fd5b3461038d57600036600319011261038d576020604051620151808152f35b3461038d57602036600319011261038d5760043561115c816107a0565b60018060a01b031660005260076020526020604060002054604051908152f35b3461038d576000806003193601126106fe57611196612476565b80546001600160a01b03198116825581906001600160a01b03166000805160206131bf8339815191528280a380f35b90600182811c921680156111f5575b60208310146111df57565b634e487b7160e01b600052602260045260246000fd5b91607f16916111d4565b9060009291805491611210836111c5565b9182825260019384811690816000146112725750600114611232575b50505050565b90919394506000526020928360002092846000945b83861061125e57505050500101903880808061122c565b805485870183015294019385908201611247565b9294505050602093945060ff191683830152151560051b0101903880808061122c565b906112b06112a992604051938480926111ff565b0383610e2f565b565b3461038d57602036600319011261038d5761ffff6004356112d281610381565b166000526001602052610679610b7b6112f56040600020604051928380926111ff565b6040519182916020835260208301906105e8565b3461038d57600036600319011261038d576020600c54604051908152f35b3461038d57604036600319011261038d57602061137960043561134981610381565b61ffff6024359161135983610381565b166000526002835260406000209061ffff16600052602052604060002090565b54604051908152f35b3461038d57600036600319011261038d576000546040516001600160a01b039091168152602090f35b3461038d57600036600319011261038d576004546040516001600160a01b039091168152602090f35b3461038d576000806003193601126106fe5760405181600b546113f6816111c5565b808452906001908181169081156106d6575060011461141f576106798461066d81880382610e2f565b600b8352602094507f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b82841061146557505050816106799361066d928201019361065d565b8054858501870152928501928101611449565b3461038d57602036600319011261038d5761ffff60043561149881610381565b166000526001602052610b7b6114b86040600020604051928380926111ff565b8051156114d65761066d816114d061067993516120c1565b906123f6565b60405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606490fd5b3461038d57602036600319011261038d57600435600052600f6020526020604060002054604051908152f35b3461038d57600036600319011261038d57602060ff601054166040519015158152f35b3461038d57604036600319011261038d57600435611587816107a0565b602435903360005260086020526115a28160406000206124e8565b54918083106115c3576115b792039033612681565b60405160018152602090f35b60405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608490fd5b3461038d5761162436610b0b565b9061162d612476565b604051926020928083858701376116596034868381013060601b88820152036014810188520186610e2f565b61ffff8216600090815260018086526040822087519296909291906001600160401b038311610e0f576116968361169086546111c5565b86612057565b80601f84116001146116f45750918080926116e39695948a9b60008051602061317f8339815191529b946116e9575b50501b916000199060031b1c19161790555b6040519384938461203c565b0390a180f35b0151925038806116c5565b91939498601f19841661170c87600052602060002090565b938a905b8282106117615750509160008051602061317f833981519152999a959391856116e398969410611748575b505050811b0190556116d7565b015160001960f88460031b161c1916905538808061173b565b808886978294978701518155019601940190611710565b3461038d57604036600319011261038d576107db600435611798816107a0565b60243590336125b2565b3461038d57600036600319011261038d576040517f000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd76001600160a01b03168152602090f35b3461038d57602036600319011261038d577f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b6020600435611827816107a0565b61182f612476565b600480546001600160a01b0319166001600160a01b03929092169182179055604051908152a1005b3461038d57600036600319011261038d5760206040516127108152f35b3461038d57600036600319011261038d57602060405160028152f35b3461038d57608036600319011261038d576004356118ad81610381565b6024356118b981610381565b6064356001600160401b03811161038d576118d8903690600401610392565b90926118e2612476565b7f000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd76001600160a01b031690813b1561038d5760008094611959604051978896879586946332fb62e760e21b865261ffff8092166004870152166024850152604435604485015260806064850152608484019161201b565b03925af180156107975761196957005b806119766104c692610dfc565b806105ba565b611985366103bf565b9161ffff869492961660005260056020526119b981604060002060206040518092878b833787820190815203019020610eca565b54918215611a57577fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e596611a5294611a4691611a40916000611a3487610f648d89611a2e8f611a1a8f611a0d368c8e610e6d565b6020815191012014612275565b61ffff166000526005602052604060002090565b9161225c565b55610fa136868c610e6d565b86612f40565b604051958695866122cb565b0390a1005b60405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608490fd5b3461038d57604036600319011261038d576020611379600435611aca816107a0565b60243590611ad7826107a0565b6001600160a01b0316600090815260088452604090206124e8565b3461038d57606036600319011261038d57600435611b0f81610381565b602435611b1b81610381565b60443591611b27612476565b8215611ba257611a527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09361ffff8316600052600260205280611b7c8560406000209061ffff16600052602052604060002090565b556040519384938460409194939294606082019561ffff80921683521660208201520152565b60405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606490fd5b3461038d57600036600319011261038d57602060405160038152f35b3461038d57602036600319011261038d577f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a46020600435611c3b81610930565b611c43612476565b151560ff196006541660ff821617600655604051908152a1005b3461038d57611c6b36610b0b565b9190611c75612476565b61ffff82166000908152600160208181526040832092949291906001600160401b038711610e0f57611cb187611cab85546111c5565b85612057565b8590601f8811600114611d0657509186808798936116e3956000805160206131ff8339815191529993611cfb575b501b906000198460031b1c19161790556040519384938461203c565b880135925038611cdf565b90601f198816611d1b85600052602060002090565b9288905b828210611d6f575050918893916000805160206131ff83398151915298996116e3969410611d55575b505082811b0190556116d7565b870135600019600386901b60f8161c191690553880611d48565b808685968294968c01358155019501930190611d1f565b3461038d57600036600319011261038d57602060ff600654166040519015158152f35b3461038d57602036600319011261038d57600435611dc6816107a0565b611dce612476565b6001600160a01b039081168015611e0a57600080546001600160a01b03198116831782559092166000805160206131bf8339815191528380a380f35b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b3461038d57608036600319011261038d57600435611e7b81610381565b60243590611e8882610381565b611e936044356107a0565b604051633d7b2f6f60e21b815261ffff91821660048201529116602482015230604482015260648035908201526000816084817f000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd76001600160a01b03165afa80156107975761067991600091611f11575b506040519182918261060d565b611f2c913d8091833e611f248183610e2f565b810190611fea565b38611f04565b3461038d57600036600319011261038d576020604051308152f35b15611f5457565b60405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608490fd5b81601f8201121561038d578051611fbe81610e52565b92611fcc6040519485610e2f565b8184526020828401011161038d5761061e91602080850191016105c5565b9060208282031261038d5781516001600160401b03811161038d5761061e9201611fa8565b6040513d6000823e3d90fd5b908060209392818452848401376000828201840152601f01601f1916010190565b60409061ffff61061e9593168152816020820152019161201b565b90601f811161206557505050565b600091825260208220906020601f850160051c830194106120a1575b601f0160051c01915b82811061209657505050565b81815560010161208a565b9092508290612081565b634e487b7160e01b600052601160045260246000fd5b601319810191908211610b0657565b9290915a604051633356ae4560e11b6020820190815261ffff8716602483015260806044830152949161213c8261212e61210d60a48301876105e8565b6001600160401b0388166064840152828103602319016084840152886105e8565b03601f198101845283610e2f565b600080916040519761214d89610e14565b609689528260208a019560a036883751923090f1903d9060968211612194575b6000908288523e15612181575b5050505050565b61218a9461219d565b388080808061217a565b6096915061216d565b91936122497fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c95612257939561ffff8151602083012096169586600052600560205261220f8361220160208b604060002082604051948386809551938492016105c5565b820190815203019020610eca565b5561222c604051978897885260a0602089015260a08801906105e8565b6001600160401b03909216604087015285820360608701526105e8565b9083820360808501526105e8565b0390a1565b6020919283604051948593843782019081520301902090565b1561227c57565b60405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608490fd5b9160609361ffff6122ee939897969816845260806020850152608084019161201b565b6001600160401b0390951660408201520152565b919082604091031261038d576020825192015190565b919261061e9694959361ffff6123499316845260018060a01b0316602084015260a0604084015260a08301906105e8565b9315156060820152608081850391015261201b565b90601f8201809211610b0657565b91908201809211610b0657565b1561238057565b60405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606490fd5b156123bd57565b60405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606490fd5b61240a826124038161235e565b1015612379565b61241782825110156123b6565b8161242f575050604051600081526020810160405290565b60405191601f811691821560051b808486010193838501920101905b8084106124635750508252601f01601f191660405290565b909283518152602080910193019061244b565b6000546001600160a01b0316330361248a57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b0316600090815260076020526040902090565b9060018060a01b0316600052602052604060002090565b1561250657565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b1561255e57565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b916001600160a01b03808416929091831561262e57612613826000805160206131df833981519152946126299416966125ec8815156124ff565b61260d846125f9836124ce565b5461260682821015612557565b03916124ce565b556124ce565b8054820190556040519081529081906020820190565b0390a3565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b6001600160a01b0380821692919083156127495782169384156126f957806126e87f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925946126e36126299560018060a01b03166000526008602052604060002090565b6124e8565b556040519081529081906020820190565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9060018060a01b03821660005260086020526127ba8160406000206124e8565b5492600184016127ca5750505050565b8084106127e5576127dc930391612681565b3880808061122c565b60405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b1561283157565b60405162461bcd60e51b815260206004820152600a60248201526939b0b6b29031b430b4b760b11b6044820152606490fd5b1561286a57565b60405162461bcd60e51b815260206004820152600a6024820152690457863656564206361760b41b6044820152606490fd5b9395926128ba926128b291999892993691610e6d565b963691610e6d565b9060ff600654166000146129be57602282511061297a5761296361ffff948361293460008051602061319f8339815191529861292e8c8a60226126299a01519116600052600260205261291a604060002060008052602052604060002090565b5490612927821515612d0e565b1015612d57565b87612c4f565b93849261295b8b61294d60405196879260208401612a3b565b03601f198101865285610e2f565b34938c612acd565b60405193849360018060a01b031697169583612a5e565b60405162461bcd60e51b815260206004820152601c60248201527b4c7a4170703a20696e76616c69642061646170746572506172616d7360201b6044820152606490fd5b81516129e75761296361ffff946126299361293460008051602061319f8339815191529861292e565b60405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608490fd5b929190612a59604091600086526060602087015260608601906105e8565b930152565b929190612a596020916040865260408601906105e8565b92612a9a61061e97959361ffff612aa89416865260c0602087015260c08601906105e8565b9084820360408601526105e8565b6001600160a01b0391821660608401529316608082015280830360a0909101526105e8565b94612af69193929561ffff81166000526001602052612afd6040600020604051948580926111ff565b0384610e2f565b825115612b8257612b0f855182612be0565b7f000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd76001600160a01b031693843b1561038d57600096612b6491604051998a988997889662c5803160e81b885260048801612a75565b03925af1801561079757612b755750565b806119766112b092610dfc565b60405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608490fd5b61ffff166000526003602052604060002054908115612c45575b11612c0157565b606460405162461bcd60e51b815260206004820152602060248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152fd5b6127109150612bfa565b6001600160a01b038116338103612cfe575b8015612caf5781612c8484612c776000956124ce565b5461260682821015612da1565b55612c928360095403600955565b6040518381526000805160206131df83398151915290602090a390565b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b612d0983338461279a565b612c61565b15612d1557565b60405162461bcd60e51b815260206004820152601a602482015279131e905c1c0e881b5a5b91d85cd31a5b5a5d081b9bdd081cd95d60321b6044820152606490fd5b15612d5e57565b60405162461bcd60e51b815260206004820152601b60248201527a4c7a4170703a20676173206c696d697420697320746f6f206c6f7760281b6044820152606490fd5b15612da857565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b909160608284031261038d578151612e0f81610381565b60208301519093906001600160401b03811161038d57604091612e33918501611fa8565b92015190565b15612e4057565b60405162461bcd60e51b81526020600482015260116024820152701b9bdd081d1a1a5cc818dbdb9d1c9858dd607a1b6044820152606490fd5b909160608284031261038d578151612e9081610381565b60208301519093906001600160401b03811161038d57604091612eb4918501611fa8565b92015161061e81610930565b91909160808184031261038d578051612ed881610381565b602082015190936001600160401b03821161038d57612ef8918301611fa8565b916060604083015192015190565b15612f0d57565b60405162461bcd60e51b815260206004820152600b60248201526a7374616c6520707269636560a81b6044820152606490fd5b90602081019161ffff8351168015600014612f6057506112b09250612fee565b905060018103612fa25750611021612f92612f886112b09460208561100f9651010190612ec0565b95925092906130e6565b6001600160a01b03163014612e39565b60028103612fcd575061105d612fc56112b093602084612f929551010190612e79565b9391506130e6565b6003036110925761108d612fc56112b093602084612f929551010190612df8565b9061300561300d9160208082518301019101612df8565b9291506130e6565b6001600160a01b038116929083156130a1577fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf9161306161ffff9261305c6130578760095461236c565b600955565b6124ce565b8481540190558460006000805160206131df8339815191526040518061308c89829190602083019252565b0390a360405193845216918060208101612629565b60405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b60148151106130f9576020015160601c90565b60405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606490fd5b600090620151804204600052600f602052604060002054600d549080821180613172575b613162575050565b908092935003908111610b065790565b5060ff6010541661315a56fe8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3effa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470daba264697066735822122032d8d4095ee27c4ec8452bc7d1f1c11e22c95b0822fe07bc032a942c6c2864cc64736f6c63430008130033

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

000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd700000000000000000000000000000000000000000000003635c9adc5dea00000

-----Decoded View---------------
Arg [0] : _layerZeroEndpoint (address): 0xb6319cC6c8c27A8F5dAF0dD3DF91EA35C4720dd7
Arg [1] : _cap (uint256): 1000000000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b6319cc6c8c27a8f5daf0dd3df91ea35c4720dd7
Arg [1] : 00000000000000000000000000000000000000000000003635c9adc5dea00000


Deployed Bytecode Sourcemap

129:3259:18:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;129:3259:18;;;;;;;;;;:::i;:::-;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;1492:10:3;-1:-1:-1;;;;;129:3259:18;719:10:15;1468:35:3;129:3259:18;;;;1578:32:3;1938:62;1578:32;1752:175;129:3259:18;1578:32:3;;129:3259:18;;;;1578:19:3;129:3259:18;;;;;;;1578:32:3;129:3259:18;:::i;:::-;;;1760:42:3;;;;:70;;;;129:3259:18;1760:124:3;;;;129:3259:18;1752:175:3;;:::i;:::-;129:3259:18;;;:::i;:::-;;;;;:::i;:::-;1938:62:3;;:::i;:::-;129:3259:18;1760:124:3;129:3259:18;;;;;;;:::i;:::-;;;;;;1834:22:3;129:3259:18;;;;;;1860:24:3;1834:50;1760:124;;;:70;1806:24;;;-1:-1:-1;1760:70:3;;;129:3259:18;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;;;;;;;;564:37:7;129:3259:18;564:37:7;;:80;;;;;129:3259:18;564:120:7;;;;129:3259:18;;;;;;;;;;564:120:7;-1:-1:-1;;;634:41:8;;;-1:-1:-1;634:81:8;;;;564:120:7;;;;;634:81:8;-1:-1:-1;;;937:40:16;;-1:-1:-1;634:81:8;;;564:80:7;-1:-1:-1;;;605:39:7;;;-1:-1:-1;564:80:7;;129:3259:18;;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;129:3259:18;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;129:3259:18;;;;:::o;:::-;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;2244:5:12;129:3259:18;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;2244:5:12;129:3259:18;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;129:3259:18;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;1063:62:11;;:::i;:::-;4578:10:3;-1:-1:-1;;;;;129:3259:18;;;;4578:35:3;;;;;129:3259:18;;;;;;;;;;;;;;4578:35:3;;129:3259:18;;4578:35:3;;129:3259:18;4578:35:3;;;;;;;;129:3259:18;;;4578:35:3;;;;:::i;:::-;129:3259:18;;4578:35:3;;:::i;:::-;129:3259:18;;;;-1:-1:-1;;;;;129:3259:18;;;;;:::o;:::-;;;;;;-1:-1:-1;;129:3259:18;;;;4606:6:12;129:3259:18;;;;;:::i;:::-;;;719:10:15;;4606:6:12;:::i;:::-;129:3259:18;;;4630:4:12;129:3259:18;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;;:::i;:::-;1063:62:11;;:::i;:::-;129:3259:18;-1:-1:-1;129:3259:18;;;;;;;-1:-1:-1;129:3259:18;;-1:-1:-1;129:3259:18;;;;;;-1:-1:-1;129:3259:18;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;1063:62:11;;:::i;:::-;4708:10:3;-1:-1:-1;;;;;129:3259:18;;;;4708:38:3;;;;;129:3259:18;;;;;;;;;;;;;;4708:38:3;;129:3259:18;;4708:38:3;;129:3259:18;4708:38:3;;;;;;;;129:3259:18;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;3342:12:12;129:3259:18;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;5424:6:12;129:3259:18;;;;;:::i;:::-;;;;;;:::i;:::-;;;719:10:15;5387:6:12;719:10:15;;5387:6:12;;:::i;:::-;5424;:::i;129:3259:18:-;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;1059:85:8;129:3259:18;1002:40:8;129:3259:18;;;;;;:::i;:::-;;;;;;;;;1002:40:8;;;-1:-1:-1;1002:40:8;;;129:3259:18;;;;;;;;;;;:::i;:::-;;;;;;;1002:40:8;129:3259:18;;1002:40:8;;;;;;:::i;:::-;129:3259:18;;-1:-1:-1;;;1059:85:8;;129:3259:18;;;;;1104:4:8;;129:3259:18;1059:85:8;;;:::i;:::-;;129:3259:18;1059:10:8;-1:-1:-1;;;;;129:3259:18;1059:85:8;;;;;;;-1:-1:-1;;;1059:85:8;;;129:3259:18;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;1059:85:8;;;;;;129:3259:18;1059:85:8;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;129:3259:18;;;;;;-1:-1:-1;;129:3259:18;;;;;;;3186:2:12;129:3259:18;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;419:18;129:3259;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;719:10:15;-1:-1:-1;129:3259:18;4102:11:12;129:3259:18;;4102:27:12;129:3259:18;;-1:-1:-1;129:3259:18;4102:27:12;:::i;:::-;129:3259:18;;;;;;;;;;6021:38:12;719:10:15;;6021:38:12;:::i;129:3259:18:-;;:::i;:::-;;;-1:-1:-1;;129:3259:18;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;129:3259:18;6758:19:3;129:3259:18;;;;;-1:-1:-1;129:3259:18;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;6807:24:3;129:3259:18;;;;:::i;:::-;;;;;;6835:22:3;6807:50;129:3259:18;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;;:::i;:::-;;-1:-1:-1;129:3259:18;;;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;:::i;:::-;1063:62:11;;;;:::i;:::-;4873:10:3;-1:-1:-1;;;;;129:3259:18;;4873:55:3;;;;;129:3259:18;;;;;;;;;4873:55:3;;;;;;;;;;129:3259:18;4873:55:3;;;:::i;:::-;;;;;;;;;;;129:3259:18;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;443:26;129:3259;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;284:1;129:3259;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;1064:6;129:3259;;;;;1557:14;129:3259;1170:40;129:3259;;;1113:48;1178:17;;1170:40;:::i;:::-;232:12;1235:15;129:3259;1275:50;1283:20;1293:10;;129:3259;;1293:5;129:3259;;;;;;;1293:10;129:3259;1283:20;;:::i;:::-;1307:3;129:3259;-1:-1:-1;1283:27:18;1275:50;:::i;:::-;1336:10;1349:20;:10;;;129:3259;;1293:5;129:3259;;;;;;;1349:10;129:3259;1349:20;:::i;:::-;1336:10;129:3259;;1293:5;129:3259;;;;;;;1336:10;129:3259;1557:14;:::i;129:3259::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;:::o;:::-;;:::i;:::-;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;:::o;:::-;;;;;-1:-1:-1;;129:3259:18;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;:::o;:::-;-1:-1:-1;;;;;129:3259:18;;;;;;-1:-1:-1;;129:3259:18;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;129:3259:18;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;617:85:4;;;129:3259:18;617:85:4;129:3259:18;;;;617:85:4;129:3259:18;;;;;;;617:85:4;129:3259:18;;:::i;:::-;617:85:4;:::i;:::-;129:3259:18;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2032:4:4;;;;719:10:15;2008:29:4;129:3259:18;;;;;;;;;:::i;:::-;;;;;:::i;:::-;1810:71;;;;129:3259;1810:71;;129:3259;1895:21;;1891:1284;1895:21;;;1891:1284;;;;;;:::i;:::-;2005:21;;-1:-1:-1;284:1:18;2005:21;;284:1;;129:3259;2366:18;2105:72;2246:49;129:3259;1810:71;129:3259;2398:18;129:3259;;2105:72;;;;:::i;:::-;2032:4:4;;;-1:-1:-1;2032:4:4;;;-1:-1:-1;;;;;129:3259:18;2205:27;;;:::i;:::-;129:3259;2254:19;2246:49;:::i;:::-;2309:42;2324:11;129:3259;2317:18;;2309:42;:::i;:::-;2366:18;129:3259;;2366:18;2324:11;129:3259;;2001:1174;330:1;2437:27;;330:1;;129:3259;2525:89;2683:49;129:3259;1810:71;129:3259;2747:13;129:3259;;2525:89;;;;:::i;:::-;2032:4:4;;-1:-1:-1;2032:4:4;;-1:-1:-1;;;;;129:3259:18;2642:27;;;:::i;2683:49::-;129:3259;;;2747:13;129:3259;;;;;;;2747:13;129:3259;;2433:742;373:1;2781:24;373:1;;2869:92;3030:49;129:3259;1810:71;129:3259;3094:10;129:3259;;2869:92;;;;:::i;3030:49::-;3094:10;129:3259;;2777:398;129:3259;;-1:-1:-1;;;3135:29:18;;129:3259;3135:29;;;129:3259;;;;;;-1:-1:-1;;;129:3259:18;;;;;;3135:29;129:3259;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;232:12;129:3259;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;129:3259:18;3519:9:12;129:3259:18;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;;;;;;;1063:62:11;;:::i;:::-;129:3259:18;;-1:-1:-1;;;;;;129:3259:18;;;;;;-1:-1:-1;;;;;129:3259:18;-1:-1:-1;;;;;;;;;;;129:3259:18;;2566:40:11;129:3259:18;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;129:3259:18;;;;-1:-1:-1;129:3259:18;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;:::o;:::-;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;;:::i;:::-;;-1:-1:-1;129:3259:18;680:51:3;129:3259:18;;;;;;-1:-1:-1;129:3259:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;129:3259:18;;;;;381:32;129:3259;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;737:65:3;129:3259:18;;;;;:::i;:::-;;;;;;;;:::i;:::-;;-1:-1:-1;129:3259:18;737:65:3;129:3259:18;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;737:65:3;129:3259:18;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;2457:7:12;129:3259:18;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2457:7:12;129:3259:18;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;;:::i;:::-;;-1:-1:-1;129:3259:18;5695:19:3;129:3259:18;;;;;-1:-1:-1;129:3259:18;;;;;;;;:::i;:::-;;;5748:16:3;129:3259:18;;5815:31:3;129:3259:18;5829:16:3;129:3259:18;;;5829:16:3;:::i;:::-;5815:31;;:::i;129:3259:18:-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;-1:-1:-1;129:3259:18;476:40;129:3259;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;523:25;129:3259;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;;;719:10:15;;-1:-1:-1;129:3259:18;4102:11:12;129:3259:18;;4102:27:12;129:3259:18;;-1:-1:-1;129:3259:18;4102:27:12;:::i;:::-;129:3259:18;6792:35:12;;;;129:3259:18;;6928:34:12;129:3259:18;;719:10:15;;6928:34:12;:::i;:::-;129:3259:18;;6991:4:12;129:3259:18;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;:::i;:::-;1063:62:11;;;:::i;:::-;129:3259:18;;5442:47:3;;;;;;;;129:3259:18;5442:47:3;;129:3259:18;;;;5483:4:3;129:3259:18;;;;;;5442:47:3;129:3259:18;5442:47:3;;;;;;;:::i;:::-;129:3259:18;;;-1:-1:-1;129:3259:18;;;5404:19:3;129:3259:18;;;;;;;;-1:-1:-1;;129:3259:18;;;5404:19:3;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;5504:55:3;129:3259:18;;;;;-1:-1:-1;;;;;;;;;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;5504:55:3;;;;;:::i;:::-;;;;129:3259:18;;;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;129:3259:18;;;;;;5504:55:3;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;3894:6:12;129:3259:18;;;;;:::i;:::-;;;719:10:15;;3894:6:12;:::i;129:3259:18:-;;;;;;-1:-1:-1;;129:3259:18;;;;;;628:46:3;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;6008:22:3;129:3259:18;;;;;;:::i;:::-;1063:62:11;;:::i;:::-;129:3259:18;;;-1:-1:-1;;;;;;129:3259:18;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;6008:22:3;129:3259:18;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;616:5:3;129:3259:18;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;330:1;129:3259;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;:::i;:::-;1063:62:11;;;;:::i;:::-;4424:10:3;-1:-1:-1;;;;;129:3259:18;;4424:62:3;;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;4424:62:3;;129:3259:18;;;;;4424:62:3;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4424:62:3;;;;;;;;;;129:3259:18;4424:62:3;;;;;;:::i;:::-;;;:::i;129:3259:18:-;;;;:::i;:::-;;;;;;;;-1:-1:-1;129:3259:18;2552:14:4;129:3259:18;;2552:48:4;129:3259:18;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;;;;;;2552:48:4;:::i;:::-;129:3259:18;2618:25:4;;;129:3259:18;;3027:66:4;;;;129:3259:18;;;;-1:-1:-1;2819:48:4;129:3259:18;;;;2819:27:4;129:3259:18;2693:80:4;129:3259:18;;;;;;:::i;:::-;;;;;;2701:19:4;:34;2693:80;:::i;:::-;129:3259:18;;;;617:85:4;129:3259:18;;;;;;;2819:27:4;129:3259:18;;:::i;2819:48:4:-;129:3259:18;;;;;;:::i;:::-;;;:::i;:::-;;;3027:66:4;;;;;:::i;:::-;;;;129:3259:18;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;4102:27:12;129:3259:18;;;;;:::i;:::-;;;;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;-1:-1:-1;129:3259:18;;;4102:11:12;129:3259:18;;;;;4102:27:12;:::i;129:3259:18:-;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;1063:62:11;;;:::i;:::-;6156:11:3;;129:3259:18;;6269:47:3;;129:3259:18;;;;-1:-1:-1;129:3259:18;6203:15:3;129:3259:18;;;6203:41:3;129:3259:18;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;6203:41:3;129:3259:18;;;6269:47:3;;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;1658:50:8;129:3259:18;;;;;;:::i;:::-;1063:62:11;;:::i;:::-;129:3259:18;;;;1595:48:8;129:3259:18;;;;;;1595:48:8;129:3259:18;;;;;;1658:50:8;129:3259:18;;;;;;;;:::i;:::-;1063:62:11;;;;:::i;:::-;129:3259:18;;;-1:-1:-1;129:3259:18;;;5178:19:3;129:3259:18;;;;;;;-1:-1:-1;;129:3259:18;;5178:19:3;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;5236:39:3;129:3259:18;-1:-1:-1;;;;;;;;;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;5236:39:3;;;;;:::i;129:3259:18:-;;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;129:3259:18;;5236:39:3;129:3259:18;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;397:34:8;129:3259:18;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;1063:62:11;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;;;2162:22:11;;129:3259:18;;2518:6:11;129:3259:18;;-1:-1:-1;;;;;;129:3259:18;;;;;;2518:6:11;;129:3259:18;-1:-1:-1;;;;;;;;;;;2518:6:11;;2566:40;129:3259:18;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;4157:68:3;;129:3259:18;;;;;4157:68:3;;129:3259:18;;;;;;;4206:4:3;129:3259:18;;;;;;;;;;;-1:-1:-1;129:3259:18;;;4157:10:3;-1:-1:-1;;;;;129:3259:18;4157:68:3;;;;;;129:3259:18;4157:68:3;-1:-1:-1;4157:68:3;;;129:3259:18;;;;;;;;;:::i;4157:68:3:-;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;129:3259:18;;;;;;-1:-1:-1;;129:3259:18;;;;;;;786:4:7;129:3259:18;;;;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;129:3259:18;;;;;;;;-1:-1:-1;;129:3259:18;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::o;:::-;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;;:::o;980:508:4:-;;;;1200:9;129:3259:18;;-1:-1:-1;;;1216:102:4;;;;;;129:3259:18;;;1216:102:4;;;129:3259:18;;;;;;1216:102:4;129:3259:18;1216:102:4;129:3259:18;;;;;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;;;;;;;;;-1:-1:-1;;129:3259:18;;;;;;;:::i;:::-;1216:102:4;129:3259:18;;1216:102:4;;;;;;:::i;:::-;-1:-1:-1;129:3259:18;;;;;;;;:::i;:::-;;;;;1216:102:4;129:3259:18;;;;;;;1655:657:10;1174:4:4;;1655:657:10;;;;;129:3259:18;1655:657:10;;;;980:508:4;-1:-1:-1;1655:657:10;;;;;1376:8:4;1372:110;;980:508;;;;;;:::o;1372:110::-;1464:6;;;:::i;:::-;1372:110;;;;;;;1655:657:10;129:3259:18;;-1:-1:-1;1655:657:10;;1494:320:4;;;129:3259:18;1741:66:4;1494:320;129:3259:18;1494:320:4;;129:3259:18;;;;;;1707:19:4;129:3259:18;;;;-1:-1:-1;129:3259:18;1656:14:4;129:3259:18;;1656:48:4;129:3259:18;;;;;-1:-1:-1;129:3259:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1656:48:4;:::i;:::-;129:3259:18;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;1741:66:4;;;1494:320::o;129:3259:18:-;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;9045:2:9;129:3259:18;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;8865:2712:9;9027:50;9035:12;;;;:::i;:::-;:23;;9027:50;:::i;:::-;9087:63;129:3259:18;;;9095:33:9;;9087:63;:::i;:::-;9194:2350;;;;;;;-1:-1:-1;9194:2350:9;;;;;;;8865:2712;:::o;9194:2350::-;;;;9045:2;9194:2350;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9194:2350:9;;9045:2;9194:2350;-1:-1:-1;;9194:2350:9;;;;8865:2712::o;9194:2350::-;;;;;;;;;;;;;;;;1359:130:11;1273:6;129:3259:18;-1:-1:-1;;;;;129:3259:18;719:10:15;1422:23:11;129:3259:18;;1359:130:11:o;129:3259:18:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;7768:9:12;129:3259:18;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::o;:::-;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;7456:788:12;;-1:-1:-1;;;;;129:3259:18;;;;;;7552:18:12;;129:3259:18;;8114:13:12;129:3259:18;-1:-1:-1;;;;;;;;;;;129:3259:18;8163:26:12;129:3259:18;;7630:16:12;7622:64;7630:16;;;7622:64;:::i;:::-;7899:15;7768;;;;:::i;:::-;129:3259:18;7793:72:12;7801:21;;;;7793:72;:::i;:::-;129:3259:18;7899:15:12;;:::i;:::-;129:3259:18;8114:13:12;:::i;:::-;129:3259:18;;;;;;;;;;;;;;;;;;;8163:26:12;;;;7456:788::o;129:3259:18:-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;10457:340:12;-1:-1:-1;;;;;129:3259:18;;;;10457:340:12;;10558:19;;129:3259:18;;;;10636:21:12;;;129:3259:18;;10707:18:12;:27;10758:32;10707:18;;10758:32;10707:18;129:3259:18;;;;;;;;10707:11:12;129:3259:18;;;;;;;10707:18:12;:27;:::i;:::-;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;11078:411:12;;129:3259:18;;;;;;;-1:-1:-1;129:3259:18;4102:11:12;129:3259:18;;4102:27:12;129:3259:18;;-1:-1:-1;129:3259:18;4102:27:12;:::i;:::-;129:3259:18;;11244:37:12;;;11240:243;;11078:411;;;;:::o;11240:243::-;11305:26;;;129:3259:18;;11432:25:12;129:3259:18;;11432:25:12;;:::i;:::-;11240:243;;;;;;129:3259:18;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;1157:332:8;;;;129:3259:18;1157:332:8;129:3259:18;1157:332:8;;;;;129:3259:18;;;:::i;:::-;;;;;:::i;:::-;;;3291:22:8;129:3259:18;;3287:224:8;129:3259:18;;;3406:2:3;129:3259:18;;3381:27:3;129:3259:18;;2686:9:8;129:3259:18;3451:75:3;;2466:51:8;-1:-1:-1;;;;;;;;;;;3451:75:3;3182:71;3451:75;;3406:2;2712:51:8;3451:75:3;;;129:3259:18;;389:1:8;129:3259:18;3061:15:3;129:3259:18;;3061:35:3;129:3259:18;389:1:8;129:3259:18;;;;;;;;;;;3061:35:3;129:3259:18;3126:15:3;3118:54;3126:15;;;3118:54;:::i;:::-;3190:31;;3182:71;:::i;:::-;2466:51:8;;:::i;:::-;129:3259:18;;;2553:39:8;129:3259:18;2553:39:8;129:3259:18;;2553:39:8;;;;;;;:::i;:::-;;129:3259:18;;2553:39:8;;;;;;:::i;:::-;2686:9;;;;:::i;:::-;129:3259:18;;;;;;;;;;;;;2712:51:8;;;:::i;129:3259:18:-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;3287:224:8;129:3259:18;;;;2686:9:8;129:3259:18;3287:224:8;2712:51;3287:224;2466:51;-1:-1:-1;;;;;;;;;;;3287:224:8;;;129:3259:18;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;:::i;2291:548:3:-;;129:3259:18;2291:548:3;;;;129:3259:18;;;-1:-1:-1;129:3259:18;2513:19:3;129:3259:18;;;;-1:-1:-1;129:3259:18;;;;;;;;:::i;:::-;;;;:::i;:::-;;;2563:25:3;129:3259:18;;2682:15:3;129:3259:18;;2682:15:3;;:::i;:::-;2708:10;-1:-1:-1;;;;;129:3259:18;;2708:124:3;;;;;-1:-1:-1;129:3259:18;2708:124:3;129:3259:18;;;;;;;;;;;;;2708:124:3;;;;;;:::i;:::-;;;;;;;;;;;2291:548;:::o;2708:124::-;;;;;;:::i;129:3259:18:-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;3538:383:3;129:3259:18;;-1:-1:-1;129:3259:18;3660:22:3;129:3259:18;;;-1:-1:-1;129:3259:18;;3709:21:3;;;3705:123;;3538:383;3845:32;129:3259:18;;3538:383:3:o;129:3259:18:-;;;;;;;;;;;;;;;;;;;;;;;;;3705:123:3;616:5;;-1:-1:-1;3705:123:3;;920:285:7;-1:-1:-1;;;;;129:3259:18;;719:10:15;1085:16:7;;1081:62;;920:285;9458:21:12;;129:3259:18;;9613:18:12;9746;9613;;9477:1;9613:18;;:::i;:::-;129:3259:18;9641:71:12;9649:24;;;;9641:71;:::i;9746:18::-;129:3259:18;9883:22:12;129:3259:18;9883:22:12;129:3259:18;;9883:22:12;129:3259:18;;9883:22:12;129:3259:18;;;;;-1:-1:-1;;;;;;;;;;;9931:37:12;129:3259:18;;9931:37:12;920:285:7;:::o;129:3259:18:-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;1081:62:7;1135:7;719:10:15;;1135:7:7;;:::i;:::-;1081:62;;129:3259:18;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;129:3259:18;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;:::o;:::-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;1594:1587;;1810:71;;;;129:3259;1810:71;;129:3259;1895:21;;1891:1284;1895:21;;;1891:1284;;;;;:::i;:::-;2005:21;-1:-1:-1;284:1:18;2005:21;;284:1;;129:3259;2366:18;2205:27;2105:72;2398:18;129:3259;1810:71;129:3259;2246:49;129:3259;;2105:72;;;;:::i;:::-;2205:27;;;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;2268:4;2254:19;2246:49;:::i;2001:1174::-;330:1;2437:27;;330:1;;129:3259;2683:49;2525:89;2747:13;129:3259;1810:71;129:3259;2642:27;129:3259;;2525:89;;;;:::i;:::-;2642:27;;;;:::i;2433:742::-;373:1;2781:24;373:1;;3030:49;2869:92;3094:10;129:3259;1810:71;129:3259;2989:27;129:3259;;2869:92;;;;:::i;1891:1284::-;;2933:43:8;3000:27;1891:1284:18;2933:43:8;129:3259:18;;;2933:43:8;;;;;;:::i;:::-;3000:27;;;;:::i;:::-;-1:-1:-1;;;;;129:3259:18;;;;8603:21:12;;129:3259:18;;3096:41:8;129:3259:18;8899:18:12;129:3259:18;;8731:22:12;;129:3259:18;8731:22:12;129:3259:18;8731:22:12;:::i;:::-;9883;129:3259:18;;8731:22:12;8899:18;:::i;:::-;129:3259:18;;;;;;;3025:1:8;-1:-1:-1;;;;;;;;;;;129:3259:18;;8952:37:12;;;;129:3259:18;;;;;;;;8952:37:12;;;;129:3259:18;;;;;;;;;;;3096:41:8;129:3259:18;;;;-1:-1:-1;;;129:3259:18;;2933:43:8;129:3259:18;;;;;;;;;;;;;;;;;11583:354:9;11715:2;129:3259:18;;11689:28:9;129:3259:18;;11783:119:9;;;;;11583:354;:::o;129:3259:18:-;;;-1:-1:-1;;;129:3259:18;;;;;;;;;;;;-1:-1:-1;;;129:3259:18;;;;;;;3187:199;129:3259;3267:15;232:12;3267:15;129:3259;;;3261:5;129:3259;;;;;;3312:3;129:3259;3312:12;;;;:22;;;3187:199;3308:72;;3187:199;;:::o;3308:72::-;129:3259;;;;;;;;;;;3350:19;:::o;3312:22::-;129:3259;;3328:6;129:3259;;3312:22;

Swarm Source

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