ETH Price: $2,633.13 (+2.17%)

Token

LZ DOGE (LZDOGE)
 

Overview

Max Total Supply

11,579,207,765,810,727,169,195,144,265,160,133,803,942,995,951,717.532605773681858366 LZDOGE

Holders

142

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: LZDOGE
Balance
1,813,767,676,116,622.269114606451773043 LZDOGE

Value
$0.00
0xef01730fbcf59adee9fd4ac14f38868f7325e2c4
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LZDOGE

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Twitter: https://twitter.com/LzDoge
// Telegram: https://t.me/LzDoge


// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: lzDoge/erc20.sol


pragma solidity ^0.8.10;



pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;
    function setSendVersion(uint16 _version) external;
    function setReceiveVersion(uint16 _version) external;
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}
pragma solidity >=0.5.0;
interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;
    function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);
    function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);
    function getChainId() external view returns (uint16);
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);
    function getSendLibraryAddress(address _userApplication) external view returns (address);
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);
    function isSendingPayload() external view returns (bool);
    function isReceivingPayload() external view returns (bool);
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);
    function getSendVersion(address _userApplication) external view returns (uint16);
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}
pragma solidity >=0.5.0;
interface ILayerZeroReceiver {
    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
}
abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
    ILayerZeroEndpoint internal endpoint;
    struct FailedMessages {
        uint payloadLength;
        bytes32 payloadHash;
    }
    mapping(uint16 => mapping(bytes => mapping(uint => FailedMessages))) public failedMessages;
    mapping(uint16 => bytes) public trustedRemoteLookup;
    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload);
    function lzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) external override {
        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
        require(_srcAddress.length == trustedRemoteLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedRemoteLookup[_srcChainId]), 
            "NonblockingReceiver: invalid source sending contract");
        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
        } catch {
            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(_payload.length, keccak256(_payload));
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function onLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) public {
        require(msg.sender == address(this), "NonblockingReceiver: caller must be Bridge.");
        _LzReceive( _srcChainId, _srcAddress, _nonce, _payload);
    }
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) virtual internal;
    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam) internal {
        endpoint.send{value: msg.value}(_dstChainId, trustedRemoteLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam);
    }

    function retryMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload) external payable {
        FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message");
        require(_payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload");
        failedMsg.payloadLength = 0;
        failedMsg.payloadHash = bytes32(0);
        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    function setMultipleTrustedRemotes(uint16[] calldata _chainIds, bytes[] calldata _trustedRemotes) external onlyOwner {
        require(_chainIds.length == _trustedRemotes.length, "Chain IDs and remotes length mismatch");

        for (uint i = 0; i < _chainIds.length; i++) {
            trustedRemoteLookup[_chainIds[i]] = _trustedRemotes[i];
        }
    }
}
contract LZDOGE is ERC20, ERC20Burnable, Ownable, NonblockingReceiver{
    uint gasForDestinationLzReceive = 350000;
    uint256 public chainID;
    constructor(address _layerZeroEndpoint , uint256 _chainID) ERC20("LZ DOGE", "LZDOGE"){
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        chainID = _chainID;
        _mint(msg.sender , 117443484000000 * 10 ** decimals());
    }
    function estimateFeesView(uint16 _chainId , uint256 value) public view returns (uint) {
        bytes memory payload = abi.encode(msg.sender , value);

        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);

        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        return messageFee;
    }
    function traverseOtherChains(uint16 _chainId , uint256 value) public payable {
        require(msg.value >= estimateFeesView(_chainId , value));
        require(balanceOf(msg.sender) >= value);
        _burn(msg.sender , value);
        require(trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel");
        
        // abi.encode() the payload with the values to send
        bytes memory payload = abi.encode(msg.sender , value);

        // encode adapterParams to specify more gas for the destination
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        
        require(msg.value >= messageFee, "LD: msg.value not enough to cover messageFee. Send gas for message fees");

        endpoint.send{value: msg.value}(
            _chainId,                           // destination chainId
            trustedRemoteLookup[_chainId],      // destination address of nft contract
            payload,                            // abi.encoded()'ed bytes
            payable(msg.sender),                // refund address
            address(0x0),                       // 'zroPaymentAddress' unused for this
            adapterParams                       // txParameters 
        );

    }  
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) override internal {
        // decode
        (address toAddr , uint256 value) = abi.decode(_payload, (address , uint256));

        // mint the tokens back into existence on destination chain
        _mint(toAddr, value);
    }  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_chainID","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"}],"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":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chainID","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":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"estimateFeesView","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"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"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","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":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"_chainIds","type":"uint16[]"},{"internalType":"bytes[]","name":"_trustedRemotes","type":"bytes[]"}],"name":"setMultipleTrustedRemotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_chainId","type":"uint16"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"traverseOtherChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"}]

60806040526205573060095534801562000017575f80fd5b50604051620043e5380380620043e583398181016040528101906200003d91906200045e565b6040518060400160405280600781526020017f4c5a20444f4745000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4c5a444f474500000000000000000000000000000000000000000000000000008152508160039081620000ba9190620006fe565b508060049081620000cc9190620006fe565b505050620000ef620000e36200018060201b60201c565b6200018760201b60201c565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a8190555062000178336200014b6200024a60201b60201c565b600a6200015991906200096b565b656ad071251f006200016c9190620009bb565b6200025260201b60201c565b505062000ae9565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ba9062000a63565b60405180910390fd5b620002d65f8383620003b760201b60201c565b8060025f828254620002e9919062000a83565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000398919062000ace565b60405180910390a3620003b35f8383620003bc60201b60201c565b5050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620003f082620003c5565b9050919050565b6200040281620003e4565b81146200040d575f80fd5b50565b5f815190506200042081620003f7565b92915050565b5f819050919050565b6200043a8162000426565b811462000445575f80fd5b50565b5f8151905062000458816200042f565b92915050565b5f8060408385031215620004775762000476620003c1565b5b5f620004868582860162000410565b9250506020620004998582860162000448565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200051f57607f821691505b602082108103620005355762000534620004da565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200055c565b620005a586836200055c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620005e6620005e0620005da8462000426565b620005bd565b62000426565b9050919050565b5f819050919050565b6200060183620005c6565b620006196200061082620005ed565b84845462000568565b825550505050565b5f90565b6200062f62000621565b6200063c818484620005f6565b505050565b5b818110156200066357620006575f8262000625565b60018101905062000642565b5050565b601f821115620006b2576200067c816200053b565b62000687846200054d565b8101602085101562000697578190505b620006af620006a6856200054d565b83018262000641565b50505b505050565b5f82821c905092915050565b5f620006d45f1984600802620006b7565b1980831691505092915050565b5f620006ee8383620006c3565b9150826002028217905092915050565b6200070982620004a3565b67ffffffffffffffff811115620007255762000724620004ad565b5b62000731825462000507565b6200073e82828562000667565b5f60209050601f83116001811462000774575f84156200075f578287015190505b6200076b8582620006e1565b865550620007da565b601f19841662000784866200053b565b5f5b82811015620007ad5784890151825560018201915060208501945060208101905062000786565b86831015620007cd5784890151620007c9601f891682620006c3565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200086c57808604811115620008445762000843620007e2565b5b6001851615620008545780820291505b808102905062000864856200080f565b945062000824565b94509492505050565b5f8262000886576001905062000958565b8162000895575f905062000958565b8160018114620008ae5760028114620008b957620008ef565b600191505062000958565b60ff841115620008ce57620008cd620007e2565b5b8360020a915084821115620008e857620008e7620007e2565b5b5062000958565b5060208310610133831016604e8410600b8410161715620009295782820a905083811115620009235762000922620007e2565b5b62000958565b6200093884848460016200081b565b92509050818404811115620009525762000951620007e2565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620009778262000426565b915062000984836200095f565b9250620009b37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000875565b905092915050565b5f620009c78262000426565b9150620009d48362000426565b9250828202620009e48162000426565b91508282048414831517620009fe57620009fd620007e2565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000a4b601f8362000a05565b915062000a588262000a15565b602082019050919050565b5f6020820190508181035f83015262000a7c8162000a3d565b9050919050565b5f62000a8f8262000426565b915062000a9c8362000426565b925082820190508082111562000ab75762000ab6620007e2565b5b92915050565b62000ac88162000426565b82525050565b5f60208201905062000ae35f83018462000abd565b92915050565b6138ee8062000af75f395ff3fe608060405260043610610164575f3560e01c80637533d788116100d0578063a457c2d711610089578063d1deba1f11610063578063d1deba1f14610553578063d2fcb6d51461056f578063dd62ed3e14610597578063f2fde38b146105d357610164565b8063a457c2d7146104b1578063a9059cbb146104ed578063adc879e91461052957610164565b80637533d788146103a057806379cc6790146103dc5780638cef430d146104045780638da5cb5b146104205780638ee749121461044a57806395d89b411461048757610164565b8063313ce56711610122578063313ce5671461028457806339509351146102ae57806342966c68146102ea5780635b30d0811461031257806370a082311461034e578063715018a61461038a57610164565b80621d35671461016857806306fdde0314610190578063095ea7b3146101ba57806318160ddd146101f65780631c37a8221461022057806323b872dd14610248575b5f80fd5b348015610173575f80fd5b5061018e60048036038101906101899190611ea9565b6105fb565b005b34801561019b575f80fd5b506101a461082e565b6040516101b19190611fbf565b60405180910390f35b3480156101c5575f80fd5b506101e060048036038101906101db919061206c565b6108be565b6040516101ed91906120c4565b60405180910390f35b348015610201575f80fd5b5061020a6108e0565b60405161021791906120ec565b60405180910390f35b34801561022b575f80fd5b5061024660048036038101906102419190611ea9565b6108e9565b005b348015610253575f80fd5b5061026e60048036038101906102699190612105565b610969565b60405161027b91906120c4565b60405180910390f35b34801561028f575f80fd5b50610298610997565b6040516102a59190612170565b60405180910390f35b3480156102b9575f80fd5b506102d460048036038101906102cf919061206c565b61099f565b6040516102e191906120c4565b60405180910390f35b3480156102f5575f80fd5b50610310600480360381019061030b9190612189565b6109d5565b005b34801561031d575f80fd5b50610338600480360381019061033391906121b4565b6109e9565b60405161034591906120ec565b60405180910390f35b348015610359575f80fd5b50610374600480360381019061036f91906121f2565b610aec565b60405161038191906120ec565b60405180910390f35b348015610395575f80fd5b5061039e610b31565b005b3480156103ab575f80fd5b506103c660048036038101906103c1919061221d565b610b44565b6040516103d3919061229a565b60405180910390f35b3480156103e7575f80fd5b5061040260048036038101906103fd919061206c565b610bdf565b005b61041e600480360381019061041991906121b4565b610bff565b005b34801561042b575f80fd5b50610434610e84565b60405161044191906122c9565b60405180910390f35b348015610455575f80fd5b50610470600480360381019061046b91906122e2565b610eac565b60405161047e929190612366565b60405180910390f35b348015610492575f80fd5b5061049b610efa565b6040516104a89190611fbf565b60405180910390f35b3480156104bc575f80fd5b506104d760048036038101906104d2919061206c565b610f8a565b6040516104e491906120c4565b60405180910390f35b3480156104f8575f80fd5b50610513600480360381019061050e919061206c565b610fff565b60405161052091906120c4565b60405180910390f35b348015610534575f80fd5b5061053d611021565b60405161054a91906120ec565b60405180910390f35b61056d600480360381019061056891906123ea565b611027565b005b34801561057a575f80fd5b5061059560048036038101906105909190612534565b6111b7565b005b3480156105a2575f80fd5b506105bd60048036038101906105b891906125b2565b61129b565b6040516105ca91906120ec565b60405180910390f35b3480156105de575f80fd5b506105f960048036038101906105f491906121f2565b61131d565b005b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610653575f80fd5b60085f8561ffff1661ffff1681526020019081526020015f2080546106779061261d565b905083511480156106bb575060085f8561ffff1661ffff1681526020019081526020015f206040516106a991906126e9565b60405180910390208380519060200120145b6106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f19061276f565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b815260040161073994939291906127ab565b5f604051808303815f87803b158015610750575f80fd5b505af1925050508015610761575060015b61082757604051806040016040528082518152602001828051906020012081525060075f8661ffff1661ffff1681526020019081526020015f20846040516107a9919061282c565b90815260200160405180910390205f8467ffffffffffffffff1681526020019081526020015f205f820151815f0155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161081a94939291906127ab565b60405180910390a1610828565b5b50505050565b60606003805461083d9061261d565b80601f01602080910402602001604051908101604052809291908181526020018280546108699061261d565b80156108b45780601f1061088b576101008083540402835291602001916108b4565b820191905f5260205f20905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b5f806108c861139f565b90506108d58185856113a6565b600191505092915050565b5f600254905090565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e906128b2565b60405180910390fd5b61096384848484611569565b50505050565b5f8061097361139f565b9050610980858285611595565b61098b858585611620565b60019150509392505050565b5f6012905090565b5f806109a961139f565b90506109ca8185856109bb858961129b565b6109c591906128fd565b6113a6565b600191505092915050565b6109e66109e061139f565b8261188c565b50565b5f8033836040516020016109fe929190612930565b60405160208183030381529060405290505f600190505f81600954604051602001610a2a9291906129ab565b60405160208183030381529060405290505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830875f876040518663ffffffff1660e01b8152600401610a9e9594939291906129d6565b6040805180830381865afa158015610ab8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610adc9190612a49565b5090508094505050505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b39611a4f565b610b425f611acd565b565b6008602052805f5260405f205f915090508054610b609061261d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8c9061261d565b8015610bd75780601f10610bae57610100808354040283529160200191610bd7565b820191905f5260205f20905b815481529060010190602001808311610bba57829003601f168201915b505050505081565b610bf182610beb61139f565b83611595565b610bfb828261188c565b5050565b610c0982826109e9565b341015610c14575f80fd5b80610c1e33610aec565b1015610c28575f80fd5b610c32338261188c565b5f60085f8461ffff1661ffff1681526020019081526020015f208054610c579061261d565b905011610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612af7565b60405180910390fd5b5f3382604051602001610cad929190612930565b60405160208183030381529060405290505f600190505f81600954604051602001610cd99291906129ab565b60405160208183030381529060405290505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730875f876040518663ffffffff1660e01b8152600401610d4d9594939291906129d6565b6040805180830381865afa158015610d67573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8b9190612a49565b50905080341015610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890612bab565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c5803100348860085f8b61ffff1661ffff1681526020019081526020015f2088335f896040518863ffffffff1660e01b8152600401610e4e96959493929190612c6a565b5f604051808303818588803b158015610e65575f80fd5b505af1158015610e77573d5f803e3d5ffd5b5050505050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6007602052825f5260405f2082805160208101820180518482526020830160208501208183528095505050505050602052805f5260405f205f925092505050805f0154908060010154905082565b606060048054610f099061261d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f359061261d565b8015610f805780601f10610f5757610100808354040283529160200191610f80565b820191905f5260205f20905b815481529060010190602001808311610f6357829003601f168201915b5050505050905090565b5f80610f9461139f565b90505f610fa1828661129b565b905083811015610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90612d4e565b60405180910390fd5b610ff382868684036113a6565b60019250505092915050565b5f8061100961139f565b9050611016818585611620565b600191505092915050565b600a5481565b5f60075f8761ffff1661ffff1681526020019081526020015f208560405161104f919061282c565b90815260200160405180910390205f8567ffffffffffffffff1681526020019081526020015f2090505f801b8160010154036110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612ddc565b60405180910390fd5b805f0154838390501480156110ef5750806001015483836040516110e5929190612e1e565b6040518091039020145b61112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612e80565b60405180910390fd5b5f815f01819055505f801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611182959493929190612eca565b5f604051808303815f87803b158015611199575f80fd5b505af11580156111ab573d5f803e3d5ffd5b50505050505050505050565b6111bf611a4f565b818190508484905014611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90612f8d565b60405180910390fd5b5f5b848490508110156112945782828281811061122757611226612fab565b5b90506020028101906112399190612fe4565b60085f88888681811061124f5761124e612fab565b5b9050602002016020810190611264919061221d565b61ffff1661ffff1681526020019081526020015f2091826112869291906131db565b508080600101915050611209565b5050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611325611a4f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90613318565b60405180910390fd5b61139c81611acd565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906133a6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990613434565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161155c91906120ec565b60405180910390a3505050565b5f808280602001905181019061157f919061347c565b9150915061158d8282611b90565b505050505050565b5f6115a0848461129b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461161a578181101561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613504565b60405180910390fd5b61161984848484036113a6565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590613592565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613620565b60405180910390fd5b611707838383611cde565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561178a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611781906136ae565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161187391906120ec565b60405180910390a3611886848484611ce3565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f19061373c565b60405180910390fd5b611905825f83611cde565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f906137ca565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3791906120ec565b60405180910390a3611a4a835f84611ce3565b505050565b611a5761139f565b73ffffffffffffffffffffffffffffffffffffffff16611a75610e84565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613832565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf59061389a565b60405180910390fd5b611c095f8383611cde565b8060025f828254611c1a91906128fd565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cc791906120ec565b60405180910390a3611cda5f8383611ce3565b5050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f61ffff82169050919050565b611d0f81611cf9565b8114611d19575f80fd5b50565b5f81359050611d2a81611d06565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611d7e82611d38565b810181811067ffffffffffffffff82111715611d9d57611d9c611d48565b5b80604052505050565b5f611daf611ce8565b9050611dbb8282611d75565b919050565b5f67ffffffffffffffff821115611dda57611dd9611d48565b5b611de382611d38565b9050602081019050919050565b828183375f83830152505050565b5f611e10611e0b84611dc0565b611da6565b905082815260208101848484011115611e2c57611e2b611d34565b5b611e37848285611df0565b509392505050565b5f82601f830112611e5357611e52611d30565b5b8135611e63848260208601611dfe565b91505092915050565b5f67ffffffffffffffff82169050919050565b611e8881611e6c565b8114611e92575f80fd5b50565b5f81359050611ea381611e7f565b92915050565b5f805f8060808587031215611ec157611ec0611cf1565b5b5f611ece87828801611d1c565b945050602085013567ffffffffffffffff811115611eef57611eee611cf5565b5b611efb87828801611e3f565b9350506040611f0c87828801611e95565b925050606085013567ffffffffffffffff811115611f2d57611f2c611cf5565b5b611f3987828801611e3f565b91505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f7c578082015181840152602081019050611f61565b5f8484015250505050565b5f611f9182611f45565b611f9b8185611f4f565b9350611fab818560208601611f5f565b611fb481611d38565b840191505092915050565b5f6020820190508181035f830152611fd78184611f87565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61200882611fdf565b9050919050565b61201881611ffe565b8114612022575f80fd5b50565b5f813590506120338161200f565b92915050565b5f819050919050565b61204b81612039565b8114612055575f80fd5b50565b5f8135905061206681612042565b92915050565b5f806040838503121561208257612081611cf1565b5b5f61208f85828601612025565b92505060206120a085828601612058565b9150509250929050565b5f8115159050919050565b6120be816120aa565b82525050565b5f6020820190506120d75f8301846120b5565b92915050565b6120e681612039565b82525050565b5f6020820190506120ff5f8301846120dd565b92915050565b5f805f6060848603121561211c5761211b611cf1565b5b5f61212986828701612025565b935050602061213a86828701612025565b925050604061214b86828701612058565b9150509250925092565b5f60ff82169050919050565b61216a81612155565b82525050565b5f6020820190506121835f830184612161565b92915050565b5f6020828403121561219e5761219d611cf1565b5b5f6121ab84828501612058565b91505092915050565b5f80604083850312156121ca576121c9611cf1565b5b5f6121d785828601611d1c565b92505060206121e885828601612058565b9150509250929050565b5f6020828403121561220757612206611cf1565b5b5f61221484828501612025565b91505092915050565b5f6020828403121561223257612231611cf1565b5b5f61223f84828501611d1c565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f61226c82612248565b6122768185612252565b9350612286818560208601611f5f565b61228f81611d38565b840191505092915050565b5f6020820190508181035f8301526122b28184612262565b905092915050565b6122c381611ffe565b82525050565b5f6020820190506122dc5f8301846122ba565b92915050565b5f805f606084860312156122f9576122f8611cf1565b5b5f61230686828701611d1c565b935050602084013567ffffffffffffffff81111561232757612326611cf5565b5b61233386828701611e3f565b925050604061234486828701612058565b9150509250925092565b5f819050919050565b6123608161234e565b82525050565b5f6040820190506123795f8301856120dd565b6123866020830184612357565b9392505050565b5f80fd5b5f80fd5b5f8083601f8401126123aa576123a9611d30565b5b8235905067ffffffffffffffff8111156123c7576123c661238d565b5b6020830191508360018202830111156123e3576123e2612391565b5b9250929050565b5f805f805f6080868803121561240357612402611cf1565b5b5f61241088828901611d1c565b955050602086013567ffffffffffffffff81111561243157612430611cf5565b5b61243d88828901611e3f565b945050604061244e88828901611e95565b935050606086013567ffffffffffffffff81111561246f5761246e611cf5565b5b61247b88828901612395565b92509250509295509295909350565b5f8083601f84011261249f5761249e611d30565b5b8235905067ffffffffffffffff8111156124bc576124bb61238d565b5b6020830191508360208202830111156124d8576124d7612391565b5b9250929050565b5f8083601f8401126124f4576124f3611d30565b5b8235905067ffffffffffffffff8111156125115761251061238d565b5b60208301915083602082028301111561252d5761252c612391565b5b9250929050565b5f805f806040858703121561254c5761254b611cf1565b5b5f85013567ffffffffffffffff81111561256957612568611cf5565b5b6125758782880161248a565b9450945050602085013567ffffffffffffffff81111561259857612597611cf5565b5b6125a4878288016124df565b925092505092959194509250565b5f80604083850312156125c8576125c7611cf1565b5b5f6125d585828601612025565b92505060206125e685828601612025565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061263457607f821691505b602082108103612647576126466125f0565b5b50919050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f81546126758161261d565b61267f818661264d565b9450600182165f811461269957600181146126ae576126e0565b60ff19831686528115158202860193506126e0565b6126b785612657565b5f5b838110156126d8578154818901526001820191506020810190506126b9565b838801955050505b50505092915050565b5f6126f48284612669565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f755f8201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b5f612759603483611f4f565b9150612764826126ff565b604082019050919050565b5f6020820190508181035f8301526127868161274d565b9050919050565b61279681611cf9565b82525050565b6127a581611e6c565b82525050565b5f6080820190506127be5f83018761278d565b81810360208301526127d08186612262565b90506127df604083018561279c565b81810360608301526127f18184612262565b905095945050505050565b5f61280682612248565b612810818561264d565b9350612820818560208601611f5f565b80840191505092915050565b5f61283782846127fc565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d7573745f8201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b5f61289c602b83611f4f565b91506128a782612842565b604082019050919050565b5f6020820190508181035f8301526128c981612890565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61290782612039565b915061291283612039565b925082820190508082111561292a576129296128d0565b5b92915050565b5f6040820190506129435f8301856122ba565b61295060208301846120dd565b9392505050565b5f8160f01b9050919050565b5f61296d82612957565b9050919050565b61298561298082611cf9565b612963565b82525050565b5f819050919050565b6129a56129a082612039565b61298b565b82525050565b5f6129b68285612974565b6002820191506129c68284612994565b6020820191508190509392505050565b5f60a0820190506129e95f83018861278d565b6129f660208301876122ba565b8181036040830152612a088186612262565b9050612a1760608301856120b5565b8181036080830152612a298184612262565b90509695505050505050565b5f81519050612a4381612042565b92915050565b5f8060408385031215612a5f57612a5e611cf1565b5b5f612a6c85828601612a35565b9250506020612a7d85828601612a35565b9150509250929050565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c615f8201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b5f612ae1602e83611f4f565b9150612aec82612a87565b604082019050919050565b5f6020820190508181035f830152612b0e81612ad5565b9050919050565b7f4c443a206d73672e76616c7565206e6f7420656e6f75676820746f20636f76655f8201527f72206d6573736167654665652e2053656e642067617320666f72206d6573736160208201527f6765206665657300000000000000000000000000000000000000000000000000604082015250565b5f612b95604783611f4f565b9150612ba082612b15565b606082019050919050565b5f6020820190508181035f830152612bc281612b89565b9050919050565b5f8154612bd58161261d565b612bdf8186612252565b9450600182165f8114612bf95760018114612c0f57612c41565b60ff198316865281151560200286019350612c41565b612c1885612657565b5f5b83811015612c3957815481890152600182019150602081019050612c1a565b808801955050505b50505092915050565b5f612c5482611fdf565b9050919050565b612c6481612c4a565b82525050565b5f60c082019050612c7d5f83018961278d565b8181036020830152612c8f8188612bc9565b90508181036040830152612ca38187612262565b9050612cb26060830186612c5b565b612cbf60808301856122ba565b81810360a0830152612cd18184612262565b9050979650505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d38602583611f4f565b9150612d4382612cde565b604082019050919050565b5f6020820190508181035f830152612d6581612d2c565b9050919050565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d5f8201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b5f612dc6602683611f4f565b9150612dd182612d6c565b604082019050919050565b5f6020820190508181035f830152612df381612dba565b9050919050565b5f612e05838561264d565b9350612e12838584611df0565b82840190509392505050565b5f612e2a828486612dfa565b91508190509392505050565b7f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000005f82015250565b5f612e6a601a83611f4f565b9150612e7582612e36565b602082019050919050565b5f6020820190508181035f830152612e9781612e5e565b9050919050565b5f612ea98385612252565b9350612eb6838584611df0565b612ebf83611d38565b840190509392505050565b5f608082019050612edd5f83018861278d565b8181036020830152612eef8187612262565b9050612efe604083018661279c565b8181036060830152612f11818486612e9e565b90509695505050505050565b7f436861696e2049447320616e642072656d6f746573206c656e677468206d69735f8201527f6d61746368000000000000000000000000000000000000000000000000000000602082015250565b5f612f77602583611f4f565b9150612f8282612f1d565b604082019050919050565b5f6020820190508181035f830152612fa481612f6b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f80fd5b5f80fd5b5f80fd5b5f808335600160200384360303811261300057612fff612fd8565b5b80840192508235915067ffffffffffffffff82111561302257613021612fdc565b5b60208301925060018202360383131561303e5761303d612fe0565b5b509250929050565b5f82905092915050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261309a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261305f565b6130a4868361305f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6130df6130da6130d584612039565b6130bc565b612039565b9050919050565b5f819050919050565b6130f8836130c5565b61310c613104826130e6565b84845461306b565b825550505050565b5f90565b613120613114565b61312b8184846130ef565b505050565b5b8181101561314e576131435f82613118565b600181019050613131565b5050565b601f8211156131935761316481612657565b61316d84613050565b8101602085101561317c578190505b61319061318885613050565b830182613130565b50505b505050565b5f82821c905092915050565b5f6131b35f1984600802613198565b1980831691505092915050565b5f6131cb83836131a4565b9150826002028217905092915050565b6131e58383613046565b67ffffffffffffffff8111156131fe576131fd611d48565b5b613208825461261d565b613213828285613152565b5f601f831160018114613240575f841561322e578287013590505b61323885826131c0565b86555061329f565b601f19841661324e86612657565b5f5b8281101561327557848901358255600182019150602085019450602081019050613250565b86831015613292578489013561328e601f8916826131a4565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613302602683611f4f565b915061330d826132a8565b604082019050919050565b5f6020820190508181035f83015261332f816132f6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613390602483611f4f565b915061339b82613336565b604082019050919050565b5f6020820190508181035f8301526133bd81613384565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61341e602283611f4f565b9150613429826133c4565b604082019050919050565b5f6020820190508181035f83015261344b81613412565b9050919050565b61345b81612c4a565b8114613465575f80fd5b50565b5f8151905061347681613452565b92915050565b5f806040838503121561349257613491611cf1565b5b5f61349f85828601613468565b92505060206134b085828601612a35565b9150509250929050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6134ee601d83611f4f565b91506134f9826134ba565b602082019050919050565b5f6020820190508181035f83015261351b816134e2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61357c602583611f4f565b915061358782613522565b604082019050919050565b5f6020820190508181035f8301526135a981613570565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61360a602383611f4f565b9150613615826135b0565b604082019050919050565b5f6020820190508181035f830152613637816135fe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613698602683611f4f565b91506136a38261363e565b604082019050919050565b5f6020820190508181035f8301526136c58161368c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613726602183611f4f565b9150613731826136cc565b604082019050919050565b5f6020820190508181035f8301526137538161371a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6137b4602283611f4f565b91506137bf8261375a565b604082019050919050565b5f6020820190508181035f8301526137e1816137a8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61381c602083611f4f565b9150613827826137e8565b602082019050919050565b5f6020820190508181035f83015261384981613810565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613884601f83611f4f565b915061388f82613850565b602082019050919050565b5f6020820190508181035f8301526138b181613878565b905091905056fea2646970667358221220f399e00c6bd3120f277b7f687f8b61db71adf3c04a6471467dc2425b1554ff7564736f6c6343000816003300000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000065

Deployed Bytecode

0x608060405260043610610164575f3560e01c80637533d788116100d0578063a457c2d711610089578063d1deba1f11610063578063d1deba1f14610553578063d2fcb6d51461056f578063dd62ed3e14610597578063f2fde38b146105d357610164565b8063a457c2d7146104b1578063a9059cbb146104ed578063adc879e91461052957610164565b80637533d788146103a057806379cc6790146103dc5780638cef430d146104045780638da5cb5b146104205780638ee749121461044a57806395d89b411461048757610164565b8063313ce56711610122578063313ce5671461028457806339509351146102ae57806342966c68146102ea5780635b30d0811461031257806370a082311461034e578063715018a61461038a57610164565b80621d35671461016857806306fdde0314610190578063095ea7b3146101ba57806318160ddd146101f65780631c37a8221461022057806323b872dd14610248575b5f80fd5b348015610173575f80fd5b5061018e60048036038101906101899190611ea9565b6105fb565b005b34801561019b575f80fd5b506101a461082e565b6040516101b19190611fbf565b60405180910390f35b3480156101c5575f80fd5b506101e060048036038101906101db919061206c565b6108be565b6040516101ed91906120c4565b60405180910390f35b348015610201575f80fd5b5061020a6108e0565b60405161021791906120ec565b60405180910390f35b34801561022b575f80fd5b5061024660048036038101906102419190611ea9565b6108e9565b005b348015610253575f80fd5b5061026e60048036038101906102699190612105565b610969565b60405161027b91906120c4565b60405180910390f35b34801561028f575f80fd5b50610298610997565b6040516102a59190612170565b60405180910390f35b3480156102b9575f80fd5b506102d460048036038101906102cf919061206c565b61099f565b6040516102e191906120c4565b60405180910390f35b3480156102f5575f80fd5b50610310600480360381019061030b9190612189565b6109d5565b005b34801561031d575f80fd5b50610338600480360381019061033391906121b4565b6109e9565b60405161034591906120ec565b60405180910390f35b348015610359575f80fd5b50610374600480360381019061036f91906121f2565b610aec565b60405161038191906120ec565b60405180910390f35b348015610395575f80fd5b5061039e610b31565b005b3480156103ab575f80fd5b506103c660048036038101906103c1919061221d565b610b44565b6040516103d3919061229a565b60405180910390f35b3480156103e7575f80fd5b5061040260048036038101906103fd919061206c565b610bdf565b005b61041e600480360381019061041991906121b4565b610bff565b005b34801561042b575f80fd5b50610434610e84565b60405161044191906122c9565b60405180910390f35b348015610455575f80fd5b50610470600480360381019061046b91906122e2565b610eac565b60405161047e929190612366565b60405180910390f35b348015610492575f80fd5b5061049b610efa565b6040516104a89190611fbf565b60405180910390f35b3480156104bc575f80fd5b506104d760048036038101906104d2919061206c565b610f8a565b6040516104e491906120c4565b60405180910390f35b3480156104f8575f80fd5b50610513600480360381019061050e919061206c565b610fff565b60405161052091906120c4565b60405180910390f35b348015610534575f80fd5b5061053d611021565b60405161054a91906120ec565b60405180910390f35b61056d600480360381019061056891906123ea565b611027565b005b34801561057a575f80fd5b5061059560048036038101906105909190612534565b6111b7565b005b3480156105a2575f80fd5b506105bd60048036038101906105b891906125b2565b61129b565b6040516105ca91906120ec565b60405180910390f35b3480156105de575f80fd5b506105f960048036038101906105f491906121f2565b61131d565b005b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610653575f80fd5b60085f8561ffff1661ffff1681526020019081526020015f2080546106779061261d565b905083511480156106bb575060085f8561ffff1661ffff1681526020019081526020015f206040516106a991906126e9565b60405180910390208380519060200120145b6106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f19061276f565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b815260040161073994939291906127ab565b5f604051808303815f87803b158015610750575f80fd5b505af1925050508015610761575060015b61082757604051806040016040528082518152602001828051906020012081525060075f8661ffff1661ffff1681526020019081526020015f20846040516107a9919061282c565b90815260200160405180910390205f8467ffffffffffffffff1681526020019081526020015f205f820151815f0155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161081a94939291906127ab565b60405180910390a1610828565b5b50505050565b60606003805461083d9061261d565b80601f01602080910402602001604051908101604052809291908181526020018280546108699061261d565b80156108b45780601f1061088b576101008083540402835291602001916108b4565b820191905f5260205f20905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b5f806108c861139f565b90506108d58185856113a6565b600191505092915050565b5f600254905090565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e906128b2565b60405180910390fd5b61096384848484611569565b50505050565b5f8061097361139f565b9050610980858285611595565b61098b858585611620565b60019150509392505050565b5f6012905090565b5f806109a961139f565b90506109ca8185856109bb858961129b565b6109c591906128fd565b6113a6565b600191505092915050565b6109e66109e061139f565b8261188c565b50565b5f8033836040516020016109fe929190612930565b60405160208183030381529060405290505f600190505f81600954604051602001610a2a9291906129ab565b60405160208183030381529060405290505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830875f876040518663ffffffff1660e01b8152600401610a9e9594939291906129d6565b6040805180830381865afa158015610ab8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610adc9190612a49565b5090508094505050505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b39611a4f565b610b425f611acd565b565b6008602052805f5260405f205f915090508054610b609061261d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8c9061261d565b8015610bd75780601f10610bae57610100808354040283529160200191610bd7565b820191905f5260205f20905b815481529060010190602001808311610bba57829003601f168201915b505050505081565b610bf182610beb61139f565b83611595565b610bfb828261188c565b5050565b610c0982826109e9565b341015610c14575f80fd5b80610c1e33610aec565b1015610c28575f80fd5b610c32338261188c565b5f60085f8461ffff1661ffff1681526020019081526020015f208054610c579061261d565b905011610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612af7565b60405180910390fd5b5f3382604051602001610cad929190612930565b60405160208183030381529060405290505f600190505f81600954604051602001610cd99291906129ab565b60405160208183030381529060405290505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730875f876040518663ffffffff1660e01b8152600401610d4d9594939291906129d6565b6040805180830381865afa158015610d67573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8b9190612a49565b50905080341015610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890612bab565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c5803100348860085f8b61ffff1661ffff1681526020019081526020015f2088335f896040518863ffffffff1660e01b8152600401610e4e96959493929190612c6a565b5f604051808303818588803b158015610e65575f80fd5b505af1158015610e77573d5f803e3d5ffd5b5050505050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6007602052825f5260405f2082805160208101820180518482526020830160208501208183528095505050505050602052805f5260405f205f925092505050805f0154908060010154905082565b606060048054610f099061261d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f359061261d565b8015610f805780601f10610f5757610100808354040283529160200191610f80565b820191905f5260205f20905b815481529060010190602001808311610f6357829003601f168201915b5050505050905090565b5f80610f9461139f565b90505f610fa1828661129b565b905083811015610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90612d4e565b60405180910390fd5b610ff382868684036113a6565b60019250505092915050565b5f8061100961139f565b9050611016818585611620565b600191505092915050565b600a5481565b5f60075f8761ffff1661ffff1681526020019081526020015f208560405161104f919061282c565b90815260200160405180910390205f8567ffffffffffffffff1681526020019081526020015f2090505f801b8160010154036110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612ddc565b60405180910390fd5b805f0154838390501480156110ef5750806001015483836040516110e5929190612e1e565b6040518091039020145b61112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612e80565b60405180910390fd5b5f815f01819055505f801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611182959493929190612eca565b5f604051808303815f87803b158015611199575f80fd5b505af11580156111ab573d5f803e3d5ffd5b50505050505050505050565b6111bf611a4f565b818190508484905014611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90612f8d565b60405180910390fd5b5f5b848490508110156112945782828281811061122757611226612fab565b5b90506020028101906112399190612fe4565b60085f88888681811061124f5761124e612fab565b5b9050602002016020810190611264919061221d565b61ffff1661ffff1681526020019081526020015f2091826112869291906131db565b508080600101915050611209565b5050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611325611a4f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90613318565b60405180910390fd5b61139c81611acd565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906133a6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990613434565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161155c91906120ec565b60405180910390a3505050565b5f808280602001905181019061157f919061347c565b9150915061158d8282611b90565b505050505050565b5f6115a0848461129b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461161a578181101561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613504565b60405180910390fd5b61161984848484036113a6565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590613592565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613620565b60405180910390fd5b611707838383611cde565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561178a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611781906136ae565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161187391906120ec565b60405180910390a3611886848484611ce3565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f19061373c565b60405180910390fd5b611905825f83611cde565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f906137ca565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3791906120ec565b60405180910390a3611a4a835f84611ce3565b505050565b611a5761139f565b73ffffffffffffffffffffffffffffffffffffffff16611a75610e84565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613832565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf59061389a565b60405180910390fd5b611c095f8383611cde565b8060025f828254611c1a91906128fd565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cc791906120ec565b60405180910390a3611cda5f8383611ce3565b5050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f61ffff82169050919050565b611d0f81611cf9565b8114611d19575f80fd5b50565b5f81359050611d2a81611d06565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611d7e82611d38565b810181811067ffffffffffffffff82111715611d9d57611d9c611d48565b5b80604052505050565b5f611daf611ce8565b9050611dbb8282611d75565b919050565b5f67ffffffffffffffff821115611dda57611dd9611d48565b5b611de382611d38565b9050602081019050919050565b828183375f83830152505050565b5f611e10611e0b84611dc0565b611da6565b905082815260208101848484011115611e2c57611e2b611d34565b5b611e37848285611df0565b509392505050565b5f82601f830112611e5357611e52611d30565b5b8135611e63848260208601611dfe565b91505092915050565b5f67ffffffffffffffff82169050919050565b611e8881611e6c565b8114611e92575f80fd5b50565b5f81359050611ea381611e7f565b92915050565b5f805f8060808587031215611ec157611ec0611cf1565b5b5f611ece87828801611d1c565b945050602085013567ffffffffffffffff811115611eef57611eee611cf5565b5b611efb87828801611e3f565b9350506040611f0c87828801611e95565b925050606085013567ffffffffffffffff811115611f2d57611f2c611cf5565b5b611f3987828801611e3f565b91505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f7c578082015181840152602081019050611f61565b5f8484015250505050565b5f611f9182611f45565b611f9b8185611f4f565b9350611fab818560208601611f5f565b611fb481611d38565b840191505092915050565b5f6020820190508181035f830152611fd78184611f87565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61200882611fdf565b9050919050565b61201881611ffe565b8114612022575f80fd5b50565b5f813590506120338161200f565b92915050565b5f819050919050565b61204b81612039565b8114612055575f80fd5b50565b5f8135905061206681612042565b92915050565b5f806040838503121561208257612081611cf1565b5b5f61208f85828601612025565b92505060206120a085828601612058565b9150509250929050565b5f8115159050919050565b6120be816120aa565b82525050565b5f6020820190506120d75f8301846120b5565b92915050565b6120e681612039565b82525050565b5f6020820190506120ff5f8301846120dd565b92915050565b5f805f6060848603121561211c5761211b611cf1565b5b5f61212986828701612025565b935050602061213a86828701612025565b925050604061214b86828701612058565b9150509250925092565b5f60ff82169050919050565b61216a81612155565b82525050565b5f6020820190506121835f830184612161565b92915050565b5f6020828403121561219e5761219d611cf1565b5b5f6121ab84828501612058565b91505092915050565b5f80604083850312156121ca576121c9611cf1565b5b5f6121d785828601611d1c565b92505060206121e885828601612058565b9150509250929050565b5f6020828403121561220757612206611cf1565b5b5f61221484828501612025565b91505092915050565b5f6020828403121561223257612231611cf1565b5b5f61223f84828501611d1c565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f61226c82612248565b6122768185612252565b9350612286818560208601611f5f565b61228f81611d38565b840191505092915050565b5f6020820190508181035f8301526122b28184612262565b905092915050565b6122c381611ffe565b82525050565b5f6020820190506122dc5f8301846122ba565b92915050565b5f805f606084860312156122f9576122f8611cf1565b5b5f61230686828701611d1c565b935050602084013567ffffffffffffffff81111561232757612326611cf5565b5b61233386828701611e3f565b925050604061234486828701612058565b9150509250925092565b5f819050919050565b6123608161234e565b82525050565b5f6040820190506123795f8301856120dd565b6123866020830184612357565b9392505050565b5f80fd5b5f80fd5b5f8083601f8401126123aa576123a9611d30565b5b8235905067ffffffffffffffff8111156123c7576123c661238d565b5b6020830191508360018202830111156123e3576123e2612391565b5b9250929050565b5f805f805f6080868803121561240357612402611cf1565b5b5f61241088828901611d1c565b955050602086013567ffffffffffffffff81111561243157612430611cf5565b5b61243d88828901611e3f565b945050604061244e88828901611e95565b935050606086013567ffffffffffffffff81111561246f5761246e611cf5565b5b61247b88828901612395565b92509250509295509295909350565b5f8083601f84011261249f5761249e611d30565b5b8235905067ffffffffffffffff8111156124bc576124bb61238d565b5b6020830191508360208202830111156124d8576124d7612391565b5b9250929050565b5f8083601f8401126124f4576124f3611d30565b5b8235905067ffffffffffffffff8111156125115761251061238d565b5b60208301915083602082028301111561252d5761252c612391565b5b9250929050565b5f805f806040858703121561254c5761254b611cf1565b5b5f85013567ffffffffffffffff81111561256957612568611cf5565b5b6125758782880161248a565b9450945050602085013567ffffffffffffffff81111561259857612597611cf5565b5b6125a4878288016124df565b925092505092959194509250565b5f80604083850312156125c8576125c7611cf1565b5b5f6125d585828601612025565b92505060206125e685828601612025565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061263457607f821691505b602082108103612647576126466125f0565b5b50919050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f81546126758161261d565b61267f818661264d565b9450600182165f811461269957600181146126ae576126e0565b60ff19831686528115158202860193506126e0565b6126b785612657565b5f5b838110156126d8578154818901526001820191506020810190506126b9565b838801955050505b50505092915050565b5f6126f48284612669565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f755f8201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b5f612759603483611f4f565b9150612764826126ff565b604082019050919050565b5f6020820190508181035f8301526127868161274d565b9050919050565b61279681611cf9565b82525050565b6127a581611e6c565b82525050565b5f6080820190506127be5f83018761278d565b81810360208301526127d08186612262565b90506127df604083018561279c565b81810360608301526127f18184612262565b905095945050505050565b5f61280682612248565b612810818561264d565b9350612820818560208601611f5f565b80840191505092915050565b5f61283782846127fc565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d7573745f8201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b5f61289c602b83611f4f565b91506128a782612842565b604082019050919050565b5f6020820190508181035f8301526128c981612890565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61290782612039565b915061291283612039565b925082820190508082111561292a576129296128d0565b5b92915050565b5f6040820190506129435f8301856122ba565b61295060208301846120dd565b9392505050565b5f8160f01b9050919050565b5f61296d82612957565b9050919050565b61298561298082611cf9565b612963565b82525050565b5f819050919050565b6129a56129a082612039565b61298b565b82525050565b5f6129b68285612974565b6002820191506129c68284612994565b6020820191508190509392505050565b5f60a0820190506129e95f83018861278d565b6129f660208301876122ba565b8181036040830152612a088186612262565b9050612a1760608301856120b5565b8181036080830152612a298184612262565b90509695505050505050565b5f81519050612a4381612042565b92915050565b5f8060408385031215612a5f57612a5e611cf1565b5b5f612a6c85828601612a35565b9250506020612a7d85828601612a35565b9150509250929050565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c615f8201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b5f612ae1602e83611f4f565b9150612aec82612a87565b604082019050919050565b5f6020820190508181035f830152612b0e81612ad5565b9050919050565b7f4c443a206d73672e76616c7565206e6f7420656e6f75676820746f20636f76655f8201527f72206d6573736167654665652e2053656e642067617320666f72206d6573736160208201527f6765206665657300000000000000000000000000000000000000000000000000604082015250565b5f612b95604783611f4f565b9150612ba082612b15565b606082019050919050565b5f6020820190508181035f830152612bc281612b89565b9050919050565b5f8154612bd58161261d565b612bdf8186612252565b9450600182165f8114612bf95760018114612c0f57612c41565b60ff198316865281151560200286019350612c41565b612c1885612657565b5f5b83811015612c3957815481890152600182019150602081019050612c1a565b808801955050505b50505092915050565b5f612c5482611fdf565b9050919050565b612c6481612c4a565b82525050565b5f60c082019050612c7d5f83018961278d565b8181036020830152612c8f8188612bc9565b90508181036040830152612ca38187612262565b9050612cb26060830186612c5b565b612cbf60808301856122ba565b81810360a0830152612cd18184612262565b9050979650505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d38602583611f4f565b9150612d4382612cde565b604082019050919050565b5f6020820190508181035f830152612d6581612d2c565b9050919050565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d5f8201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b5f612dc6602683611f4f565b9150612dd182612d6c565b604082019050919050565b5f6020820190508181035f830152612df381612dba565b9050919050565b5f612e05838561264d565b9350612e12838584611df0565b82840190509392505050565b5f612e2a828486612dfa565b91508190509392505050565b7f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000005f82015250565b5f612e6a601a83611f4f565b9150612e7582612e36565b602082019050919050565b5f6020820190508181035f830152612e9781612e5e565b9050919050565b5f612ea98385612252565b9350612eb6838584611df0565b612ebf83611d38565b840190509392505050565b5f608082019050612edd5f83018861278d565b8181036020830152612eef8187612262565b9050612efe604083018661279c565b8181036060830152612f11818486612e9e565b90509695505050505050565b7f436861696e2049447320616e642072656d6f746573206c656e677468206d69735f8201527f6d61746368000000000000000000000000000000000000000000000000000000602082015250565b5f612f77602583611f4f565b9150612f8282612f1d565b604082019050919050565b5f6020820190508181035f830152612fa481612f6b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f80fd5b5f80fd5b5f80fd5b5f808335600160200384360303811261300057612fff612fd8565b5b80840192508235915067ffffffffffffffff82111561302257613021612fdc565b5b60208301925060018202360383131561303e5761303d612fe0565b5b509250929050565b5f82905092915050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261309a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261305f565b6130a4868361305f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6130df6130da6130d584612039565b6130bc565b612039565b9050919050565b5f819050919050565b6130f8836130c5565b61310c613104826130e6565b84845461306b565b825550505050565b5f90565b613120613114565b61312b8184846130ef565b505050565b5b8181101561314e576131435f82613118565b600181019050613131565b5050565b601f8211156131935761316481612657565b61316d84613050565b8101602085101561317c578190505b61319061318885613050565b830182613130565b50505b505050565b5f82821c905092915050565b5f6131b35f1984600802613198565b1980831691505092915050565b5f6131cb83836131a4565b9150826002028217905092915050565b6131e58383613046565b67ffffffffffffffff8111156131fe576131fd611d48565b5b613208825461261d565b613213828285613152565b5f601f831160018114613240575f841561322e578287013590505b61323885826131c0565b86555061329f565b601f19841661324e86612657565b5f5b8281101561327557848901358255600182019150602085019450602081019050613250565b86831015613292578489013561328e601f8916826131a4565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613302602683611f4f565b915061330d826132a8565b604082019050919050565b5f6020820190508181035f83015261332f816132f6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613390602483611f4f565b915061339b82613336565b604082019050919050565b5f6020820190508181035f8301526133bd81613384565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61341e602283611f4f565b9150613429826133c4565b604082019050919050565b5f6020820190508181035f83015261344b81613412565b9050919050565b61345b81612c4a565b8114613465575f80fd5b50565b5f8151905061347681613452565b92915050565b5f806040838503121561349257613491611cf1565b5b5f61349f85828601613468565b92505060206134b085828601612a35565b9150509250929050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6134ee601d83611f4f565b91506134f9826134ba565b602082019050919050565b5f6020820190508181035f83015261351b816134e2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61357c602583611f4f565b915061358782613522565b604082019050919050565b5f6020820190508181035f8301526135a981613570565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61360a602383611f4f565b9150613615826135b0565b604082019050919050565b5f6020820190508181035f830152613637816135fe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613698602683611f4f565b91506136a38261363e565b604082019050919050565b5f6020820190508181035f8301526136c58161368c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613726602183611f4f565b9150613731826136cc565b604082019050919050565b5f6020820190508181035f8301526137538161371a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6137b4602283611f4f565b91506137bf8261375a565b604082019050919050565b5f6020820190508181035f8301526137e1816137a8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61381c602083611f4f565b9150613827826137e8565b602082019050919050565b5f6020820190508181035f83015261384981613810565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613884601f83611f4f565b915061388f82613850565b602082019050919050565b5f6020820190508181035f8301526138b181613878565b905091905056fea2646970667358221220f399e00c6bd3120f277b7f687f8b61db71adf3c04a6471467dc2425b1554ff7564736f6c63430008160033

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

00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000065

-----Decoded View---------------
Arg [0] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [1] : _chainID (uint256): 101

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000065


Deployed Bytecode Sourcemap

26946:2759:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24441:775;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9392:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11752:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10521:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25224:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12533:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10363:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13203:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20968:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27351:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10692:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2847:103;;;;;;;;;;;;;:::i;:::-;;24287:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21378:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27779:1575;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2206:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24190:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;9611:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13944:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11025:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27069:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25950:618;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26576:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11281:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3105:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24441:775;24603:8;;;;;;;;;;;24581:31;;:10;:31;;;24573:40;;;;;;24724:19;:32;24744:11;24724:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;24702:11;:18;:61;:134;;;;;24803:19;:32;24823:11;24803:32;;;;;;;;;;;;;;;24793:43;;;;;;:::i;:::-;;;;;;;;24777:11;24767:22;;;;;;:69;24702:134;24694:213;;;;;;;;;;;;:::i;:::-;;;;;;;;;24922:4;:16;;;24939:11;24952;24965:6;24973:8;24922:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24918:291;;25068:52;;;;;;;;25083:8;:15;25068:52;;;;25110:8;25100:19;;;;;;25068:52;;;25017:14;:27;25032:11;25017:27;;;;;;;;;;;;;;;25045:11;25017:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;25058:6;25017:48;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;;;;;25140:57;25154:11;25167;25180:6;25188:8;25140:57;;;;;;;;;:::i;:::-;;;;;;;;24918:291;;;;24441:775;;;;:::o;9392:100::-;9446:13;9479:5;9472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9392:100;:::o;11752:201::-;11835:4;11852:13;11868:12;:10;:12::i;:::-;11852:28;;11891:32;11900:5;11907:7;11916:6;11891:8;:32::i;:::-;11941:4;11934:11;;;11752:201;;;;:::o;10521:108::-;10582:7;10609:12;;10602:19;;10521:108;:::o;25224:280::-;25377:4;25355:27;;:10;:27;;;25347:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;25441:55;25453:11;25466;25479:6;25487:8;25441:10;:55::i;:::-;25224:280;;;;:::o;12533:261::-;12630:4;12647:15;12665:12;:10;:12::i;:::-;12647:30;;12688:38;12704:4;12710:7;12719:6;12688:15;:38::i;:::-;12737:27;12747:4;12753:2;12757:6;12737:9;:27::i;:::-;12782:4;12775:11;;;12533:261;;;;;:::o;10363:93::-;10421:5;10446:2;10439:9;;10363:93;:::o;13203:238::-;13291:4;13308:13;13324:12;:10;:12::i;:::-;13308:28;;13347:64;13356:5;13363:7;13400:10;13372:25;13382:5;13389:7;13372:9;:25::i;:::-;:38;;;;:::i;:::-;13347:8;:64::i;:::-;13429:4;13422:11;;;13203:238;;;;:::o;20968:91::-;21024:27;21030:12;:10;:12::i;:::-;21044:6;21024:5;:27::i;:::-;20968:91;:::o;27351:422::-;27431:4;27448:20;27482:10;27495:5;27471:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27448:53;;27514:14;27531:1;27514:18;;27543:26;27589:7;27598:26;;27572:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27543:82;;27639:15;27660:8;;;;;;;;;;;:21;;;27682:8;27700:4;27707:7;27716:5;27723:13;27660:77;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27638:99;;;27755:10;27748:17;;;;;;27351:422;;;;:::o;10692:127::-;10766:7;10793:9;:18;10803:7;10793:18;;;;;;;;;;;;;;;;10786:25;;10692:127;;;:::o;2847:103::-;2092:13;:11;:13::i;:::-;2912:30:::1;2939:1;2912:18;:30::i;:::-;2847:103::o:0;24287:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21378:164::-;21455:46;21471:7;21480:12;:10;:12::i;:::-;21494:6;21455:15;:46::i;:::-;21512:22;21518:7;21527:6;21512:5;:22::i;:::-;21378:164;;:::o;27779:1575::-;27888:34;27905:8;27916:5;27888:16;:34::i;:::-;27875:9;:47;;27867:56;;;;;;27967:5;27942:21;27952:10;27942:9;:21::i;:::-;:30;;27934:39;;;;;;27984:25;27990:10;28003:5;27984;:25::i;:::-;28067:1;28028:19;:29;28048:8;28028:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;28020:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;28201:20;28235:10;28248:5;28224:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28201:53;;28340:14;28357:1;28340:18;;28369:26;28415:7;28424:26;;28398:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28369:82;;28606:15;28627:8;;;;;;;;;;;:21;;;28649:8;28667:4;28674:7;28683:5;28690:13;28627:77;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28605:99;;;28746:10;28733:9;:23;;28725:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;28845:8;;;;;;;;;;;:13;;;28866:9;28891:8;28963:19;:29;28983:8;28963:29;;;;;;;;;;;;;;;29051:7;29134:10;29201:3;29281:13;28845:499;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27856:1498;;;;27779:1575;;:::o;2206:87::-;2252:7;2279:6;;;;;;;;;;;2272:13;;2206:87;:::o;24190:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9611:104::-;9667:13;9700:7;9693:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9611:104;:::o;13944:436::-;14037:4;14054:13;14070:12;:10;:12::i;:::-;14054:28;;14093:24;14120:25;14130:5;14137:7;14120:9;:25::i;:::-;14093:52;;14184:15;14164:16;:35;;14156:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14277:60;14286:5;14293:7;14321:15;14302:16;:34;14277:8;:60::i;:::-;14368:4;14361:11;;;;13944:436;;;;:::o;11025:193::-;11104:4;11121:13;11137:12;:10;:12::i;:::-;11121:28;;11160;11170:5;11177:2;11181:6;11160:9;:28::i;:::-;11206:4;11199:11;;;11025:193;;;;:::o;27069:22::-;;;;:::o;25950:618::-;26086:32;26121:14;:27;26136:11;26121:27;;;;;;;;;;;;;;;26149:11;26121:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;26162:6;26121:48;;;;;;;;;;;;;26086:83;;26221:1;26213:10;;26188:9;:21;;;:35;26180:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;26304:9;:23;;;26285:8;;:15;;:42;:90;;;;;26354:9;:21;;;26341:8;;26331:19;;;;;;;:::i;:::-;;;;;;;;:44;26285:90;26277:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;26443:1;26417:9;:23;;:27;;;;26487:1;26479:10;;26455:9;:21;;:34;;;;26500:4;:16;;;26517:11;26530;26543:6;26551:8;;26500:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26075:493;25950:618;;;;;:::o;26576:365::-;2092:13;:11;:13::i;:::-;26732:15:::1;;:22;;26712:9;;:16;;:42;26704:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;26814:6;26809:125;26830:9;;:16;;26826:1;:20;26809:125;;;26904:15;;26920:1;26904:18;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;26868:19;:33;26888:9;;26898:1;26888:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;26868:33;;;;;;;;;;;;;;;:54;;;;;;;:::i;:::-;;26848:3;;;;;;;26809:125;;;;26576:365:::0;;;;:::o;11281:151::-;11370:7;11397:11;:18;11409:5;11397:18;;;;;;;;;;;;;;;:27;11416:7;11397:27;;;;;;;;;;;;;;;;11390:34;;11281:151;;;;:::o;3105:201::-;2092:13;:11;:13::i;:::-;3214:1:::1;3194:22;;:8;:22;;::::0;3186:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3270:28;3289:8;3270:18;:28::i;:::-;3105:201:::0;:::o;757:98::-;810:7;837:10;830:17;;757:98;:::o;17937:346::-;18056:1;18039:19;;:5;:19;;;18031:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18137:1;18118:21;;:7;:21;;;18110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18221:6;18191:11;:18;18203:5;18191:18;;;;;;;;;;;;;;;:27;18210:7;18191:27;;;;;;;;;;;;;;;:36;;;;18259:7;18243:32;;18252:5;18243:32;;;18268:6;18243:32;;;;;;:::i;:::-;;;;;;;;17937:346;;;:::o;29362:338::-;29515:14;29532:13;29560:8;29549:41;;;;;;;;;;;;:::i;:::-;29514:76;;;;29672:20;29678:6;29686:5;29672;:20::i;:::-;29484:216;;29362:338;;;;:::o;18574:419::-;18675:24;18702:25;18712:5;18719:7;18702:9;:25::i;:::-;18675:52;;18762:17;18742:16;:37;18738:248;;18824:6;18804:16;:26;;18796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18908:51;18917:5;18924:7;18952:6;18933:16;:25;18908:8;:51::i;:::-;18738:248;18664:329;18574:419;;;:::o;14850:806::-;14963:1;14947:18;;:4;:18;;;14939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15040:1;15026:16;;:2;:16;;;15018:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15095:38;15116:4;15122:2;15126:6;15095:20;:38::i;:::-;15146:19;15168:9;:15;15178:4;15168:15;;;;;;;;;;;;;;;;15146:37;;15217:6;15202:11;:21;;15194:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15334:6;15320:11;:20;15302:9;:15;15312:4;15302:15;;;;;;;;;;;;;;;:38;;;;15537:6;15520:9;:13;15530:2;15520:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15587:2;15572:26;;15581:4;15572:26;;;15591:6;15572:26;;;;;;:::i;:::-;;;;;;;;15611:37;15631:4;15637:2;15641:6;15611:19;:37::i;:::-;14928:728;14850:806;;;:::o;16824:675::-;16927:1;16908:21;;:7;:21;;;16900:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16980:49;17001:7;17018:1;17022:6;16980:20;:49::i;:::-;17042:22;17067:9;:18;17077:7;17067:18;;;;;;;;;;;;;;;;17042:43;;17122:6;17104:14;:24;;17096:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17241:6;17224:14;:23;17203:9;:18;17213:7;17203:18;;;;;;;;;;;;;;;:44;;;;17358:6;17342:12;;:22;;;;;;;;;;;17419:1;17393:37;;17402:7;17393:37;;;17423:6;17393:37;;;;;;:::i;:::-;;;;;;;;17443:48;17463:7;17480:1;17484:6;17443:19;:48::i;:::-;16889:610;16824:675;;:::o;2371:132::-;2446:12;:10;:12::i;:::-;2435:23;;:7;:5;:7::i;:::-;:23;;;2427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2371:132::o;3466:191::-;3540:16;3559:6;;;;;;;;;;;3540:25;;3585:8;3576:6;;:17;;;;;;;;;;;;;;;;;;3640:8;3609:40;;3630:8;3609:40;;;;;;;;;;;;3529:128;3466:191;:::o;15943:548::-;16046:1;16027:21;;:7;:21;;;16019:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16097:49;16126:1;16130:7;16139:6;16097:20;:49::i;:::-;16175:6;16159:12;;:22;;;;;;;:::i;:::-;;;;;;;;16352:6;16330:9;:18;16340:7;16330:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16406:7;16385:37;;16402:1;16385:37;;;16415:6;16385:37;;;;;;:::i;:::-;;;;;;;;16435:48;16463:1;16467:7;16476:6;16435:19;:48::i;:::-;15943:548;;:::o;19593:91::-;;;;:::o;20288:90::-;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:89;370:7;410:6;403:5;399:18;388:29;;334:89;;;:::o;429:120::-;501:23;518:5;501:23;:::i;:::-;494:5;491:34;481:62;;539:1;536;529:12;481:62;429:120;:::o;555:137::-;600:5;638:6;625:20;616:29;;654:32;680:5;654:32;:::i;:::-;555:137;;;;:::o;698:117::-;807:1;804;797:12;821:117;930:1;927;920:12;944:102;985:6;1036:2;1032:7;1027:2;1020:5;1016:14;1012:28;1002:38;;944:102;;;:::o;1052:180::-;1100:77;1097:1;1090:88;1197:4;1194:1;1187:15;1221:4;1218:1;1211:15;1238:281;1321:27;1343:4;1321:27;:::i;:::-;1313:6;1309:40;1451:6;1439:10;1436:22;1415:18;1403:10;1400:34;1397:62;1394:88;;;1462:18;;:::i;:::-;1394:88;1502:10;1498:2;1491:22;1281:238;1238:281;;:::o;1525:129::-;1559:6;1586:20;;:::i;:::-;1576:30;;1615:33;1643:4;1635:6;1615:33;:::i;:::-;1525:129;;;:::o;1660:307::-;1721:4;1811:18;1803:6;1800:30;1797:56;;;1833:18;;:::i;:::-;1797:56;1871:29;1893:6;1871:29;:::i;:::-;1863:37;;1955:4;1949;1945:15;1937:23;;1660:307;;;:::o;1973:146::-;2070:6;2065:3;2060;2047:30;2111:1;2102:6;2097:3;2093:16;2086:27;1973:146;;;:::o;2125:423::-;2202:5;2227:65;2243:48;2284:6;2243:48;:::i;:::-;2227:65;:::i;:::-;2218:74;;2315:6;2308:5;2301:21;2353:4;2346:5;2342:16;2391:3;2382:6;2377:3;2373:16;2370:25;2367:112;;;2398:79;;:::i;:::-;2367:112;2488:54;2535:6;2530:3;2525;2488:54;:::i;:::-;2208:340;2125:423;;;;;:::o;2567:338::-;2622:5;2671:3;2664:4;2656:6;2652:17;2648:27;2638:122;;2679:79;;:::i;:::-;2638:122;2796:6;2783:20;2821:78;2895:3;2887:6;2880:4;2872:6;2868:17;2821:78;:::i;:::-;2812:87;;2628:277;2567:338;;;;:::o;2911:101::-;2947:7;2987:18;2980:5;2976:30;2965:41;;2911:101;;;:::o;3018:120::-;3090:23;3107:5;3090:23;:::i;:::-;3083:5;3080:34;3070:62;;3128:1;3125;3118:12;3070:62;3018:120;:::o;3144:137::-;3189:5;3227:6;3214:20;3205:29;;3243:32;3269:5;3243:32;:::i;:::-;3144:137;;;;:::o;3287:1117::-;3389:6;3397;3405;3413;3462:3;3450:9;3441:7;3437:23;3433:33;3430:120;;;3469:79;;:::i;:::-;3430:120;3589:1;3614:52;3658:7;3649:6;3638:9;3634:22;3614:52;:::i;:::-;3604:62;;3560:116;3743:2;3732:9;3728:18;3715:32;3774:18;3766:6;3763:30;3760:117;;;3796:79;;:::i;:::-;3760:117;3901:62;3955:7;3946:6;3935:9;3931:22;3901:62;:::i;:::-;3891:72;;3686:287;4012:2;4038:52;4082:7;4073:6;4062:9;4058:22;4038:52;:::i;:::-;4028:62;;3983:117;4167:2;4156:9;4152:18;4139:32;4198:18;4190:6;4187:30;4184:117;;;4220:79;;:::i;:::-;4184:117;4325:62;4379:7;4370:6;4359:9;4355:22;4325:62;:::i;:::-;4315:72;;4110:287;3287:1117;;;;;;;:::o;4410:99::-;4462:6;4496:5;4490:12;4480:22;;4410:99;;;:::o;4515:169::-;4599:11;4633:6;4628:3;4621:19;4673:4;4668:3;4664:14;4649:29;;4515:169;;;;:::o;4690:246::-;4771:1;4781:113;4795:6;4792:1;4789:13;4781:113;;;4880:1;4875:3;4871:11;4865:18;4861:1;4856:3;4852:11;4845:39;4817:2;4814:1;4810:10;4805:15;;4781:113;;;4928:1;4919:6;4914:3;4910:16;4903:27;4752:184;4690:246;;;:::o;4942:377::-;5030:3;5058:39;5091:5;5058:39;:::i;:::-;5113:71;5177:6;5172:3;5113:71;:::i;:::-;5106:78;;5193:65;5251:6;5246:3;5239:4;5232:5;5228:16;5193:65;:::i;:::-;5283:29;5305:6;5283:29;:::i;:::-;5278:3;5274:39;5267:46;;5034:285;4942:377;;;;:::o;5325:313::-;5438:4;5476:2;5465:9;5461:18;5453:26;;5525:9;5519:4;5515:20;5511:1;5500:9;5496:17;5489:47;5553:78;5626:4;5617:6;5553:78;:::i;:::-;5545:86;;5325:313;;;;:::o;5644:126::-;5681:7;5721:42;5714:5;5710:54;5699:65;;5644:126;;;:::o;5776:96::-;5813:7;5842:24;5860:5;5842:24;:::i;:::-;5831:35;;5776:96;;;:::o;5878:122::-;5951:24;5969:5;5951:24;:::i;:::-;5944:5;5941:35;5931:63;;5990:1;5987;5980:12;5931:63;5878:122;:::o;6006:139::-;6052:5;6090:6;6077:20;6068:29;;6106:33;6133:5;6106:33;:::i;:::-;6006:139;;;;:::o;6151:77::-;6188:7;6217:5;6206:16;;6151:77;;;:::o;6234:122::-;6307:24;6325:5;6307:24;:::i;:::-;6300:5;6297:35;6287:63;;6346:1;6343;6336:12;6287:63;6234:122;:::o;6362:139::-;6408:5;6446:6;6433:20;6424:29;;6462:33;6489:5;6462:33;:::i;:::-;6362:139;;;;:::o;6507:474::-;6575:6;6583;6632:2;6620:9;6611:7;6607:23;6603:32;6600:119;;;6638:79;;:::i;:::-;6600:119;6758:1;6783:53;6828:7;6819:6;6808:9;6804:22;6783:53;:::i;:::-;6773:63;;6729:117;6885:2;6911:53;6956:7;6947:6;6936:9;6932:22;6911:53;:::i;:::-;6901:63;;6856:118;6507:474;;;;;:::o;6987:90::-;7021:7;7064:5;7057:13;7050:21;7039:32;;6987:90;;;:::o;7083:109::-;7164:21;7179:5;7164:21;:::i;:::-;7159:3;7152:34;7083:109;;:::o;7198:210::-;7285:4;7323:2;7312:9;7308:18;7300:26;;7336:65;7398:1;7387:9;7383:17;7374:6;7336:65;:::i;:::-;7198:210;;;;:::o;7414:118::-;7501:24;7519:5;7501:24;:::i;:::-;7496:3;7489:37;7414:118;;:::o;7538:222::-;7631:4;7669:2;7658:9;7654:18;7646:26;;7682:71;7750:1;7739:9;7735:17;7726:6;7682:71;:::i;:::-;7538:222;;;;:::o;7766:619::-;7843:6;7851;7859;7908:2;7896:9;7887:7;7883:23;7879:32;7876:119;;;7914:79;;:::i;:::-;7876:119;8034:1;8059:53;8104:7;8095:6;8084:9;8080:22;8059:53;:::i;:::-;8049:63;;8005:117;8161:2;8187:53;8232:7;8223:6;8212:9;8208:22;8187:53;:::i;:::-;8177:63;;8132:118;8289:2;8315:53;8360:7;8351:6;8340:9;8336:22;8315:53;:::i;:::-;8305:63;;8260:118;7766:619;;;;;:::o;8391:86::-;8426:7;8466:4;8459:5;8455:16;8444:27;;8391:86;;;:::o;8483:112::-;8566:22;8582:5;8566:22;:::i;:::-;8561:3;8554:35;8483:112;;:::o;8601:214::-;8690:4;8728:2;8717:9;8713:18;8705:26;;8741:67;8805:1;8794:9;8790:17;8781:6;8741:67;:::i;:::-;8601:214;;;;:::o;8821:329::-;8880:6;8929:2;8917:9;8908:7;8904:23;8900:32;8897:119;;;8935:79;;:::i;:::-;8897:119;9055:1;9080:53;9125:7;9116:6;9105:9;9101:22;9080:53;:::i;:::-;9070:63;;9026:117;8821:329;;;;:::o;9156:472::-;9223:6;9231;9280:2;9268:9;9259:7;9255:23;9251:32;9248:119;;;9286:79;;:::i;:::-;9248:119;9406:1;9431:52;9475:7;9466:6;9455:9;9451:22;9431:52;:::i;:::-;9421:62;;9377:116;9532:2;9558:53;9603:7;9594:6;9583:9;9579:22;9558:53;:::i;:::-;9548:63;;9503:118;9156:472;;;;;:::o;9634:329::-;9693:6;9742:2;9730:9;9721:7;9717:23;9713:32;9710:119;;;9748:79;;:::i;:::-;9710:119;9868:1;9893:53;9938:7;9929:6;9918:9;9914:22;9893:53;:::i;:::-;9883:63;;9839:117;9634:329;;;;:::o;9969:327::-;10027:6;10076:2;10064:9;10055:7;10051:23;10047:32;10044:119;;;10082:79;;:::i;:::-;10044:119;10202:1;10227:52;10271:7;10262:6;10251:9;10247:22;10227:52;:::i;:::-;10217:62;;10173:116;9969:327;;;;:::o;10302:98::-;10353:6;10387:5;10381:12;10371:22;;10302:98;;;:::o;10406:168::-;10489:11;10523:6;10518:3;10511:19;10563:4;10558:3;10554:14;10539:29;;10406:168;;;;:::o;10580:373::-;10666:3;10694:38;10726:5;10694:38;:::i;:::-;10748:70;10811:6;10806:3;10748:70;:::i;:::-;10741:77;;10827:65;10885:6;10880:3;10873:4;10866:5;10862:16;10827:65;:::i;:::-;10917:29;10939:6;10917:29;:::i;:::-;10912:3;10908:39;10901:46;;10670:283;10580:373;;;;:::o;10959:309::-;11070:4;11108:2;11097:9;11093:18;11085:26;;11157:9;11151:4;11147:20;11143:1;11132:9;11128:17;11121:47;11185:76;11256:4;11247:6;11185:76;:::i;:::-;11177:84;;10959:309;;;;:::o;11274:118::-;11361:24;11379:5;11361:24;:::i;:::-;11356:3;11349:37;11274:118;;:::o;11398:222::-;11491:4;11529:2;11518:9;11514:18;11506:26;;11542:71;11610:1;11599:9;11595:17;11586:6;11542:71;:::i;:::-;11398:222;;;;:::o;11626:795::-;11711:6;11719;11727;11776:2;11764:9;11755:7;11751:23;11747:32;11744:119;;;11782:79;;:::i;:::-;11744:119;11902:1;11927:52;11971:7;11962:6;11951:9;11947:22;11927:52;:::i;:::-;11917:62;;11873:116;12056:2;12045:9;12041:18;12028:32;12087:18;12079:6;12076:30;12073:117;;;12109:79;;:::i;:::-;12073:117;12214:62;12268:7;12259:6;12248:9;12244:22;12214:62;:::i;:::-;12204:72;;11999:287;12325:2;12351:53;12396:7;12387:6;12376:9;12372:22;12351:53;:::i;:::-;12341:63;;12296:118;11626:795;;;;;:::o;12427:77::-;12464:7;12493:5;12482:16;;12427:77;;;:::o;12510:118::-;12597:24;12615:5;12597:24;:::i;:::-;12592:3;12585:37;12510:118;;:::o;12634:332::-;12755:4;12793:2;12782:9;12778:18;12770:26;;12806:71;12874:1;12863:9;12859:17;12850:6;12806:71;:::i;:::-;12887:72;12955:2;12944:9;12940:18;12931:6;12887:72;:::i;:::-;12634:332;;;;;:::o;12972:117::-;13081:1;13078;13071:12;13095:117;13204:1;13201;13194:12;13231:552;13288:8;13298:6;13348:3;13341:4;13333:6;13329:17;13325:27;13315:122;;13356:79;;:::i;:::-;13315:122;13469:6;13456:20;13446:30;;13499:18;13491:6;13488:30;13485:117;;;13521:79;;:::i;:::-;13485:117;13635:4;13627:6;13623:17;13611:29;;13689:3;13681:4;13673:6;13669:17;13659:8;13655:32;13652:41;13649:128;;;13696:79;;:::i;:::-;13649:128;13231:552;;;;;:::o;13789:1137::-;13893:6;13901;13909;13917;13925;13974:3;13962:9;13953:7;13949:23;13945:33;13942:120;;;13981:79;;:::i;:::-;13942:120;14101:1;14126:52;14170:7;14161:6;14150:9;14146:22;14126:52;:::i;:::-;14116:62;;14072:116;14255:2;14244:9;14240:18;14227:32;14286:18;14278:6;14275:30;14272:117;;;14308:79;;:::i;:::-;14272:117;14413:62;14467:7;14458:6;14447:9;14443:22;14413:62;:::i;:::-;14403:72;;14198:287;14524:2;14550:52;14594:7;14585:6;14574:9;14570:22;14550:52;:::i;:::-;14540:62;;14495:117;14679:2;14668:9;14664:18;14651:32;14710:18;14702:6;14699:30;14696:117;;;14732:79;;:::i;:::-;14696:117;14845:64;14901:7;14892:6;14881:9;14877:22;14845:64;:::i;:::-;14827:82;;;;14622:297;13789:1137;;;;;;;;:::o;14948:567::-;15020:8;15030:6;15080:3;15073:4;15065:6;15061:17;15057:27;15047:122;;15088:79;;:::i;:::-;15047:122;15201:6;15188:20;15178:30;;15231:18;15223:6;15220:30;15217:117;;;15253:79;;:::i;:::-;15217:117;15367:4;15359:6;15355:17;15343:29;;15421:3;15413:4;15405:6;15401:17;15391:8;15387:32;15384:41;15381:128;;;15428:79;;:::i;:::-;15381:128;14948:567;;;;;:::o;15536:579::-;15620:8;15630:6;15680:3;15673:4;15665:6;15661:17;15657:27;15647:122;;15688:79;;:::i;:::-;15647:122;15801:6;15788:20;15778:30;;15831:18;15823:6;15820:30;15817:117;;;15853:79;;:::i;:::-;15817:117;15967:4;15959:6;15955:17;15943:29;;16021:3;16013:4;16005:6;16001:17;15991:8;15987:32;15984:41;15981:128;;;16028:79;;:::i;:::-;15981:128;15536:579;;;;;:::o;16121:954::-;16253:6;16261;16269;16277;16326:2;16314:9;16305:7;16301:23;16297:32;16294:119;;;16332:79;;:::i;:::-;16294:119;16480:1;16469:9;16465:17;16452:31;16510:18;16502:6;16499:30;16496:117;;;16532:79;;:::i;:::-;16496:117;16645:79;16716:7;16707:6;16696:9;16692:22;16645:79;:::i;:::-;16627:97;;;;16423:311;16801:2;16790:9;16786:18;16773:32;16832:18;16824:6;16821:30;16818:117;;;16854:79;;:::i;:::-;16818:117;16967:91;17050:7;17041:6;17030:9;17026:22;16967:91;:::i;:::-;16949:109;;;;16744:324;16121:954;;;;;;;:::o;17081:474::-;17149:6;17157;17206:2;17194:9;17185:7;17181:23;17177:32;17174:119;;;17212:79;;:::i;:::-;17174:119;17332:1;17357:53;17402:7;17393:6;17382:9;17378:22;17357:53;:::i;:::-;17347:63;;17303:117;17459:2;17485:53;17530:7;17521:6;17510:9;17506:22;17485:53;:::i;:::-;17475:63;;17430:118;17081:474;;;;;:::o;17561:180::-;17609:77;17606:1;17599:88;17706:4;17703:1;17696:15;17730:4;17727:1;17720:15;17747:320;17791:6;17828:1;17822:4;17818:12;17808:22;;17875:1;17869:4;17865:12;17896:18;17886:81;;17952:4;17944:6;17940:17;17930:27;;17886:81;18014:2;18006:6;18003:14;17983:18;17980:38;17977:84;;18033:18;;:::i;:::-;17977:84;17798:269;17747:320;;;:::o;18073:147::-;18174:11;18211:3;18196:18;;18073:147;;;;:::o;18226:140::-;18274:4;18297:3;18289:11;;18320:3;18317:1;18310:14;18354:4;18351:1;18341:18;18333:26;;18226:140;;;:::o;18394:870::-;18495:3;18532:5;18526:12;18561:36;18587:9;18561:36;:::i;:::-;18613:88;18694:6;18689:3;18613:88;:::i;:::-;18606:95;;18732:1;18721:9;18717:17;18748:1;18743:166;;;;18923:1;18918:340;;;;18710:548;;18743:166;18827:4;18823:9;18812;18808:25;18803:3;18796:38;18889:6;18882:14;18875:22;18867:6;18863:35;18858:3;18854:45;18847:52;;18743:166;;18918:340;18985:37;19016:5;18985:37;:::i;:::-;19044:1;19058:154;19072:6;19069:1;19066:13;19058:154;;;19146:7;19140:14;19136:1;19131:3;19127:11;19120:35;19196:1;19187:7;19183:15;19172:26;;19094:4;19091:1;19087:12;19082:17;;19058:154;;;19241:6;19236:3;19232:16;19225:23;;18925:333;;18710:548;;18499:765;;18394:870;;;;:::o;19270:265::-;19397:3;19419:90;19505:3;19496:6;19419:90;:::i;:::-;19412:97;;19526:3;19519:10;;19270:265;;;;:::o;19541:239::-;19681:34;19677:1;19669:6;19665:14;19658:58;19750:22;19745:2;19737:6;19733:15;19726:47;19541:239;:::o;19786:366::-;19928:3;19949:67;20013:2;20008:3;19949:67;:::i;:::-;19942:74;;20025:93;20114:3;20025:93;:::i;:::-;20143:2;20138:3;20134:12;20127:19;;19786:366;;;:::o;20158:419::-;20324:4;20362:2;20351:9;20347:18;20339:26;;20411:9;20405:4;20401:20;20397:1;20386:9;20382:17;20375:47;20439:131;20565:4;20439:131;:::i;:::-;20431:139;;20158:419;;;:::o;20583:115::-;20668:23;20685:5;20668:23;:::i;:::-;20663:3;20656:36;20583:115;;:::o;20704:::-;20789:23;20806:5;20789:23;:::i;:::-;20784:3;20777:36;20704:115;;:::o;20825:719::-;21034:4;21072:3;21061:9;21057:19;21049:27;;21086:69;21152:1;21141:9;21137:17;21128:6;21086:69;:::i;:::-;21202:9;21196:4;21192:20;21187:2;21176:9;21172:18;21165:48;21230:76;21301:4;21292:6;21230:76;:::i;:::-;21222:84;;21316:70;21382:2;21371:9;21367:18;21358:6;21316:70;:::i;:::-;21433:9;21427:4;21423:20;21418:2;21407:9;21403:18;21396:48;21461:76;21532:4;21523:6;21461:76;:::i;:::-;21453:84;;20825:719;;;;;;;:::o;21550:386::-;21654:3;21682:38;21714:5;21682:38;:::i;:::-;21736:88;21817:6;21812:3;21736:88;:::i;:::-;21729:95;;21833:65;21891:6;21886:3;21879:4;21872:5;21868:16;21833:65;:::i;:::-;21923:6;21918:3;21914:16;21907:23;;21658:278;21550:386;;;;:::o;21942:271::-;22072:3;22094:93;22183:3;22174:6;22094:93;:::i;:::-;22087:100;;22204:3;22197:10;;21942:271;;;;:::o;22219:230::-;22359:34;22355:1;22347:6;22343:14;22336:58;22428:13;22423:2;22415:6;22411:15;22404:38;22219:230;:::o;22455:366::-;22597:3;22618:67;22682:2;22677:3;22618:67;:::i;:::-;22611:74;;22694:93;22783:3;22694:93;:::i;:::-;22812:2;22807:3;22803:12;22796:19;;22455:366;;;:::o;22827:419::-;22993:4;23031:2;23020:9;23016:18;23008:26;;23080:9;23074:4;23070:20;23066:1;23055:9;23051:17;23044:47;23108:131;23234:4;23108:131;:::i;:::-;23100:139;;22827:419;;;:::o;23252:180::-;23300:77;23297:1;23290:88;23397:4;23394:1;23387:15;23421:4;23418:1;23411:15;23438:191;23478:3;23497:20;23515:1;23497:20;:::i;:::-;23492:25;;23531:20;23549:1;23531:20;:::i;:::-;23526:25;;23574:1;23571;23567:9;23560:16;;23595:3;23592:1;23589:10;23586:36;;;23602:18;;:::i;:::-;23586:36;23438:191;;;;:::o;23635:332::-;23756:4;23794:2;23783:9;23779:18;23771:26;;23807:71;23875:1;23864:9;23860:17;23851:6;23807:71;:::i;:::-;23888:72;23956:2;23945:9;23941:18;23932:6;23888:72;:::i;:::-;23635:332;;;;;:::o;23973:96::-;24007:8;24056:5;24051:3;24047:15;24026:36;;23973:96;;;:::o;24075:94::-;24113:7;24142:21;24157:5;24142:21;:::i;:::-;24131:32;;24075:94;;;:::o;24175:153::-;24278:43;24297:23;24314:5;24297:23;:::i;:::-;24278:43;:::i;:::-;24273:3;24266:56;24175:153;;:::o;24334:79::-;24373:7;24402:5;24391:16;;24334:79;;;:::o;24419:157::-;24524:45;24544:24;24562:5;24544:24;:::i;:::-;24524:45;:::i;:::-;24519:3;24512:58;24419:157;;:::o;24582:392::-;24720:3;24735:73;24804:3;24795:6;24735:73;:::i;:::-;24833:1;24828:3;24824:11;24817:18;;24845:75;24916:3;24907:6;24845:75;:::i;:::-;24945:2;24940:3;24936:12;24929:19;;24965:3;24958:10;;24582:392;;;;;:::o;24980:822::-;25213:4;25251:3;25240:9;25236:19;25228:27;;25265:69;25331:1;25320:9;25316:17;25307:6;25265:69;:::i;:::-;25344:72;25412:2;25401:9;25397:18;25388:6;25344:72;:::i;:::-;25463:9;25457:4;25453:20;25448:2;25437:9;25433:18;25426:48;25491:76;25562:4;25553:6;25491:76;:::i;:::-;25483:84;;25577:66;25639:2;25628:9;25624:18;25615:6;25577:66;:::i;:::-;25691:9;25685:4;25681:20;25675:3;25664:9;25660:19;25653:49;25719:76;25790:4;25781:6;25719:76;:::i;:::-;25711:84;;24980:822;;;;;;;;:::o;25808:143::-;25865:5;25896:6;25890:13;25881:22;;25912:33;25939:5;25912:33;:::i;:::-;25808:143;;;;:::o;25957:507::-;26036:6;26044;26093:2;26081:9;26072:7;26068:23;26064:32;26061:119;;;26099:79;;:::i;:::-;26061:119;26219:1;26244:64;26300:7;26291:6;26280:9;26276:22;26244:64;:::i;:::-;26234:74;;26190:128;26357:2;26383:64;26439:7;26430:6;26419:9;26415:22;26383:64;:::i;:::-;26373:74;;26328:129;25957:507;;;;;:::o;26470:233::-;26610:34;26606:1;26598:6;26594:14;26587:58;26679:16;26674:2;26666:6;26662:15;26655:41;26470:233;:::o;26709:366::-;26851:3;26872:67;26936:2;26931:3;26872:67;:::i;:::-;26865:74;;26948:93;27037:3;26948:93;:::i;:::-;27066:2;27061:3;27057:12;27050:19;;26709:366;;;:::o;27081:419::-;27247:4;27285:2;27274:9;27270:18;27262:26;;27334:9;27328:4;27324:20;27320:1;27309:9;27305:17;27298:47;27362:131;27488:4;27362:131;:::i;:::-;27354:139;;27081:419;;;:::o;27506:295::-;27646:34;27642:1;27634:6;27630:14;27623:58;27715:34;27710:2;27702:6;27698:15;27691:59;27784:9;27779:2;27771:6;27767:15;27760:34;27506:295;:::o;27807:366::-;27949:3;27970:67;28034:2;28029:3;27970:67;:::i;:::-;27963:74;;28046:93;28135:3;28046:93;:::i;:::-;28164:2;28159:3;28155:12;28148:19;;27807:366;;;:::o;28179:419::-;28345:4;28383:2;28372:9;28368:18;28360:26;;28432:9;28426:4;28422:20;28418:1;28407:9;28403:17;28396:47;28460:131;28586:4;28460:131;:::i;:::-;28452:139;;28179:419;;;:::o;28626:827::-;28709:3;28746:5;28740:12;28775:36;28801:9;28775:36;:::i;:::-;28827:70;28890:6;28885:3;28827:70;:::i;:::-;28820:77;;28928:1;28917:9;28913:17;28944:1;28939:164;;;;29117:1;29112:335;;;;28906:541;;28939:164;29023:4;29019:9;29008;29004:25;28999:3;28992:38;29083:6;29076:14;29069:22;29063:4;29059:33;29054:3;29050:43;29043:50;;28939:164;;29112:335;29179:37;29210:5;29179:37;:::i;:::-;29238:1;29252:154;29266:6;29263:1;29260:13;29252:154;;;29340:7;29334:14;29330:1;29325:3;29321:11;29314:35;29390:1;29381:7;29377:15;29366:26;;29288:4;29285:1;29281:12;29276:17;;29252:154;;;29435:1;29430:3;29426:11;29419:18;;29119:328;;28906:541;;28713:740;;28626:827;;;;:::o;29459:104::-;29504:7;29533:24;29551:5;29533:24;:::i;:::-;29522:35;;29459:104;;;:::o;29569:142::-;29672:32;29698:5;29672:32;:::i;:::-;29667:3;29660:45;29569:142;;:::o;29717:1058::-;30015:4;30053:3;30042:9;30038:19;30030:27;;30067:69;30133:1;30122:9;30118:17;30109:6;30067:69;:::i;:::-;30183:9;30177:4;30173:20;30168:2;30157:9;30153:18;30146:48;30211:73;30279:4;30270:6;30211:73;:::i;:::-;30203:81;;30331:9;30325:4;30321:20;30316:2;30305:9;30301:18;30294:48;30359:76;30430:4;30421:6;30359:76;:::i;:::-;30351:84;;30445:88;30529:2;30518:9;30514:18;30505:6;30445:88;:::i;:::-;30543:73;30611:3;30600:9;30596:19;30587:6;30543:73;:::i;:::-;30664:9;30658:4;30654:20;30648:3;30637:9;30633:19;30626:49;30692:76;30763:4;30754:6;30692:76;:::i;:::-;30684:84;;29717:1058;;;;;;;;;:::o;30781:224::-;30921:34;30917:1;30909:6;30905:14;30898:58;30990:7;30985:2;30977:6;30973:15;30966:32;30781:224;:::o;31011:366::-;31153:3;31174:67;31238:2;31233:3;31174:67;:::i;:::-;31167:74;;31250:93;31339:3;31250:93;:::i;:::-;31368:2;31363:3;31359:12;31352:19;;31011:366;;;:::o;31383:419::-;31549:4;31587:2;31576:9;31572:18;31564:26;;31636:9;31630:4;31626:20;31622:1;31611:9;31607:17;31600:47;31664:131;31790:4;31664:131;:::i;:::-;31656:139;;31383:419;;;:::o;31808:225::-;31948:34;31944:1;31936:6;31932:14;31925:58;32017:8;32012:2;32004:6;32000:15;31993:33;31808:225;:::o;32039:366::-;32181:3;32202:67;32266:2;32261:3;32202:67;:::i;:::-;32195:74;;32278:93;32367:3;32278:93;:::i;:::-;32396:2;32391:3;32387:12;32380:19;;32039:366;;;:::o;32411:419::-;32577:4;32615:2;32604:9;32600:18;32592:26;;32664:9;32658:4;32654:20;32650:1;32639:9;32635:17;32628:47;32692:131;32818:4;32692:131;:::i;:::-;32684:139;;32411:419;;;:::o;32858:327::-;32972:3;32993:88;33074:6;33069:3;32993:88;:::i;:::-;32986:95;;33091:56;33140:6;33135:3;33128:5;33091:56;:::i;:::-;33172:6;33167:3;33163:16;33156:23;;32858:327;;;;;:::o;33191:291::-;33331:3;33353:103;33452:3;33443:6;33435;33353:103;:::i;:::-;33346:110;;33473:3;33466:10;;33191:291;;;;;:::o;33488:176::-;33628:28;33624:1;33616:6;33612:14;33605:52;33488:176;:::o;33670:366::-;33812:3;33833:67;33897:2;33892:3;33833:67;:::i;:::-;33826:74;;33909:93;33998:3;33909:93;:::i;:::-;34027:2;34022:3;34018:12;34011:19;;33670:366;;;:::o;34042:419::-;34208:4;34246:2;34235:9;34231:18;34223:26;;34295:9;34289:4;34285:20;34281:1;34270:9;34266:17;34259:47;34323:131;34449:4;34323:131;:::i;:::-;34315:139;;34042:419;;;:::o;34489:314::-;34585:3;34606:70;34669:6;34664:3;34606:70;:::i;:::-;34599:77;;34686:56;34735:6;34730:3;34723:5;34686:56;:::i;:::-;34767:29;34789:6;34767:29;:::i;:::-;34762:3;34758:39;34751:46;;34489:314;;;;;:::o;34809:739::-;35028:4;35066:3;35055:9;35051:19;35043:27;;35080:69;35146:1;35135:9;35131:17;35122:6;35080:69;:::i;:::-;35196:9;35190:4;35186:20;35181:2;35170:9;35166:18;35159:48;35224:76;35295:4;35286:6;35224:76;:::i;:::-;35216:84;;35310:70;35376:2;35365:9;35361:18;35352:6;35310:70;:::i;:::-;35427:9;35421:4;35417:20;35412:2;35401:9;35397:18;35390:48;35455:86;35536:4;35527:6;35519;35455:86;:::i;:::-;35447:94;;34809:739;;;;;;;;:::o;35554:224::-;35694:34;35690:1;35682:6;35678:14;35671:58;35763:7;35758:2;35750:6;35746:15;35739:32;35554:224;:::o;35784:366::-;35926:3;35947:67;36011:2;36006:3;35947:67;:::i;:::-;35940:74;;36023:93;36112:3;36023:93;:::i;:::-;36141:2;36136:3;36132:12;36125:19;;35784:366;;;:::o;36156:419::-;36322:4;36360:2;36349:9;36345:18;36337:26;;36409:9;36403:4;36399:20;36395:1;36384:9;36380:17;36373:47;36437:131;36563:4;36437:131;:::i;:::-;36429:139;;36156:419;;;:::o;36581:180::-;36629:77;36626:1;36619:88;36726:4;36723:1;36716:15;36750:4;36747:1;36740:15;36767:117;36876:1;36873;36866:12;36890:117;36999:1;36996;36989:12;37013:117;37122:1;37119;37112:12;37136:724;37213:4;37219:6;37275:11;37262:25;37375:1;37369:4;37365:12;37354:8;37338:14;37334:29;37330:48;37310:18;37306:73;37296:168;;37383:79;;:::i;:::-;37296:168;37495:18;37485:8;37481:33;37473:41;;37547:4;37534:18;37524:28;;37575:18;37567:6;37564:30;37561:117;;;37597:79;;:::i;:::-;37561:117;37705:2;37699:4;37695:13;37687:21;;37762:4;37754:6;37750:17;37734:14;37730:38;37724:4;37720:49;37717:136;;;37772:79;;:::i;:::-;37717:136;37226:634;37136:724;;;;;:::o;37866:96::-;37924:6;37952:3;37942:13;;37866:96;;;;:::o;37968:93::-;38005:6;38052:2;38047;38040:5;38036:14;38032:23;38022:33;;37968:93;;;:::o;38067:107::-;38111:8;38161:5;38155:4;38151:16;38130:37;;38067:107;;;;:::o;38180:393::-;38249:6;38299:1;38287:10;38283:18;38322:97;38352:66;38341:9;38322:97;:::i;:::-;38440:39;38470:8;38459:9;38440:39;:::i;:::-;38428:51;;38512:4;38508:9;38501:5;38497:21;38488:30;;38561:4;38551:8;38547:19;38540:5;38537:30;38527:40;;38256:317;;38180:393;;;;;:::o;38579:60::-;38607:3;38628:5;38621:12;;38579:60;;;:::o;38645:142::-;38695:9;38728:53;38746:34;38755:24;38773:5;38755:24;:::i;:::-;38746:34;:::i;:::-;38728:53;:::i;:::-;38715:66;;38645:142;;;:::o;38793:75::-;38836:3;38857:5;38850:12;;38793:75;;;:::o;38874:269::-;38984:39;39015:7;38984:39;:::i;:::-;39045:91;39094:41;39118:16;39094:41;:::i;:::-;39086:6;39079:4;39073:11;39045:91;:::i;:::-;39039:4;39032:105;38950:193;38874:269;;;:::o;39149:73::-;39194:3;39149:73;:::o;39228:189::-;39305:32;;:::i;:::-;39346:65;39404:6;39396;39390:4;39346:65;:::i;:::-;39281:136;39228:189;;:::o;39423:186::-;39483:120;39500:3;39493:5;39490:14;39483:120;;;39554:39;39591:1;39584:5;39554:39;:::i;:::-;39527:1;39520:5;39516:13;39507:22;;39483:120;;;39423:186;;:::o;39615:541::-;39715:2;39710:3;39707:11;39704:445;;;39749:37;39780:5;39749:37;:::i;:::-;39832:29;39850:10;39832:29;:::i;:::-;39822:8;39818:44;40015:2;40003:10;40000:18;39997:49;;;40036:8;40021:23;;39997:49;40059:80;40115:22;40133:3;40115:22;:::i;:::-;40105:8;40101:37;40088:11;40059:80;:::i;:::-;39719:430;;39704:445;39615:541;;;:::o;40162:117::-;40216:8;40266:5;40260:4;40256:16;40235:37;;40162:117;;;;:::o;40285:169::-;40329:6;40362:51;40410:1;40406:6;40398:5;40395:1;40391:13;40362:51;:::i;:::-;40358:56;40443:4;40437;40433:15;40423:25;;40336:118;40285:169;;;;:::o;40459:295::-;40535:4;40681:29;40706:3;40700:4;40681:29;:::i;:::-;40673:37;;40743:3;40740:1;40736:11;40730:4;40727:21;40719:29;;40459:295;;;;:::o;40759:1398::-;40881:43;40920:3;40915;40881:43;:::i;:::-;40989:18;40981:6;40978:30;40975:56;;;41011:18;;:::i;:::-;40975:56;41055:38;41087:4;41081:11;41055:38;:::i;:::-;41140:66;41199:6;41191;41185:4;41140:66;:::i;:::-;41233:1;41262:2;41254:6;41251:14;41279:1;41274:631;;;;41949:1;41966:6;41963:84;;;42022:9;42017:3;42013:19;42000:33;41991:42;;41963:84;42073:67;42133:6;42126:5;42073:67;:::i;:::-;42067:4;42060:81;41922:229;41244:907;;41274:631;41326:4;41322:9;41314:6;41310:22;41360:36;41391:4;41360:36;:::i;:::-;41418:1;41432:215;41446:7;41443:1;41440:14;41432:215;;;41532:9;41527:3;41523:19;41510:33;41502:6;41495:49;41583:1;41575:6;41571:14;41561:24;;41630:2;41619:9;41615:18;41602:31;;41469:4;41466:1;41462:12;41457:17;;41432:215;;;41675:6;41666:7;41663:19;41660:186;;;41740:9;41735:3;41731:19;41718:33;41783:48;41825:4;41817:6;41813:17;41802:9;41783:48;:::i;:::-;41775:6;41768:64;41683:163;41660:186;41892:1;41888;41880:6;41876:14;41872:22;41866:4;41859:36;41281:624;;;41244:907;;40856:1301;;;40759:1398;;;:::o;42163:225::-;42303:34;42299:1;42291:6;42287:14;42280:58;42372:8;42367:2;42359:6;42355:15;42348:33;42163:225;:::o;42394:366::-;42536:3;42557:67;42621:2;42616:3;42557:67;:::i;:::-;42550:74;;42633:93;42722:3;42633:93;:::i;:::-;42751:2;42746:3;42742:12;42735:19;;42394:366;;;:::o;42766:419::-;42932:4;42970:2;42959:9;42955:18;42947:26;;43019:9;43013:4;43009:20;43005:1;42994:9;42990:17;42983:47;43047:131;43173:4;43047:131;:::i;:::-;43039:139;;42766:419;;;:::o;43191:223::-;43331:34;43327:1;43319:6;43315:14;43308:58;43400:6;43395:2;43387:6;43383:15;43376:31;43191:223;:::o;43420:366::-;43562:3;43583:67;43647:2;43642:3;43583:67;:::i;:::-;43576:74;;43659:93;43748:3;43659:93;:::i;:::-;43777:2;43772:3;43768:12;43761:19;;43420:366;;;:::o;43792:419::-;43958:4;43996:2;43985:9;43981:18;43973:26;;44045:9;44039:4;44035:20;44031:1;44020:9;44016:17;44009:47;44073:131;44199:4;44073:131;:::i;:::-;44065:139;;43792:419;;;:::o;44217:221::-;44357:34;44353:1;44345:6;44341:14;44334:58;44426:4;44421:2;44413:6;44409:15;44402:29;44217:221;:::o;44444:366::-;44586:3;44607:67;44671:2;44666:3;44607:67;:::i;:::-;44600:74;;44683:93;44772:3;44683:93;:::i;:::-;44801:2;44796:3;44792:12;44785:19;;44444:366;;;:::o;44816:419::-;44982:4;45020:2;45009:9;45005:18;44997:26;;45069:9;45063:4;45059:20;45055:1;45044:9;45040:17;45033:47;45097:131;45223:4;45097:131;:::i;:::-;45089:139;;44816:419;;;:::o;45241:138::-;45322:32;45348:5;45322:32;:::i;:::-;45315:5;45312:43;45302:71;;45369:1;45366;45359:12;45302:71;45241:138;:::o;45385:159::-;45450:5;45481:6;45475:13;45466:22;;45497:41;45532:5;45497:41;:::i;:::-;45385:159;;;;:::o;45550:523::-;45637:6;45645;45694:2;45682:9;45673:7;45669:23;45665:32;45662:119;;;45700:79;;:::i;:::-;45662:119;45820:1;45845:72;45909:7;45900:6;45889:9;45885:22;45845:72;:::i;:::-;45835:82;;45791:136;45966:2;45992:64;46048:7;46039:6;46028:9;46024:22;45992:64;:::i;:::-;45982:74;;45937:129;45550:523;;;;;:::o;46079:179::-;46219:31;46215:1;46207:6;46203:14;46196:55;46079:179;:::o;46264:366::-;46406:3;46427:67;46491:2;46486:3;46427:67;:::i;:::-;46420:74;;46503:93;46592:3;46503:93;:::i;:::-;46621:2;46616:3;46612:12;46605:19;;46264:366;;;:::o;46636:419::-;46802:4;46840:2;46829:9;46825:18;46817:26;;46889:9;46883:4;46879:20;46875:1;46864:9;46860:17;46853:47;46917:131;47043:4;46917:131;:::i;:::-;46909:139;;46636:419;;;:::o;47061:224::-;47201:34;47197:1;47189:6;47185:14;47178:58;47270:7;47265:2;47257:6;47253:15;47246:32;47061:224;:::o;47291:366::-;47433:3;47454:67;47518:2;47513:3;47454:67;:::i;:::-;47447:74;;47530:93;47619:3;47530:93;:::i;:::-;47648:2;47643:3;47639:12;47632:19;;47291:366;;;:::o;47663:419::-;47829:4;47867:2;47856:9;47852:18;47844:26;;47916:9;47910:4;47906:20;47902:1;47891:9;47887:17;47880:47;47944:131;48070:4;47944:131;:::i;:::-;47936:139;;47663:419;;;:::o;48088:222::-;48228:34;48224:1;48216:6;48212:14;48205:58;48297:5;48292:2;48284:6;48280:15;48273:30;48088:222;:::o;48316:366::-;48458:3;48479:67;48543:2;48538:3;48479:67;:::i;:::-;48472:74;;48555:93;48644:3;48555:93;:::i;:::-;48673:2;48668:3;48664:12;48657:19;;48316:366;;;:::o;48688:419::-;48854:4;48892:2;48881:9;48877:18;48869:26;;48941:9;48935:4;48931:20;48927:1;48916:9;48912:17;48905:47;48969:131;49095:4;48969:131;:::i;:::-;48961:139;;48688:419;;;:::o;49113:225::-;49253:34;49249:1;49241:6;49237:14;49230:58;49322:8;49317:2;49309:6;49305:15;49298:33;49113:225;:::o;49344:366::-;49486:3;49507:67;49571:2;49566:3;49507:67;:::i;:::-;49500:74;;49583:93;49672:3;49583:93;:::i;:::-;49701:2;49696:3;49692:12;49685:19;;49344:366;;;:::o;49716:419::-;49882:4;49920:2;49909:9;49905:18;49897:26;;49969:9;49963:4;49959:20;49955:1;49944:9;49940:17;49933:47;49997:131;50123:4;49997:131;:::i;:::-;49989:139;;49716:419;;;:::o;50141:220::-;50281:34;50277:1;50269:6;50265:14;50258:58;50350:3;50345:2;50337:6;50333:15;50326:28;50141:220;:::o;50367:366::-;50509:3;50530:67;50594:2;50589:3;50530:67;:::i;:::-;50523:74;;50606:93;50695:3;50606:93;:::i;:::-;50724:2;50719:3;50715:12;50708:19;;50367:366;;;:::o;50739:419::-;50905:4;50943:2;50932:9;50928:18;50920:26;;50992:9;50986:4;50982:20;50978:1;50967:9;50963:17;50956:47;51020:131;51146:4;51020:131;:::i;:::-;51012:139;;50739:419;;;:::o;51164:221::-;51304:34;51300:1;51292:6;51288:14;51281:58;51373:4;51368:2;51360:6;51356:15;51349:29;51164:221;:::o;51391:366::-;51533:3;51554:67;51618:2;51613:3;51554:67;:::i;:::-;51547:74;;51630:93;51719:3;51630:93;:::i;:::-;51748:2;51743:3;51739:12;51732:19;;51391:366;;;:::o;51763:419::-;51929:4;51967:2;51956:9;51952:18;51944:26;;52016:9;52010:4;52006:20;52002:1;51991:9;51987:17;51980:47;52044:131;52170:4;52044:131;:::i;:::-;52036:139;;51763:419;;;:::o;52188:182::-;52328:34;52324:1;52316:6;52312:14;52305:58;52188:182;:::o;52376:366::-;52518:3;52539:67;52603:2;52598:3;52539:67;:::i;:::-;52532:74;;52615:93;52704:3;52615:93;:::i;:::-;52733:2;52728:3;52724:12;52717:19;;52376:366;;;:::o;52748:419::-;52914:4;52952:2;52941:9;52937:18;52929:26;;53001:9;52995:4;52991:20;52987:1;52976:9;52972:17;52965:47;53029:131;53155:4;53029:131;:::i;:::-;53021:139;;52748:419;;;:::o;53173:181::-;53313:33;53309:1;53301:6;53297:14;53290:57;53173:181;:::o;53360:366::-;53502:3;53523:67;53587:2;53582:3;53523:67;:::i;:::-;53516:74;;53599:93;53688:3;53599:93;:::i;:::-;53717:2;53712:3;53708:12;53701:19;;53360:366;;;:::o;53732:419::-;53898:4;53936:2;53925:9;53921:18;53913:26;;53985:9;53979:4;53975:20;53971:1;53960:9;53956:17;53949:47;54013:131;54139:4;54013:131;:::i;:::-;54005:139;;53732:419;;;:::o

Swarm Source

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

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