ETH Price: $3,095.10 (+0.74%)
Gas: 4 Gwei

Token

kev0 (kev0)
 

Overview

Max Total Supply

740 kev0

Holders

411

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 kev0
0xe4a1b0a5d6f52fd1998141ec7e22332b8cfb1c1e
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:
Kev0

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-04
*/

/*

                                             
                            ::::::::::::::::::::::::::::::::::                            
                            #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@                            
                      :%%%%%***@@@============================%%%%%+                      
                   .==+*****+++@@@----------------------------******==:                   
                 ..-@@#---==+**@@@---------------------------------+@@+..                 
                 @@%-----=++%@@---------------------------------------*@@:                
              +##+++-----=++%@@---------------------------------------+**###              
              #@@-----===+**@@@+++++=----------------=+++++++++++-----=++%@@              
              #@@-----=++#@@@@@@@@@@#----------------*@@@@@@@@@@%--------%@@              
           +%%***+++++*@@+..........-@@*----------+@@+..........-@@#-----+**%%%           
           *@@%#######*++:          .++***=-----***++:  :========+++**+--+++@@@           
           *@@@@@@@@@@*                =@@+-----@@#     *@@@@@@@#  -@@*--+++@@@           
           *@@*++--+@@*                =@@+-----@@#     *@@@@@@@#  -@@*--+++@@@           
           *@@*++--+@@*                =@@+-----@@#     *@@@@@@@#  -@@*--+++@@@           
        .::*%%*++--+@@*  .:::::        =@@+-----@@#     =#######+  -@@*--=++%%%::.        
        =@@#++=----+@@*  =@@@@@        =@@+-----@@#                -@@*-----+++@@*        
        =@@#++=----+@@#::*@@@@@      ::*@@+-----@@%::.           ::=@@*-----+++@@*        
        =@@#++=----=##*++******.....:++*##=-----##*++-..........:++*##+-----+++@@*        
        =@@#++=-------+@@*::::::::::+@@*----------+@@*::::::::::=@@#--------+++@@*        
        =@@#++=----------*@@@@@@@@@@#----------------*@@@@@@@@@@%-----------+++@@*        
        =@@#++=----------+**********+----------------+**********+-----------+++@@*        
        =@@#++=-------------------------------------------------------------+++@@*        
        =@@#++=-------------------------------------------------------------+++@@*        
        =@@#+++++--------------@@@@@@@@@@@@@@@@@@@@@@@@@@@@+-------------++++++@@*        
        =@@#+++++--------------###@@@@@@@@@@@@@@@@@@@@@@%##=-------------++++++@@*        
        =@@#+++++-----------------@@@@@@@@@@@@@@@@@@@@@@+----------------++++++@@*        
           *@@*+++++--------------------------------------------------=+++++@@@           
           *@@*+++++--------------------------------------------------=+++++@@@           
           +%%***+++=====----------------------------------------======++***%%%           
              #@@++++++++=--------------------------------------=++++++++%@@              
              .::%%%%%#++++++++----------------------------=+++++++*%%%%%=::              
                 +++++*########============================*#######*+++++.                
                      -@@@@@@@@++++++++++++++++++++++++++++%@@@@@@@*                      
                               @@@@@@@@@@@@@@@@@@@@@@@@@@@@:                              
                               ============================.                              
                                                                 

## Kev0 is a unique omni-chain NFT collection of 4004 Zombi-Goblins, based upon the KEVoLUTION chain-game. ##

https://kevos.art
https://twitter.com/kevolutionNFTs

*/

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

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

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

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

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

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

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

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

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

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

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) 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.
     * - `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 tokenId
    ) internal virtual {}
}

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

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

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 contracts/interfaces/ILayerZeroReceiver.sol

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

// File contracts/interfaces/ILayerZeroUserApplicationConfig.sol

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

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

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

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

// File contracts/interfaces/ILayerZeroEndpoint.sol

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File contracts/LayerZeroable.sol

abstract contract LayerZeroable is
    Ownable,
    ILayerZeroReceiver,
    ILayerZeroUserApplicationConfig
{
    ILayerZeroEndpoint public layerZeroEndpoint;
    mapping(uint16 => bytes) public remotes;

    uint256 public destGasAmount = 300000;

    function setLayerZeroEndpoint(address _layerZeroEndpoint)
        external
        onlyOwner
    {
        layerZeroEndpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
    }

    function setRemote(uint16 _chainId, bytes calldata _remoteAddress)
        external
        onlyOwner
    {
        remotes[_chainId] = _remoteAddress;
    }

    function setConfig(
        uint16, /*_version*/
        uint16 _chainId,
        uint256 _configType,
        bytes calldata _config
    ) external override onlyOwner {
        layerZeroEndpoint.setConfig(
            layerZeroEndpoint.getSendVersion(address(this)),
            _chainId,
            _configType,
            _config
        );
    }

    function setSendVersion(uint16 version) external override onlyOwner {
        layerZeroEndpoint.setSendVersion(version);
    }

    function setReceiveVersion(uint16 version) external override onlyOwner {
        layerZeroEndpoint.setReceiveVersion(version);
    }

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

    function setDestGasAmount(uint256 _amount) external onlyOwner {
        destGasAmount = _amount;
    }

    function _bytesToAddress(bytes memory bys)
        internal
        pure
        returns (address addr)
    {
        assembly {
            addr := mload(add(bys, 20))
        }
    }
}

// File contracts/Kev0.sol

contract Kev0 is Ownable, ERC721Burnable, ERC721Enumerable, LayerZeroable {
    uint16 public mintedSupply = 0;
    uint256 public lastTokenId = 0;

    string public constant BASE_URI =
        "ipfs://bafybeibjv2gnanwheimnz7c2ymdt5w4khzo26jlwlooh5xe6d2o5l36f4y/";
    uint256 public constant MAX_SUPPLY = 572;

    constructor(uint256 _lastTokenId, address _layerZeroEndpoint)
        ERC721("kev0", "kev0")
    {
        lastTokenId = _lastTokenId;

        layerZeroEndpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
    }

    fallback() external payable {}

    receive() external payable {}

    /* Only owner */

    function withdrawTokens(address _tokenAddress) external onlyOwner {
        uint256 amount = IERC20(_tokenAddress).balanceOf(address(this));

        IERC20(_tokenAddress).transfer(owner(), amount);
    }

    function withdrawETH() external onlyOwner {
        uint256 amount = address(this).balance;

        (bool success, ) = owner().call{value: amount}("");
        require(success, "Failed to send Ether");
    }

    /* Endpoint methods */

    function lzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64,
        bytes memory _payload
    ) external override {
        require(msg.sender == address(layerZeroEndpoint));
        require(
            _srcAddress.length == remotes[_srcChainId].length &&
                keccak256(_srcAddress) == keccak256(remotes[_srcChainId]),
            "Invalid remote sender address. owner should call setRemote() to enable remote contract"
        );

        // Decode payload
        (address to, uint256 tokenId) = abi.decode(
            _payload,
            (address, uint256)
        );

        _safeMint(to, tokenId);
    }

    /* Public methods */

    function _baseURI() internal pure override returns (string memory) {
        return BASE_URI;
    }

    function mint() public payable {
        require(mintedSupply < MAX_SUPPLY, "Max mint supply reached");
        mintedSupply++;
        _safeMint(_msgSender(), ++lastTokenId);
    }

    function transferToChain(
        uint256 _tokenId,
        address _to,
        uint16 _chainId
    ) external payable {
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not owner");
        require(remotes[_chainId].length > 0, "Remote not configured");

        _burn(_tokenId);

        bytes memory payload = abi.encode(_to, _tokenId);

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

        (uint256 messageFee, ) = layerZeroEndpoint.estimateFees(
            _chainId,
            _bytesToAddress(remotes[_chainId]),
            payload,
            false,
            adapterParams
        );
        require(
            msg.value >= messageFee,
            "Insufficient amount to cover gas costs"
        );

        layerZeroEndpoint.send{value: msg.value}(
            _chainId,
            remotes[_chainId],
            payload,
            payable(msg.sender),
            address(0x0),
            adapterParams
        );
    }

    function estimateFee(
        uint256 _tokenId,
        address _to,
        uint16 _chainId
    ) external view returns (uint256 nativeFee, uint256 zroFee) {
        bytes memory payload = abi.encode(_to, _tokenId);

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

        return
            layerZeroEndpoint.estimateFees(
                _chainId,
                _bytesToAddress(remotes[_chainId]),
                payload,
                false,
                adapterParams
            );
    }

    /* Overrides */

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_lastTokenId","type":"uint256"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"destGasAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_chainId","type":"uint16"}],"name":"estimateFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"layerZeroEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"remotes","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setDestGasAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"name":"setLayerZeroEndpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_chainId","type":"uint16"}],"name":"transferToChain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620493e0600d55600e805461ffff191690556000600f553480156200002857600080fd5b5060405162003403380380620034038339810160408190526200004b91620001e4565b60408051808201825260048082526306b6576360e41b6020808401828152855180870190965292855284015281519192916200008a916000916200013e565b508051620000a09060019060208401906200013e565b505050620000bd620000b7620000e860201b60201c565b620000ec565b600f91909155600b80546001600160a01b0319166001600160a01b0390921691909117905562000260565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014c9062000223565b90600052602060002090601f016020900481019282620001705760008555620001bb565b82601f106200018b57805160ff1916838001178555620001bb565b82800160010185558215620001bb579182015b82811115620001bb5782518255916020019190600101906200019e565b50620001c9929150620001cd565b5090565b5b80821115620001c95760008155600101620001ce565b60008060408385031215620001f857600080fd5b825160208401519092506001600160a01b03811681146200021857600080fd5b809150509250929050565b600181811c908216806200023857607f821691505b602082108114156200025a57634e487b7160e01b600052602260045260246000fd5b50919050565b61319380620002706000396000f3fe6080604052600436106102265760003560e01c8063584c9ac611610122578063b88d4fde116100a5578063dbddb26a1161006c578063dbddb26a1461068f578063e086e5ec146106a4578063e985e9c5146106b9578063f2fde38b14610702578063f84ddf0b1461072257005b8063b88d4fde146105eb578063c1bd8cf91461060b578063c87b56dd14610639578063cbed8b9c14610659578063db7e0c7e1461067957005b80638da5cb5b116100e95780638da5cb5b1461055857806395b9783c1461057657806395d89b41146105965780639d1f6113146105ab578063a22cb465146105cb57005b8063584c9ac6146104ae5780636352211e146104e357806370a0823114610503578063715018a614610523578063780c81871461053857005b806320cdd0a1116101aa57806342966c681161017157806342966c681461041b57806342d65a8d1461043b5780634946d6031461045b57806349df728c1461046e5780634f6ccce71461048e57005b806320cdd0a11461038557806323b872dd146103a55780632f745c59146103c557806332cb6b0c146103e557806342842e0e146103fb57005b8063081812fc116101ee578063081812fc146102fe578063095ea7b31461031e57806310ddb1371461033e5780631249c58b1461035e57806318160ddd1461036657005b80621d35671461022f57806301ffc9a71461024f57806306fdde031461028457806307968db1146102a657806307e0db17146102de57005b3661022d57005b005b34801561023b57600080fd5b5061022d61024a366004612a27565b610738565b34801561025b57600080fd5b5061026f61026a36600461295e565b61086f565b60405190151581526020015b60405180910390f35b34801561029057600080fd5b50610299610880565b60405161027b9190612ce9565b3480156102b257600080fd5b50600b546102c6906001600160a01b031681565b6040516001600160a01b03909116815260200161027b565b3480156102ea57600080fd5b5061022d6102f9366004612998565b610912565b34801561030a57600080fd5b506102c6610319366004612b1e565b6109a1565b34801561032a57600080fd5b5061022d610339366004612915565b610a36565b34801561034a57600080fd5b5061022d610359366004612998565b610b4c565b61022d610baa565b34801561037257600080fd5b506009545b60405190815260200161027b565b34801561039157600080fd5b5061022d6103a03660046129d2565b610c57565b3480156103b157600080fd5b5061022d6103c036600461283a565b610ca5565b3480156103d157600080fd5b506103776103e0366004612915565b610cd7565b3480156103f157600080fd5b5061037761023c81565b34801561040757600080fd5b5061022d61041636600461283a565b610d6d565b34801561042757600080fd5b5061022d610436366004612b1e565b610d88565b34801561044757600080fd5b5061022d6104563660046129d2565b610e02565b61022d610469366004612b50565b610e97565b34801561047a57600080fd5b5061022d6104893660046127b6565b6111c4565b34801561049a57600080fd5b506103776104a9366004612b1e565b61130b565b3480156104ba57600080fd5b506104ce6104c9366004612b50565b61139e565b6040805192835260208301919091520161027b565b3480156104ef57600080fd5b506102c66104fe366004612b1e565b6114ac565b34801561050f57600080fd5b5061037761051e3660046127b6565b611523565b34801561052f57600080fd5b5061022d6115aa565b34801561054457600080fd5b5061022d610553366004612b1e565b6115de565b34801561056457600080fd5b506006546001600160a01b03166102c6565b34801561058257600080fd5b5061022d6105913660046127b6565b61160d565b3480156105a257600080fd5b50610299611659565b3480156105b757600080fd5b506102996105c6366004612998565b611668565b3480156105d757600080fd5b5061022d6105e63660046128e7565b611702565b3480156105f757600080fd5b5061022d61060636600461287b565b611711565b34801561061757600080fd5b50600e546106269061ffff1681565b60405161ffff909116815260200161027b565b34801561064557600080fd5b50610299610654366004612b1e565b611743565b34801561066557600080fd5b5061022d610674366004612aab565b61181e565b34801561068557600080fd5b50610377600d5481565b34801561069b57600080fd5b50610299611928565b3480156106b057600080fd5b5061022d611944565b3480156106c557600080fd5b5061026f6106d4366004612801565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070e57600080fd5b5061022d61071d3660046127b6565b611a1a565b34801561072e57600080fd5b50610377600f5481565b600b546001600160a01b0316331461074f57600080fd5b61ffff84166000908152600c60205260409020805461076d90612fd7565b905083511480156107ac575061ffff84166000908152600c602052604090819020905161079a9190612c0b565b60405180910390208380519060200120145b6108425760405162461bcd60e51b815260206004820152605660248201527f496e76616c69642072656d6f74652073656e64657220616464726573732e206f60448201527f776e65722073686f756c642063616c6c2073657452656d6f7465282920746f20606482015275195b98589b19481c995b5bdd194818dbdb9d1c9858dd60521b608482015260a4015b60405180910390fd5b6000808280602001905181019061085991906127d3565b915091506108678282611ab2565b505050505050565b600061087a82611acc565b92915050565b60606000805461088f90612fd7565b80601f01602080910402602001604051908101604052809291908181526020018280546108bb90612fd7565b80156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b5050505050905090565b6006546001600160a01b0316331461093c5760405162461bcd60e51b815260040161083990612d4e565b600b546040516307e0db1760e01b815261ffff831660048201526001600160a01b03909116906307e0db17906024015b600060405180830381600087803b15801561098657600080fd5b505af115801561099a573d6000803e3d6000fd5b5050505050565b6000818152600260205260408120546001600160a01b0316610a1a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610839565b506000908152600460205260409020546001600160a01b031690565b6000610a41826114ac565b9050806001600160a01b0316836001600160a01b03161415610aaf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610839565b336001600160a01b0382161480610acb5750610acb81336106d4565b610b3d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610839565b610b478383611af1565b505050565b6006546001600160a01b03163314610b765760405162461bcd60e51b815260040161083990612d4e565b600b546040516310ddb13760e01b815261ffff831660048201526001600160a01b03909116906310ddb1379060240161096c565b600e5461023c61ffff90911610610c035760405162461bcd60e51b815260206004820152601760248201527f4d6178206d696e7420737570706c7920726561636865640000000000000000006044820152606401610839565b600e805461ffff16906000610c1783613012565b91906101000a81548161ffff021916908361ffff16021790555050610c55610c3c3390565b600f60008154610c4b90613034565b9182905550611ab2565b565b6006546001600160a01b03163314610c815760405162461bcd60e51b815260040161083990612d4e565b61ffff83166000908152600c60205260409020610c9f908383612647565b50505050565b610cb0335b82611b5f565b610ccc5760405162461bcd60e51b815260040161083990612d83565b610b47838383611c56565b6000610ce283611523565b8210610d445760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610839565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610b4783838360405180602001604052806000815250611711565b610d9133610caa565b610df65760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610839565b610dff81611dfd565b50565b6006546001600160a01b03163314610e2c5760405162461bcd60e51b815260040161083990612d4e565b600b546040516342d65a8d60e01b81526001600160a01b03909116906342d65a8d90610e6090869086908690600401612e28565b600060405180830381600087803b158015610e7a57600080fd5b505af1158015610e8e573d6000803e3d6000fd5b50505050505050565b33610ea1846114ac565b6001600160a01b031614610eed5760405162461bcd60e51b815260206004820152601360248201527229b2b73232b91034b9903737ba1037bbb732b960691b6044820152606401610839565b61ffff81166000908152600c602052604081208054610f0b90612fd7565b905011610f525760405162461bcd60e51b815260206004820152601560248201527414995b5bdd19481b9bdd0818dbdb999a59dd5c9959605a1b6044820152606401610839565b610f5b83611dfd565b604080516001600160a01b03848116602080840191909152828401879052835180840385018152606084018552600d54600160f01b60808601526082808601919091528551808603909101815260a29094018552600b5461ffff87166000908152600c909352948220805491956001959416916340a7bb109188916110699190610fe490612fd7565b80601f016020809104026020016040519081016040528092919081815260200182805461101090612fd7565b801561105d5780601f106110325761010080835404028352916020019161105d565b820191906000526020600020905b81548152906001019060200180831161104057829003601f168201915b50505050506014015190565b876000876040518663ffffffff1660e01b815260040161108d959493929190612dd4565b604080518083038186803b1580156110a457600080fd5b505afa1580156110b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dc9190612b92565b5090508034101561113e5760405162461bcd60e51b815260206004820152602660248201527f496e73756666696369656e7420616d6f756e7420746f20636f7665722067617360448201526520636f73747360d01b6064820152608401610839565b600b5461ffff86166000908152600c6020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611189928b928b913391908b90600401612e4f565b6000604051808303818588803b1580156111a257600080fd5b505af11580156111b6573d6000803e3d6000fd5b505050505050505050505050565b6006546001600160a01b031633146111ee5760405162461bcd60e51b815260040161083990612d4e565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561123057600080fd5b505afa158015611244573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112689190612b37565b9050816001600160a01b031663a9059cbb61128b6006546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b1580156112d357600080fd5b505af11580156112e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b479190612941565b600061131660095490565b82106113795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610839565b6009828154811061138c5761138c6130a5565b90600052602060002001549050919050565b604080516001600160a01b03848116602080840191909152828401879052835180840385018152606084018552600d54600160f01b60808601526082808601919091528551808603909101815260a29094018552600b5461ffff87166000908152600c90935294822080549295869592946001949116916340a7bb1091899161142a91610fe490612fd7565b866000866040518663ffffffff1660e01b815260040161144e959493929190612dd4565b604080518083038186803b15801561146557600080fd5b505afa158015611479573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149d9190612b92565b94509450505050935093915050565b6000818152600260205260408120546001600160a01b03168061087a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610839565b60006001600160a01b03821661158e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610839565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146115d45760405162461bcd60e51b815260040161083990612d4e565b610c556000611ea4565b6006546001600160a01b031633146116085760405162461bcd60e51b815260040161083990612d4e565b600d55565b6006546001600160a01b031633146116375760405162461bcd60e51b815260040161083990612d4e565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461088f90612fd7565b600c602052600090815260409020805461168190612fd7565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad90612fd7565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b505050505081565b61170d338383611ef6565b5050565b61171b3383611b5f565b6117375760405162461bcd60e51b815260040161083990612d83565b610c9f84848484611fc5565b6000818152600260205260409020546060906001600160a01b03166117c25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610839565b60006117cc611ff8565b905060008151116117ec5760405180602001604052806000815250611817565b806117f684612018565b604051602001611807929190612c7d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146118485760405162461bcd60e51b815260040161083990612d4e565b600b546040516304b2b47b60e11b81523060048201526001600160a01b039091169063cbed8b9c90829063096568f69060240160206040518083038186803b15801561189357600080fd5b505afa1580156118a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cb91906129b5565b868686866040518663ffffffff1660e01b81526004016118ef959493929190612f2f565b600060405180830381600087803b15801561190957600080fd5b505af115801561191d573d6000803e3d6000fd5b505050505050505050565b60405180608001604052806043815260200161311b6043913981565b6006546001600160a01b0316331461196e5760405162461bcd60e51b815260040161083990612d4e565b4760006119836006546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d80600081146119cd576040519150601f19603f3d011682016040523d82523d6000602084013e6119d2565b606091505b505090508061170d5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610839565b6006546001600160a01b03163314611a445760405162461bcd60e51b815260040161083990612d4e565b6001600160a01b038116611aa95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610839565b610dff81611ea4565b61170d828260405180602001604052806000815250612116565b60006001600160e01b0319821663780e9d6360e01b148061087a575061087a82612149565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b26826114ac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bd85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610839565b6000611be3836114ac565b9050806001600160a01b0316846001600160a01b03161480611c1e5750836001600160a01b0316611c13846109a1565b6001600160a01b0316145b80611c4e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c69826114ac565b6001600160a01b031614611ccd5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610839565b6001600160a01b038216611d2f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610839565b611d3a838383612199565b611d45600082611af1565b6001600160a01b0383166000908152600360205260408120805460019290611d6e908490612f94565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d9c908490612f68565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611e08826114ac565b9050611e1681600084612199565b611e21600083611af1565b6001600160a01b0381166000908152600360205260408120805460019290611e4a908490612f94565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f585760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610839565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611fd0848484611c56565b611fdc848484846121a4565b610c9f5760405162461bcd60e51b815260040161083990612cfc565b606060405180608001604052806043815260200161311b60439139905090565b60608161203c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612066578061205081613034565b915061205f9050600a83612f80565b9150612040565b60008167ffffffffffffffff811115612081576120816130bb565b6040519080825280601f01601f1916602001820160405280156120ab576020820181803683370190505b5090505b8415611c4e576120c0600183612f94565b91506120cd600a8661304f565b6120d8906030612f68565b60f81b8183815181106120ed576120ed6130a5565b60200101906001600160f81b031916908160001a90535061210f600a86612f80565b94506120af565b61212083836122b1565b61212d60008484846121a4565b610b475760405162461bcd60e51b815260040161083990612cfc565b60006001600160e01b031982166380ac58cd60e01b148061217a57506001600160e01b03198216635b5e139f60e01b145b8061087a57506301ffc9a760e01b6001600160e01b031983161461087a565b610b478383836123ff565b60006001600160a01b0384163b156122a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121e8903390899088908890600401612cac565b602060405180830381600087803b15801561220257600080fd5b505af1925050508015612232575060408051601f3d908101601f1916820190925261222f9181019061297b565b60015b61228c573d808015612260576040519150601f19603f3d011682016040523d82523d6000602084013e612265565b606091505b5080516122845760405162461bcd60e51b815260040161083990612cfc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c4e565b506001949350505050565b6001600160a01b0382166123075760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610839565b6000818152600260205260409020546001600160a01b03161561236c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610839565b61237860008383612199565b6001600160a01b03821660009081526003602052604081208054600192906123a1908490612f68565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b03831661245a5761245581600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61247d565b816001600160a01b0316836001600160a01b03161461247d5761247d83826124b7565b6001600160a01b03821661249457610b4781612554565b826001600160a01b0316826001600160a01b031614610b4757610b478282612603565b600060016124c484611523565b6124ce9190612f94565b600083815260086020526040902054909150808214612521576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061256690600190612f94565b6000838152600a60205260408120546009805493945090928490811061258e5761258e6130a5565b9060005260206000200154905080600983815481106125af576125af6130a5565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806125e7576125e761308f565b6001900381819060005260206000200160009055905550505050565b600061260e83611523565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461265390612fd7565b90600052602060002090601f01602090048101928261267557600085556126bb565b82601f1061268e5782800160ff198235161785556126bb565b828001600101855582156126bb579182015b828111156126bb5782358255916020019190600101906126a0565b506126c79291506126cb565b5090565b5b808211156126c757600081556001016126cc565b60008083601f8401126126f257600080fd5b50813567ffffffffffffffff81111561270a57600080fd5b60208301915083602082850101111561272257600080fd5b9250929050565b600082601f83011261273a57600080fd5b813567ffffffffffffffff80821115612755576127556130bb565b604051601f8301601f19908116603f0116810190828211818310171561277d5761277d6130bb565b8160405283815286602085880101111561279657600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156127c857600080fd5b8135611817816130d1565b600080604083850312156127e657600080fd5b82516127f1816130d1565b6020939093015192949293505050565b6000806040838503121561281457600080fd5b823561281f816130d1565b9150602083013561282f816130d1565b809150509250929050565b60008060006060848603121561284f57600080fd5b833561285a816130d1565b9250602084013561286a816130d1565b929592945050506040919091013590565b6000806000806080858703121561289157600080fd5b843561289c816130d1565b935060208501356128ac816130d1565b925060408501359150606085013567ffffffffffffffff8111156128cf57600080fd5b6128db87828801612729565b91505092959194509250565b600080604083850312156128fa57600080fd5b8235612905816130d1565b9150602083013561282f816130e6565b6000806040838503121561292857600080fd5b8235612933816130d1565b946020939093013593505050565b60006020828403121561295357600080fd5b8151611817816130e6565b60006020828403121561297057600080fd5b8135611817816130f4565b60006020828403121561298d57600080fd5b8151611817816130f4565b6000602082840312156129aa57600080fd5b81356118178161310a565b6000602082840312156129c757600080fd5b81516118178161310a565b6000806000604084860312156129e757600080fd5b83356129f28161310a565b9250602084013567ffffffffffffffff811115612a0e57600080fd5b612a1a868287016126e0565b9497909650939450505050565b60008060008060808587031215612a3d57600080fd5b8435612a488161310a565b9350602085013567ffffffffffffffff80821115612a6557600080fd5b612a7188838901612729565b9450604087013591508082168214612a8857600080fd5b90925060608601359080821115612a9e57600080fd5b506128db87828801612729565b600080600080600060808688031215612ac357600080fd5b8535612ace8161310a565b94506020860135612ade8161310a565b935060408601359250606086013567ffffffffffffffff811115612b0157600080fd5b612b0d888289016126e0565b969995985093965092949392505050565b600060208284031215612b3057600080fd5b5035919050565b600060208284031215612b4957600080fd5b5051919050565b600080600060608486031215612b6557600080fd5b833592506020840135612b77816130d1565b91506040840135612b878161310a565b809150509250925092565b60008060408385031215612ba557600080fd5b505080516020909101519092909150565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60008151808452612bf7816020860160208601612fab565b601f01601f19169290920160200192915050565b6000808354612c1981612fd7565b60018281168015612c315760018114612c4257612c71565b60ff19841687528287019450612c71565b8760005260208060002060005b85811015612c685781548a820152908401908201612c4f565b50505082870194505b50929695505050505050565b60008351612c8f818460208801612fab565b835190830190612ca3818360208801612fab565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cdf90830184612bdf565b9695505050505050565b6020815260006118176020830184612bdf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612e0290830186612bdf565b84151560608401528281036080840152612e1c8185612bdf565b98975050505050505050565b61ffff84168152604060208201526000612e46604083018486612bb6565b95945050505050565b61ffff871681526000602060c08184015260008854612e6d81612fd7565b8060c087015260e0600180841660008114612e8f5760018114612ea457612ed2565b60ff1985168984015261010089019550612ed2565b8d6000528660002060005b85811015612eca5781548b8201860152908301908801612eaf565b8a0184019650505b50505050508381036040850152612ee98189612bdf565b915050612f0160608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612f228185612bdf565b9998505050505050505050565b600061ffff808816835280871660208401525084604083015260806060830152612f5d608083018486612bb6565b979650505050505050565b60008219821115612f7b57612f7b613063565b500190565b600082612f8f57612f8f613079565b500490565b600082821015612fa657612fa6613063565b500390565b60005b83811015612fc6578181015183820152602001612fae565b83811115610c9f5750506000910152565b600181811c90821680612feb57607f821691505b6020821081141561300c57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561302a5761302a613063565b6001019392505050565b600060001982141561304857613048613063565b5060010190565b60008261305e5761305e613079565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610dff57600080fd5b8015158114610dff57600080fd5b6001600160e01b031981168114610dff57600080fd5b61ffff81168114610dff57600080fdfe697066733a2f2f62616679626569626a7632676e616e776865696d6e7a376332796d64743577346b687a6f32366a6c776c6f6f683578653664326f356c33366634792fa264697066735822122088fba1c074456bd7e807babf86a45f3e7bb19aeb42d607dde98e7a3f4bf67d2b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675

Deployed Bytecode

0x6080604052600436106102265760003560e01c8063584c9ac611610122578063b88d4fde116100a5578063dbddb26a1161006c578063dbddb26a1461068f578063e086e5ec146106a4578063e985e9c5146106b9578063f2fde38b14610702578063f84ddf0b1461072257005b8063b88d4fde146105eb578063c1bd8cf91461060b578063c87b56dd14610639578063cbed8b9c14610659578063db7e0c7e1461067957005b80638da5cb5b116100e95780638da5cb5b1461055857806395b9783c1461057657806395d89b41146105965780639d1f6113146105ab578063a22cb465146105cb57005b8063584c9ac6146104ae5780636352211e146104e357806370a0823114610503578063715018a614610523578063780c81871461053857005b806320cdd0a1116101aa57806342966c681161017157806342966c681461041b57806342d65a8d1461043b5780634946d6031461045b57806349df728c1461046e5780634f6ccce71461048e57005b806320cdd0a11461038557806323b872dd146103a55780632f745c59146103c557806332cb6b0c146103e557806342842e0e146103fb57005b8063081812fc116101ee578063081812fc146102fe578063095ea7b31461031e57806310ddb1371461033e5780631249c58b1461035e57806318160ddd1461036657005b80621d35671461022f57806301ffc9a71461024f57806306fdde031461028457806307968db1146102a657806307e0db17146102de57005b3661022d57005b005b34801561023b57600080fd5b5061022d61024a366004612a27565b610738565b34801561025b57600080fd5b5061026f61026a36600461295e565b61086f565b60405190151581526020015b60405180910390f35b34801561029057600080fd5b50610299610880565b60405161027b9190612ce9565b3480156102b257600080fd5b50600b546102c6906001600160a01b031681565b6040516001600160a01b03909116815260200161027b565b3480156102ea57600080fd5b5061022d6102f9366004612998565b610912565b34801561030a57600080fd5b506102c6610319366004612b1e565b6109a1565b34801561032a57600080fd5b5061022d610339366004612915565b610a36565b34801561034a57600080fd5b5061022d610359366004612998565b610b4c565b61022d610baa565b34801561037257600080fd5b506009545b60405190815260200161027b565b34801561039157600080fd5b5061022d6103a03660046129d2565b610c57565b3480156103b157600080fd5b5061022d6103c036600461283a565b610ca5565b3480156103d157600080fd5b506103776103e0366004612915565b610cd7565b3480156103f157600080fd5b5061037761023c81565b34801561040757600080fd5b5061022d61041636600461283a565b610d6d565b34801561042757600080fd5b5061022d610436366004612b1e565b610d88565b34801561044757600080fd5b5061022d6104563660046129d2565b610e02565b61022d610469366004612b50565b610e97565b34801561047a57600080fd5b5061022d6104893660046127b6565b6111c4565b34801561049a57600080fd5b506103776104a9366004612b1e565b61130b565b3480156104ba57600080fd5b506104ce6104c9366004612b50565b61139e565b6040805192835260208301919091520161027b565b3480156104ef57600080fd5b506102c66104fe366004612b1e565b6114ac565b34801561050f57600080fd5b5061037761051e3660046127b6565b611523565b34801561052f57600080fd5b5061022d6115aa565b34801561054457600080fd5b5061022d610553366004612b1e565b6115de565b34801561056457600080fd5b506006546001600160a01b03166102c6565b34801561058257600080fd5b5061022d6105913660046127b6565b61160d565b3480156105a257600080fd5b50610299611659565b3480156105b757600080fd5b506102996105c6366004612998565b611668565b3480156105d757600080fd5b5061022d6105e63660046128e7565b611702565b3480156105f757600080fd5b5061022d61060636600461287b565b611711565b34801561061757600080fd5b50600e546106269061ffff1681565b60405161ffff909116815260200161027b565b34801561064557600080fd5b50610299610654366004612b1e565b611743565b34801561066557600080fd5b5061022d610674366004612aab565b61181e565b34801561068557600080fd5b50610377600d5481565b34801561069b57600080fd5b50610299611928565b3480156106b057600080fd5b5061022d611944565b3480156106c557600080fd5b5061026f6106d4366004612801565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070e57600080fd5b5061022d61071d3660046127b6565b611a1a565b34801561072e57600080fd5b50610377600f5481565b600b546001600160a01b0316331461074f57600080fd5b61ffff84166000908152600c60205260409020805461076d90612fd7565b905083511480156107ac575061ffff84166000908152600c602052604090819020905161079a9190612c0b565b60405180910390208380519060200120145b6108425760405162461bcd60e51b815260206004820152605660248201527f496e76616c69642072656d6f74652073656e64657220616464726573732e206f60448201527f776e65722073686f756c642063616c6c2073657452656d6f7465282920746f20606482015275195b98589b19481c995b5bdd194818dbdb9d1c9858dd60521b608482015260a4015b60405180910390fd5b6000808280602001905181019061085991906127d3565b915091506108678282611ab2565b505050505050565b600061087a82611acc565b92915050565b60606000805461088f90612fd7565b80601f01602080910402602001604051908101604052809291908181526020018280546108bb90612fd7565b80156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b5050505050905090565b6006546001600160a01b0316331461093c5760405162461bcd60e51b815260040161083990612d4e565b600b546040516307e0db1760e01b815261ffff831660048201526001600160a01b03909116906307e0db17906024015b600060405180830381600087803b15801561098657600080fd5b505af115801561099a573d6000803e3d6000fd5b5050505050565b6000818152600260205260408120546001600160a01b0316610a1a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610839565b506000908152600460205260409020546001600160a01b031690565b6000610a41826114ac565b9050806001600160a01b0316836001600160a01b03161415610aaf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610839565b336001600160a01b0382161480610acb5750610acb81336106d4565b610b3d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610839565b610b478383611af1565b505050565b6006546001600160a01b03163314610b765760405162461bcd60e51b815260040161083990612d4e565b600b546040516310ddb13760e01b815261ffff831660048201526001600160a01b03909116906310ddb1379060240161096c565b600e5461023c61ffff90911610610c035760405162461bcd60e51b815260206004820152601760248201527f4d6178206d696e7420737570706c7920726561636865640000000000000000006044820152606401610839565b600e805461ffff16906000610c1783613012565b91906101000a81548161ffff021916908361ffff16021790555050610c55610c3c3390565b600f60008154610c4b90613034565b9182905550611ab2565b565b6006546001600160a01b03163314610c815760405162461bcd60e51b815260040161083990612d4e565b61ffff83166000908152600c60205260409020610c9f908383612647565b50505050565b610cb0335b82611b5f565b610ccc5760405162461bcd60e51b815260040161083990612d83565b610b47838383611c56565b6000610ce283611523565b8210610d445760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610839565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610b4783838360405180602001604052806000815250611711565b610d9133610caa565b610df65760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610839565b610dff81611dfd565b50565b6006546001600160a01b03163314610e2c5760405162461bcd60e51b815260040161083990612d4e565b600b546040516342d65a8d60e01b81526001600160a01b03909116906342d65a8d90610e6090869086908690600401612e28565b600060405180830381600087803b158015610e7a57600080fd5b505af1158015610e8e573d6000803e3d6000fd5b50505050505050565b33610ea1846114ac565b6001600160a01b031614610eed5760405162461bcd60e51b815260206004820152601360248201527229b2b73232b91034b9903737ba1037bbb732b960691b6044820152606401610839565b61ffff81166000908152600c602052604081208054610f0b90612fd7565b905011610f525760405162461bcd60e51b815260206004820152601560248201527414995b5bdd19481b9bdd0818dbdb999a59dd5c9959605a1b6044820152606401610839565b610f5b83611dfd565b604080516001600160a01b03848116602080840191909152828401879052835180840385018152606084018552600d54600160f01b60808601526082808601919091528551808603909101815260a29094018552600b5461ffff87166000908152600c909352948220805491956001959416916340a7bb109188916110699190610fe490612fd7565b80601f016020809104026020016040519081016040528092919081815260200182805461101090612fd7565b801561105d5780601f106110325761010080835404028352916020019161105d565b820191906000526020600020905b81548152906001019060200180831161104057829003601f168201915b50505050506014015190565b876000876040518663ffffffff1660e01b815260040161108d959493929190612dd4565b604080518083038186803b1580156110a457600080fd5b505afa1580156110b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dc9190612b92565b5090508034101561113e5760405162461bcd60e51b815260206004820152602660248201527f496e73756666696369656e7420616d6f756e7420746f20636f7665722067617360448201526520636f73747360d01b6064820152608401610839565b600b5461ffff86166000908152600c6020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611189928b928b913391908b90600401612e4f565b6000604051808303818588803b1580156111a257600080fd5b505af11580156111b6573d6000803e3d6000fd5b505050505050505050505050565b6006546001600160a01b031633146111ee5760405162461bcd60e51b815260040161083990612d4e565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561123057600080fd5b505afa158015611244573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112689190612b37565b9050816001600160a01b031663a9059cbb61128b6006546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b1580156112d357600080fd5b505af11580156112e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b479190612941565b600061131660095490565b82106113795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610839565b6009828154811061138c5761138c6130a5565b90600052602060002001549050919050565b604080516001600160a01b03848116602080840191909152828401879052835180840385018152606084018552600d54600160f01b60808601526082808601919091528551808603909101815260a29094018552600b5461ffff87166000908152600c90935294822080549295869592946001949116916340a7bb1091899161142a91610fe490612fd7565b866000866040518663ffffffff1660e01b815260040161144e959493929190612dd4565b604080518083038186803b15801561146557600080fd5b505afa158015611479573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149d9190612b92565b94509450505050935093915050565b6000818152600260205260408120546001600160a01b03168061087a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610839565b60006001600160a01b03821661158e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610839565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146115d45760405162461bcd60e51b815260040161083990612d4e565b610c556000611ea4565b6006546001600160a01b031633146116085760405162461bcd60e51b815260040161083990612d4e565b600d55565b6006546001600160a01b031633146116375760405162461bcd60e51b815260040161083990612d4e565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461088f90612fd7565b600c602052600090815260409020805461168190612fd7565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad90612fd7565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b505050505081565b61170d338383611ef6565b5050565b61171b3383611b5f565b6117375760405162461bcd60e51b815260040161083990612d83565b610c9f84848484611fc5565b6000818152600260205260409020546060906001600160a01b03166117c25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610839565b60006117cc611ff8565b905060008151116117ec5760405180602001604052806000815250611817565b806117f684612018565b604051602001611807929190612c7d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146118485760405162461bcd60e51b815260040161083990612d4e565b600b546040516304b2b47b60e11b81523060048201526001600160a01b039091169063cbed8b9c90829063096568f69060240160206040518083038186803b15801561189357600080fd5b505afa1580156118a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cb91906129b5565b868686866040518663ffffffff1660e01b81526004016118ef959493929190612f2f565b600060405180830381600087803b15801561190957600080fd5b505af115801561191d573d6000803e3d6000fd5b505050505050505050565b60405180608001604052806043815260200161311b6043913981565b6006546001600160a01b0316331461196e5760405162461bcd60e51b815260040161083990612d4e565b4760006119836006546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d80600081146119cd576040519150601f19603f3d011682016040523d82523d6000602084013e6119d2565b606091505b505090508061170d5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610839565b6006546001600160a01b03163314611a445760405162461bcd60e51b815260040161083990612d4e565b6001600160a01b038116611aa95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610839565b610dff81611ea4565b61170d828260405180602001604052806000815250612116565b60006001600160e01b0319821663780e9d6360e01b148061087a575061087a82612149565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b26826114ac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bd85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610839565b6000611be3836114ac565b9050806001600160a01b0316846001600160a01b03161480611c1e5750836001600160a01b0316611c13846109a1565b6001600160a01b0316145b80611c4e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c69826114ac565b6001600160a01b031614611ccd5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610839565b6001600160a01b038216611d2f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610839565b611d3a838383612199565b611d45600082611af1565b6001600160a01b0383166000908152600360205260408120805460019290611d6e908490612f94565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d9c908490612f68565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611e08826114ac565b9050611e1681600084612199565b611e21600083611af1565b6001600160a01b0381166000908152600360205260408120805460019290611e4a908490612f94565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f585760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610839565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611fd0848484611c56565b611fdc848484846121a4565b610c9f5760405162461bcd60e51b815260040161083990612cfc565b606060405180608001604052806043815260200161311b60439139905090565b60608161203c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612066578061205081613034565b915061205f9050600a83612f80565b9150612040565b60008167ffffffffffffffff811115612081576120816130bb565b6040519080825280601f01601f1916602001820160405280156120ab576020820181803683370190505b5090505b8415611c4e576120c0600183612f94565b91506120cd600a8661304f565b6120d8906030612f68565b60f81b8183815181106120ed576120ed6130a5565b60200101906001600160f81b031916908160001a90535061210f600a86612f80565b94506120af565b61212083836122b1565b61212d60008484846121a4565b610b475760405162461bcd60e51b815260040161083990612cfc565b60006001600160e01b031982166380ac58cd60e01b148061217a57506001600160e01b03198216635b5e139f60e01b145b8061087a57506301ffc9a760e01b6001600160e01b031983161461087a565b610b478383836123ff565b60006001600160a01b0384163b156122a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121e8903390899088908890600401612cac565b602060405180830381600087803b15801561220257600080fd5b505af1925050508015612232575060408051601f3d908101601f1916820190925261222f9181019061297b565b60015b61228c573d808015612260576040519150601f19603f3d011682016040523d82523d6000602084013e612265565b606091505b5080516122845760405162461bcd60e51b815260040161083990612cfc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c4e565b506001949350505050565b6001600160a01b0382166123075760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610839565b6000818152600260205260409020546001600160a01b03161561236c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610839565b61237860008383612199565b6001600160a01b03821660009081526003602052604081208054600192906123a1908490612f68565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b03831661245a5761245581600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61247d565b816001600160a01b0316836001600160a01b03161461247d5761247d83826124b7565b6001600160a01b03821661249457610b4781612554565b826001600160a01b0316826001600160a01b031614610b4757610b478282612603565b600060016124c484611523565b6124ce9190612f94565b600083815260086020526040902054909150808214612521576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061256690600190612f94565b6000838152600a60205260408120546009805493945090928490811061258e5761258e6130a5565b9060005260206000200154905080600983815481106125af576125af6130a5565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806125e7576125e761308f565b6001900381819060005260206000200160009055905550505050565b600061260e83611523565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461265390612fd7565b90600052602060002090601f01602090048101928261267557600085556126bb565b82601f1061268e5782800160ff198235161785556126bb565b828001600101855582156126bb579182015b828111156126bb5782358255916020019190600101906126a0565b506126c79291506126cb565b5090565b5b808211156126c757600081556001016126cc565b60008083601f8401126126f257600080fd5b50813567ffffffffffffffff81111561270a57600080fd5b60208301915083602082850101111561272257600080fd5b9250929050565b600082601f83011261273a57600080fd5b813567ffffffffffffffff80821115612755576127556130bb565b604051601f8301601f19908116603f0116810190828211818310171561277d5761277d6130bb565b8160405283815286602085880101111561279657600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156127c857600080fd5b8135611817816130d1565b600080604083850312156127e657600080fd5b82516127f1816130d1565b6020939093015192949293505050565b6000806040838503121561281457600080fd5b823561281f816130d1565b9150602083013561282f816130d1565b809150509250929050565b60008060006060848603121561284f57600080fd5b833561285a816130d1565b9250602084013561286a816130d1565b929592945050506040919091013590565b6000806000806080858703121561289157600080fd5b843561289c816130d1565b935060208501356128ac816130d1565b925060408501359150606085013567ffffffffffffffff8111156128cf57600080fd5b6128db87828801612729565b91505092959194509250565b600080604083850312156128fa57600080fd5b8235612905816130d1565b9150602083013561282f816130e6565b6000806040838503121561292857600080fd5b8235612933816130d1565b946020939093013593505050565b60006020828403121561295357600080fd5b8151611817816130e6565b60006020828403121561297057600080fd5b8135611817816130f4565b60006020828403121561298d57600080fd5b8151611817816130f4565b6000602082840312156129aa57600080fd5b81356118178161310a565b6000602082840312156129c757600080fd5b81516118178161310a565b6000806000604084860312156129e757600080fd5b83356129f28161310a565b9250602084013567ffffffffffffffff811115612a0e57600080fd5b612a1a868287016126e0565b9497909650939450505050565b60008060008060808587031215612a3d57600080fd5b8435612a488161310a565b9350602085013567ffffffffffffffff80821115612a6557600080fd5b612a7188838901612729565b9450604087013591508082168214612a8857600080fd5b90925060608601359080821115612a9e57600080fd5b506128db87828801612729565b600080600080600060808688031215612ac357600080fd5b8535612ace8161310a565b94506020860135612ade8161310a565b935060408601359250606086013567ffffffffffffffff811115612b0157600080fd5b612b0d888289016126e0565b969995985093965092949392505050565b600060208284031215612b3057600080fd5b5035919050565b600060208284031215612b4957600080fd5b5051919050565b600080600060608486031215612b6557600080fd5b833592506020840135612b77816130d1565b91506040840135612b878161310a565b809150509250925092565b60008060408385031215612ba557600080fd5b505080516020909101519092909150565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60008151808452612bf7816020860160208601612fab565b601f01601f19169290920160200192915050565b6000808354612c1981612fd7565b60018281168015612c315760018114612c4257612c71565b60ff19841687528287019450612c71565b8760005260208060002060005b85811015612c685781548a820152908401908201612c4f565b50505082870194505b50929695505050505050565b60008351612c8f818460208801612fab565b835190830190612ca3818360208801612fab565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cdf90830184612bdf565b9695505050505050565b6020815260006118176020830184612bdf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612e0290830186612bdf565b84151560608401528281036080840152612e1c8185612bdf565b98975050505050505050565b61ffff84168152604060208201526000612e46604083018486612bb6565b95945050505050565b61ffff871681526000602060c08184015260008854612e6d81612fd7565b8060c087015260e0600180841660008114612e8f5760018114612ea457612ed2565b60ff1985168984015261010089019550612ed2565b8d6000528660002060005b85811015612eca5781548b8201860152908301908801612eaf565b8a0184019650505b50505050508381036040850152612ee98189612bdf565b915050612f0160608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612f228185612bdf565b9998505050505050505050565b600061ffff808816835280871660208401525084604083015260806060830152612f5d608083018486612bb6565b979650505050505050565b60008219821115612f7b57612f7b613063565b500190565b600082612f8f57612f8f613079565b500490565b600082821015612fa657612fa6613063565b500390565b60005b83811015612fc6578181015183820152602001612fae565b83811115610c9f5750506000910152565b600181811c90821680612feb57607f821691505b6020821081141561300c57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561302a5761302a613063565b6001019392505050565b600060001982141561304857613048613063565b5060010190565b60008261305e5761305e613079565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610dff57600080fd5b8015158114610dff57600080fd5b6001600160e01b031981168114610dff57600080fd5b61ffff81168114610dff57600080fdfe697066733a2f2f62616679626569626a7632676e616e776865696d6e7a376332796d64743577346b687a6f32366a6c776c6f6f683578653664326f356c33366634792fa264697066735822122088fba1c074456bd7e807babf86a45f3e7bb19aeb42d607dde98e7a3f4bf67d2b64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675

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

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


Deployed Bytecode Sourcemap

64545:4270:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65659:683;;;;;;;;;;-1:-1:-1;65659:683:0;;;;;:::i;:::-;;:::i;68583:229::-;;;;;;;;;;-1:-1:-1;68583:229:0;;;;;:::i;:::-;;:::i;:::-;;;11959:14:1;;11952:22;11934:41;;11922:2;11907:18;68583:229:0;;;;;;;;29661:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;62831:43::-;;;;;;;;;;-1:-1:-1;62831:43:0;;;;-1:-1:-1;;;;;62831:43:0;;;;;;-1:-1:-1;;;;;10978:32:1;;;10960:51;;10948:2;10933:18;62831:43:0;10814:203:1;63701:128:0;;;;;;;;;;-1:-1:-1;63701:128:0;;;;;:::i;:::-;;:::i;31354:308::-;;;;;;;;;;-1:-1:-1;31354:308:0;;;;;:::i;:::-;;:::i;30877:411::-;;;;;;;;;;-1:-1:-1;30877:411:0;;;;;:::i;:::-;;:::i;63837:134::-;;;;;;;;;;-1:-1:-1;63837:134:0;;;;;:::i;:::-;;:::i;66487:185::-;;;:::i;46233:113::-;;;;;;;;;;-1:-1:-1;46321:10:0;:17;46233:113;;;25909:25:1;;;25897:2;25882:18;46233:113:0;25763:177:1;63160:162:0;;;;;;;;;;-1:-1:-1;63160:162:0;;;;;:::i;:::-;;:::i;32273:376::-;;;;;;;;;;-1:-1:-1;32273:376:0;;;;;:::i;:::-;;:::i;45814:343::-;;;;;;;;;;-1:-1:-1;45814:343:0;;;;;:::i;:::-;;:::i;64821:40::-;;;;;;;;;;;;64858:3;64821:40;;32720:185;;;;;;;;;;-1:-1:-1;32720:185:0;;;;;:::i;:::-;;:::i;43075:282::-;;;;;;;;;;-1:-1:-1;43075:282:0;;;;;:::i;:::-;;:::i;63979:217::-;;;;;;;;;;-1:-1:-1;63979:217:0;;;;;:::i;:::-;;:::i;66680:1054::-;;;;;;:::i;:::-;;:::i;65192:208::-;;;;;;;;;;-1:-1:-1;65192:208:0;;;;;:::i;:::-;;:::i;46423:320::-;;;;;;;;;;-1:-1:-1;46423:320:0;;;;;:::i;:::-;;:::i;67742:579::-;;;;;;;;;;-1:-1:-1;67742:579:0;;;;;:::i;:::-;;:::i;:::-;;;;26119:25:1;;;26175:2;26160:18;;26153:34;;;;26092:18;67742:579:0;25945:248:1;29268:326:0;;;;;;;;;;-1:-1:-1;29268:326:0;;;;;:::i;:::-;;:::i;28911:295::-;;;;;;;;;;-1:-1:-1;28911:295:0;;;;;:::i;:::-;;:::i;53555:103::-;;;;;;;;;;;;;:::i;64204:104::-;;;;;;;;;;-1:-1:-1;64204:104:0;;;;;:::i;:::-;;:::i;52904:87::-;;;;;;;;;;-1:-1:-1;52977:6:0;;-1:-1:-1;;;;;52977:6:0;52904:87;;62975:177;;;;;;;;;;-1:-1:-1;62975:177:0;;;;;:::i;:::-;;:::i;29830:104::-;;;;;;;;;;;;;:::i;62881:39::-;;;;;;;;;;-1:-1:-1;62881:39:0;;;;;:::i;:::-;;:::i;31734:187::-;;;;;;;;;;-1:-1:-1;31734:187:0;;;;;:::i;:::-;;:::i;32976:365::-;;;;;;;;;;-1:-1:-1;32976:365:0;;;;;:::i;:::-;;:::i;64626:30::-;;;;;;;;;;-1:-1:-1;64626:30:0;;;;;;;;;;;22762:6:1;22750:19;;;22732:38;;22720:2;22705:18;64626:30:0;22588:188:1;30005:468:0;;;;;;;;;;-1:-1:-1;30005:468:0;;;;;:::i;:::-;;:::i;63330:363::-;;;;;;;;;;-1:-1:-1;63330:363:0;;;;;:::i;:::-;;:::i;62929:37::-;;;;;;;;;;;;;;;;64702:112;;;;;;;;;;;;;:::i;65408:213::-;;;;;;;;;;;;;:::i;31992:214::-;;;;;;;;;;-1:-1:-1;31992:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;32163:25:0;;;32134:4;32163:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31992:214;53813:238;;;;;;;;;;-1:-1:-1;53813:238:0;;;;;:::i;:::-;;:::i;64663:30::-;;;;;;;;;;;;;;;;65659:683;65857:17;;-1:-1:-1;;;;;65857:17:0;65835:10;:40;65827:49;;;;;;65931:20;;;;;;;:7;:20;;;;;:27;;;;;:::i;:::-;;;65909:11;:18;:49;:127;;;;-1:-1:-1;66015:20:0;;;;;;;:7;:20;;;;;;;66005:31;;;;66015:20;66005:31;:::i;:::-;;;;;;;;65989:11;65979:22;;;;;;:57;65909:127;65887:263;;;;-1:-1:-1;;;65887:263:0;;15629:2:1;65887:263:0;;;15611:21:1;15668:2;15648:18;;;15641:30;15707:34;15687:18;;;15680:62;15778:34;15758:18;;;15751:62;-1:-1:-1;;;15829:19:1;;;15822:53;15892:19;;65887:263:0;;;;;;;;;66191:10;66203:15;66247:8;66222:77;;;;;;;;;;;;:::i;:::-;66190:109;;;;66312:22;66322:2;66326:7;66312:9;:22::i;:::-;65816:526;;65659:683;;;;:::o;68583:229::-;68739:4;68768:36;68792:11;68768:23;:36::i;:::-;68761:43;68583:229;-1:-1:-1;;68583:229:0:o;29661:100::-;29715:13;29748:5;29741:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29661:100;:::o;63701:128::-;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;63780:17:::1;::::0;:41:::1;::::0;-1:-1:-1;;;63780:41:0;;22762:6:1;22750:19;;63780:41:0::1;::::0;::::1;22732:38:1::0;-1:-1:-1;;;;;63780:17:0;;::::1;::::0;:32:::1;::::0;22705:18:1;;63780:41:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;63701:128:::0;:::o;31354:308::-;31475:7;34977:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34977:16:0;31500:110;;;;-1:-1:-1;;;31500:110:0;;19602:2:1;31500:110:0;;;19584:21:1;19641:2;19621:18;;;19614:30;19680:34;19660:18;;;19653:62;-1:-1:-1;;;19731:18:1;;;19724:42;19783:19;;31500:110:0;19400:408:1;31500:110:0;-1:-1:-1;31630:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31630:24:0;;31354:308::o;30877:411::-;30958:13;30974:23;30989:7;30974:14;:23::i;:::-;30958:39;;31022:5;-1:-1:-1;;;;;31016:11:0;:2;-1:-1:-1;;;;;31016:11:0;;;31008:57;;;;-1:-1:-1;;;31008:57:0;;20792:2:1;31008:57:0;;;20774:21:1;20831:2;20811:18;;;20804:30;20870:34;20850:18;;;20843:62;-1:-1:-1;;;20921:18:1;;;20914:31;20962:19;;31008:57:0;20590:397:1;31008:57:0;23801:10;-1:-1:-1;;;;;31100:21:0;;;;:62;;-1:-1:-1;31125:37:0;31142:5;23801:10;31992:214;:::i;31125:37::-;31078:168;;;;-1:-1:-1;;;31078:168:0;;17995:2:1;31078:168:0;;;17977:21:1;18034:2;18014:18;;;18007:30;18073:34;18053:18;;;18046:62;18144:26;18124:18;;;18117:54;18188:19;;31078:168:0;17793:420:1;31078:168:0;31259:21;31268:2;31272:7;31259:8;:21::i;:::-;30947:341;30877:411;;:::o;63837:134::-;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;63919:17:::1;::::0;:44:::1;::::0;-1:-1:-1;;;63919:44:0;;22762:6:1;22750:19;;63919:44:0::1;::::0;::::1;22732:38:1::0;-1:-1:-1;;;;;63919:17:0;;::::1;::::0;:35:::1;::::0;22705:18:1;;63919:44:0::1;22588:188:1::0;66487:185:0;66537:12;;64858:3;66537:12;;;;:25;66529:61;;;;-1:-1:-1;;;66529:61:0;;12869:2:1;66529:61:0;;;12851:21:1;12908:2;12888:18;;;12881:30;12947:25;12927:18;;;12920:53;12990:18;;66529:61:0;12667:347:1;66529:61:0;66601:12;:14;;;;;:12;:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;66626:38;66636:12;23801:10;;23721:98;66636:12;66652:11;;66650:13;;;;;:::i;:::-;;;;;-1:-1:-1;66626:9:0;:38::i;:::-;66487:185::o;63160:162::-;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;63280:17:::1;::::0;::::1;;::::0;;;:7:::1;:17;::::0;;;;:34:::1;::::0;63300:14;;63280:34:::1;:::i;:::-;;63160:162:::0;;;:::o;32273:376::-;32482:41;23801:10;32501:12;32515:7;32482:18;:41::i;:::-;32460:140;;;;-1:-1:-1;;;32460:140:0;;;;;;;:::i;:::-;32613:28;32623:4;32629:2;32633:7;32613:9;:28::i;45814:343::-;45956:7;46011:23;46028:5;46011:16;:23::i;:::-;46003:5;:31;45981:124;;;;-1:-1:-1;;;45981:124:0;;13628:2:1;45981:124:0;;;13610:21:1;13667:2;13647:18;;;13640:30;13706:34;13686:18;;;13679:62;-1:-1:-1;;;13757:18:1;;;13750:41;13808:19;;45981:124:0;13426:407:1;45981:124:0;-1:-1:-1;;;;;;46123:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45814:343::o;32720:185::-;32858:39;32875:4;32881:2;32885:7;32858:39;;;;;;;;;;;;:16;:39::i;43075:282::-;43207:41;23801:10;43226:12;23721:98;43207:41;43185:139;;;;-1:-1:-1;;;43185:139:0;;22373:2:1;43185:139:0;;;22355:21:1;22412:2;22392:18;;;22385:30;22451:34;22431:18;;;22424:62;-1:-1:-1;;;22502:18:1;;;22495:46;22558:19;;43185:139:0;22171:412:1;43185:139:0;43335:14;43341:7;43335:5;:14::i;:::-;43075:282;:::o;63979:217::-;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;64126:17:::1;::::0;:62:::1;::::0;-1:-1:-1;;;64126:62:0;;-1:-1:-1;;;;;64126:17:0;;::::1;::::0;:36:::1;::::0;:62:::1;::::0;64163:11;;64176;;;;64126:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;63979:217:::0;;;:::o;66680:1054::-;23801:10;66823:17;66831:8;66823:7;:17::i;:::-;-1:-1:-1;;;;;66823:33:0;;66815:65;;;;-1:-1:-1;;;66815:65:0;;21194:2:1;66815:65:0;;;21176:21:1;21233:2;21213:18;;;21206:30;-1:-1:-1;;;21252:18:1;;;21245:49;21311:18;;66815:65:0;20992:343:1;66815:65:0;66899:17;;;66926:1;66899:17;;;:7;:17;;;;;:24;;;;;:::i;:::-;;;:28;66891:62;;;;-1:-1:-1;;;66891:62:0;;17645:2:1;66891:62:0;;;17627:21:1;17684:2;17664:18;;;17657:30;-1:-1:-1;;;17703:18:1;;;17696:51;17764:18;;66891:62:0;17443:345:1;66891:62:0;66966:15;66972:8;66966:5;:15::i;:::-;67017:25;;;-1:-1:-1;;;;;11707:32:1;;;67017:25:0;;;;11689:51:1;;;;11756:18;;;11749:34;;;67017:25:0;;;;;;;;;11662:18:1;;;67017:25:0;;67139:13;;-1:-1:-1;;;67113:40:0;;;10688:51:1;10755:11;;;;10748:27;;;;67113:40:0;;;;;;;;;;10791:12:1;;;;67113:40:0;;67191:17;;67275;;;-1:-1:-1;67275:17:0;;;:7;:17;;;;;;67259:34;;67017:25;;67072:1;;67113:40;67191:17;;:30;;67275:17;;67259:34;;67275:17;67259:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64486:2;64477:12;64471:19;;64316:192;67259:34;67308:7;67330:5;67350:13;67191:183;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67166:208;;;67420:10;67407:9;:23;;67385:111;;;;-1:-1:-1;;;67385:111:0;;13221:2:1;67385:111:0;;;13203:21:1;13260:2;13240:18;;;13233:30;13299:34;13279:18;;;13272:62;-1:-1:-1;;;13350:18:1;;;13343:36;13396:19;;67385:111:0;13019:402:1;67385:111:0;67509:17;;67587;;;67509;67587;;;:7;:17;;;;;;67509:217;;-1:-1:-1;;;67509:217:0;;-1:-1:-1;;;;;67509:17:0;;;;:22;;67539:9;;67509:217;;67564:8;;67619:7;;67649:10;;67509:17;67702:13;;67509:217;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66804:930;;;;66680:1054;;;:::o;65192:208::-;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;65286:46:::1;::::0;-1:-1:-1;;;65286:46:0;;65326:4:::1;65286:46;::::0;::::1;10960:51:1::0;65269:14:0::1;::::0;-1:-1:-1;;;;;65286:31:0;::::1;::::0;::::1;::::0;10933:18:1;;65286:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65269:63;;65352:13;-1:-1:-1::0;;;;;65345:30:0::1;;65376:7;52977:6:::0;;-1:-1:-1;;;;;52977:6:0;;52904:87;65376:7:::1;65345:47;::::0;-1:-1:-1;;;;;;65345:47:0::1;::::0;;;;;;-1:-1:-1;;;;;11707:32:1;;;65345:47:0::1;::::0;::::1;11689:51:1::0;11756:18;;;11749:34;;;11662:18;;65345:47:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;46423:320::-:0;46543:7;46598:30;46321:10;:17;;46233:113;46598:30;46590:5;:38;46568:132;;;;-1:-1:-1;;;46568:132:0;;21960:2:1;46568:132:0;;;21942:21:1;21999:2;21979:18;;;21972:30;22038:34;22018:18;;;22011:62;-1:-1:-1;;;22089:18:1;;;22082:42;22141:19;;46568:132:0;21758:408:1;46568:132:0;46718:10;46729:5;46718:17;;;;;;;;:::i;:::-;;;;;;;;;46711:24;;46423:320;;;:::o;67742:579::-;67937:25;;;-1:-1:-1;;;;;11707:32:1;;;67937:25:0;;;;11689:51:1;;;;11756:18;;;11749:34;;;67937:25:0;;;;;;;;;11662:18:1;;;67937:25:0;;68059:13;;-1:-1:-1;;;68033:40:0;;;10688:51:1;10755:11;;;;10748:27;;;;68033:40:0;;;;;;;;;;10791:12:1;;;;68033:40:0;;68106:17;;68198;;;-1:-1:-1;68198:17:0;;;:7;:17;;;;;;68182:34;;-1:-1:-1;;;;67937:25:0;;67992:1;;68106:17;;;:30;;68198:17;;68182:34;;;;;:::i;:::-;68235:7;68261:5;68285:13;68106:207;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68086:227;;;;;;;67742:579;;;;;;:::o;29268:326::-;29385:7;29426:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29426:16:0;29475:19;29453:110;;;;-1:-1:-1;;;29453:110:0;;18831:2:1;29453:110:0;;;18813:21:1;18870:2;18850:18;;;18843:30;18909:34;18889:18;;;18882:62;-1:-1:-1;;;18960:18:1;;;18953:39;19009:19;;29453:110:0;18629:405:1;28911:295:0;29028:7;-1:-1:-1;;;;;29075:19:0;;29053:111;;;;-1:-1:-1;;;29053:111:0;;18420:2:1;29053:111:0;;;18402:21:1;18459:2;18439:18;;;18432:30;18498:34;18478:18;;;18471:62;-1:-1:-1;;;18549:18:1;;;18542:40;18599:19;;29053:111:0;18218:406:1;29053:111:0;-1:-1:-1;;;;;;29182:16:0;;;;;:9;:16;;;;;;;28911:295::o;53555:103::-;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;53620:30:::1;53647:1;53620:18;:30::i;64204:104::-:0;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;64277:13:::1;:23:::0;64204:104::o;62975:177::-;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;63086:17:::1;:58:::0;;-1:-1:-1;;;;;;63086:58:0::1;-1:-1:-1::0;;;;;63086:58:0;;;::::1;::::0;;;::::1;::::0;;62975:177::o;29830:104::-;29886:13;29919:7;29912:14;;;;;:::i;62881:39::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31734:187::-;31861:52;23801:10;31894:8;31904;31861:18;:52::i;:::-;31734:187;;:::o;32976:365::-;33165:41;23801:10;33198:7;33165:18;:41::i;:::-;33143:140;;;;-1:-1:-1;;;33143:140:0;;;;;;;:::i;:::-;33294:39;33308:4;33314:2;33318:7;33327:5;33294:13;:39::i;30005:468::-;34953:4;34977:16;;;:7;:16;;;;;;30123:13;;-1:-1:-1;;;;;34977:16:0;30154:113;;;;-1:-1:-1;;;30154:113:0;;20376:2:1;30154:113:0;;;20358:21:1;20415:2;20395:18;;;20388:30;20454:34;20434:18;;;20427:62;-1:-1:-1;;;20505:18:1;;;20498:45;20560:19;;30154:113:0;20174:411:1;30154:113:0;30280:21;30304:10;:8;:10::i;:::-;30280:34;;30369:1;30351:7;30345:21;:25;:120;;;;;;;;;;;;;;;;;30414:7;30423:18;:7;:16;:18::i;:::-;30397:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30345:120;30325:140;30005:468;-1:-1:-1;;;30005:468:0:o;63330:363::-;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;63514:17:::1;::::0;63556:47:::1;::::0;-1:-1:-1;;;63556:47:0;;63597:4:::1;63556:47;::::0;::::1;10960:51:1::0;-1:-1:-1;;;;;63514:17:0;;::::1;::::0;:27:::1;::::0;:17;;63556:32:::1;::::0;10933:18:1;;63556:47:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63618:8;63641:11;63667:7;;63514:171;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;63330:363:::0;;;;;:::o;64702:112::-;;;;;;;;;;;;;;;;;;;:::o;65408:213::-;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;65478:21:::1;65461:14;65531:7;52977:6:::0;;-1:-1:-1;;;;;52977:6:0;;52904:87;65531:7:::1;-1:-1:-1::0;;;;;65531:12:0::1;65551:6;65531:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65512:50;;;65581:7;65573:40;;;::::0;-1:-1:-1;;;65573:40:0;;16124:2:1;65573:40:0::1;::::0;::::1;16106:21:1::0;16163:2;16143:18;;;16136:30;-1:-1:-1;;;16182:18:1;;;16175:50;16242:18;;65573:40:0::1;15922:344:1::0;53813:238:0;52977:6;;-1:-1:-1;;;;;52977:6:0;23801:10;53124:23;53116:68;;;;-1:-1:-1;;;53116:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53916:22:0;::::1;53894:110;;;::::0;-1:-1:-1;;;53894:110:0;;14459:2:1;53894:110:0::1;::::0;::::1;14441:21:1::0;14498:2;14478:18;;;14471:30;14537:34;14517:18;;;14510:62;-1:-1:-1;;;14588:18:1;;;14581:36;14634:19;;53894:110:0::1;14257:402:1::0;53894:110:0::1;54015:28;54034:8;54015:18;:28::i;35976:110::-:0;36052:26;36062:2;36066:7;36052:26;;;;;;;;;;;;:9;:26::i;45430:300::-;45577:4;-1:-1:-1;;;;;;45619:50:0;;-1:-1:-1;;;45619:50:0;;:103;;;45686:36;45710:11;45686:23;:36::i;39175:174::-;39250:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39250:29:0;-1:-1:-1;;;;;39250:29:0;;;;;;;;:24;;39304:23;39250:24;39304:14;:23::i;:::-;-1:-1:-1;;;;;39295:46:0;;;;;;;;;;;39175:174;;:::o;35182:452::-;35311:4;34977:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34977:16:0;35333:110;;;;-1:-1:-1;;;35333:110:0;;17232:2:1;35333:110:0;;;17214:21:1;17271:2;17251:18;;;17244:30;17310:34;17290:18;;;17283:62;-1:-1:-1;;;17361:18:1;;;17354:42;17413:19;;35333:110:0;17030:408:1;35333:110:0;35454:13;35470:23;35485:7;35470:14;:23::i;:::-;35454:39;;35523:5;-1:-1:-1;;;;;35512:16:0;:7;-1:-1:-1;;;;;35512:16:0;;:64;;;;35569:7;-1:-1:-1;;;;;35545:31:0;:20;35557:7;35545:11;:20::i;:::-;-1:-1:-1;;;;;35545:31:0;;35512:64;:113;;;-1:-1:-1;;;;;;32163:25:0;;;32134:4;32163:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35593:32;35504:122;35182:452;-1:-1:-1;;;;35182:452:0:o;38395:662::-;38568:4;-1:-1:-1;;;;;38541:31:0;:23;38556:7;38541:14;:23::i;:::-;-1:-1:-1;;;;;38541:31:0;;38519:118;;;;-1:-1:-1;;;38519:118:0;;14866:2:1;38519:118:0;;;14848:21:1;14905:2;14885:18;;;14878:30;14944:34;14924:18;;;14917:62;-1:-1:-1;;;14995:18:1;;;14988:35;15040:19;;38519:118:0;14664:401:1;38519:118:0;-1:-1:-1;;;;;38656:16:0;;38648:65;;;;-1:-1:-1;;;38648:65:0;;16473:2:1;38648:65:0;;;16455:21:1;16512:2;16492:18;;;16485:30;16551:34;16531:18;;;16524:62;-1:-1:-1;;;16602:18:1;;;16595:34;16646:19;;38648:65:0;16271:400:1;38648:65:0;38726:39;38747:4;38753:2;38757:7;38726:20;:39::i;:::-;38830:29;38847:1;38851:7;38830:8;:29::i;:::-;-1:-1:-1;;;;;38872:15:0;;;;;;:9;:15;;;;;:20;;38891:1;;38872:15;:20;;38891:1;;38872:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38903:13:0;;;;;;:9;:13;;;;;:18;;38920:1;;38903:13;:18;;38920:1;;38903:18;:::i;:::-;;;;-1:-1:-1;;38932:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38932:21:0;-1:-1:-1;;;;;38932:21:0;;;;;;;;;38971:27;;38932:16;;38971:27;;;;;;;30947:341;30877:411;;:::o;37638:420::-;37698:13;37714:23;37729:7;37714:14;:23::i;:::-;37698:39;;37750:48;37771:5;37786:1;37790:7;37750:20;:48::i;:::-;37839:29;37856:1;37860:7;37839:8;:29::i;:::-;-1:-1:-1;;;;;37881:16:0;;;;;;:9;:16;;;;;:21;;37901:1;;37881:16;:21;;37901:1;;37881:21;:::i;:::-;;;;-1:-1:-1;;37920:16:0;;;;:7;:16;;;;;;37913:23;;-1:-1:-1;;;;;;37913:23:0;;;37954:36;37928:7;;37920:16;-1:-1:-1;;;;;37954:36:0;;;;;37920:16;;37954:36;31734:187;;:::o;54211:191::-;54304:6;;;-1:-1:-1;;;;;54321:17:0;;;-1:-1:-1;;;;;;54321:17:0;;;;;;;54354:40;;54304:6;;;54321:17;54304:6;;54354:40;;54285:16;;54354:40;54274:128;54211:191;:::o;39491:315::-;39646:8;-1:-1:-1;;;;;39637:17:0;:5;-1:-1:-1;;;;;39637:17:0;;;39629:55;;;;-1:-1:-1;;;39629:55:0;;16878:2:1;39629:55:0;;;16860:21:1;16917:2;16897:18;;;16890:30;16956:27;16936:18;;;16929:55;17001:18;;39629:55:0;16676:349:1;39629:55:0;-1:-1:-1;;;;;39695:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39695:46:0;;;;;;;;;;39757:41;;11934::1;;;39757::0;;11907:18:1;39757:41:0;;;;;;;39491:315;;;:::o;34223:352::-;34380:28;34390:4;34396:2;34400:7;34380:9;:28::i;:::-;34441:48;34464:4;34470:2;34474:7;34483:5;34441:22;:48::i;:::-;34419:148;;;;-1:-1:-1;;;34419:148:0;;;;;;;:::i;66378:101::-;66430:13;66463:8;;;;;;;;;;;;;;;;;66456:15;;66378:101;:::o;24277:723::-;24333:13;24554:10;24550:53;;-1:-1:-1;;24581:10:0;;;;;;;;;;;;-1:-1:-1;;;24581:10:0;;;;;24277:723::o;24550:53::-;24628:5;24613:12;24669:78;24676:9;;24669:78;;24702:8;;;;:::i;:::-;;-1:-1:-1;24725:10:0;;-1:-1:-1;24733:2:0;24725:10;;:::i;:::-;;;24669:78;;;24757:19;24789:6;24779:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24779:17:0;;24757:39;;24807:154;24814:10;;24807:154;;24841:11;24851:1;24841:11;;:::i;:::-;;-1:-1:-1;24910:10:0;24918:2;24910:5;:10;:::i;:::-;24897:24;;:2;:24;:::i;:::-;24884:39;;24867:6;24874;24867:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24867:56:0;;;;;;;;-1:-1:-1;24938:11:0;24947:2;24938:11;;:::i;:::-;;;24807:154;;36313:321;36443:18;36449:2;36453:7;36443:5;:18::i;:::-;36494:54;36525:1;36529:2;36533:7;36542:5;36494:22;:54::i;:::-;36472:154;;;;-1:-1:-1;;;36472:154:0;;;;;;;:::i;28492:355::-;28639:4;-1:-1:-1;;;;;;28681:40:0;;-1:-1:-1;;;28681:40:0;;:105;;-1:-1:-1;;;;;;;28738:48:0;;-1:-1:-1;;;28738:48:0;28681:105;:158;;;-1:-1:-1;;;;;;;;;;27067:40:0;;;28803:36;26908:207;68352:223;68522:45;68549:4;68555:2;68559:7;68522:26;:45::i;40371:980::-;40526:4;-1:-1:-1;;;;;40547:13:0;;15623:19;:23;40543:801;;40600:175;;-1:-1:-1;;;40600:175:0;;-1:-1:-1;;;;;40600:36:0;;;;;:175;;23801:10;;40694:4;;40721:7;;40751:5;;40600:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40600:175:0;;;;;;;;-1:-1:-1;;40600:175:0;;;;;;;;;;;;:::i;:::-;;;40579:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40958:13:0;;40954:320;;41001:108;;-1:-1:-1;;;41001:108:0;;;;;;;:::i;40954:320::-;41224:6;41218:13;41209:6;41205:2;41201:15;41194:38;40579:710;-1:-1:-1;;;;;;40839:51:0;-1:-1:-1;;;40839:51:0;;-1:-1:-1;40832:58:0;;40543:801;-1:-1:-1;41328:4:0;40371:980;;;;;;:::o;36970:439::-;-1:-1:-1;;;;;37050:16:0;;37042:61;;;;-1:-1:-1;;;37042:61:0;;19241:2:1;37042:61:0;;;19223:21:1;;;19260:18;;;19253:30;19319:34;19299:18;;;19292:62;19371:18;;37042:61:0;19039:356:1;37042:61:0;34953:4;34977:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34977:16:0;:30;37114:58;;;;-1:-1:-1;;;37114:58:0;;15272:2:1;37114:58:0;;;15254:21:1;15311:2;15291:18;;;15284:30;15350;15330:18;;;15323:58;15398:18;;37114:58:0;15070:352:1;37114:58:0;37185:45;37214:1;37218:2;37222:7;37185:20;:45::i;:::-;-1:-1:-1;;;;;37243:13:0;;;;;;:9;:13;;;;;:18;;37260:1;;37243:13;:18;;37260:1;;37243:18;:::i;:::-;;;;-1:-1:-1;;37272:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37272:21:0;-1:-1:-1;;;;;37272:21:0;;;;;;;;37311:33;;37272:16;;;37311:33;;37272:16;;37311:33;31734:187;;:::o;47356:589::-;-1:-1:-1;;;;;47562:18:0;;47558:187;;47597:40;47629:7;48772:10;:17;;48745:24;;;;:15;:24;;;;;:44;;;48800:24;;;;;;;;;;;;48668:164;47597:40;47558:187;;;47667:2;-1:-1:-1;;;;;47659:10:0;:4;-1:-1:-1;;;;;47659:10:0;;47655:90;;47686:47;47719:4;47725:7;47686:32;:47::i;:::-;-1:-1:-1;;;;;47759:16:0;;47755:183;;47792:45;47829:7;47792:36;:45::i;47755:183::-;47865:4;-1:-1:-1;;;;;47859:10:0;:2;-1:-1:-1;;;;;47859:10:0;;47855:83;;47886:40;47914:2;47918:7;47886:27;:40::i;49459:1002::-;49739:22;49789:1;49764:22;49781:4;49764:16;:22::i;:::-;:26;;;;:::i;:::-;49801:18;49822:26;;;:17;:26;;;;;;49739:51;;-1:-1:-1;49955:28:0;;;49951:328;;-1:-1:-1;;;;;50022:18:0;;50000:19;50022:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50073:30;;;;;;:44;;;50190:30;;:17;:30;;;;;:43;;;49951:328;-1:-1:-1;50375:26:0;;;;:17;:26;;;;;;;;50368:33;;;-1:-1:-1;;;;;50419:18:0;;;;;:12;:18;;;;;:34;;;;;;;50412:41;49459:1002::o;50756:1079::-;51034:10;:17;51009:22;;51034:21;;51054:1;;51034:21;:::i;:::-;51066:18;51087:24;;;:15;:24;;;;;;51460:10;:26;;51009:46;;-1:-1:-1;51087:24:0;;51009:46;;51460:26;;;;;;:::i;:::-;;;;;;;;;51438:48;;51524:11;51499:10;51510;51499:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;51604:28;;;:15;:28;;;;;;;:41;;;51776:24;;;;;51769:31;51811:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50827:1008;;;50756:1079;:::o;48246:221::-;48331:14;48348:20;48365:2;48348:16;:20::i;:::-;-1:-1:-1;;;;;48379:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48424:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48246:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:347:1;65:8;75:6;129:3;122:4;114:6;110:17;106:27;96:55;;147:1;144;137:12;96:55;-1:-1:-1;170:20:1;;213:18;202:30;;199:50;;;245:1;242;235:12;199:50;282:4;274:6;270:17;258:29;;334:3;327:4;318:6;310;306:19;302:30;299:39;296:59;;;351:1;348;341:12;296:59;14:347;;;;;:::o;366:718::-;408:5;461:3;454:4;446:6;442:17;438:27;428:55;;479:1;476;469:12;428:55;515:6;502:20;541:18;578:2;574;571:10;568:36;;;584:18;;:::i;:::-;659:2;653:9;627:2;713:13;;-1:-1:-1;;709:22:1;;;733:2;705:31;701:40;689:53;;;757:18;;;777:22;;;754:46;751:72;;;803:18;;:::i;:::-;843:10;839:2;832:22;878:2;870:6;863:18;924:3;917:4;912:2;904:6;900:15;896:26;893:35;890:55;;;941:1;938;931:12;890:55;1005:2;998:4;990:6;986:17;979:4;971:6;967:17;954:54;1052:1;1045:4;1040:2;1032:6;1028:15;1024:26;1017:37;1072:6;1063:15;;;;;;366:718;;;;:::o;1089:247::-;1148:6;1201:2;1189:9;1180:7;1176:23;1172:32;1169:52;;;1217:1;1214;1207:12;1169:52;1256:9;1243:23;1275:31;1300:5;1275:31;:::i;1341:320::-;1428:6;1436;1489:2;1477:9;1468:7;1464:23;1460:32;1457:52;;;1505:1;1502;1495:12;1457:52;1537:9;1531:16;1556:31;1581:5;1556:31;:::i;:::-;1651:2;1636:18;;;;1630:25;1606:5;;1630:25;;-1:-1:-1;;;1341:320:1:o;1666:388::-;1734:6;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;2041:7;2031:17;;;1666:388;;;;;:::o;2059:456::-;2136:6;2144;2152;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2260:9;2247:23;2279:31;2304:5;2279:31;:::i;:::-;2329:5;-1:-1:-1;2386:2:1;2371:18;;2358:32;2399:33;2358:32;2399:33;:::i;:::-;2059:456;;2451:7;;-1:-1:-1;;;2505:2:1;2490:18;;;;2477:32;;2059:456::o;2520:665::-;2615:6;2623;2631;2639;2692:3;2680:9;2671:7;2667:23;2663:33;2660:53;;;2709:1;2706;2699:12;2660:53;2748:9;2735:23;2767:31;2792:5;2767:31;:::i;:::-;2817:5;-1:-1:-1;2874:2:1;2859:18;;2846:32;2887:33;2846:32;2887:33;:::i;:::-;2939:7;-1:-1:-1;2993:2:1;2978:18;;2965:32;;-1:-1:-1;3048:2:1;3033:18;;3020:32;3075:18;3064:30;;3061:50;;;3107:1;3104;3097:12;3061:50;3130:49;3171:7;3162:6;3151:9;3147:22;3130:49;:::i;:::-;3120:59;;;2520:665;;;;;;;:::o;3190:382::-;3255:6;3263;3316:2;3304:9;3295:7;3291:23;3287:32;3284:52;;;3332:1;3329;3322:12;3284:52;3371:9;3358:23;3390:31;3415:5;3390:31;:::i;:::-;3440:5;-1:-1:-1;3497:2:1;3482:18;;3469:32;3510:30;3469:32;3510:30;:::i;3577:315::-;3645:6;3653;3706:2;3694:9;3685:7;3681:23;3677:32;3674:52;;;3722:1;3719;3712:12;3674:52;3761:9;3748:23;3780:31;3805:5;3780:31;:::i;:::-;3830:5;3882:2;3867:18;;;;3854:32;;-1:-1:-1;;;3577:315:1:o;3897:245::-;3964:6;4017:2;4005:9;3996:7;3992:23;3988:32;3985:52;;;4033:1;4030;4023:12;3985:52;4065:9;4059:16;4084:28;4106:5;4084:28;:::i;4147:245::-;4205:6;4258:2;4246:9;4237:7;4233:23;4229:32;4226:52;;;4274:1;4271;4264:12;4226:52;4313:9;4300:23;4332:30;4356:5;4332:30;:::i;4397:249::-;4466:6;4519:2;4507:9;4498:7;4494:23;4490:32;4487:52;;;4535:1;4532;4525:12;4487:52;4567:9;4561:16;4586:30;4610:5;4586:30;:::i;4651:245::-;4709:6;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4817:9;4804:23;4836:30;4860:5;4836:30;:::i;4901:249::-;4970:6;5023:2;5011:9;5002:7;4998:23;4994:32;4991:52;;;5039:1;5036;5029:12;4991:52;5071:9;5065:16;5090:30;5114:5;5090:30;:::i;5155:542::-;5233:6;5241;5249;5302:2;5290:9;5281:7;5277:23;5273:32;5270:52;;;5318:1;5315;5308:12;5270:52;5357:9;5344:23;5376:30;5400:5;5376:30;:::i;:::-;5425:5;-1:-1:-1;5481:2:1;5466:18;;5453:32;5508:18;5497:30;;5494:50;;;5540:1;5537;5530:12;5494:50;5579:58;5629:7;5620:6;5609:9;5605:22;5579:58;:::i;:::-;5155:542;;5656:8;;-1:-1:-1;5553:84:1;;-1:-1:-1;;;;5155:542:1:o;5702:837::-;5804:6;5812;5820;5828;5881:3;5869:9;5860:7;5856:23;5852:33;5849:53;;;5898:1;5895;5888:12;5849:53;5937:9;5924:23;5956:30;5980:5;5956:30;:::i;:::-;6005:5;-1:-1:-1;6061:2:1;6046:18;;6033:32;6084:18;6114:14;;;6111:34;;;6141:1;6138;6131:12;6111:34;6164:49;6205:7;6196:6;6185:9;6181:22;6164:49;:::i;:::-;6154:59;;6265:2;6254:9;6250:18;6237:32;6222:47;;6313:2;6304:7;6300:16;6291:7;6288:29;6278:57;;6331:1;6328;6321:12;6278:57;6354:7;;-1:-1:-1;6414:2:1;6399:18;;6386:32;;6430:16;;;6427:36;;;6459:1;6456;6449:12;6427:36;;6482:51;6525:7;6514:8;6503:9;6499:24;6482:51;:::i;6544:750::-;6639:6;6647;6655;6663;6671;6724:3;6712:9;6703:7;6699:23;6695:33;6692:53;;;6741:1;6738;6731:12;6692:53;6780:9;6767:23;6799:30;6823:5;6799:30;:::i;:::-;6848:5;-1:-1:-1;6905:2:1;6890:18;;6877:32;6918;6877;6918;:::i;:::-;6969:7;-1:-1:-1;7023:2:1;7008:18;;6995:32;;-1:-1:-1;7078:2:1;7063:18;;7050:32;7105:18;7094:30;;7091:50;;;7137:1;7134;7127:12;7091:50;7176:58;7226:7;7217:6;7206:9;7202:22;7176:58;:::i;:::-;6544:750;;;;-1:-1:-1;6544:750:1;;-1:-1:-1;7253:8:1;;7150:84;6544:750;-1:-1:-1;;;6544:750:1:o;7299:180::-;7358:6;7411:2;7399:9;7390:7;7386:23;7382:32;7379:52;;;7427:1;7424;7417:12;7379:52;-1:-1:-1;7450:23:1;;7299:180;-1:-1:-1;7299:180:1:o;7484:184::-;7554:6;7607:2;7595:9;7586:7;7582:23;7578:32;7575:52;;;7623:1;7620;7613:12;7575:52;-1:-1:-1;7646:16:1;;7484:184;-1:-1:-1;7484:184:1:o;7673:454::-;7749:6;7757;7765;7818:2;7806:9;7797:7;7793:23;7789:32;7786:52;;;7834:1;7831;7824:12;7786:52;7870:9;7857:23;7847:33;;7930:2;7919:9;7915:18;7902:32;7943:31;7968:5;7943:31;:::i;:::-;7993:5;-1:-1:-1;8050:2:1;8035:18;;8022:32;8063;8022;8063;:::i;:::-;8114:7;8104:17;;;7673:454;;;;;:::o;8132:245::-;8211:6;8219;8272:2;8260:9;8251:7;8247:23;8243:32;8240:52;;;8288:1;8285;8278:12;8240:52;-1:-1:-1;;8311:16:1;;8367:2;8352:18;;;8346:25;8311:16;;8346:25;;-1:-1:-1;8132:245:1:o;8499:266::-;8587:6;8582:3;8575:19;8639:6;8632:5;8625:4;8620:3;8616:14;8603:43;-1:-1:-1;8691:1:1;8666:16;;;8684:4;8662:27;;;8655:38;;;;8747:2;8726:15;;;-1:-1:-1;;8722:29:1;8713:39;;;8709:50;;8499:266::o;8770:257::-;8811:3;8849:5;8843:12;8876:6;8871:3;8864:19;8892:63;8948:6;8941:4;8936:3;8932:14;8925:4;8918:5;8914:16;8892:63;:::i;:::-;9009:2;8988:15;-1:-1:-1;;8984:29:1;8975:39;;;;9016:4;8971:50;;8770:257;-1:-1:-1;;8770:257:1:o;9032:811::-;9158:3;9187:1;9220:6;9214:13;9250:36;9276:9;9250:36;:::i;:::-;9305:1;9322:18;;;9349:104;;;;9467:1;9462:356;;;;9315:503;;9349:104;-1:-1:-1;;9382:24:1;;9370:37;;9427:16;;;;-1:-1:-1;9349:104:1;;9462:356;9493:6;9490:1;9483:17;9523:4;9568:2;9565:1;9555:16;9593:1;9607:165;9621:6;9618:1;9615:13;9607:165;;;9699:14;;9686:11;;;9679:35;9742:16;;;;9636:10;;9607:165;;;9611:3;;;9801:6;9796:3;9792:16;9785:23;;9315:503;-1:-1:-1;9834:3:1;;9032:811;-1:-1:-1;;;;;;9032:811:1:o;9848:470::-;10027:3;10065:6;10059:13;10081:53;10127:6;10122:3;10115:4;10107:6;10103:17;10081:53;:::i;:::-;10197:13;;10156:16;;;;10219:57;10197:13;10156:16;10253:4;10241:17;;10219:57;:::i;:::-;10292:20;;9848:470;-1:-1:-1;;;;9848:470:1:o;11022:488::-;-1:-1:-1;;;;;11291:15:1;;;11273:34;;11343:15;;11338:2;11323:18;;11316:43;11390:2;11375:18;;11368:34;;;11438:3;11433:2;11418:18;;11411:31;;;11216:4;;11459:45;;11484:19;;11476:6;11459:45;:::i;:::-;11451:53;11022:488;-1:-1:-1;;;;;;11022:488:1:o;11986:217::-;12133:2;12122:9;12115:21;12096:4;12153:44;12193:2;12182:9;12178:18;12170:6;12153:44;:::i;13838:414::-;14040:2;14022:21;;;14079:2;14059:18;;;14052:30;14118:34;14113:2;14098:18;;14091:62;-1:-1:-1;;;14184:2:1;14169:18;;14162:48;14242:3;14227:19;;13838:414::o;19813:356::-;20015:2;19997:21;;;20034:18;;;20027:30;20093:34;20088:2;20073:18;;20066:62;20160:2;20145:18;;19813:356::o;21340:413::-;21542:2;21524:21;;;21581:2;21561:18;;;21554:30;21620:34;21615:2;21600:18;;21593:62;-1:-1:-1;;;21686:2:1;21671:18;;21664:47;21743:3;21728:19;;21340:413::o;22781:640::-;23062:6;23050:19;;23032:38;;-1:-1:-1;;;;;23106:32:1;;23101:2;23086:18;;23079:60;23126:3;23170:2;23155:18;;23148:31;;;-1:-1:-1;;23202:45:1;;23227:19;;23219:6;23202:45;:::i;:::-;23297:6;23290:14;23283:22;23278:2;23267:9;23263:18;23256:50;23355:9;23347:6;23343:22;23337:3;23326:9;23322:19;23315:51;23383:32;23408:6;23400;23383:32;:::i;:::-;23375:40;22781:640;-1:-1:-1;;;;;;;;22781:640:1:o;23426:326::-;23621:6;23613;23609:19;23598:9;23591:38;23665:2;23660;23649:9;23645:18;23638:30;23572:4;23685:61;23742:2;23731:9;23727:18;23719:6;23711;23685:61;:::i;:::-;23677:69;23426:326;-1:-1:-1;;;;;23426:326:1:o;23757:1498::-;24103:6;24095;24091:19;24080:9;24073:38;24054:4;24130:2;24168:3;24163:2;24152:9;24148:18;24141:31;24192:1;24225:6;24219:13;24255:36;24281:9;24255:36;:::i;:::-;24328:6;24322:3;24311:9;24307:19;24300:35;24354:3;24376:1;24408:2;24397:9;24393:18;24425:1;24420:122;;;;24556:1;24551:354;;;;24386:519;;24420:122;-1:-1:-1;;24468:24:1;;24448:18;;;24441:52;24528:3;24513:19;;;-1:-1:-1;24420:122:1;;24551:354;24582:6;24579:1;24572:17;24630:2;24627:1;24617:16;24655:1;24669:180;24683:6;24680:1;24677:13;24669:180;;;24776:14;;24752:17;;;24748:26;;24741:50;24819:16;;;;24698:10;;24669:180;;;24873:17;;24869:26;;;-1:-1:-1;;24386:519:1;;;;;;24950:9;24945:3;24941:19;24936:2;24925:9;24921:18;24914:47;24984:29;25009:3;25001:6;24984:29;:::i;:::-;24970:43;;;25022:54;25072:2;25061:9;25057:18;25049:6;-1:-1:-1;;;;;8456:31:1;8444:44;;8382:112;25022:54;-1:-1:-1;;;;;8456:31:1;;25135:3;25120:19;;8444:44;25189:9;25181:6;25177:22;25171:3;25160:9;25156:19;25149:51;25217:32;25242:6;25234;25217:32;:::i;:::-;25209:40;23757:1498;-1:-1:-1;;;;;;;;;23757:1498:1:o;25260:498::-;25460:4;25489:6;25534:2;25526:6;25522:15;25511:9;25504:34;25586:2;25578:6;25574:15;25569:2;25558:9;25554:18;25547:43;;25626:6;25621:2;25610:9;25606:18;25599:34;25669:3;25664:2;25653:9;25649:18;25642:31;25690:62;25747:3;25736:9;25732:19;25724:6;25716;25690:62;:::i;:::-;25682:70;25260:498;-1:-1:-1;;;;;;;25260:498:1:o;26198:128::-;26238:3;26269:1;26265:6;26262:1;26259:13;26256:39;;;26275:18;;:::i;:::-;-1:-1:-1;26311:9:1;;26198:128::o;26331:120::-;26371:1;26397;26387:35;;26402:18;;:::i;:::-;-1:-1:-1;26436:9:1;;26331:120::o;26456:125::-;26496:4;26524:1;26521;26518:8;26515:34;;;26529:18;;:::i;:::-;-1:-1:-1;26566:9:1;;26456:125::o;26586:258::-;26658:1;26668:113;26682:6;26679:1;26676:13;26668:113;;;26758:11;;;26752:18;26739:11;;;26732:39;26704:2;26697:10;26668:113;;;26799:6;26796:1;26793:13;26790:48;;;-1:-1:-1;;26834:1:1;26816:16;;26809:27;26586:258::o;26849:380::-;26928:1;26924:12;;;;26971;;;26992:61;;27046:4;27038:6;27034:17;27024:27;;26992:61;27099:2;27091:6;27088:14;27068:18;27065:38;27062:161;;;27145:10;27140:3;27136:20;27133:1;27126:31;27180:4;27177:1;27170:15;27208:4;27205:1;27198:15;27062:161;;26849:380;;;:::o;27234:197::-;27272:3;27300:6;27341:2;27334:5;27330:14;27368:2;27359:7;27356:15;27353:41;;;27374:18;;:::i;:::-;27423:1;27410:15;;27234:197;-1:-1:-1;;;27234:197:1:o;27436:135::-;27475:3;-1:-1:-1;;27496:17:1;;27493:43;;;27516:18;;:::i;:::-;-1:-1:-1;27563:1:1;27552:13;;27436:135::o;27576:112::-;27608:1;27634;27624:35;;27639:18;;:::i;:::-;-1:-1:-1;27673:9:1;;27576:112::o;27693:127::-;27754:10;27749:3;27745:20;27742:1;27735:31;27785:4;27782:1;27775:15;27809:4;27806:1;27799:15;27825:127;27886:10;27881:3;27877:20;27874:1;27867:31;27917:4;27914:1;27907:15;27941:4;27938:1;27931:15;27957:127;28018:10;28013:3;28009:20;28006:1;27999:31;28049:4;28046:1;28039:15;28073:4;28070:1;28063:15;28089:127;28150:10;28145:3;28141:20;28138:1;28131:31;28181:4;28178:1;28171:15;28205:4;28202:1;28195:15;28221:127;28282:10;28277:3;28273:20;28270:1;28263:31;28313:4;28310:1;28303:15;28337:4;28334:1;28327:15;28353:131;-1:-1:-1;;;;;28428:31:1;;28418:42;;28408:70;;28474:1;28471;28464:12;28489:118;28575:5;28568:13;28561:21;28554:5;28551:32;28541:60;;28597:1;28594;28587:12;28612:131;-1:-1:-1;;;;;;28686:32:1;;28676:43;;28666:71;;28733:1;28730;28723:12;28748:117;28833:6;28826:5;28822:18;28815:5;28812:29;28802:57;;28855:1;28852;28845:12

Swarm Source

ipfs://88fba1c074456bd7e807babf86a45f3e7bb19aeb42d607dde98e7a3f4bf67d2b
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.