ETH Price: $3,368.25 (+0.39%)
Gas: 7 Gwei

Token

comely turtles (turtle)
 

Overview

Max Total Supply

0 turtle

Holders

783

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
3554.eth
Balance
4 turtle
0xaffaacccaacc03906346e85423a50bbf2d5ca7f6
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:
ComelyTurtles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : ComelyTurtles.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./NonBlockingReceiver.sol";
import "./interfaces/ILayerZeroEndpoint.sol";

contract ComelyTurtles is Ownable, ERC721, NonblockingReceiver {
	string public baseTokenURI;

	uint256 private nextTokenId;
	uint256 private maxMint;

	uint256 private gasForDestinationLzReceive = 350000;

	constructor(
		string memory _baseTokenURI,
		address _layerZeroEndpoint,
		uint256 _startToken,
		uint256 _maxMint
	) ERC721("comely turtles", "turtle") {
		setBaseURI(_baseTokenURI);
		endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);

		nextTokenId = _startToken;
		maxMint = _maxMint;
	}

	function spawn(uint8 numTokens) external payable {
		require(numTokens > 0 && numTokens <= 2, "Max 2 NFTs per transaction");
		require(nextTokenId + numTokens <= maxMint, "Max limit reached");

		for (uint8 i = 0; i < numTokens; i++) {
			_safeMint(msg.sender, ++nextTokenId);
		}
	}

	function traverseChains(uint16 _chainId, uint256 tokenId) public payable {
		require(msg.sender == ownerOf(tokenId), "You must own the token to traverse");
		require(
			trustedSourceLookup[_chainId].length > 0,
			"This chain is currently unavailable for travel"
		);

		// burn NFT, eliminating it from circulation on src chain
		_burn(tokenId);

		// abi.encode() the payload with the values to send
		bytes memory payload = abi.encode(msg.sender, tokenId);

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

		// get the fees we need to pay to LayerZero + Relayer to cover message delivery
		// you will be refunded for extra gas paid
		(uint256 messageFee, ) = endpoint.estimateFees(
			_chainId,
			address(this),
			payload,
			false,
			adapterParams
		);

		require(
			msg.value >= messageFee,
			"comely turtles: msg.value not enough to cover messageFee. Send gas for message fees"
		);

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

	function setBaseURI(string memory _baseTokenURI) public onlyOwner {
		baseTokenURI = _baseTokenURI;
	}

	function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner {
		gasForDestinationLzReceive = newVal;
	}

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

	function _baseURI() internal view override returns (string memory) {
		return baseTokenURI;
	}
}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.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 3 of 15 : NonBlockingReceiver.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";

import "./interfaces/ILayerZeroReceiver.sol";
import "./interfaces/ILayerZeroEndpoint.sol";
import "./interfaces/ILayerZeroReceiver.sol";

abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
	ILayerZeroEndpoint public endpoint;

	struct FailedMessages {
		uint256 payloadLength;
		bytes32 payloadHash;
	}

	mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages))) public failedMessages;
	mapping(uint16 => bytes) public trustedSourceLookup;

	event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload);

	// abstract function
	function _LzReceive(
		uint16 _srcChainId,
		bytes memory _srcAddress,
		uint64 _nonce,
		bytes memory _payload
	) internal virtual;

	function lzReceive(
		uint16 _srcChainId,
		bytes memory _srcAddress,
		uint64 _nonce,
		bytes memory _payload
	) external override {
		require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
		require(
			_srcAddress.length == trustedSourceLookup[_srcChainId].length &&
				keccak256(_srcAddress) == keccak256(trustedSourceLookup[_srcChainId]),
			"NonblockingReceiver: invalid source sending contract"
		);

		// try-catch all errors/exceptions
		// having failed messages does not block messages passing
		try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
			// do nothing
		} catch {
			// error / exception
			failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(
				_payload.length,
				keccak256(_payload)
			);
			emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
		}
	}

	function onLzReceive(
		uint16 _srcChainId,
		bytes memory _srcAddress,
		uint64 _nonce,
		bytes memory _payload
	) public {
		// only internal transaction
		require(msg.sender == address(this), "NonblockingReceiver: caller must be Bridge.");
		_LzReceive(_srcChainId, _srcAddress, _nonce, _payload);
	}

	function _lzSend(
		uint16 _dstChainId,
		bytes memory _payload,
		address payable _refundAddress,
		address _zroPaymentAddress,
		bytes memory _txParam
	) internal {
		endpoint.send{ value: msg.value }(
			_dstChainId,
			trustedSourceLookup[_dstChainId],
			_payload,
			_refundAddress,
			_zroPaymentAddress,
			_txParam
		);
	}

	function retryMessage(
		uint16 _srcChainId,
		bytes memory _srcAddress,
		uint64 _nonce,
		bytes calldata _payload
	) external payable {
		// assert there is message to retry
		FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce];
		require(failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message");
		require(
			_payload.length == failedMsg.payloadLength &&
				keccak256(_payload) == failedMsg.payloadHash,
			"LayerZero: invalid payload"
		);
		// clear the stored message
		failedMsg.payloadLength = 0;
		failedMsg.payloadHash = bytes32(0);
		// execute the message. revert if it fails again
		this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
	}

	function setTrustedSource(uint16 _chainId, bytes calldata _trustedSource) external onlyOwner {
		require(
			trustedSourceLookup[_chainId].length == 0,
			"The trusted source address has already been set for the chainId!"
		);
		trustedSourceLookup[_chainId] = _trustedSource;
	}
}

File 4 of 15 : ILayerZeroEndpoint.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

import "./ILayerZeroUserApplicationConfig.sol";

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

	// @notice used by the messaging library to publish verified payload
	// @param _srcChainId - the source chain identifier
	// @param _srcAddress - the source contract (as bytes) at the source chain
	// @param _dstAddress - the address on destination chain
	// @param _nonce - the unbound message ordering nonce
	// @param _gasLimit - the gas limit for external contract execution
	// @param _payload - verified payload to send to the destination contract
	function receivePayload(
		uint16 _srcChainId,
		bytes calldata _srcAddress,
		address _dstAddress,
		uint64 _nonce,
		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 5 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.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 6 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @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 7 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.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 8 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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 9 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 13 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 14 of 15 : ILayerZeroReceiver.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

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

File 15 of 15 : ILayerZeroUserApplicationConfig.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
	// @notice set the configuration of the LayerZero messaging library of the specified version
	// @param _version - messaging library version
	// @param _chainId - the chainId for the pending config change
	// @param _configType - type of configuration. every messaging library has its own convention.
	// @param _config - configuration in the bytes. can encode arbitrary content.
	function setConfig(
		uint16 _version,
		uint16 _chainId,
		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;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_startToken","type":"uint256"},{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"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":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"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":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedSource","type":"bytes"}],"name":"setTrustedSource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"spawn","outputs":[],"stateMutability":"payable","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedSourceLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"}]

608060405262055730600d553480156200001857600080fd5b5060405162002e1f38038062002e1f8339810160408190526200003b9162000297565b6040518060400160405280600e81526020016d636f6d656c7920747572746c657360901b81525060405180604001604052806006815260200165747572746c6560d01b8152506200009b620000956200010860201b60201c565b6200010c565b8151620000b0906001906020850190620001d4565b508051620000c6906002906020840190620001d4565b505050620000da846200015c60201b60201c565b600780546001600160a01b0319166001600160a01b039490941693909317909255600b55600c5550620003eb565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d090600a906020840190620001d4565b5050565b828054620001e29062000398565b90600052602060002090601f01602090048101928262000206576000855562000251565b82601f106200022157805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025157825182559160200191906001019062000234565b506200025f92915062000263565b5090565b5b808211156200025f576000815560010162000264565b80516001600160a01b03811681146200029257600080fd5b919050565b60008060008060808587031215620002ae57600080fd5b84516001600160401b0380821115620002c657600080fd5b818701915087601f830112620002db57600080fd5b815181811115620002f057620002f0620003d5565b604051601f8201601f19908116603f011681019083821181831017156200031b576200031b620003d5565b81604052828152602093508a848487010111156200033857600080fd5b600091505b828210156200035c57848201840151818301850152908301906200033d565b828211156200036e5760008484830101525b9750620003809150508782016200027a565b60408801516060909801519699909850945050505050565b600181811c90821680620003ad57607f821691505b60208210811415620003cf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a2480620003fb6000396000f3fe6080604052600436106101b65760003560e01c806381c986ee116100ec578063c87b56dd1161008a578063d547cfb711610064578063d547cfb714610506578063d73f057e1461051b578063e985e9c51461053b578063f2fde38b1461058457600080fd5b8063c87b56dd146104c0578063cf89fa03146104e0578063d1deba1f146104f357600080fd5b8063943fb872116100c6578063943fb8721461044b57806395d89b411461046b578063a22cb46514610480578063b88d4fde146104a057600080fd5b806381c986ee146103a25780638da5cb5b146103c25780638ee74912146103e057600080fd5b806328a4e3c9116101595780635e280f11116101335780635e280f111461031f5780636352211e1461033f57806370a082311461035f578063715018a61461038d57600080fd5b806328a4e3c9146102cc57806342842e0e146102df57806355f804b3146102ff57600080fd5b8063081812fc11610195578063081812fc14610234578063095ea7b31461026c5780631c37a8221461028c57806323b872dd146102ac57600080fd5b80621d3567146101bb57806301ffc9a7146101dd57806306fdde0314610212575b600080fd5b3480156101c757600080fd5b506101db6101d636600461237f565b6105a4565b005b3480156101e957600080fd5b506101fd6101f83660046121af565b61079e565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276107f0565b60405161020991906125a9565b34801561024057600080fd5b5061025461024f366004612413565b610882565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b506101db610287366004612183565b610917565b34801561029857600080fd5b506101db6102a736600461237f565b610a2d565b3480156102b857600080fd5b506101db6102c73660046120a4565b610a9c565b6101db6102da366004612450565b610acd565b3480156102eb57600080fd5b506101db6102fa3660046120a4565b610bca565b34801561030b57600080fd5b506101db61031a3660046121e9565b610be5565b34801561032b57600080fd5b50600754610254906001600160a01b031681565b34801561034b57600080fd5b5061025461035a366004612413565b610c22565b34801561036b57600080fd5b5061037f61037a366004612020565b610c99565b604051908152602001610209565b34801561039957600080fd5b506101db610d20565b3480156103ae57600080fd5b506102276103bd366004612231565b610d56565b3480156103ce57600080fd5b506000546001600160a01b0316610254565b3480156103ec57600080fd5b506104366103fb36600461229e565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610209565b34801561045757600080fd5b506101db610466366004612413565b610df0565b34801561047757600080fd5b50610227610e1f565b34801561048c57600080fd5b506101db61049b366004612150565b610e2e565b3480156104ac57600080fd5b506101db6104bb3660046120e5565b610e39565b3480156104cc57600080fd5b506102276104db366004612413565b610e6b565b6101db6104ee3660046123f7565b610f46565b6101db6105013660046122f4565b611233565b34801561051257600080fd5b506102276113c0565b34801561052757600080fd5b506101db61053636600461224c565b6113cd565b34801561054757600080fd5b506101fd61055636600461206b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059057600080fd5b506101db61059f366004612020565b6114aa565b6007546001600160a01b031633146105bb57600080fd5b61ffff8416600090815260096020526040902080546105d9906128e1565b90508351148015610618575061ffff841660009081526009602052604090819020905161060691906124cb565b60405180910390208380519060200120145b6106865760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906106af908790879087908790600401612749565b600060405180830381600087803b1580156106c957600080fd5b505af19250505080156106da575060015b610798576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161072491906124af565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061078f908690869086908690612749565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806107cf57506001600160e01b03198216635b5e139f60e01b145b806107ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ff906128e1565b80601f016020809104026020016040519081016040528092919081815260200182805461082b906128e1565b80156108785780601f1061084d57610100808354040283529160200191610878565b820191906000526020600020905b81548152906001019060200180831161085b57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108fb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067d565b506000908152600560205260409020546001600160a01b031690565b600061092282610c22565b9050806001600160a01b0316836001600160a01b031614156109905760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067d565b336001600160a01b03821614806109ac57506109ac8133610556565b610a1e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067d565b610a288383611545565b505050565b333014610a905760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b606482015260840161067d565b610798848484846115b3565b610aa633826115e0565b610ac25760405162461bcd60e51b815260040161067d90612643565b610a288383836116d7565b60008160ff16118015610ae4575060028160ff1611155b610b305760405162461bcd60e51b815260206004820152601a60248201527f4d61782032204e46547320706572207472616e73616374696f6e000000000000604482015260640161067d565b600c548160ff16600b54610b449190612872565b1115610b865760405162461bcd60e51b815260206004820152601160248201527013585e081b1a5b5a5d081c995858da1959607a1b604482015260640161067d565b60005b8160ff168160ff161015610bc657610bb433600b60008154610baa9061291c565b9182905550611873565b80610bbe81612937565b915050610b89565b5050565b610a2883838360405180602001604052806000815250610e39565b6000546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161067d9061260e565b8051610bc690600a906020840190611e08565b6000818152600360205260408120546001600160a01b0316806107ea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067d565b60006001600160a01b038216610d045760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610d4a5760405162461bcd60e51b815260040161067d9061260e565b610d54600061188d565b565b60096020526000908152604090208054610d6f906128e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9b906128e1565b8015610de85780601f10610dbd57610100808354040283529160200191610de8565b820191906000526020600020905b815481529060010190602001808311610dcb57829003601f168201915b505050505081565b6000546001600160a01b03163314610e1a5760405162461bcd60e51b815260040161067d9061260e565b600d55565b6060600280546107ff906128e1565b610bc63383836118dd565b610e4333836115e0565b610e5f5760405162461bcd60e51b815260040161067d90612643565b610798848484846119ac565b6000818152600360205260409020546060906001600160a01b0316610eea5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067d565b6000610ef46119df565b90506000815111610f145760405180602001604052806000815250610f3f565b80610f1e846119ee565b604051602001610f2f92919061253d565b6040516020818303038152906040525b9392505050565b610f4f81610c22565b6001600160a01b0316336001600160a01b031614610fba5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b606482015260840161067d565b61ffff821660009081526009602052604081208054610fd8906128e1565b90501161103e5760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b606482015260840161067d565b61104781611aeb565b60408051336020820152808201839052815180820383018152606082018352600d54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906110ca908990309089908790899060a601612694565b604080518083038186803b1580156110e157600080fd5b505afa1580156110f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611119919061242c565b509050803410156111ae5760405162461bcd60e51b815260206004820152605360248201527f636f6d656c7920747572746c65733a206d73672e76616c7565206e6f7420656e60448201527f6f75676820746f20636f766572206d6573736167654665652e2053656e642067606482015272617320666f72206d657373616765206665657360681b608482015260a40161067d565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926111f9928c928b913391908b90600401612792565b6000604051808303818588803b15801561121257600080fd5b505af1158015611226573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516112549087906124af565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506112db5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b606482015260840161067d565b8054821480156113055750806001015483836040516112fb92919061249f565b6040518091039020145b6113515760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161067d565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061138690899089908990899089906004016126e8565b600060405180830381600087803b1580156113a057600080fd5b505af11580156113b4573d6000803e3d6000fd5b50505050505050505050565b600a8054610d6f906128e1565b6000546001600160a01b031633146113f75760405162461bcd60e51b815260040161067d9061260e565b61ffff831660009081526009602052604090208054611415906128e1565b15905061148c576040805162461bcd60e51b81526020600482015260248101919091527f546865207472757374656420736f75726365206164647265737320686173206160448201527f6c7265616479206265656e2073657420666f722074686520636861696e496421606482015260840161067d565b61ffff83166000908152600960205260409020610798908383611e8c565b6000546001600160a01b031633146114d45760405162461bcd60e51b815260040161067d9061260e565b6001600160a01b0381166115395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067d565b6115428161188d565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061157a82610c22565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906115ca919061203d565b915091506115d88282611873565b505050505050565b6000818152600360205260408120546001600160a01b03166116595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067d565b600061166483610c22565b9050806001600160a01b0316846001600160a01b0316148061169f5750836001600160a01b031661169484610882565b6001600160a01b0316145b806116cf57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ea82610c22565b6001600160a01b03161461174e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161067d565b6001600160a01b0382166117b05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067d565b6117bb600082611545565b6001600160a01b03831660009081526004602052604081208054600192906117e490849061289e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611812908490612872565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bc6828260405180602001604052806000815250611b86565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316141561193f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067d565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119b78484846116d7565b6119c384848484611bb9565b6107985760405162461bcd60e51b815260040161067d906125bc565b6060600a80546107ff906128e1565b606081611a125750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a3c5780611a268161291c565b9150611a359050600a8361288a565b9150611a16565b6000816001600160401b03811115611a5657611a566129ad565b6040519080825280601f01601f191660200182016040528015611a80576020820181803683370190505b5090505b84156116cf57611a9560018361289e565b9150611aa2600a86612957565b611aad906030612872565b60f81b818381518110611ac257611ac2612997565b60200101906001600160f81b031916908160001a905350611ae4600a8661288a565b9450611a84565b6000611af682610c22565b9050611b03600083611545565b6001600160a01b0381166000908152600460205260408120805460019290611b2c90849061289e565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611b908383611cc6565b611b9d6000848484611bb9565b610a285760405162461bcd60e51b815260040161067d906125bc565b60006001600160a01b0384163b15611cbb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bfd90339089908890889060040161256c565b602060405180830381600087803b158015611c1757600080fd5b505af1925050508015611c47575060408051601f3d908101601f19168201909252611c44918101906121cc565b60015b611ca1573d808015611c75576040519150601f19603f3d011682016040523d82523d6000602084013e611c7a565b606091505b508051611c995760405162461bcd60e51b815260040161067d906125bc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116cf565b506001949350505050565b6001600160a01b038216611d1c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067d565b6000818152600360205260409020546001600160a01b031615611d815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067d565b6001600160a01b0382166000908152600460205260408120805460019290611daa908490612872565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e14906128e1565b90600052602060002090601f016020900481019282611e365760008555611e7c565b82601f10611e4f57805160ff1916838001178555611e7c565b82800160010185558215611e7c579182015b82811115611e7c578251825591602001919060010190611e61565b50611e88929150611f00565b5090565b828054611e98906128e1565b90600052602060002090601f016020900481019282611eba5760008555611e7c565b82601f10611ed35782800160ff19823516178555611e7c565b82800160010185558215611e7c579182015b82811115611e7c578235825591602001919060010190611ee5565b5b80821115611e885760008155600101611f01565b60006001600160401b0380841115611f2f57611f2f6129ad565b604051601f8501601f19908116603f01168101908282118183101715611f5757611f576129ad565b81604052809350858152868686011115611f7057600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112611f9c57600080fd5b5081356001600160401b03811115611fb357600080fd5b602083019150836020828501011115611fcb57600080fd5b9250929050565b600082601f830112611fe357600080fd5b610f3f83833560208501611f15565b803561ffff8116811461200457600080fd5b919050565b80356001600160401b038116811461200457600080fd5b60006020828403121561203257600080fd5b8135610f3f816129c3565b6000806040838503121561205057600080fd5b825161205b816129c3565b6020939093015192949293505050565b6000806040838503121561207e57600080fd5b8235612089816129c3565b91506020830135612099816129c3565b809150509250929050565b6000806000606084860312156120b957600080fd5b83356120c4816129c3565b925060208401356120d4816129c3565b929592945050506040919091013590565b600080600080608085870312156120fb57600080fd5b8435612106816129c3565b93506020850135612116816129c3565b92506040850135915060608501356001600160401b0381111561213857600080fd5b61214487828801611fd2565b91505092959194509250565b6000806040838503121561216357600080fd5b823561216e816129c3565b91506020830135801515811461209957600080fd5b6000806040838503121561219657600080fd5b82356121a1816129c3565b946020939093013593505050565b6000602082840312156121c157600080fd5b8135610f3f816129d8565b6000602082840312156121de57600080fd5b8151610f3f816129d8565b6000602082840312156121fb57600080fd5b81356001600160401b0381111561221157600080fd5b8201601f8101841361222257600080fd5b6116cf84823560208401611f15565b60006020828403121561224357600080fd5b610f3f82611ff2565b60008060006040848603121561226157600080fd5b61226a84611ff2565b925060208401356001600160401b0381111561228557600080fd5b61229186828701611f8a565b9497909650939450505050565b6000806000606084860312156122b357600080fd5b6122bc84611ff2565b925060208401356001600160401b038111156122d757600080fd5b6122e386828701611fd2565b925050604084013590509250925092565b60008060008060006080868803121561230c57600080fd5b61231586611ff2565b945060208601356001600160401b038082111561233157600080fd5b61233d89838a01611fd2565b955061234b60408901612009565b9450606088013591508082111561236157600080fd5b5061236e88828901611f8a565b969995985093965092949392505050565b6000806000806080858703121561239557600080fd5b61239e85611ff2565b935060208501356001600160401b03808211156123ba57600080fd5b6123c688838901611fd2565b94506123d460408801612009565b935060608701359150808211156123ea57600080fd5b5061214487828801611fd2565b6000806040838503121561240a57600080fd5b6121a183611ff2565b60006020828403121561242557600080fd5b5035919050565b6000806040838503121561243f57600080fd5b505080516020909101519092909150565b60006020828403121561246257600080fd5b813560ff81168114610f3f57600080fd5b6000815180845261248b8160208601602086016128b5565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516124c18184602087016128b5565b9190910192915050565b60008083546124d9816128e1565b600182811680156124f1576001811461250257612531565b60ff19841687528287019450612531565b8760005260208060002060005b858110156125285781548a82015290840190820161250f565b50505082870194505b50929695505050505050565b6000835161254f8184602088016128b5565b8351908301906125638183602088016128b5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259f90830184612473565b9695505050505050565b602081526000610f3f6020830184612473565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906126c290830186612473565b841515606084015282810360808401526126dc8185612473565b98975050505050505050565b61ffff861681526080602082015260006127056080830187612473565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006127666080830186612473565b6001600160401b038516604084015282810360608401526127878185612473565b979650505050505050565b61ffff871681526000602060c081840152600088546127b0816128e1565b8060c087015260e06001808416600081146127d257600181146127e757612815565b60ff1985168984015261010089019550612815565b8d6000528660002060005b8581101561280d5781548b82018601529083019088016127f2565b8a0184019650505b5050505050838103604085015261282c8189612473565b91505061284460608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526128658185612473565b9998505050505050505050565b600082198211156128855761288561296b565b500190565b60008261289957612899612981565b500490565b6000828210156128b0576128b061296b565b500390565b60005b838110156128d05781810151838201526020016128b8565b838111156107985750506000910152565b600181811c908216806128f557607f821691505b6020821081141561291657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129305761293061296b565b5060010190565b600060ff821660ff81141561294e5761294e61296b565b60010192915050565b60008261296657612966612981565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461154257600080fd5b6001600160e01b03198116811461154257600080fdfea2646970667358221220498c24093f8c38449ee23254af164ceb9080f8b390d87e5fdced2322fdf608a264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696135793673696d776e3764666f6d6461636f6661647279737a686b6f673566327069713567686563336f7a33746c706c6a75366d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b65760003560e01c806381c986ee116100ec578063c87b56dd1161008a578063d547cfb711610064578063d547cfb714610506578063d73f057e1461051b578063e985e9c51461053b578063f2fde38b1461058457600080fd5b8063c87b56dd146104c0578063cf89fa03146104e0578063d1deba1f146104f357600080fd5b8063943fb872116100c6578063943fb8721461044b57806395d89b411461046b578063a22cb46514610480578063b88d4fde146104a057600080fd5b806381c986ee146103a25780638da5cb5b146103c25780638ee74912146103e057600080fd5b806328a4e3c9116101595780635e280f11116101335780635e280f111461031f5780636352211e1461033f57806370a082311461035f578063715018a61461038d57600080fd5b806328a4e3c9146102cc57806342842e0e146102df57806355f804b3146102ff57600080fd5b8063081812fc11610195578063081812fc14610234578063095ea7b31461026c5780631c37a8221461028c57806323b872dd146102ac57600080fd5b80621d3567146101bb57806301ffc9a7146101dd57806306fdde0314610212575b600080fd5b3480156101c757600080fd5b506101db6101d636600461237f565b6105a4565b005b3480156101e957600080fd5b506101fd6101f83660046121af565b61079e565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276107f0565b60405161020991906125a9565b34801561024057600080fd5b5061025461024f366004612413565b610882565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b506101db610287366004612183565b610917565b34801561029857600080fd5b506101db6102a736600461237f565b610a2d565b3480156102b857600080fd5b506101db6102c73660046120a4565b610a9c565b6101db6102da366004612450565b610acd565b3480156102eb57600080fd5b506101db6102fa3660046120a4565b610bca565b34801561030b57600080fd5b506101db61031a3660046121e9565b610be5565b34801561032b57600080fd5b50600754610254906001600160a01b031681565b34801561034b57600080fd5b5061025461035a366004612413565b610c22565b34801561036b57600080fd5b5061037f61037a366004612020565b610c99565b604051908152602001610209565b34801561039957600080fd5b506101db610d20565b3480156103ae57600080fd5b506102276103bd366004612231565b610d56565b3480156103ce57600080fd5b506000546001600160a01b0316610254565b3480156103ec57600080fd5b506104366103fb36600461229e565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610209565b34801561045757600080fd5b506101db610466366004612413565b610df0565b34801561047757600080fd5b50610227610e1f565b34801561048c57600080fd5b506101db61049b366004612150565b610e2e565b3480156104ac57600080fd5b506101db6104bb3660046120e5565b610e39565b3480156104cc57600080fd5b506102276104db366004612413565b610e6b565b6101db6104ee3660046123f7565b610f46565b6101db6105013660046122f4565b611233565b34801561051257600080fd5b506102276113c0565b34801561052757600080fd5b506101db61053636600461224c565b6113cd565b34801561054757600080fd5b506101fd61055636600461206b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059057600080fd5b506101db61059f366004612020565b6114aa565b6007546001600160a01b031633146105bb57600080fd5b61ffff8416600090815260096020526040902080546105d9906128e1565b90508351148015610618575061ffff841660009081526009602052604090819020905161060691906124cb565b60405180910390208380519060200120145b6106865760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906106af908790879087908790600401612749565b600060405180830381600087803b1580156106c957600080fd5b505af19250505080156106da575060015b610798576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161072491906124af565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061078f908690869086908690612749565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806107cf57506001600160e01b03198216635b5e139f60e01b145b806107ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ff906128e1565b80601f016020809104026020016040519081016040528092919081815260200182805461082b906128e1565b80156108785780601f1061084d57610100808354040283529160200191610878565b820191906000526020600020905b81548152906001019060200180831161085b57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108fb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067d565b506000908152600560205260409020546001600160a01b031690565b600061092282610c22565b9050806001600160a01b0316836001600160a01b031614156109905760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067d565b336001600160a01b03821614806109ac57506109ac8133610556565b610a1e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067d565b610a288383611545565b505050565b333014610a905760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b606482015260840161067d565b610798848484846115b3565b610aa633826115e0565b610ac25760405162461bcd60e51b815260040161067d90612643565b610a288383836116d7565b60008160ff16118015610ae4575060028160ff1611155b610b305760405162461bcd60e51b815260206004820152601a60248201527f4d61782032204e46547320706572207472616e73616374696f6e000000000000604482015260640161067d565b600c548160ff16600b54610b449190612872565b1115610b865760405162461bcd60e51b815260206004820152601160248201527013585e081b1a5b5a5d081c995858da1959607a1b604482015260640161067d565b60005b8160ff168160ff161015610bc657610bb433600b60008154610baa9061291c565b9182905550611873565b80610bbe81612937565b915050610b89565b5050565b610a2883838360405180602001604052806000815250610e39565b6000546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161067d9061260e565b8051610bc690600a906020840190611e08565b6000818152600360205260408120546001600160a01b0316806107ea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067d565b60006001600160a01b038216610d045760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067d565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610d4a5760405162461bcd60e51b815260040161067d9061260e565b610d54600061188d565b565b60096020526000908152604090208054610d6f906128e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9b906128e1565b8015610de85780601f10610dbd57610100808354040283529160200191610de8565b820191906000526020600020905b815481529060010190602001808311610dcb57829003601f168201915b505050505081565b6000546001600160a01b03163314610e1a5760405162461bcd60e51b815260040161067d9061260e565b600d55565b6060600280546107ff906128e1565b610bc63383836118dd565b610e4333836115e0565b610e5f5760405162461bcd60e51b815260040161067d90612643565b610798848484846119ac565b6000818152600360205260409020546060906001600160a01b0316610eea5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067d565b6000610ef46119df565b90506000815111610f145760405180602001604052806000815250610f3f565b80610f1e846119ee565b604051602001610f2f92919061253d565b6040516020818303038152906040525b9392505050565b610f4f81610c22565b6001600160a01b0316336001600160a01b031614610fba5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b606482015260840161067d565b61ffff821660009081526009602052604081208054610fd8906128e1565b90501161103e5760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b606482015260840161067d565b61104781611aeb565b60408051336020820152808201839052815180820383018152606082018352600d54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906110ca908990309089908790899060a601612694565b604080518083038186803b1580156110e157600080fd5b505afa1580156110f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611119919061242c565b509050803410156111ae5760405162461bcd60e51b815260206004820152605360248201527f636f6d656c7920747572746c65733a206d73672e76616c7565206e6f7420656e60448201527f6f75676820746f20636f766572206d6573736167654665652e2053656e642067606482015272617320666f72206d657373616765206665657360681b608482015260a40161067d565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926111f9928c928b913391908b90600401612792565b6000604051808303818588803b15801561121257600080fd5b505af1158015611226573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516112549087906124af565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506112db5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b606482015260840161067d565b8054821480156113055750806001015483836040516112fb92919061249f565b6040518091039020145b6113515760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161067d565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061138690899089908990899089906004016126e8565b600060405180830381600087803b1580156113a057600080fd5b505af11580156113b4573d6000803e3d6000fd5b50505050505050505050565b600a8054610d6f906128e1565b6000546001600160a01b031633146113f75760405162461bcd60e51b815260040161067d9061260e565b61ffff831660009081526009602052604090208054611415906128e1565b15905061148c576040805162461bcd60e51b81526020600482015260248101919091527f546865207472757374656420736f75726365206164647265737320686173206160448201527f6c7265616479206265656e2073657420666f722074686520636861696e496421606482015260840161067d565b61ffff83166000908152600960205260409020610798908383611e8c565b6000546001600160a01b031633146114d45760405162461bcd60e51b815260040161067d9061260e565b6001600160a01b0381166115395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067d565b6115428161188d565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061157a82610c22565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906115ca919061203d565b915091506115d88282611873565b505050505050565b6000818152600360205260408120546001600160a01b03166116595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067d565b600061166483610c22565b9050806001600160a01b0316846001600160a01b0316148061169f5750836001600160a01b031661169484610882565b6001600160a01b0316145b806116cf57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ea82610c22565b6001600160a01b03161461174e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161067d565b6001600160a01b0382166117b05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067d565b6117bb600082611545565b6001600160a01b03831660009081526004602052604081208054600192906117e490849061289e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611812908490612872565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bc6828260405180602001604052806000815250611b86565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316141561193f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067d565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119b78484846116d7565b6119c384848484611bb9565b6107985760405162461bcd60e51b815260040161067d906125bc565b6060600a80546107ff906128e1565b606081611a125750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a3c5780611a268161291c565b9150611a359050600a8361288a565b9150611a16565b6000816001600160401b03811115611a5657611a566129ad565b6040519080825280601f01601f191660200182016040528015611a80576020820181803683370190505b5090505b84156116cf57611a9560018361289e565b9150611aa2600a86612957565b611aad906030612872565b60f81b818381518110611ac257611ac2612997565b60200101906001600160f81b031916908160001a905350611ae4600a8661288a565b9450611a84565b6000611af682610c22565b9050611b03600083611545565b6001600160a01b0381166000908152600460205260408120805460019290611b2c90849061289e565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611b908383611cc6565b611b9d6000848484611bb9565b610a285760405162461bcd60e51b815260040161067d906125bc565b60006001600160a01b0384163b15611cbb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bfd90339089908890889060040161256c565b602060405180830381600087803b158015611c1757600080fd5b505af1925050508015611c47575060408051601f3d908101601f19168201909252611c44918101906121cc565b60015b611ca1573d808015611c75576040519150601f19603f3d011682016040523d82523d6000602084013e611c7a565b606091505b508051611c995760405162461bcd60e51b815260040161067d906125bc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116cf565b506001949350505050565b6001600160a01b038216611d1c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067d565b6000818152600360205260409020546001600160a01b031615611d815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067d565b6001600160a01b0382166000908152600460205260408120805460019290611daa908490612872565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e14906128e1565b90600052602060002090601f016020900481019282611e365760008555611e7c565b82601f10611e4f57805160ff1916838001178555611e7c565b82800160010185558215611e7c579182015b82811115611e7c578251825591602001919060010190611e61565b50611e88929150611f00565b5090565b828054611e98906128e1565b90600052602060002090601f016020900481019282611eba5760008555611e7c565b82601f10611ed35782800160ff19823516178555611e7c565b82800160010185558215611e7c579182015b82811115611e7c578235825591602001919060010190611ee5565b5b80821115611e885760008155600101611f01565b60006001600160401b0380841115611f2f57611f2f6129ad565b604051601f8501601f19908116603f01168101908282118183101715611f5757611f576129ad565b81604052809350858152868686011115611f7057600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112611f9c57600080fd5b5081356001600160401b03811115611fb357600080fd5b602083019150836020828501011115611fcb57600080fd5b9250929050565b600082601f830112611fe357600080fd5b610f3f83833560208501611f15565b803561ffff8116811461200457600080fd5b919050565b80356001600160401b038116811461200457600080fd5b60006020828403121561203257600080fd5b8135610f3f816129c3565b6000806040838503121561205057600080fd5b825161205b816129c3565b6020939093015192949293505050565b6000806040838503121561207e57600080fd5b8235612089816129c3565b91506020830135612099816129c3565b809150509250929050565b6000806000606084860312156120b957600080fd5b83356120c4816129c3565b925060208401356120d4816129c3565b929592945050506040919091013590565b600080600080608085870312156120fb57600080fd5b8435612106816129c3565b93506020850135612116816129c3565b92506040850135915060608501356001600160401b0381111561213857600080fd5b61214487828801611fd2565b91505092959194509250565b6000806040838503121561216357600080fd5b823561216e816129c3565b91506020830135801515811461209957600080fd5b6000806040838503121561219657600080fd5b82356121a1816129c3565b946020939093013593505050565b6000602082840312156121c157600080fd5b8135610f3f816129d8565b6000602082840312156121de57600080fd5b8151610f3f816129d8565b6000602082840312156121fb57600080fd5b81356001600160401b0381111561221157600080fd5b8201601f8101841361222257600080fd5b6116cf84823560208401611f15565b60006020828403121561224357600080fd5b610f3f82611ff2565b60008060006040848603121561226157600080fd5b61226a84611ff2565b925060208401356001600160401b0381111561228557600080fd5b61229186828701611f8a565b9497909650939450505050565b6000806000606084860312156122b357600080fd5b6122bc84611ff2565b925060208401356001600160401b038111156122d757600080fd5b6122e386828701611fd2565b925050604084013590509250925092565b60008060008060006080868803121561230c57600080fd5b61231586611ff2565b945060208601356001600160401b038082111561233157600080fd5b61233d89838a01611fd2565b955061234b60408901612009565b9450606088013591508082111561236157600080fd5b5061236e88828901611f8a565b969995985093965092949392505050565b6000806000806080858703121561239557600080fd5b61239e85611ff2565b935060208501356001600160401b03808211156123ba57600080fd5b6123c688838901611fd2565b94506123d460408801612009565b935060608701359150808211156123ea57600080fd5b5061214487828801611fd2565b6000806040838503121561240a57600080fd5b6121a183611ff2565b60006020828403121561242557600080fd5b5035919050565b6000806040838503121561243f57600080fd5b505080516020909101519092909150565b60006020828403121561246257600080fd5b813560ff81168114610f3f57600080fd5b6000815180845261248b8160208601602086016128b5565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516124c18184602087016128b5565b9190910192915050565b60008083546124d9816128e1565b600182811680156124f1576001811461250257612531565b60ff19841687528287019450612531565b8760005260208060002060005b858110156125285781548a82015290840190820161250f565b50505082870194505b50929695505050505050565b6000835161254f8184602088016128b5565b8351908301906125638183602088016128b5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259f90830184612473565b9695505050505050565b602081526000610f3f6020830184612473565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906126c290830186612473565b841515606084015282810360808401526126dc8185612473565b98975050505050505050565b61ffff861681526080602082015260006127056080830187612473565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006127666080830186612473565b6001600160401b038516604084015282810360608401526127878185612473565b979650505050505050565b61ffff871681526000602060c081840152600088546127b0816128e1565b8060c087015260e06001808416600081146127d257600181146127e757612815565b60ff1985168984015261010089019550612815565b8d6000528660002060005b8581101561280d5781548b82018601529083019088016127f2565b8a0184019650505b5050505050838103604085015261282c8189612473565b91505061284460608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526128658185612473565b9998505050505050505050565b600082198211156128855761288561296b565b500190565b60008261289957612899612981565b500490565b6000828210156128b0576128b061296b565b500390565b60005b838110156128d05781810151838201526020016128b8565b838111156107985750506000910152565b600181811c908216806128f557607f821691505b6020821081141561291657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129305761293061296b565b5060010190565b600060ff821660ff81141561294e5761294e61296b565b60010192915050565b60008261296657612966612981565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461154257600080fd5b6001600160e01b03198116811461154257600080fdfea2646970667358221220498c24093f8c38449ee23254af164ceb9080f8b390d87e5fdced2322fdf608a264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696135793673696d776e3764666f6d6461636f6661647279737a686b6f673566327069713567686563336f7a33746c706c6a75366d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://bafybeia5y6simwn7dfomdacofadryszhkog5f2piq5ghec3oz3tlplju6m/
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [2] : _startToken (uint256): 0
Arg [3] : _maxMint (uint256): 5000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [5] : 697066733a2f2f626166796265696135793673696d776e3764666f6d6461636f
Arg [6] : 6661647279737a686b6f673566327069713567686563336f7a33746c706c6a75
Arg [7] : 366d2f0000000000000000000000000000000000000000000000000000000000


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.