ETH Price: $2,613.31 (+0.25%)

Token

OmniPlayer (OPLAYER)
 

Overview

Max Total Supply

0 OPLAYER

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OPLAYER
0x0ef8751a701d8f759bcc7c54d8e5901775b8628f
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:
OmniPlayer

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : OmniPlayer.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./NonBlockingReceiver.sol";
import "@openzeppelin/contracts/utils/Strings.sol"; 

import "./interfaces/ILayerZeroEndpoint.sol";


/// @title A LayerZero OmnichainNonFungibleToken contract
/// @author Omniplayer Devs
/// @notice You can use this to mint ONFT and transfer across chain
/// @dev All function calls are currently implemented without side effects
contract OmniPlayer is
    ERC721,
    NonblockingReceiver,
    ILayerZeroUserApplicationConfig
{
    string public baseTokenURI;
    uint256 public gasForDestinationLzReceive = 350000;

    uint256 public nextTokenId;
    uint256 public maxMint;
    uint256 public publicSaleStartTime = 0;
    uint256 public maxMintPerWallet = 1;
    string public notRevealedURI;
    bool public revealed = false;
    mapping(address => uint256) public minted;

    /// @notice Constructor for the OmniPlayer NFT
    /// @param _baseTokenURI the Uniform Resource Identifier (URI) for tokenId token
    /// @param _notRevealedURI the not revealed URI
    /// @param _layerZeroEndpoint handles message transmission across chains
    /// @param _startToken the starting mint number on this chain
    /// @param _maxMint the max number of mints on this chain
    constructor(
        string memory _baseTokenURI,
        string memory _notRevealedURI,
        address _layerZeroEndpoint,
        uint256 _startToken,
        uint256 _maxMint
    ) ERC721("OmniPlayer", "OPLAYER") {
        setBaseURI(_baseTokenURI);
        notRevealedURI = _notRevealedURI;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        nextTokenId = _startToken;
        maxMint = _maxMint;
    }

    /// Mint OmniPlayer
    function setPublicSaleStartTime(uint256 newTime) public onlyOwner {
        publicSaleStartTime = newTime;
    }

    /**
     * pre-mint for community giveaways
     */
    function devMint(uint8 numTokens,address wlAddress) public onlyOwner {
        require(nextTokenId + numTokens <= maxMint, "Mint exceeds supply");
        for (uint256 i = 0; i < numTokens; i++) {
            _safeMint(wlAddress, ++nextTokenId);
        }
    }

    // Mint is free but payment but the payment is accepted
    function mint(uint8 numTokens) external payable {
        require(msg.sender == tx.origin, "User wallet required");
        require(
            publicSaleStartTime != 0 && publicSaleStartTime <= block.timestamp,
            "sales is not started"
        );
        require(numTokens <= 1, "Max 1 NFTs per transaction");
        require(
            minted[msg.sender] + numTokens <= maxMintPerWallet,
            "limit per wallet reached"
        );
        require(nextTokenId + numTokens <= maxMint, "Mint exceeds supply");

        _safeMint(msg.sender, ++nextTokenId);
        minted[msg.sender] += numTokens;
    }

    /// @notice Burn OmniPlayer on source chain and mint on destination chain
    /// @param _chainId the destination chain id you want to transfer too
    /// @param _tokenId the id of the NFT you want to transfer
    function traverseChains(uint16 _chainId, uint256 _tokenId) public payable {
        require(
            msg.sender == ownerOf(_tokenId),
            "Message sender must own the OmniPlayer."
        );
        require(
            trustedSourceLookup[_chainId].length != 0,
            "This chain is not a trusted source source."
        );

        // burn NFT on source chain
        _burn(_tokenId);

        // encode payload w/ sender address and NFT token id
        bytes memory payload = abi.encode(msg.sender, _tokenId);

        // encode adapterParams w/ extra gas for destination chain
        uint16 version = 1;
        uint256 gas = gasForDestinationLzReceive;
        bytes memory adapterParams = abi.encodePacked(version, gas);

        // use LayerZero estimateFees for cross chain delivery
        (uint256 quotedLayerZeroFee, ) = endpoint.estimateFees(
            _chainId,
            address(this),
            payload,
            false,
            adapterParams
        );

        require(
            msg.value >= quotedLayerZeroFee,
            "Not enough gas to cover cross chain transfer."
        );

        endpoint.send{value: msg.value}(
            _chainId, // destination chainId
            trustedSourceLookup[_chainId], // destination address of nft
            payload, // abi.encode()'ed bytes
            payable(msg.sender), // refund address
            address(0x0), // future parameter
            adapterParams // adapterParams
        );
    }

    /// @notice Set the baseTokenURI
    /// @param _baseTokenURI to set
    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    /// @notice Get the base URI
    function _baseURI() internal view override returns (string memory) {
        return baseTokenURI;
    }
    
    /// @notice Set the revealed flag
    function reveal() external onlyOwner{
        revealed = true;
    }

    // get fund inside contract
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(msg.sender), balance);
    }

    // just in case this fixed variable limits us from future integrations
    function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }

    /// @notice Override the _LzReceive internal function of the NonblockingReceiver
    // @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 memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal override {
        (address dstAddress, uint256 tokenId) = abi.decode(
            _payload,
            (address, uint256)
        );
        _safeMint(dstAddress, tokenId);
    }
 
    // User Application Config
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint256 _configType,
        bytes calldata _config
    ) external override onlyOwner {
        endpoint.setConfig(_version, _chainId, _configType, _config);
    }

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

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

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

    function tokenURI(uint _nftId) public view override(ERC721) returns (string memory) {
        require(_exists(_nftId), "This NFT doesn't exist.");
        if(revealed == false) {
            return notRevealedURI;
        }
        
        string memory currentBaseURI = _baseURI();
        return 
            bytes(currentBaseURI).length > 0 
            ? string(abi.encodePacked(currentBaseURI, Strings.toString(_nftId), ".json"))
            : "";
    }
}

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
pragma solidity 0.8.4;

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 {
        uint payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint => 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) virtual internal;

    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 : 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 5 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, uint _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 (uint nativeFee, uint zroFee);

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

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

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

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

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

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

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

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

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

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

File 6 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 7 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 8 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 9 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 10 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 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, uint _configType, bytes calldata _config) external;

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "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":"string","name":"_notRevealedURI","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":[{"internalType":"uint8","name":"numTokens","type":"uint8"},{"internalType":"address","name":"wlAddress","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","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":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForDestinationLzReceive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTime","type":"uint256"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedSource","type":"bytes"}],"name":"setTrustedSource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405262055730600b556000600e556001600f556000601160006101000a81548160ff0219169083151502179055503480156200003d57600080fd5b50604051620066ae380380620066ae83398181016040528101906200006391906200049a565b6040518060400160405280600a81526020017f4f6d6e69506c61796572000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4f504c41594552000000000000000000000000000000000000000000000000008152508160009080519060200190620000e79291906200034a565b508060019080519060200190620001009291906200034a565b5050506200012362000117620001a760201b60201c565b620001af60201b60201c565b62000134856200027560201b60201c565b83601090805190602001906200014c9291906200034a565b5082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c8190555080600d819055505050505050620007b3565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000285620001a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ab6200032060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fb9062000575565b60405180910390fd5b80600a90805190602001906200031c9291906200034a565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000358906200067b565b90600052602060002090601f0160209004810192826200037c5760008555620003c8565b82601f106200039757805160ff1916838001178555620003c8565b82800160010185558215620003c8579182015b82811115620003c7578251825591602001919060010190620003aa565b5b509050620003d79190620003db565b5090565b5b80821115620003f6576000816000905550600101620003dc565b5090565b6000620004116200040b84620005c0565b62000597565b9050828152602081018484840111156200042a57600080fd5b6200043784828562000645565b509392505050565b60008151905062000450816200077f565b92915050565b600082601f8301126200046857600080fd5b81516200047a848260208601620003fa565b91505092915050565b600081519050620004948162000799565b92915050565b600080600080600060a08688031215620004b357600080fd5b600086015167ffffffffffffffff811115620004ce57600080fd5b620004dc8882890162000456565b955050602086015167ffffffffffffffff811115620004fa57600080fd5b620005088882890162000456565b94505060406200051b888289016200043f565b93505060606200052e8882890162000483565b9250506080620005418882890162000483565b9150509295509295909350565b60006200055d602083620005f6565b91506200056a8262000756565b602082019050919050565b6000602082019050818103600083015262000590816200054e565b9050919050565b6000620005a3620005b6565b9050620005b18282620006b1565b919050565b6000604051905090565b600067ffffffffffffffff821115620005de57620005dd62000716565b5b620005e98262000745565b9050602081019050919050565b600082825260208201905092915050565b600062000614826200061b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200066557808201518184015260208101905062000648565b8381111562000675576000848401525b50505050565b600060028204905060018216806200069457607f821691505b60208210811415620006ab57620006aa620006e7565b5b50919050565b620006bc8262000745565b810181811067ffffffffffffffff82111715620006de57620006dd62000716565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200078a8162000607565b81146200079657600080fd5b50565b620007a4816200063b565b8114620007b057600080fd5b50565b615eeb80620007c36000396000f3fe6080604052600436106102665760003560e01c8063715018a611610144578063b228d925116100b6578063d1deba1f1161007a578063d1deba1f146108e6578063d547cfb714610902578063d73f057e1461092d578063e985e9c514610956578063f2fde38b14610993578063f3234f40146109bc57610266565b8063b228d92514610810578063b88d4fde1461083b578063c87b56dd14610864578063cbed8b9c146108a1578063cf89fa03146108ca57610266565b80638da5cb5b116101085780638da5cb5b146107135780638ee749121461073e578063943fb8721461077c57806395d89b41146107a5578063a22cb465146107d0578063a475b5dd146107f957610266565b8063715018a61461063e57806372250380146106555780637501f7411461068057806375794a3c146106ab57806381c986ee146106d657610266565b80633ccfd60b116101dd5780635e280f11116101a15780635e280f11146105295780636352211e146105545780636bb7b1d9146105915780636d5d40c6146105bc5780636ecd2306146105e557806370a082311461060157610266565b80633ccfd60b1461046c57806342842e0e1461048357806342d65a8d146104ac57806351830227146104d557806355f804b31461050057610266565b8063095ea7b31161022f578063095ea7b31461036257806310ddb1371461038b5780631c37a822146103b45780631e7269c5146103dd57806323b872dd1461041a5780632c0628eb1461044357610266565b80621d35671461026b57806301ffc9a71461029457806306fdde03146102d157806307e0db17146102fc578063081812fc14610325575b600080fd5b34801561027757600080fd5b50610292600480360381019061028d9190614005565b6109e7565b005b3480156102a057600080fd5b506102bb60048036038101906102b69190613df2565b610c29565b6040516102c89190614ab3565b60405180910390f35b3480156102dd57600080fd5b506102e6610d0b565b6040516102f39190614b0b565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613e85565b610d9d565b005b34801561033157600080fd5b5061034c60048036038101906103479190614154565b610ea9565b6040516103599190614a23565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613db6565b610f2e565b005b34801561039757600080fd5b506103b260048036038101906103ad9190613e85565b611046565b005b3480156103c057600080fd5b506103db60048036038101906103d69190614005565b611152565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613c0f565b6111d2565b6040516104119190615127565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613cb0565b6111ea565b005b34801561044f57600080fd5b5061046a600480360381019061046591906141e2565b61124a565b005b34801561047857600080fd5b5061048161135f565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613cb0565b6113ed565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613eae565b61140d565b005b3480156104e157600080fd5b506104ea61151f565b6040516104f79190614ab3565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613e44565b611532565b005b34801561053557600080fd5b5061053e6115c8565b60405161054b9190614af0565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190614154565b6115ee565b6040516105889190614a23565b60405180910390f35b34801561059d57600080fd5b506105a66116a0565b6040516105b39190615127565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190614154565b6116a6565b005b6105ff60048036038101906105fa91906141b9565b61172c565b005b34801561060d57600080fd5b5061062860048036038101906106239190613c0f565b611996565b6040516106359190615127565b60405180910390f35b34801561064a57600080fd5b50610653611a4e565b005b34801561066157600080fd5b5061066a611ad6565b6040516106779190614b0b565b60405180910390f35b34801561068c57600080fd5b50610695611b64565b6040516106a29190615127565b60405180910390f35b3480156106b757600080fd5b506106c0611b6a565b6040516106cd9190615127565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613e85565b611b70565b60405161070a9190614ace565b60405180910390f35b34801561071f57600080fd5b50610728611c10565b6040516107359190614a23565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613f06565b611c3a565b604051610773929190615142565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190614154565b611c8e565b005b3480156107b157600080fd5b506107ba611d14565b6040516107c79190614b0b565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613d7a565b611da6565b005b34801561080557600080fd5b5061080e611dbc565b005b34801561081c57600080fd5b50610825611e55565b6040516108329190615127565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613cff565b611e5b565b005b34801561087057600080fd5b5061088b60048036038101906108869190614154565b611ebd565b6040516108989190614b0b565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190614098565b612013565b005b6108e460048036038101906108df9190614118565b61212b565b005b61090060048036038101906108fb9190613f6d565b612425565b005b34801561090e57600080fd5b506109176125c5565b6040516109249190614b0b565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190613eae565b612653565b005b34801561096257600080fd5b5061097d60048036038101906109789190613c74565b612769565b60405161098a9190614ab3565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b59190613c0f565b6127fd565b005b3480156109c857600080fd5b506109d16128f5565b6040516109de9190615127565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a4157600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610a6790615435565b90508351148015610aad5750600960008561ffff1661ffff168152602001908152602001600020604051610a9b919061499c565b60405180910390208380519060200120145b610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390614ded565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b8152600401610b2b9493929190615010565b600060405180830381600087803b158015610b4557600080fd5b505af1925050508015610b56575060015b610c22576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610ba09190614985565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d84848484604051610c159493929190615010565b60405180910390a1610c23565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cf457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d045750610d03826128fb565b5b9050919050565b606060008054610d1a90615435565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4690615435565b8015610d935780601f10610d6857610100808354040283529160200191610d93565b820191906000526020600020905b815481529060010190602001808311610d7657829003601f168201915b5050505050905090565b610da5612965565b73ffffffffffffffffffffffffffffffffffffffff16610dc3611c10565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090614dcd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610e749190614f0d565b600060405180830381600087803b158015610e8e57600080fd5b505af1158015610ea2573d6000803e3d6000fd5b5050505050565b6000610eb48261296d565b610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90614dad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f39826115ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190614e2d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fc9612965565b73ffffffffffffffffffffffffffffffffffffffff161480610ff85750610ff781610ff2612965565b612769565b5b611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90614ced565b60405180910390fd5b61104183836129d9565b505050565b61104e612965565b73ffffffffffffffffffffffffffffffffffffffff1661106c611c10565b73ffffffffffffffffffffffffffffffffffffffff16146110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990614dcd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b815260040161111d9190614f0d565b600060405180830381600087803b15801561113757600080fd5b505af115801561114b573d6000803e3d6000fd5b5050505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d6d565b60405180910390fd5b6111cc84848484612a92565b50505050565b60126020528060005260406000206000915090505481565b6111fb6111f5612965565b82612abf565b61123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190614e6d565b60405180910390fd5b611245838383612b9d565b505050565b611252612965565b73ffffffffffffffffffffffffffffffffffffffff16611270611c10565b73ffffffffffffffffffffffffffffffffffffffff16146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90614dcd565b60405180910390fd5b600d548260ff16600c546112da9190615255565b111561131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290614c6d565b60405180910390fd5b60005b8260ff1681101561135a5761134782600c6000815461133c90615498565b919050819055612e04565b808061135290615498565b91505061131e565b505050565b611367612965565b73ffffffffffffffffffffffffffffffffffffffff16611385611c10565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614dcd565b60405180910390fd5b60004790506113ea3382612e22565b50565b61140883838360405180602001604052806000815250611e5b565b505050565b611415612965565b73ffffffffffffffffffffffffffffffffffffffff16611433611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090614dcd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b81526004016114e893929190614f89565b600060405180830381600087803b15801561150257600080fd5b505af1158015611516573d6000803e3d6000fd5b50505050505050565b601160009054906101000a900460ff1681565b61153a612965565b73ffffffffffffffffffffffffffffffffffffffff16611558611c10565b73ffffffffffffffffffffffffffffffffffffffff16146115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590614dcd565b60405180910390fd5b80600a90805190602001906115c49291906138fa565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90614d2d565b60405180910390fd5b80915050919050565b600e5481565b6116ae612965565b73ffffffffffffffffffffffffffffffffffffffff166116cc611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990614dcd565b60405180910390fd5b80600e8190555050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190614e4d565b60405180910390fd5b6000600e54141580156117af575042600e5411155b6117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590614eed565b60405180910390fd5b60018160ff161115611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614e0d565b60405180910390fd5b600f548160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118869190615255565b11156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90614bcd565b60405180910390fd5b600d548160ff16600c546118db9190615255565b111561191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390614c6d565b60405180910390fd5b61193a33600c6000815461192f90615498565b919050819055612e04565b8060ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198c9190615255565b9250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90614d0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a56612965565b73ffffffffffffffffffffffffffffffffffffffff16611a74611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190614dcd565b60405180910390fd5b611ad46000612f16565b565b60108054611ae390615435565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0f90615435565b8015611b5c5780601f10611b3157610100808354040283529160200191611b5c565b820191906000526020600020905b815481529060010190602001808311611b3f57829003601f168201915b505050505081565b600d5481565b600c5481565b60096020528060005260406000206000915090508054611b8f90615435565b80601f0160208091040260200160405190810160405280929190818152602001828054611bbb90615435565b8015611c085780601f10611bdd57610100808354040283529160200191611c08565b820191906000526020600020905b815481529060010190602001808311611beb57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611c96612965565b73ffffffffffffffffffffffffffffffffffffffff16611cb4611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0190614dcd565b60405180910390fd5b80600b8190555050565b606060018054611d2390615435565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4f90615435565b8015611d9c5780601f10611d7157610100808354040283529160200191611d9c565b820191906000526020600020905b815481529060010190602001808311611d7f57829003601f168201915b5050505050905090565b611db8611db1612965565b8383612fdc565b5050565b611dc4612965565b73ffffffffffffffffffffffffffffffffffffffff16611de2611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f90614dcd565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600f5481565b611e6c611e66612965565b83612abf565b611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290614e6d565b60405180910390fd5b611eb784848484613149565b50505050565b6060611ec88261296d565b611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614b6d565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611fb55760108054611f3090615435565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5c90615435565b8015611fa95780601f10611f7e57610100808354040283529160200191611fa9565b820191906000526020600020905b815481529060010190602001808311611f8c57829003601f168201915b5050505050905061200e565b6000611fbf6131a5565b90506000815111611fdf576040518060200160405280600081525061200a565b80611fe984613237565b604051602001611ffa9291906149b3565b6040516020818303038152906040525b9150505b919050565b61201b612965565b73ffffffffffffffffffffffffffffffffffffffff16612039611c10565b73ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614dcd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c86868686866040518663ffffffff1660e01b81526004016120f29594939291906150d9565b600060405180830381600087803b15801561210c57600080fd5b505af1158015612120573d6000803e3d6000fd5b505050505050505050565b612134816115ee565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146121a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219890614d4d565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546121c990615435565b9050141561220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614e8d565b60405180910390fd5b612215816133e4565b6000338260405160200161222a929190614a8a565b60405160208183030381529060405290506000600190506000600b5490506000828260405160200161225d9291906149f7565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830886000876040518663ffffffff1660e01b81526004016122d4959493929190614f28565b604080518083038186803b1580156122eb57600080fd5b505afa1580156122ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612323919061417d565b50905080341015612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090614ccd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003489600960008c61ffff1661ffff16815260200190815260200160002089336000896040518863ffffffff1660e01b81526004016123ea96959493929190615063565b6000604051808303818588803b15801561240357600080fd5b505af1158015612417573d6000803e3d6000fd5b505050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516124509190614985565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015414156124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc90614ecd565b60405180910390fd5b8060000154838390501480156124f55750806001015483836040516124eb92919061496c565b6040518091039020145b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90614c2d565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b815260040161258b959493929190614fbb565b600060405180830381600087803b1580156125a557600080fd5b505af11580156125b9573d6000803e3d6000fd5b50505050505050505050565b600a80546125d290615435565b80601f01602080910402602001604051908101604052809291908181526020018280546125fe90615435565b801561264b5780601f106126205761010080835404028352916020019161264b565b820191906000526020600020905b81548152906001019060200180831161262e57829003601f168201915b505050505081565b61265b612965565b73ffffffffffffffffffffffffffffffffffffffff16612679611c10565b73ffffffffffffffffffffffffffffffffffffffff16146126cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c690614dcd565b60405180910390fd5b6000600960008561ffff1661ffff16815260200190815260200160002080546126f790615435565b905014612739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273090614ead565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190612763929190613980565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612805612965565b73ffffffffffffffffffffffffffffffffffffffff16612823611c10565b73ffffffffffffffffffffffffffffffffffffffff1614612879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287090614dcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090614b4d565b60405180910390fd5b6128f281612f16565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a4c836115ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612aa99190613c38565b91509150612ab78282612e04565b505050505050565b6000612aca8261296d565b612b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0090614cad565b60405180910390fd5b6000612b14836115ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b8357508373ffffffffffffffffffffffffffffffffffffffff16612b6b84610ea9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b945750612b938185612769565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bbd826115ee565b73ffffffffffffffffffffffffffffffffffffffff1614612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90614b8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7a90614bed565b60405180910390fd5b612c8e838383613501565b612c996000826129d9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ce991906152dc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d409190615255565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dff838383613506565b505050565b612e1e82826040518060200160405280600081525061350b565b5050565b80471015612e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5c90614c8d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612e8b906149e2565b60006040518083038185875af1925050503d8060008114612ec8576040519150601f19603f3d011682016040523d82523d6000602084013e612ecd565b606091505b5050905080612f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0890614c4d565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561304b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304290614c0d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161313c9190614ab3565b60405180910390a3505050565b613154848484612b9d565b61316084848484613566565b61319f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319690614b2d565b60405180910390fd5b50505050565b6060600a80546131b490615435565b80601f01602080910402602001604051908101604052809291908181526020018280546131e090615435565b801561322d5780601f106132025761010080835404028352916020019161322d565b820191906000526020600020905b81548152906001019060200180831161321057829003601f168201915b5050505050905090565b6060600082141561327f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133df565b600082905060005b600082146132b157808061329a90615498565b915050600a826132aa91906152ab565b9150613287565b60008167ffffffffffffffff8111156132f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133255781602001600182028036833780820191505090505b5090505b600085146133d85760018261333e91906152dc565b9150600a8561334d91906154fd565b60306133599190615255565b60f81b818381518110613395577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133d191906152ab565b9450613329565b8093505050505b919050565b60006133ef826115ee565b90506133fd81600084613501565b6134086000836129d9565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461345891906152dc565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134fd81600084613506565b5050565b505050565b505050565b61351583836136fd565b6135226000848484613566565b613561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355890614b2d565b60405180910390fd5b505050565b60006135878473ffffffffffffffffffffffffffffffffffffffff166138d7565b156136f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135b0612965565b8786866040518563ffffffff1660e01b81526004016135d29493929190614a3e565b602060405180830381600087803b1580156135ec57600080fd5b505af192505050801561361d57506040513d601f19601f8201168201806040525081019061361a9190613e1b565b60015b6136a0573d806000811461364d576040519150601f19603f3d011682016040523d82523d6000602084013e613652565b606091505b50600081511415613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368f90614b2d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136f5565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561376d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376490614d8d565b60405180910390fd5b6137768161296d565b156137b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ad90614bad565b60405180910390fd5b6137c260008383613501565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138129190615255565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138d360008383613506565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461390690615435565b90600052602060002090601f016020900481019282613928576000855561396f565b82601f1061394157805160ff191683800117855561396f565b8280016001018555821561396f579182015b8281111561396e578251825591602001919060010190613953565b5b50905061397c9190613a06565b5090565b82805461398c90615435565b90600052602060002090601f0160209004810192826139ae57600085556139f5565b82601f106139c757803560ff19168380011785556139f5565b828001600101855582156139f5579182015b828111156139f45782358255916020019190600101906139d9565b5b509050613a029190613a06565b5090565b5b80821115613a1f576000816000905550600101613a07565b5090565b6000613a36613a3184615190565b61516b565b905082815260208101848484011115613a4e57600080fd5b613a598482856153f3565b509392505050565b6000613a74613a6f846151c1565b61516b565b905082815260208101848484011115613a8c57600080fd5b613a978482856153f3565b509392505050565b600081359050613aae81615dfd565b92915050565b600081519050613ac381615e14565b92915050565b600081359050613ad881615e2b565b92915050565b600081359050613aed81615e42565b92915050565b600081519050613b0281615e42565b92915050565b60008083601f840112613b1a57600080fd5b8235905067ffffffffffffffff811115613b3357600080fd5b602083019150836001820283011115613b4b57600080fd5b9250929050565b600082601f830112613b6357600080fd5b8135613b73848260208601613a23565b91505092915050565b600082601f830112613b8d57600080fd5b8135613b9d848260208601613a61565b91505092915050565b600081359050613bb581615e59565b92915050565b600081359050613bca81615e70565b92915050565b600081519050613bdf81615e70565b92915050565b600081359050613bf481615e87565b92915050565b600081359050613c0981615e9e565b92915050565b600060208284031215613c2157600080fd5b6000613c2f84828501613a9f565b91505092915050565b60008060408385031215613c4b57600080fd5b6000613c5985828601613ab4565b9250506020613c6a85828601613bd0565b9150509250929050565b60008060408385031215613c8757600080fd5b6000613c9585828601613a9f565b9250506020613ca685828601613a9f565b9150509250929050565b600080600060608486031215613cc557600080fd5b6000613cd386828701613a9f565b9350506020613ce486828701613a9f565b9250506040613cf586828701613bbb565b9150509250925092565b60008060008060808587031215613d1557600080fd5b6000613d2387828801613a9f565b9450506020613d3487828801613a9f565b9350506040613d4587828801613bbb565b925050606085013567ffffffffffffffff811115613d6257600080fd5b613d6e87828801613b52565b91505092959194509250565b60008060408385031215613d8d57600080fd5b6000613d9b85828601613a9f565b9250506020613dac85828601613ac9565b9150509250929050565b60008060408385031215613dc957600080fd5b6000613dd785828601613a9f565b9250506020613de885828601613bbb565b9150509250929050565b600060208284031215613e0457600080fd5b6000613e1284828501613ade565b91505092915050565b600060208284031215613e2d57600080fd5b6000613e3b84828501613af3565b91505092915050565b600060208284031215613e5657600080fd5b600082013567ffffffffffffffff811115613e7057600080fd5b613e7c84828501613b7c565b91505092915050565b600060208284031215613e9757600080fd5b6000613ea584828501613ba6565b91505092915050565b600080600060408486031215613ec357600080fd5b6000613ed186828701613ba6565b935050602084013567ffffffffffffffff811115613eee57600080fd5b613efa86828701613b08565b92509250509250925092565b600080600060608486031215613f1b57600080fd5b6000613f2986828701613ba6565b935050602084013567ffffffffffffffff811115613f4657600080fd5b613f5286828701613b52565b9250506040613f6386828701613bbb565b9150509250925092565b600080600080600060808688031215613f8557600080fd5b6000613f9388828901613ba6565b955050602086013567ffffffffffffffff811115613fb057600080fd5b613fbc88828901613b52565b9450506040613fcd88828901613be5565b935050606086013567ffffffffffffffff811115613fea57600080fd5b613ff688828901613b08565b92509250509295509295909350565b6000806000806080858703121561401b57600080fd5b600061402987828801613ba6565b945050602085013567ffffffffffffffff81111561404657600080fd5b61405287828801613b52565b935050604061406387828801613be5565b925050606085013567ffffffffffffffff81111561408057600080fd5b61408c87828801613b52565b91505092959194509250565b6000806000806000608086880312156140b057600080fd5b60006140be88828901613ba6565b95505060206140cf88828901613ba6565b94505060406140e088828901613bbb565b935050606086013567ffffffffffffffff8111156140fd57600080fd5b61410988828901613b08565b92509250509295509295909350565b6000806040838503121561412b57600080fd5b600061413985828601613ba6565b925050602061414a85828601613bbb565b9150509250929050565b60006020828403121561416657600080fd5b600061417484828501613bbb565b91505092915050565b6000806040838503121561419057600080fd5b600061419e85828601613bd0565b92505060206141af85828601613bd0565b9150509250929050565b6000602082840312156141cb57600080fd5b60006141d984828501613bfa565b91505092915050565b600080604083850312156141f557600080fd5b600061420385828601613bfa565b925050602061421485828601613a9f565b9150509250929050565b61422781615322565b82525050565b61423681615310565b82525050565b61424581615334565b82525050565b61425481615340565b82525050565b6000614266838561521d565b93506142738385846153f3565b61427c836155ea565b840190509392505050565b6000614293838561522e565b93506142a08385846153f3565b82840190509392505050565b60006142b782615207565b6142c1818561521d565b93506142d1818560208601615402565b6142da816155ea565b840191505092915050565b60006142f082615207565b6142fa818561522e565b935061430a818560208601615402565b80840191505092915050565b6000815461432381615435565b61432d818661521d565b94506001821660008114614348576001811461435a5761438d565b60ff198316865260208601935061438d565b614363856151f2565b60005b8381101561438557815481890152600182019150602081019050614366565b808801955050505b50505092915050565b600081546143a381615435565b6143ad818661522e565b945060018216600081146143c857600181146143d95761440c565b60ff1983168652818601935061440c565b6143e2856151f2565b60005b83811015614404578154818901526001820191506020810190506143e5565b838801955050505b50505092915050565b61441e816153cf565b82525050565b600061442f82615212565b6144398185615239565b9350614449818560208601615402565b614452816155ea565b840191505092915050565b600061446882615212565b614472818561524a565b9350614482818560208601615402565b80840191505092915050565b600061449b603283615239565b91506144a682615608565b604082019050919050565b60006144be602683615239565b91506144c982615657565b604082019050919050565b60006144e1601783615239565b91506144ec826156a6565b602082019050919050565b6000614504602583615239565b915061450f826156cf565b604082019050919050565b6000614527601c83615239565b91506145328261571e565b602082019050919050565b600061454a601883615239565b915061455582615747565b602082019050919050565b600061456d602483615239565b915061457882615770565b604082019050919050565b6000614590601983615239565b915061459b826157bf565b602082019050919050565b60006145b3601a83615239565b91506145be826157e8565b602082019050919050565b60006145d6603a83615239565b91506145e182615811565b604082019050919050565b60006145f9601383615239565b915061460482615860565b602082019050919050565b600061461c601d83615239565b915061462782615889565b602082019050919050565b600061463f602c83615239565b915061464a826158b2565b604082019050919050565b6000614662602d83615239565b915061466d82615901565b604082019050919050565b6000614685603883615239565b915061469082615950565b604082019050919050565b60006146a8602a83615239565b91506146b38261599f565b604082019050919050565b60006146cb602983615239565b91506146d6826159ee565b604082019050919050565b60006146ee602783615239565b91506146f982615a3d565b604082019050919050565b6000614711602b83615239565b915061471c82615a8c565b604082019050919050565b6000614734602083615239565b915061473f82615adb565b602082019050919050565b6000614757602c83615239565b915061476282615b04565b604082019050919050565b600061477a60058361524a565b915061478582615b53565b600582019050919050565b600061479d602083615239565b91506147a882615b7c565b602082019050919050565b60006147c0603483615239565b91506147cb82615ba5565b604082019050919050565b60006147e3601a83615239565b91506147ee82615bf4565b602082019050919050565b6000614806602183615239565b915061481182615c1d565b604082019050919050565b6000614829601483615239565b915061483482615c6c565b602082019050919050565b600061484c60008361522e565b915061485782615c95565b600082019050919050565b600061486f603183615239565b915061487a82615c98565b604082019050919050565b6000614892602a83615239565b915061489d82615ce7565b604082019050919050565b60006148b5604083615239565b91506148c082615d36565b604082019050919050565b60006148d8602683615239565b91506148e382615d85565b604082019050919050565b60006148fb601483615239565b915061490682615dd4565b602082019050919050565b61491a81615376565b82525050565b61493161492c82615376565b6154e1565b82525050565b614940816153a4565b82525050565b614957614952826153a4565b6154f3565b82525050565b614966816153ae565b82525050565b6000614979828486614287565b91508190509392505050565b600061499182846142e5565b915081905092915050565b60006149a88284614396565b915081905092915050565b60006149bf828561445d565b91506149cb828461445d565b91506149d68261476d565b91508190509392505050565b60006149ed8261483f565b9150819050919050565b6000614a038285614920565b600282019150614a138284614946565b6020820191508190509392505050565b6000602082019050614a38600083018461422d565b92915050565b6000608082019050614a53600083018761422d565b614a60602083018661422d565b614a6d6040830185614937565b8181036060830152614a7f81846142ac565b905095945050505050565b6000604082019050614a9f600083018561422d565b614aac6020830184614937565b9392505050565b6000602082019050614ac8600083018461423c565b92915050565b60006020820190508181036000830152614ae881846142ac565b905092915050565b6000602082019050614b056000830184614415565b92915050565b60006020820190508181036000830152614b258184614424565b905092915050565b60006020820190508181036000830152614b468161448e565b9050919050565b60006020820190508181036000830152614b66816144b1565b9050919050565b60006020820190508181036000830152614b86816144d4565b9050919050565b60006020820190508181036000830152614ba6816144f7565b9050919050565b60006020820190508181036000830152614bc68161451a565b9050919050565b60006020820190508181036000830152614be68161453d565b9050919050565b60006020820190508181036000830152614c0681614560565b9050919050565b60006020820190508181036000830152614c2681614583565b9050919050565b60006020820190508181036000830152614c46816145a6565b9050919050565b60006020820190508181036000830152614c66816145c9565b9050919050565b60006020820190508181036000830152614c86816145ec565b9050919050565b60006020820190508181036000830152614ca68161460f565b9050919050565b60006020820190508181036000830152614cc681614632565b9050919050565b60006020820190508181036000830152614ce681614655565b9050919050565b60006020820190508181036000830152614d0681614678565b9050919050565b60006020820190508181036000830152614d268161469b565b9050919050565b60006020820190508181036000830152614d46816146be565b9050919050565b60006020820190508181036000830152614d66816146e1565b9050919050565b60006020820190508181036000830152614d8681614704565b9050919050565b60006020820190508181036000830152614da681614727565b9050919050565b60006020820190508181036000830152614dc68161474a565b9050919050565b60006020820190508181036000830152614de681614790565b9050919050565b60006020820190508181036000830152614e06816147b3565b9050919050565b60006020820190508181036000830152614e26816147d6565b9050919050565b60006020820190508181036000830152614e46816147f9565b9050919050565b60006020820190508181036000830152614e668161481c565b9050919050565b60006020820190508181036000830152614e8681614862565b9050919050565b60006020820190508181036000830152614ea681614885565b9050919050565b60006020820190508181036000830152614ec6816148a8565b9050919050565b60006020820190508181036000830152614ee6816148cb565b9050919050565b60006020820190508181036000830152614f06816148ee565b9050919050565b6000602082019050614f226000830184614911565b92915050565b600060a082019050614f3d6000830188614911565b614f4a602083018761422d565b8181036040830152614f5c81866142ac565b9050614f6b606083018561423c565b8181036080830152614f7d81846142ac565b90509695505050505050565b6000604082019050614f9e6000830186614911565b8181036020830152614fb181848661425a565b9050949350505050565b6000608082019050614fd06000830188614911565b8181036020830152614fe281876142ac565b9050614ff1604083018661495d565b818103606083015261500481848661425a565b90509695505050505050565b60006080820190506150256000830187614911565b818103602083015261503781866142ac565b9050615046604083018561495d565b818103606083015261505881846142ac565b905095945050505050565b600060c0820190506150786000830189614911565b818103602083015261508a8188614316565b9050818103604083015261509e81876142ac565b90506150ad606083018661421e565b6150ba608083018561422d565b81810360a08301526150cc81846142ac565b9050979650505050505050565b60006080820190506150ee6000830188614911565b6150fb6020830187614911565b6151086040830186614937565b818103606083015261511b81848661425a565b90509695505050505050565b600060208201905061513c6000830184614937565b92915050565b60006040820190506151576000830185614937565b615164602083018461424b565b9392505050565b6000615175615186565b90506151818282615467565b919050565b6000604051905090565b600067ffffffffffffffff8211156151ab576151aa6155bb565b5b6151b4826155ea565b9050602081019050919050565b600067ffffffffffffffff8211156151dc576151db6155bb565b5b6151e5826155ea565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615260826153a4565b915061526b836153a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152a05761529f61552e565b5b828201905092915050565b60006152b6826153a4565b91506152c1836153a4565b9250826152d1576152d061555d565b5b828204905092915050565b60006152e7826153a4565b91506152f2836153a4565b9250828210156153055761530461552e565b5b828203905092915050565b600061531b82615384565b9050919050565b600061532d82615384565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b60006153da826153e1565b9050919050565b60006153ec82615384565b9050919050565b82818337600083830152505050565b60005b83811015615420578082015181840152602081019050615405565b8381111561542f576000848401525b50505050565b6000600282049050600182168061544d57607f821691505b602082108114156154615761546061558c565b5b50919050565b615470826155ea565b810181811067ffffffffffffffff8211171561548f5761548e6155bb565b5b80604052505050565b60006154a3826153a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154d6576154d561552e565b5b600182019050919050565b60006154ec826155fb565b9050919050565b6000819050919050565b6000615508826153a4565b9150615513836153a4565b9250826155235761552261555d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f54686973204e465420646f65736e27742065786973742e000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6c696d6974207065722077616c6c657420726561636865640000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682067617320746f20636f7665722063726f737320636860008201527f61696e207472616e736665722e00000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d6573736167652073656e646572206d757374206f776e20746865204f6d6e6960008201527f506c617965722e00000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4d61782031204e46547320706572207472616e73616374696f6e000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f557365722077616c6c6574207265717569726564000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5468697320636861696e206973206e6f742061207472757374656420736f757260008201527f636520736f757263652e00000000000000000000000000000000000000000000602082015250565b7f546865207472757374656420736f75726365206164647265737320686173206160008201527f6c7265616479206265656e2073657420666f722074686520636861696e496421602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742073746172746564000000000000000000000000600082015250565b615e0681615310565b8114615e1157600080fd5b50565b615e1d81615322565b8114615e2857600080fd5b50565b615e3481615334565b8114615e3f57600080fd5b50565b615e4b8161534a565b8114615e5657600080fd5b50565b615e6281615376565b8114615e6d57600080fd5b50565b615e79816153a4565b8114615e8457600080fd5b50565b615e90816153ae565b8114615e9b57600080fd5b50565b615ea7816153c2565b8114615eb257600080fd5b5056fea26469706673582212200aacc4ce5322c4a454b01662da939f4c195b4ea35452b2ffbf95ce3170f2566664736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000002c700000000000000000000000000000000000000000000000000000000000003f30000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5364534b713277545562705469594478746936785377377a45535853476545446a66383459416131453448682f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a384174444a746a74476668474570695147454c42544e7254344b31704d51534136767764594345594145580000000000000000000000

Deployed Bytecode

0x6080604052600436106102665760003560e01c8063715018a611610144578063b228d925116100b6578063d1deba1f1161007a578063d1deba1f146108e6578063d547cfb714610902578063d73f057e1461092d578063e985e9c514610956578063f2fde38b14610993578063f3234f40146109bc57610266565b8063b228d92514610810578063b88d4fde1461083b578063c87b56dd14610864578063cbed8b9c146108a1578063cf89fa03146108ca57610266565b80638da5cb5b116101085780638da5cb5b146107135780638ee749121461073e578063943fb8721461077c57806395d89b41146107a5578063a22cb465146107d0578063a475b5dd146107f957610266565b8063715018a61461063e57806372250380146106555780637501f7411461068057806375794a3c146106ab57806381c986ee146106d657610266565b80633ccfd60b116101dd5780635e280f11116101a15780635e280f11146105295780636352211e146105545780636bb7b1d9146105915780636d5d40c6146105bc5780636ecd2306146105e557806370a082311461060157610266565b80633ccfd60b1461046c57806342842e0e1461048357806342d65a8d146104ac57806351830227146104d557806355f804b31461050057610266565b8063095ea7b31161022f578063095ea7b31461036257806310ddb1371461038b5780631c37a822146103b45780631e7269c5146103dd57806323b872dd1461041a5780632c0628eb1461044357610266565b80621d35671461026b57806301ffc9a71461029457806306fdde03146102d157806307e0db17146102fc578063081812fc14610325575b600080fd5b34801561027757600080fd5b50610292600480360381019061028d9190614005565b6109e7565b005b3480156102a057600080fd5b506102bb60048036038101906102b69190613df2565b610c29565b6040516102c89190614ab3565b60405180910390f35b3480156102dd57600080fd5b506102e6610d0b565b6040516102f39190614b0b565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613e85565b610d9d565b005b34801561033157600080fd5b5061034c60048036038101906103479190614154565b610ea9565b6040516103599190614a23565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613db6565b610f2e565b005b34801561039757600080fd5b506103b260048036038101906103ad9190613e85565b611046565b005b3480156103c057600080fd5b506103db60048036038101906103d69190614005565b611152565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613c0f565b6111d2565b6040516104119190615127565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613cb0565b6111ea565b005b34801561044f57600080fd5b5061046a600480360381019061046591906141e2565b61124a565b005b34801561047857600080fd5b5061048161135f565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613cb0565b6113ed565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613eae565b61140d565b005b3480156104e157600080fd5b506104ea61151f565b6040516104f79190614ab3565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613e44565b611532565b005b34801561053557600080fd5b5061053e6115c8565b60405161054b9190614af0565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190614154565b6115ee565b6040516105889190614a23565b60405180910390f35b34801561059d57600080fd5b506105a66116a0565b6040516105b39190615127565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190614154565b6116a6565b005b6105ff60048036038101906105fa91906141b9565b61172c565b005b34801561060d57600080fd5b5061062860048036038101906106239190613c0f565b611996565b6040516106359190615127565b60405180910390f35b34801561064a57600080fd5b50610653611a4e565b005b34801561066157600080fd5b5061066a611ad6565b6040516106779190614b0b565b60405180910390f35b34801561068c57600080fd5b50610695611b64565b6040516106a29190615127565b60405180910390f35b3480156106b757600080fd5b506106c0611b6a565b6040516106cd9190615127565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613e85565b611b70565b60405161070a9190614ace565b60405180910390f35b34801561071f57600080fd5b50610728611c10565b6040516107359190614a23565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613f06565b611c3a565b604051610773929190615142565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190614154565b611c8e565b005b3480156107b157600080fd5b506107ba611d14565b6040516107c79190614b0b565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613d7a565b611da6565b005b34801561080557600080fd5b5061080e611dbc565b005b34801561081c57600080fd5b50610825611e55565b6040516108329190615127565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613cff565b611e5b565b005b34801561087057600080fd5b5061088b60048036038101906108869190614154565b611ebd565b6040516108989190614b0b565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190614098565b612013565b005b6108e460048036038101906108df9190614118565b61212b565b005b61090060048036038101906108fb9190613f6d565b612425565b005b34801561090e57600080fd5b506109176125c5565b6040516109249190614b0b565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190613eae565b612653565b005b34801561096257600080fd5b5061097d60048036038101906109789190613c74565b612769565b60405161098a9190614ab3565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b59190613c0f565b6127fd565b005b3480156109c857600080fd5b506109d16128f5565b6040516109de9190615127565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a4157600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610a6790615435565b90508351148015610aad5750600960008561ffff1661ffff168152602001908152602001600020604051610a9b919061499c565b60405180910390208380519060200120145b610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390614ded565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b8152600401610b2b9493929190615010565b600060405180830381600087803b158015610b4557600080fd5b505af1925050508015610b56575060015b610c22576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610ba09190614985565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d84848484604051610c159493929190615010565b60405180910390a1610c23565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cf457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d045750610d03826128fb565b5b9050919050565b606060008054610d1a90615435565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4690615435565b8015610d935780601f10610d6857610100808354040283529160200191610d93565b820191906000526020600020905b815481529060010190602001808311610d7657829003601f168201915b5050505050905090565b610da5612965565b73ffffffffffffffffffffffffffffffffffffffff16610dc3611c10565b73ffffffffffffffffffffffffffffffffffffffff1614610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090614dcd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610e749190614f0d565b600060405180830381600087803b158015610e8e57600080fd5b505af1158015610ea2573d6000803e3d6000fd5b5050505050565b6000610eb48261296d565b610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90614dad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f39826115ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190614e2d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fc9612965565b73ffffffffffffffffffffffffffffffffffffffff161480610ff85750610ff781610ff2612965565b612769565b5b611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90614ced565b60405180910390fd5b61104183836129d9565b505050565b61104e612965565b73ffffffffffffffffffffffffffffffffffffffff1661106c611c10565b73ffffffffffffffffffffffffffffffffffffffff16146110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990614dcd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b815260040161111d9190614f0d565b600060405180830381600087803b15801561113757600080fd5b505af115801561114b573d6000803e3d6000fd5b5050505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d6d565b60405180910390fd5b6111cc84848484612a92565b50505050565b60126020528060005260406000206000915090505481565b6111fb6111f5612965565b82612abf565b61123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190614e6d565b60405180910390fd5b611245838383612b9d565b505050565b611252612965565b73ffffffffffffffffffffffffffffffffffffffff16611270611c10565b73ffffffffffffffffffffffffffffffffffffffff16146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90614dcd565b60405180910390fd5b600d548260ff16600c546112da9190615255565b111561131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290614c6d565b60405180910390fd5b60005b8260ff1681101561135a5761134782600c6000815461133c90615498565b919050819055612e04565b808061135290615498565b91505061131e565b505050565b611367612965565b73ffffffffffffffffffffffffffffffffffffffff16611385611c10565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614dcd565b60405180910390fd5b60004790506113ea3382612e22565b50565b61140883838360405180602001604052806000815250611e5b565b505050565b611415612965565b73ffffffffffffffffffffffffffffffffffffffff16611433611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090614dcd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b81526004016114e893929190614f89565b600060405180830381600087803b15801561150257600080fd5b505af1158015611516573d6000803e3d6000fd5b50505050505050565b601160009054906101000a900460ff1681565b61153a612965565b73ffffffffffffffffffffffffffffffffffffffff16611558611c10565b73ffffffffffffffffffffffffffffffffffffffff16146115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590614dcd565b60405180910390fd5b80600a90805190602001906115c49291906138fa565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90614d2d565b60405180910390fd5b80915050919050565b600e5481565b6116ae612965565b73ffffffffffffffffffffffffffffffffffffffff166116cc611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990614dcd565b60405180910390fd5b80600e8190555050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190614e4d565b60405180910390fd5b6000600e54141580156117af575042600e5411155b6117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590614eed565b60405180910390fd5b60018160ff161115611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614e0d565b60405180910390fd5b600f548160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118869190615255565b11156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90614bcd565b60405180910390fd5b600d548160ff16600c546118db9190615255565b111561191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390614c6d565b60405180910390fd5b61193a33600c6000815461192f90615498565b919050819055612e04565b8060ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198c9190615255565b9250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90614d0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a56612965565b73ffffffffffffffffffffffffffffffffffffffff16611a74611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190614dcd565b60405180910390fd5b611ad46000612f16565b565b60108054611ae390615435565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0f90615435565b8015611b5c5780601f10611b3157610100808354040283529160200191611b5c565b820191906000526020600020905b815481529060010190602001808311611b3f57829003601f168201915b505050505081565b600d5481565b600c5481565b60096020528060005260406000206000915090508054611b8f90615435565b80601f0160208091040260200160405190810160405280929190818152602001828054611bbb90615435565b8015611c085780601f10611bdd57610100808354040283529160200191611c08565b820191906000526020600020905b815481529060010190602001808311611beb57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611c96612965565b73ffffffffffffffffffffffffffffffffffffffff16611cb4611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0190614dcd565b60405180910390fd5b80600b8190555050565b606060018054611d2390615435565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4f90615435565b8015611d9c5780601f10611d7157610100808354040283529160200191611d9c565b820191906000526020600020905b815481529060010190602001808311611d7f57829003601f168201915b5050505050905090565b611db8611db1612965565b8383612fdc565b5050565b611dc4612965565b73ffffffffffffffffffffffffffffffffffffffff16611de2611c10565b73ffffffffffffffffffffffffffffffffffffffff1614611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f90614dcd565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600f5481565b611e6c611e66612965565b83612abf565b611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290614e6d565b60405180910390fd5b611eb784848484613149565b50505050565b6060611ec88261296d565b611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614b6d565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611fb55760108054611f3090615435565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5c90615435565b8015611fa95780601f10611f7e57610100808354040283529160200191611fa9565b820191906000526020600020905b815481529060010190602001808311611f8c57829003601f168201915b5050505050905061200e565b6000611fbf6131a5565b90506000815111611fdf576040518060200160405280600081525061200a565b80611fe984613237565b604051602001611ffa9291906149b3565b6040516020818303038152906040525b9150505b919050565b61201b612965565b73ffffffffffffffffffffffffffffffffffffffff16612039611c10565b73ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614dcd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c86868686866040518663ffffffff1660e01b81526004016120f29594939291906150d9565b600060405180830381600087803b15801561210c57600080fd5b505af1158015612120573d6000803e3d6000fd5b505050505050505050565b612134816115ee565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146121a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219890614d4d565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546121c990615435565b9050141561220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614e8d565b60405180910390fd5b612215816133e4565b6000338260405160200161222a929190614a8a565b60405160208183030381529060405290506000600190506000600b5490506000828260405160200161225d9291906149f7565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830886000876040518663ffffffff1660e01b81526004016122d4959493929190614f28565b604080518083038186803b1580156122eb57600080fd5b505afa1580156122ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612323919061417d565b50905080341015612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090614ccd565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003489600960008c61ffff1661ffff16815260200190815260200160002089336000896040518863ffffffff1660e01b81526004016123ea96959493929190615063565b6000604051808303818588803b15801561240357600080fd5b505af1158015612417573d6000803e3d6000fd5b505050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516124509190614985565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015414156124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc90614ecd565b60405180910390fd5b8060000154838390501480156124f55750806001015483836040516124eb92919061496c565b6040518091039020145b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90614c2d565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b815260040161258b959493929190614fbb565b600060405180830381600087803b1580156125a557600080fd5b505af11580156125b9573d6000803e3d6000fd5b50505050505050505050565b600a80546125d290615435565b80601f01602080910402602001604051908101604052809291908181526020018280546125fe90615435565b801561264b5780601f106126205761010080835404028352916020019161264b565b820191906000526020600020905b81548152906001019060200180831161262e57829003601f168201915b505050505081565b61265b612965565b73ffffffffffffffffffffffffffffffffffffffff16612679611c10565b73ffffffffffffffffffffffffffffffffffffffff16146126cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c690614dcd565b60405180910390fd5b6000600960008561ffff1661ffff16815260200190815260200160002080546126f790615435565b905014612739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273090614ead565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190612763929190613980565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612805612965565b73ffffffffffffffffffffffffffffffffffffffff16612823611c10565b73ffffffffffffffffffffffffffffffffffffffff1614612879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287090614dcd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090614b4d565b60405180910390fd5b6128f281612f16565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a4c836115ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612aa99190613c38565b91509150612ab78282612e04565b505050505050565b6000612aca8261296d565b612b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0090614cad565b60405180910390fd5b6000612b14836115ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b8357508373ffffffffffffffffffffffffffffffffffffffff16612b6b84610ea9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b945750612b938185612769565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bbd826115ee565b73ffffffffffffffffffffffffffffffffffffffff1614612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90614b8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7a90614bed565b60405180910390fd5b612c8e838383613501565b612c996000826129d9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ce991906152dc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d409190615255565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dff838383613506565b505050565b612e1e82826040518060200160405280600081525061350b565b5050565b80471015612e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5c90614c8d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612e8b906149e2565b60006040518083038185875af1925050503d8060008114612ec8576040519150601f19603f3d011682016040523d82523d6000602084013e612ecd565b606091505b5050905080612f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0890614c4d565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561304b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304290614c0d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161313c9190614ab3565b60405180910390a3505050565b613154848484612b9d565b61316084848484613566565b61319f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319690614b2d565b60405180910390fd5b50505050565b6060600a80546131b490615435565b80601f01602080910402602001604051908101604052809291908181526020018280546131e090615435565b801561322d5780601f106132025761010080835404028352916020019161322d565b820191906000526020600020905b81548152906001019060200180831161321057829003601f168201915b5050505050905090565b6060600082141561327f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133df565b600082905060005b600082146132b157808061329a90615498565b915050600a826132aa91906152ab565b9150613287565b60008167ffffffffffffffff8111156132f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133255781602001600182028036833780820191505090505b5090505b600085146133d85760018261333e91906152dc565b9150600a8561334d91906154fd565b60306133599190615255565b60f81b818381518110613395577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133d191906152ab565b9450613329565b8093505050505b919050565b60006133ef826115ee565b90506133fd81600084613501565b6134086000836129d9565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461345891906152dc565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134fd81600084613506565b5050565b505050565b505050565b61351583836136fd565b6135226000848484613566565b613561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355890614b2d565b60405180910390fd5b505050565b60006135878473ffffffffffffffffffffffffffffffffffffffff166138d7565b156136f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135b0612965565b8786866040518563ffffffff1660e01b81526004016135d29493929190614a3e565b602060405180830381600087803b1580156135ec57600080fd5b505af192505050801561361d57506040513d601f19601f8201168201806040525081019061361a9190613e1b565b60015b6136a0573d806000811461364d576040519150601f19603f3d011682016040523d82523d6000602084013e613652565b606091505b50600081511415613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368f90614b2d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136f5565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561376d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376490614d8d565b60405180910390fd5b6137768161296d565b156137b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ad90614bad565b60405180910390fd5b6137c260008383613501565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138129190615255565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138d360008383613506565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461390690615435565b90600052602060002090601f016020900481019282613928576000855561396f565b82601f1061394157805160ff191683800117855561396f565b8280016001018555821561396f579182015b8281111561396e578251825591602001919060010190613953565b5b50905061397c9190613a06565b5090565b82805461398c90615435565b90600052602060002090601f0160209004810192826139ae57600085556139f5565b82601f106139c757803560ff19168380011785556139f5565b828001600101855582156139f5579182015b828111156139f45782358255916020019190600101906139d9565b5b509050613a029190613a06565b5090565b5b80821115613a1f576000816000905550600101613a07565b5090565b6000613a36613a3184615190565b61516b565b905082815260208101848484011115613a4e57600080fd5b613a598482856153f3565b509392505050565b6000613a74613a6f846151c1565b61516b565b905082815260208101848484011115613a8c57600080fd5b613a978482856153f3565b509392505050565b600081359050613aae81615dfd565b92915050565b600081519050613ac381615e14565b92915050565b600081359050613ad881615e2b565b92915050565b600081359050613aed81615e42565b92915050565b600081519050613b0281615e42565b92915050565b60008083601f840112613b1a57600080fd5b8235905067ffffffffffffffff811115613b3357600080fd5b602083019150836001820283011115613b4b57600080fd5b9250929050565b600082601f830112613b6357600080fd5b8135613b73848260208601613a23565b91505092915050565b600082601f830112613b8d57600080fd5b8135613b9d848260208601613a61565b91505092915050565b600081359050613bb581615e59565b92915050565b600081359050613bca81615e70565b92915050565b600081519050613bdf81615e70565b92915050565b600081359050613bf481615e87565b92915050565b600081359050613c0981615e9e565b92915050565b600060208284031215613c2157600080fd5b6000613c2f84828501613a9f565b91505092915050565b60008060408385031215613c4b57600080fd5b6000613c5985828601613ab4565b9250506020613c6a85828601613bd0565b9150509250929050565b60008060408385031215613c8757600080fd5b6000613c9585828601613a9f565b9250506020613ca685828601613a9f565b9150509250929050565b600080600060608486031215613cc557600080fd5b6000613cd386828701613a9f565b9350506020613ce486828701613a9f565b9250506040613cf586828701613bbb565b9150509250925092565b60008060008060808587031215613d1557600080fd5b6000613d2387828801613a9f565b9450506020613d3487828801613a9f565b9350506040613d4587828801613bbb565b925050606085013567ffffffffffffffff811115613d6257600080fd5b613d6e87828801613b52565b91505092959194509250565b60008060408385031215613d8d57600080fd5b6000613d9b85828601613a9f565b9250506020613dac85828601613ac9565b9150509250929050565b60008060408385031215613dc957600080fd5b6000613dd785828601613a9f565b9250506020613de885828601613bbb565b9150509250929050565b600060208284031215613e0457600080fd5b6000613e1284828501613ade565b91505092915050565b600060208284031215613e2d57600080fd5b6000613e3b84828501613af3565b91505092915050565b600060208284031215613e5657600080fd5b600082013567ffffffffffffffff811115613e7057600080fd5b613e7c84828501613b7c565b91505092915050565b600060208284031215613e9757600080fd5b6000613ea584828501613ba6565b91505092915050565b600080600060408486031215613ec357600080fd5b6000613ed186828701613ba6565b935050602084013567ffffffffffffffff811115613eee57600080fd5b613efa86828701613b08565b92509250509250925092565b600080600060608486031215613f1b57600080fd5b6000613f2986828701613ba6565b935050602084013567ffffffffffffffff811115613f4657600080fd5b613f5286828701613b52565b9250506040613f6386828701613bbb565b9150509250925092565b600080600080600060808688031215613f8557600080fd5b6000613f9388828901613ba6565b955050602086013567ffffffffffffffff811115613fb057600080fd5b613fbc88828901613b52565b9450506040613fcd88828901613be5565b935050606086013567ffffffffffffffff811115613fea57600080fd5b613ff688828901613b08565b92509250509295509295909350565b6000806000806080858703121561401b57600080fd5b600061402987828801613ba6565b945050602085013567ffffffffffffffff81111561404657600080fd5b61405287828801613b52565b935050604061406387828801613be5565b925050606085013567ffffffffffffffff81111561408057600080fd5b61408c87828801613b52565b91505092959194509250565b6000806000806000608086880312156140b057600080fd5b60006140be88828901613ba6565b95505060206140cf88828901613ba6565b94505060406140e088828901613bbb565b935050606086013567ffffffffffffffff8111156140fd57600080fd5b61410988828901613b08565b92509250509295509295909350565b6000806040838503121561412b57600080fd5b600061413985828601613ba6565b925050602061414a85828601613bbb565b9150509250929050565b60006020828403121561416657600080fd5b600061417484828501613bbb565b91505092915050565b6000806040838503121561419057600080fd5b600061419e85828601613bd0565b92505060206141af85828601613bd0565b9150509250929050565b6000602082840312156141cb57600080fd5b60006141d984828501613bfa565b91505092915050565b600080604083850312156141f557600080fd5b600061420385828601613bfa565b925050602061421485828601613a9f565b9150509250929050565b61422781615322565b82525050565b61423681615310565b82525050565b61424581615334565b82525050565b61425481615340565b82525050565b6000614266838561521d565b93506142738385846153f3565b61427c836155ea565b840190509392505050565b6000614293838561522e565b93506142a08385846153f3565b82840190509392505050565b60006142b782615207565b6142c1818561521d565b93506142d1818560208601615402565b6142da816155ea565b840191505092915050565b60006142f082615207565b6142fa818561522e565b935061430a818560208601615402565b80840191505092915050565b6000815461432381615435565b61432d818661521d565b94506001821660008114614348576001811461435a5761438d565b60ff198316865260208601935061438d565b614363856151f2565b60005b8381101561438557815481890152600182019150602081019050614366565b808801955050505b50505092915050565b600081546143a381615435565b6143ad818661522e565b945060018216600081146143c857600181146143d95761440c565b60ff1983168652818601935061440c565b6143e2856151f2565b60005b83811015614404578154818901526001820191506020810190506143e5565b838801955050505b50505092915050565b61441e816153cf565b82525050565b600061442f82615212565b6144398185615239565b9350614449818560208601615402565b614452816155ea565b840191505092915050565b600061446882615212565b614472818561524a565b9350614482818560208601615402565b80840191505092915050565b600061449b603283615239565b91506144a682615608565b604082019050919050565b60006144be602683615239565b91506144c982615657565b604082019050919050565b60006144e1601783615239565b91506144ec826156a6565b602082019050919050565b6000614504602583615239565b915061450f826156cf565b604082019050919050565b6000614527601c83615239565b91506145328261571e565b602082019050919050565b600061454a601883615239565b915061455582615747565b602082019050919050565b600061456d602483615239565b915061457882615770565b604082019050919050565b6000614590601983615239565b915061459b826157bf565b602082019050919050565b60006145b3601a83615239565b91506145be826157e8565b602082019050919050565b60006145d6603a83615239565b91506145e182615811565b604082019050919050565b60006145f9601383615239565b915061460482615860565b602082019050919050565b600061461c601d83615239565b915061462782615889565b602082019050919050565b600061463f602c83615239565b915061464a826158b2565b604082019050919050565b6000614662602d83615239565b915061466d82615901565b604082019050919050565b6000614685603883615239565b915061469082615950565b604082019050919050565b60006146a8602a83615239565b91506146b38261599f565b604082019050919050565b60006146cb602983615239565b91506146d6826159ee565b604082019050919050565b60006146ee602783615239565b91506146f982615a3d565b604082019050919050565b6000614711602b83615239565b915061471c82615a8c565b604082019050919050565b6000614734602083615239565b915061473f82615adb565b602082019050919050565b6000614757602c83615239565b915061476282615b04565b604082019050919050565b600061477a60058361524a565b915061478582615b53565b600582019050919050565b600061479d602083615239565b91506147a882615b7c565b602082019050919050565b60006147c0603483615239565b91506147cb82615ba5565b604082019050919050565b60006147e3601a83615239565b91506147ee82615bf4565b602082019050919050565b6000614806602183615239565b915061481182615c1d565b604082019050919050565b6000614829601483615239565b915061483482615c6c565b602082019050919050565b600061484c60008361522e565b915061485782615c95565b600082019050919050565b600061486f603183615239565b915061487a82615c98565b604082019050919050565b6000614892602a83615239565b915061489d82615ce7565b604082019050919050565b60006148b5604083615239565b91506148c082615d36565b604082019050919050565b60006148d8602683615239565b91506148e382615d85565b604082019050919050565b60006148fb601483615239565b915061490682615dd4565b602082019050919050565b61491a81615376565b82525050565b61493161492c82615376565b6154e1565b82525050565b614940816153a4565b82525050565b614957614952826153a4565b6154f3565b82525050565b614966816153ae565b82525050565b6000614979828486614287565b91508190509392505050565b600061499182846142e5565b915081905092915050565b60006149a88284614396565b915081905092915050565b60006149bf828561445d565b91506149cb828461445d565b91506149d68261476d565b91508190509392505050565b60006149ed8261483f565b9150819050919050565b6000614a038285614920565b600282019150614a138284614946565b6020820191508190509392505050565b6000602082019050614a38600083018461422d565b92915050565b6000608082019050614a53600083018761422d565b614a60602083018661422d565b614a6d6040830185614937565b8181036060830152614a7f81846142ac565b905095945050505050565b6000604082019050614a9f600083018561422d565b614aac6020830184614937565b9392505050565b6000602082019050614ac8600083018461423c565b92915050565b60006020820190508181036000830152614ae881846142ac565b905092915050565b6000602082019050614b056000830184614415565b92915050565b60006020820190508181036000830152614b258184614424565b905092915050565b60006020820190508181036000830152614b468161448e565b9050919050565b60006020820190508181036000830152614b66816144b1565b9050919050565b60006020820190508181036000830152614b86816144d4565b9050919050565b60006020820190508181036000830152614ba6816144f7565b9050919050565b60006020820190508181036000830152614bc68161451a565b9050919050565b60006020820190508181036000830152614be68161453d565b9050919050565b60006020820190508181036000830152614c0681614560565b9050919050565b60006020820190508181036000830152614c2681614583565b9050919050565b60006020820190508181036000830152614c46816145a6565b9050919050565b60006020820190508181036000830152614c66816145c9565b9050919050565b60006020820190508181036000830152614c86816145ec565b9050919050565b60006020820190508181036000830152614ca68161460f565b9050919050565b60006020820190508181036000830152614cc681614632565b9050919050565b60006020820190508181036000830152614ce681614655565b9050919050565b60006020820190508181036000830152614d0681614678565b9050919050565b60006020820190508181036000830152614d268161469b565b9050919050565b60006020820190508181036000830152614d46816146be565b9050919050565b60006020820190508181036000830152614d66816146e1565b9050919050565b60006020820190508181036000830152614d8681614704565b9050919050565b60006020820190508181036000830152614da681614727565b9050919050565b60006020820190508181036000830152614dc68161474a565b9050919050565b60006020820190508181036000830152614de681614790565b9050919050565b60006020820190508181036000830152614e06816147b3565b9050919050565b60006020820190508181036000830152614e26816147d6565b9050919050565b60006020820190508181036000830152614e46816147f9565b9050919050565b60006020820190508181036000830152614e668161481c565b9050919050565b60006020820190508181036000830152614e8681614862565b9050919050565b60006020820190508181036000830152614ea681614885565b9050919050565b60006020820190508181036000830152614ec6816148a8565b9050919050565b60006020820190508181036000830152614ee6816148cb565b9050919050565b60006020820190508181036000830152614f06816148ee565b9050919050565b6000602082019050614f226000830184614911565b92915050565b600060a082019050614f3d6000830188614911565b614f4a602083018761422d565b8181036040830152614f5c81866142ac565b9050614f6b606083018561423c565b8181036080830152614f7d81846142ac565b90509695505050505050565b6000604082019050614f9e6000830186614911565b8181036020830152614fb181848661425a565b9050949350505050565b6000608082019050614fd06000830188614911565b8181036020830152614fe281876142ac565b9050614ff1604083018661495d565b818103606083015261500481848661425a565b90509695505050505050565b60006080820190506150256000830187614911565b818103602083015261503781866142ac565b9050615046604083018561495d565b818103606083015261505881846142ac565b905095945050505050565b600060c0820190506150786000830189614911565b818103602083015261508a8188614316565b9050818103604083015261509e81876142ac565b90506150ad606083018661421e565b6150ba608083018561422d565b81810360a08301526150cc81846142ac565b9050979650505050505050565b60006080820190506150ee6000830188614911565b6150fb6020830187614911565b6151086040830186614937565b818103606083015261511b81848661425a565b90509695505050505050565b600060208201905061513c6000830184614937565b92915050565b60006040820190506151576000830185614937565b615164602083018461424b565b9392505050565b6000615175615186565b90506151818282615467565b919050565b6000604051905090565b600067ffffffffffffffff8211156151ab576151aa6155bb565b5b6151b4826155ea565b9050602081019050919050565b600067ffffffffffffffff8211156151dc576151db6155bb565b5b6151e5826155ea565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615260826153a4565b915061526b836153a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152a05761529f61552e565b5b828201905092915050565b60006152b6826153a4565b91506152c1836153a4565b9250826152d1576152d061555d565b5b828204905092915050565b60006152e7826153a4565b91506152f2836153a4565b9250828210156153055761530461552e565b5b828203905092915050565b600061531b82615384565b9050919050565b600061532d82615384565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b60006153da826153e1565b9050919050565b60006153ec82615384565b9050919050565b82818337600083830152505050565b60005b83811015615420578082015181840152602081019050615405565b8381111561542f576000848401525b50505050565b6000600282049050600182168061544d57607f821691505b602082108114156154615761546061558c565b5b50919050565b615470826155ea565b810181811067ffffffffffffffff8211171561548f5761548e6155bb565b5b80604052505050565b60006154a3826153a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154d6576154d561552e565b5b600182019050919050565b60006154ec826155fb565b9050919050565b6000819050919050565b6000615508826153a4565b9150615513836153a4565b9250826155235761552261555d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f54686973204e465420646f65736e27742065786973742e000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6c696d6974207065722077616c6c657420726561636865640000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682067617320746f20636f7665722063726f737320636860008201527f61696e207472616e736665722e00000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d6573736167652073656e646572206d757374206f776e20746865204f6d6e6960008201527f506c617965722e00000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4d61782031204e46547320706572207472616e73616374696f6e000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f557365722077616c6c6574207265717569726564000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5468697320636861696e206973206e6f742061207472757374656420736f757260008201527f636520736f757263652e00000000000000000000000000000000000000000000602082015250565b7f546865207472757374656420736f75726365206164647265737320686173206160008201527f6c7265616479206265656e2073657420666f722074686520636861696e496421602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742073746172746564000000000000000000000000600082015250565b615e0681615310565b8114615e1157600080fd5b50565b615e1d81615322565b8114615e2857600080fd5b50565b615e3481615334565b8114615e3f57600080fd5b50565b615e4b8161534a565b8114615e5657600080fd5b50565b615e6281615376565b8114615e6d57600080fd5b50565b615e79816153a4565b8114615e8457600080fd5b50565b615e90816153ae565b8114615e9b57600080fd5b50565b615ea7816153c2565b8114615eb257600080fd5b5056fea26469706673582212200aacc4ce5322c4a454b01662da939f4c195b4ea35452b2ffbf95ce3170f2566664736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000002c700000000000000000000000000000000000000000000000000000000000003f30000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5364534b713277545562705469594478746936785377377a45535853476545446a66383459416131453448682f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a384174444a746a74476668474570695147454c42544e7254344b31704d51534136767764594345594145580000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmSdSKq2wTUbpTiYDxti6xSw7zESXSGeEDjf84YAa1E4Hh/
Arg [1] : _notRevealedURI (string): ipfs://QmZ8AtDJtjtGfhGEpiQGELBTNrT4K1pMQSA6vwdYCEYAEX
Arg [2] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [3] : _startToken (uint256): 711
Arg [4] : _maxMint (uint256): 1011

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [3] : 00000000000000000000000000000000000000000000000000000000000002c7
Arg [4] : 00000000000000000000000000000000000000000000000000000000000003f3
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d5364534b71327754556270546959447874693678537737
Arg [7] : 7a45535853476545446a66383459416131453448682f00000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [9] : 697066733a2f2f516d5a384174444a746a74476668474570695147454c42544e
Arg [10] : 7254344b31704d51534136767764594345594145580000000000000000000000


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.