ETH Price: $3,442.33 (-0.21%)
Gas: 6 Gwei

Token

Lulupunk (LLPK)
 

Overview

Max Total Supply

219 LLPK

Holders

96

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
superboyiii.eth
Balance
7 LLPK
0x6f464d2de89cf7d6c6a5a814ebe6a31712a5ef01
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:
lulupunk

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 20 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-19
*/

// SPDX-License-Identifier: MIT


// File: contracts/common/meta-transactions/Initializable.sol



pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

// File: contracts/common/meta-transactions/EIP712Base.sol



pragma solidity ^0.8.0;


contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

// File: contracts/common/meta-transactions/NativeMetaTransaction.sol



pragma solidity ^0.8.0;



contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

// File: contracts/common/meta-transactions/ContentMixin.sol



pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

// File: openzeppelin-solidity/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File: openzeppelin-solidity/contracts/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: openzeppelin-solidity/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: openzeppelin-solidity/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}




// File: openzeppelin-solidity/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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






// File: openzeppelin-solidity/contracts/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: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: openzeppelin-solidity/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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





// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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





// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: openzeppelin-solidity/contracts/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: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;


/**
 * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 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(to).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 {}
}


// File: openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: contracts/ERC721Tradable.sol



pragma solidity ^0.8.0;








contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
//abstract contract ERC721Tradable is  ERC721Enumerable,  Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;
    uint256 private _currentTokenId = 0;
    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
       _initializeEIP712(_name);
    }  
    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }

    
    function Burn(uint256 _TokenId) public onlyOwner { 
        _burn(_TokenId); 
    }


    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() private {
        _currentTokenId++;
    }

    function baseTokenURI() virtual public view returns (string memory);

    // function tokenURI(uint256 _tokenId) override public pure returns (string memory) {
    //     return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    // }
  function tokenURI(uint256 _tokenId) override public view returns (string memory) {  
       // return string(abi.encodePacked(JsonPath,""));
    //    return string(abi.encodePacked(baseTokenURI(), ""));
       return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }
 
    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

// File: contracts/lulupunk.sol



pragma solidity ^0.8.0;

 
contract lulupunk is ERC721Tradable {
    constructor(address _proxyRegistryAddress)
        ERC721Tradable("Lulupunk", "LLPK", _proxyRegistryAddress)
    {}

    string  public JsonPath="http://www.lulupunk.com/api/TokenService.asmx/GetTokenJson?id=";
 
    function baseTokenURI() override public view  returns (string memory) {
        return JsonPath;
    }
 
    function SetIpfsJsonPath(string memory _jaonPath)  public 
    {
        JsonPath=_jaonPath;
    } 
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"uint256","name":"_TokenId","type":"uint256"}],"name":"Burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JsonPath","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_jaonPath","type":"string"}],"name":"SetIpfsJsonPath","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"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":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805460ff191690556000600f5560e0604052603e608081815290620028de60a03980516200003891601091602090910190620002f8565b503480156200004657600080fd5b506040516200291c3803806200291c83398101604081905262000069916200039e565b604051806040016040528060088152602001674c756c7570756e6b60c01b815250604051806040016040528060048152602001634c4c504b60e01b8152508282828160009080519060200190620000c2929190620002f8565b508051620000d8906001906020840190620002f8565b505050620000f5620000ef6200012560201b60201c565b62000141565b600e80546001600160a01b0319166001600160a01b0383161790556200011b8362000193565b505050506200040d565b60006200013c620001f760201b620010701760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001dc5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001e78162000256565b50600a805460ff19166001179055565b6000333014156200025057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002539050565b50335b90565b6040518060800160405280604f81526020016200288f604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b8280546200030690620003d0565b90600052602060002090601f0160209004810192826200032a576000855562000375565b82601f106200034557805160ff191683800117855562000375565b8280016001018555821562000375579182015b828111156200037557825182559160200191906001019062000358565b506200038392915062000387565b5090565b5b8082111562000383576000815560010162000388565b600060208284031215620003b157600080fd5b81516001600160a01b0381168114620003c957600080fd5b9392505050565b600181811c90821680620003e557607f821691505b602082108114156200040757634e487b7160e01b600052602260045260246000fd5b50919050565b612472806200041d6000396000f3fe6080604052600436106101525760003560e01c806301ffc9a71461015757806306fdde031461018c578063081812fc146101ae578063095ea7b3146101db5780630c53c51c146101fd5780630f7e59701461021057806318160ddd1461023d57806320379ee51461025c57806323b872dd146102715780632d0335ab146102915780632f745c59146102c75780633408e470146102e757806342842e0e146102fa5780634f6ccce71461031a5780636352211e1461033a57806370a082311461035a578063715018a61461037a578063755edd171461038f5780638da5cb5b146103af57806395d89b41146103c4578063a22cb465146103d9578063b88d4fde146103f9578063b90306ad14610419578063bc92ce8d14610439578063c87b56dd1461044e578063d547cfb71461046e578063e985e9c514610483578063f2fde38b146104a3578063fc893faf146104c3575b600080fd5b34801561016357600080fd5b50610177610172366004611f95565b6104e3565b60405190151581526020015b60405180910390f35b34801561019857600080fd5b506101a161050e565b604051610183919061217c565b3480156101ba57600080fd5b506101ce6101c9366004612034565b6105a0565b60405161018391906120f6565b3480156101e757600080fd5b506101fb6101f6366004611f69565b61062d565b005b6101a161020b366004611eec565b610750565b34801561021c57600080fd5b506101a1604051806040016040528060018152602001603160f81b81525081565b34801561024957600080fd5b506008545b604051908152602001610183565b34801561026857600080fd5b50600b5461024e565b34801561027d57600080fd5b506101fb61028c366004611e0d565b610939565b34801561029d57600080fd5b5061024e6102ac366004611db7565b6001600160a01b03166000908152600c602052604090205490565b3480156102d357600080fd5b5061024e6102e2366004611f69565b610971565b3480156102f357600080fd5b504661024e565b34801561030657600080fd5b506101fb610315366004611e0d565b610a07565b34801561032657600080fd5b5061024e610335366004612034565b610a22565b34801561034657600080fd5b506101ce610355366004612034565b610ab5565b34801561036657600080fd5b5061024e610375366004611db7565b610b2c565b34801561038657600080fd5b506101fb610bb3565b34801561039b57600080fd5b506101fb6103aa366004611db7565b610bfe565b3480156103bb57600080fd5b506101ce610c5f565b3480156103d057600080fd5b506101a1610c6e565b3480156103e557600080fd5b506101fb6103f4366004611eb9565b610c7d565b34801561040557600080fd5b506101fb610414366004611e4e565b610d7b565b34801561042557600080fd5b506101fb610434366004612034565b610dba565b34801561044557600080fd5b506101a1610e05565b34801561045a57600080fd5b506101a1610469366004612034565b610e93565b34801561047a57600080fd5b506101a1610ecd565b34801561048f57600080fd5b5061017761049e366004611dd4565b610edc565b3480156104af57600080fd5b506101fb6104be366004611db7565b610fb0565b3480156104cf57600080fd5b506101fb6104de366004611fec565b61105d565b60006001600160e01b0319821663780e9d6360e01b14806105085750610508826110cd565b92915050565b60606000805461051d906122d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610549906122d6565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ab8261111d565b6106115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061063882610ab5565b9050806001600160a01b0316836001600160a01b031614156106a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610608565b806001600160a01b03166106b861113a565b6001600160a01b031614806106d457506106d48161049e61113a565b6107415760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610608565b61074b8383611149565b505050565b60408051606081810183526001600160a01b0388166000818152600c60209081529085902054845283015291810186905261078e87828787876111b7565b6107e45760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610608565b6001600160a01b0387166000908152600c60205260409020546108089060016112a7565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061085890899033908a9061210a565b60405180910390a1600080306001600160a01b0316888a604051602001610880929190612095565b60408051601f198184030181529082905261089a91612079565b6000604051808303816000865af19150503d80600081146108d7576040519150601f19603f3d011682016040523d82523d6000602084013e6108dc565b606091505b50915091508161092d5760405162461bcd60e51b815260206004820152601c60248201527b119d5b98dd1a5bdb8818d85b1b081b9bdd081cdd58d8d95cdcd99d5b60221b6044820152606401610608565b98975050505050505050565b61094a61094461113a565b826112ba565b6109665760405162461bcd60e51b815260040161060890612216565b61074b83838361137c565b600061097c83610b2c565b82106109de5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610608565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61074b83838360405180602001604052806000815250610d7b565b6000610a2d60085490565b8210610a905760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610608565b60088281548110610aa357610aa3612382565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610608565b60006001600160a01b038216610b975760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610608565b506001600160a01b031660009081526003602052604090205490565b610bbb61113a565b6001600160a01b0316610bcc610c5f565b6001600160a01b031614610bf25760405162461bcd60e51b8152600401610608906121e1565b610bfc6000611515565b565b610c0661113a565b6001600160a01b0316610c17610c5f565b6001600160a01b031614610c3d5760405162461bcd60e51b8152600401610608906121e1565b6000610c47611567565b9050610c538282611578565b610c5b6116a4565b5050565b600d546001600160a01b031690565b60606001805461051d906122d6565b610c8561113a565b6001600160a01b0316826001600160a01b03161415610ce25760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610608565b8060056000610cef61113a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d3361113a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d6f911515815260200190565b60405180910390a35050565b610d8c610d8661113a565b836112ba565b610da85760405162461bcd60e51b815260040161060890612216565b610db4848484846116bb565b50505050565b610dc261113a565b6001600160a01b0316610dd3610c5f565b6001600160a01b031614610df95760405162461bcd60e51b8152600401610608906121e1565b610e02816116ee565b50565b60108054610e12906122d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e906122d6565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b6060610e9d610ecd565b610ea683611783565b604051602001610eb79291906120c7565b6040516020818303038152906040529050919050565b60606010805461051d906122d6565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610f159088906004016120f6565b60206040518083038186803b158015610f2d57600080fd5b505afa158015610f41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f659190611fcf565b6001600160a01b03161415610f7e576001915050610508565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b610fb861113a565b6001600160a01b0316610fc9610c5f565b6001600160a01b031614610fef5760405162461bcd60e51b8152600401610608906121e1565b6001600160a01b0381166110545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610608565b610e0281611515565b8051610c5b906010906020840190611c89565b6000333014156110c757600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506110ca9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806110fe57506001600160e01b03198216635b5e139f60e01b145b8061050857506301ffc9a760e01b6001600160e01b0319831614610508565b6000908152600260205260409020546001600160a01b0316151590565b6000611144611070565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117e82610ab5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661121d5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610608565b600161123061122b87611880565b6118fd565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561127e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006112b38284612267565b9392505050565b60006112c58261111d565b6113265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610608565b600061133183610ab5565b9050806001600160a01b0316846001600160a01b0316148061136c5750836001600160a01b0316611361846105a0565b6001600160a01b0316145b80610fa85750610fa88185610edc565b826001600160a01b031661138f82610ab5565b6001600160a01b0316146113f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610608565b6001600160a01b0382166114595760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610608565b61146483838361192d565b61146f600082611149565b6001600160a01b0383166000908152600360205260408120805460019290611498908490612293565b90915550506001600160a01b03821660009081526003602052604081208054600192906114c6908490612267565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03868116918217909255915184939187169160008051602061241d83398151915291a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f546000906111449060016112a7565b6001600160a01b0382166115ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610608565b6115d78161111d565b156116235760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610608565b61162f6000838361192d565b6001600160a01b0382166000908152600360205260408120805460019290611658908490612267565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038616908117909155905183929060008051602061241d833981519152908290a45050565b600f80549060006116b483612311565b9190505550565b6116c684848461137c565b6116d2848484846119e5565b610db45760405162461bcd60e51b81526004016106089061218f565b60006116f982610ab5565b90506117078160008461192d565b611712600083611149565b6001600160a01b038116600090815260036020526040812080546001929061173b908490612293565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b0384169060008051602061241d833981519152908390a45050565b6060816117a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d157806117bb81612311565b91506117ca9050600a8361227f565b91506117ab565b6000816001600160401b038111156117eb576117eb612398565b6040519080825280601f01601f191660200182016040528015611815576020820181803683370190505b5090505b8415610fa85761182a600183612293565b9150611837600a8661232c565b611842906030612267565b60f81b81838151811061185757611857612382565b60200101906001600160f81b031916908160001a905350611879600a8661227f565b9450611819565b60006040518060800160405280604381526020016123da60439139805160209182012083518483015160408087015180519086012090516118e0950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611908600b5490565b60405161190160f01b60208201526022810191909152604281018390526062016118e0565b6001600160a01b0383166119885761198381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119ab565b816001600160a01b0316836001600160a01b0316146119ab576119ab8382611af9565b6001600160a01b0382166119c25761074b81611b96565b826001600160a01b0316826001600160a01b03161461074b5761074b8282611c45565b60006001600160a01b0384163b15611aee57836001600160a01b031663150b7a02611a0e61113a565b8786866040518563ffffffff1660e01b8152600401611a30949392919061213f565b602060405180830381600087803b158015611a4a57600080fd5b505af1925050508015611a7a575060408051601f3d908101601f19168201909252611a7791810190611fb2565b60015b611ad4573d808015611aa8576040519150601f19603f3d011682016040523d82523d6000602084013e611aad565b606091505b508051611acc5760405162461bcd60e51b81526004016106089061218f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fa8565b506001949350505050565b60006001611b0684610b2c565b611b109190612293565b600083815260076020526040902054909150808214611b63576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ba890600190612293565b60008381526009602052604081205460088054939450909284908110611bd057611bd0612382565b906000526020600020015490508060088381548110611bf157611bf1612382565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c2957611c2961236c565b6001900381819060005260206000200160009055905550505050565b6000611c5083610b2c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611c95906122d6565b90600052602060002090601f016020900481019282611cb75760008555611cfd565b82601f10611cd057805160ff1916838001178555611cfd565b82800160010185558215611cfd579182015b82811115611cfd578251825591602001919060010190611ce2565b50611d09929150611d0d565b5090565b5b80821115611d095760008155600101611d0e565b60006001600160401b0380841115611d3c57611d3c612398565b604051601f8501601f19908116603f01168101908282118183101715611d6457611d64612398565b81604052809350858152868686011115611d7d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611da857600080fd5b6112b383833560208501611d22565b600060208284031215611dc957600080fd5b81356112b3816123ae565b60008060408385031215611de757600080fd5b8235611df2816123ae565b91506020830135611e02816123ae565b809150509250929050565b600080600060608486031215611e2257600080fd5b8335611e2d816123ae565b92506020840135611e3d816123ae565b929592945050506040919091013590565b60008060008060808587031215611e6457600080fd5b8435611e6f816123ae565b93506020850135611e7f816123ae565b92506040850135915060608501356001600160401b03811115611ea157600080fd5b611ead87828801611d97565b91505092959194509250565b60008060408385031215611ecc57600080fd5b8235611ed7816123ae565b915060208301358015158114611e0257600080fd5b600080600080600060a08688031215611f0457600080fd5b8535611f0f816123ae565b945060208601356001600160401b03811115611f2a57600080fd5b611f3688828901611d97565b9450506040860135925060608601359150608086013560ff81168114611f5b57600080fd5b809150509295509295909350565b60008060408385031215611f7c57600080fd5b8235611f87816123ae565b946020939093013593505050565b600060208284031215611fa757600080fd5b81356112b3816123c3565b600060208284031215611fc457600080fd5b81516112b3816123c3565b600060208284031215611fe157600080fd5b81516112b3816123ae565b600060208284031215611ffe57600080fd5b81356001600160401b0381111561201457600080fd5b8201601f8101841361202557600080fd5b610fa884823560208401611d22565b60006020828403121561204657600080fd5b5035919050565b600081518084526120658160208601602086016122aa565b601f01601f19169290920160200192915050565b6000825161208b8184602087016122aa565b9190910192915050565b600083516120a78184602088016122aa565b60609390931b6001600160601b0319169190920190815260140192915050565b600083516120d98184602088016122aa565b8351908301906120ed8183602088016122aa565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038481168252831660208201526060604082018190526000906121369083018461204d565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121729083018461204d565b9695505050505050565b6020815260006112b3602083018461204d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561227a5761227a612340565b500190565b60008261228e5761228e612356565b500490565b6000828210156122a5576122a5612340565b500390565b60005b838110156122c55781810151838201526020016122ad565b83811115610db45750506000910152565b600181811c908216806122ea57607f821691505b6020821081141561230b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232557612325612340565b5060010190565b60008261233b5761233b612356565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e0257600080fd5b6001600160e01b031981168114610e0257600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a2af755ca665badd7df4b1a1f672bb73343626f8c764c3b83967066797164ba964736f6c63430008060033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429687474703a2f2f7777772e6c756c7570756e6b2e636f6d2f6170692f546f6b656e536572766963652e61736d782f476574546f6b656e4a736f6e3f69643d000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106101525760003560e01c806301ffc9a71461015757806306fdde031461018c578063081812fc146101ae578063095ea7b3146101db5780630c53c51c146101fd5780630f7e59701461021057806318160ddd1461023d57806320379ee51461025c57806323b872dd146102715780632d0335ab146102915780632f745c59146102c75780633408e470146102e757806342842e0e146102fa5780634f6ccce71461031a5780636352211e1461033a57806370a082311461035a578063715018a61461037a578063755edd171461038f5780638da5cb5b146103af57806395d89b41146103c4578063a22cb465146103d9578063b88d4fde146103f9578063b90306ad14610419578063bc92ce8d14610439578063c87b56dd1461044e578063d547cfb71461046e578063e985e9c514610483578063f2fde38b146104a3578063fc893faf146104c3575b600080fd5b34801561016357600080fd5b50610177610172366004611f95565b6104e3565b60405190151581526020015b60405180910390f35b34801561019857600080fd5b506101a161050e565b604051610183919061217c565b3480156101ba57600080fd5b506101ce6101c9366004612034565b6105a0565b60405161018391906120f6565b3480156101e757600080fd5b506101fb6101f6366004611f69565b61062d565b005b6101a161020b366004611eec565b610750565b34801561021c57600080fd5b506101a1604051806040016040528060018152602001603160f81b81525081565b34801561024957600080fd5b506008545b604051908152602001610183565b34801561026857600080fd5b50600b5461024e565b34801561027d57600080fd5b506101fb61028c366004611e0d565b610939565b34801561029d57600080fd5b5061024e6102ac366004611db7565b6001600160a01b03166000908152600c602052604090205490565b3480156102d357600080fd5b5061024e6102e2366004611f69565b610971565b3480156102f357600080fd5b504661024e565b34801561030657600080fd5b506101fb610315366004611e0d565b610a07565b34801561032657600080fd5b5061024e610335366004612034565b610a22565b34801561034657600080fd5b506101ce610355366004612034565b610ab5565b34801561036657600080fd5b5061024e610375366004611db7565b610b2c565b34801561038657600080fd5b506101fb610bb3565b34801561039b57600080fd5b506101fb6103aa366004611db7565b610bfe565b3480156103bb57600080fd5b506101ce610c5f565b3480156103d057600080fd5b506101a1610c6e565b3480156103e557600080fd5b506101fb6103f4366004611eb9565b610c7d565b34801561040557600080fd5b506101fb610414366004611e4e565b610d7b565b34801561042557600080fd5b506101fb610434366004612034565b610dba565b34801561044557600080fd5b506101a1610e05565b34801561045a57600080fd5b506101a1610469366004612034565b610e93565b34801561047a57600080fd5b506101a1610ecd565b34801561048f57600080fd5b5061017761049e366004611dd4565b610edc565b3480156104af57600080fd5b506101fb6104be366004611db7565b610fb0565b3480156104cf57600080fd5b506101fb6104de366004611fec565b61105d565b60006001600160e01b0319821663780e9d6360e01b14806105085750610508826110cd565b92915050565b60606000805461051d906122d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610549906122d6565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ab8261111d565b6106115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061063882610ab5565b9050806001600160a01b0316836001600160a01b031614156106a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610608565b806001600160a01b03166106b861113a565b6001600160a01b031614806106d457506106d48161049e61113a565b6107415760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610608565b61074b8383611149565b505050565b60408051606081810183526001600160a01b0388166000818152600c60209081529085902054845283015291810186905261078e87828787876111b7565b6107e45760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610608565b6001600160a01b0387166000908152600c60205260409020546108089060016112a7565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061085890899033908a9061210a565b60405180910390a1600080306001600160a01b0316888a604051602001610880929190612095565b60408051601f198184030181529082905261089a91612079565b6000604051808303816000865af19150503d80600081146108d7576040519150601f19603f3d011682016040523d82523d6000602084013e6108dc565b606091505b50915091508161092d5760405162461bcd60e51b815260206004820152601c60248201527b119d5b98dd1a5bdb8818d85b1b081b9bdd081cdd58d8d95cdcd99d5b60221b6044820152606401610608565b98975050505050505050565b61094a61094461113a565b826112ba565b6109665760405162461bcd60e51b815260040161060890612216565b61074b83838361137c565b600061097c83610b2c565b82106109de5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610608565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61074b83838360405180602001604052806000815250610d7b565b6000610a2d60085490565b8210610a905760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610608565b60088281548110610aa357610aa3612382565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610608565b60006001600160a01b038216610b975760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610608565b506001600160a01b031660009081526003602052604090205490565b610bbb61113a565b6001600160a01b0316610bcc610c5f565b6001600160a01b031614610bf25760405162461bcd60e51b8152600401610608906121e1565b610bfc6000611515565b565b610c0661113a565b6001600160a01b0316610c17610c5f565b6001600160a01b031614610c3d5760405162461bcd60e51b8152600401610608906121e1565b6000610c47611567565b9050610c538282611578565b610c5b6116a4565b5050565b600d546001600160a01b031690565b60606001805461051d906122d6565b610c8561113a565b6001600160a01b0316826001600160a01b03161415610ce25760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610608565b8060056000610cef61113a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d3361113a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d6f911515815260200190565b60405180910390a35050565b610d8c610d8661113a565b836112ba565b610da85760405162461bcd60e51b815260040161060890612216565b610db4848484846116bb565b50505050565b610dc261113a565b6001600160a01b0316610dd3610c5f565b6001600160a01b031614610df95760405162461bcd60e51b8152600401610608906121e1565b610e02816116ee565b50565b60108054610e12906122d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e906122d6565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b6060610e9d610ecd565b610ea683611783565b604051602001610eb79291906120c7565b6040516020818303038152906040529050919050565b60606010805461051d906122d6565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610f159088906004016120f6565b60206040518083038186803b158015610f2d57600080fd5b505afa158015610f41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f659190611fcf565b6001600160a01b03161415610f7e576001915050610508565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b610fb861113a565b6001600160a01b0316610fc9610c5f565b6001600160a01b031614610fef5760405162461bcd60e51b8152600401610608906121e1565b6001600160a01b0381166110545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610608565b610e0281611515565b8051610c5b906010906020840190611c89565b6000333014156110c757600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506110ca9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806110fe57506001600160e01b03198216635b5e139f60e01b145b8061050857506301ffc9a760e01b6001600160e01b0319831614610508565b6000908152600260205260409020546001600160a01b0316151590565b6000611144611070565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117e82610ab5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661121d5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610608565b600161123061122b87611880565b6118fd565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561127e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006112b38284612267565b9392505050565b60006112c58261111d565b6113265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610608565b600061133183610ab5565b9050806001600160a01b0316846001600160a01b0316148061136c5750836001600160a01b0316611361846105a0565b6001600160a01b0316145b80610fa85750610fa88185610edc565b826001600160a01b031661138f82610ab5565b6001600160a01b0316146113f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610608565b6001600160a01b0382166114595760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610608565b61146483838361192d565b61146f600082611149565b6001600160a01b0383166000908152600360205260408120805460019290611498908490612293565b90915550506001600160a01b03821660009081526003602052604081208054600192906114c6908490612267565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03868116918217909255915184939187169160008051602061241d83398151915291a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f546000906111449060016112a7565b6001600160a01b0382166115ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610608565b6115d78161111d565b156116235760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610608565b61162f6000838361192d565b6001600160a01b0382166000908152600360205260408120805460019290611658908490612267565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038616908117909155905183929060008051602061241d833981519152908290a45050565b600f80549060006116b483612311565b9190505550565b6116c684848461137c565b6116d2848484846119e5565b610db45760405162461bcd60e51b81526004016106089061218f565b60006116f982610ab5565b90506117078160008461192d565b611712600083611149565b6001600160a01b038116600090815260036020526040812080546001929061173b908490612293565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b0384169060008051602061241d833981519152908390a45050565b6060816117a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d157806117bb81612311565b91506117ca9050600a8361227f565b91506117ab565b6000816001600160401b038111156117eb576117eb612398565b6040519080825280601f01601f191660200182016040528015611815576020820181803683370190505b5090505b8415610fa85761182a600183612293565b9150611837600a8661232c565b611842906030612267565b60f81b81838151811061185757611857612382565b60200101906001600160f81b031916908160001a905350611879600a8661227f565b9450611819565b60006040518060800160405280604381526020016123da60439139805160209182012083518483015160408087015180519086012090516118e0950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611908600b5490565b60405161190160f01b60208201526022810191909152604281018390526062016118e0565b6001600160a01b0383166119885761198381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119ab565b816001600160a01b0316836001600160a01b0316146119ab576119ab8382611af9565b6001600160a01b0382166119c25761074b81611b96565b826001600160a01b0316826001600160a01b03161461074b5761074b8282611c45565b60006001600160a01b0384163b15611aee57836001600160a01b031663150b7a02611a0e61113a565b8786866040518563ffffffff1660e01b8152600401611a30949392919061213f565b602060405180830381600087803b158015611a4a57600080fd5b505af1925050508015611a7a575060408051601f3d908101601f19168201909252611a7791810190611fb2565b60015b611ad4573d808015611aa8576040519150601f19603f3d011682016040523d82523d6000602084013e611aad565b606091505b508051611acc5760405162461bcd60e51b81526004016106089061218f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fa8565b506001949350505050565b60006001611b0684610b2c565b611b109190612293565b600083815260076020526040902054909150808214611b63576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ba890600190612293565b60008381526009602052604081205460088054939450909284908110611bd057611bd0612382565b906000526020600020015490508060088381548110611bf157611bf1612382565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c2957611c2961236c565b6001900381819060005260206000200160009055905550505050565b6000611c5083610b2c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611c95906122d6565b90600052602060002090601f016020900481019282611cb75760008555611cfd565b82601f10611cd057805160ff1916838001178555611cfd565b82800160010185558215611cfd579182015b82811115611cfd578251825591602001919060010190611ce2565b50611d09929150611d0d565b5090565b5b80821115611d095760008155600101611d0e565b60006001600160401b0380841115611d3c57611d3c612398565b604051601f8501601f19908116603f01168101908282118183101715611d6457611d64612398565b81604052809350858152868686011115611d7d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611da857600080fd5b6112b383833560208501611d22565b600060208284031215611dc957600080fd5b81356112b3816123ae565b60008060408385031215611de757600080fd5b8235611df2816123ae565b91506020830135611e02816123ae565b809150509250929050565b600080600060608486031215611e2257600080fd5b8335611e2d816123ae565b92506020840135611e3d816123ae565b929592945050506040919091013590565b60008060008060808587031215611e6457600080fd5b8435611e6f816123ae565b93506020850135611e7f816123ae565b92506040850135915060608501356001600160401b03811115611ea157600080fd5b611ead87828801611d97565b91505092959194509250565b60008060408385031215611ecc57600080fd5b8235611ed7816123ae565b915060208301358015158114611e0257600080fd5b600080600080600060a08688031215611f0457600080fd5b8535611f0f816123ae565b945060208601356001600160401b03811115611f2a57600080fd5b611f3688828901611d97565b9450506040860135925060608601359150608086013560ff81168114611f5b57600080fd5b809150509295509295909350565b60008060408385031215611f7c57600080fd5b8235611f87816123ae565b946020939093013593505050565b600060208284031215611fa757600080fd5b81356112b3816123c3565b600060208284031215611fc457600080fd5b81516112b3816123c3565b600060208284031215611fe157600080fd5b81516112b3816123ae565b600060208284031215611ffe57600080fd5b81356001600160401b0381111561201457600080fd5b8201601f8101841361202557600080fd5b610fa884823560208401611d22565b60006020828403121561204657600080fd5b5035919050565b600081518084526120658160208601602086016122aa565b601f01601f19169290920160200192915050565b6000825161208b8184602087016122aa565b9190910192915050565b600083516120a78184602088016122aa565b60609390931b6001600160601b0319169190920190815260140192915050565b600083516120d98184602088016122aa565b8351908301906120ed8183602088016122aa565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038481168252831660208201526060604082018190526000906121369083018461204d565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121729083018461204d565b9695505050505050565b6020815260006112b3602083018461204d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561227a5761227a612340565b500190565b60008261228e5761228e612356565b500490565b6000828210156122a5576122a5612340565b500390565b60005b838110156122c55781810151838201526020016122ad565b83811115610db45750506000910152565b600181811c908216806122ea57607f821691505b6020821081141561230b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232557612325612340565b5060010190565b60008261233b5761233b612356565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e0257600080fd5b6001600160e01b031981168114610e0257600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a2af755ca665badd7df4b1a1f672bb73343626f8c764c3b83967066797164ba964736f6c63430008060033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

59626:484:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50249:224;;;;;;;;;;-1:-1:-1;50249:224:0;;;;;:::i;:::-;;:::i;:::-;;;8711:14:1;;8704:22;8686:41;;8674:2;8659:18;50249:224:0;;;;;;;;38127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39686:221::-;;;;;;;;;;-1:-1:-1;39686:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39209:411::-;;;;;;;;;;-1:-1:-1;39209:411:0;;;;;:::i;:::-;;:::i;:::-;;3434:1151;;;;;;:::i;:::-;;:::i;591:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;591:43:0;;;;;50889:113;;;;;;;;;;-1:-1:-1;50977:10:0;:17;50889:113;;;8884:25:1;;;8872:2;8857:18;50889:113:0;8839:76:1;1600:101:0;;;;;;;;;;-1:-1:-1;1678:15:0;;1600:101;;40576:339;;;;;;;;;;-1:-1:-1;40576:339:0;;;;;:::i;:::-;;:::i;5011:107::-;;;;;;;;;;-1:-1:-1;5011:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;5098:12:0;5064:13;5098:12;;;:6;:12;;;;;;;5011:107;50557:256;;;;;;;;;;-1:-1:-1;50557:256:0;;;;;:::i;:::-;;:::i;1709:161::-;;;;;;;;;;-1:-1:-1;1823:9:0;1709:161;;40986:185;;;;;;;;;;-1:-1:-1;40986:185:0;;;;;:::i;:::-;;:::i;51079:233::-;;;;;;;;;;-1:-1:-1;51079:233:0;;;;;:::i;:::-;;:::i;37821:239::-;;;;;;;;;;-1:-1:-1;37821:239:0;;;;;:::i;:::-;;:::i;37551:208::-;;;;;;;;;;-1:-1:-1;37551:208:0;;;;;:::i;:::-;;:::i;17957:94::-;;;;;;;;;;;;;:::i;57425:166::-;;;;;;;;;;-1:-1:-1;57425:166:0;;;;;:::i;:::-;;:::i;17306:87::-;;;;;;;;;;;;;:::i;38296:104::-;;;;;;;;;;;;;:::i;39979:295::-;;;;;;;;;;-1:-1:-1;39979:295:0;;;;;:::i;:::-;;:::i;41242:328::-;;;;;;;;;;-1:-1:-1;41242:328:0;;;;;:::i;:::-;;:::i;57605:85::-;;;;;;;;;;-1:-1:-1;57605:85:0;;;;;:::i;:::-;;:::i;59794:88::-;;;;;;;;;;;;;:::i;58370:297::-;;;;;;;;;;-1:-1:-1;58370:297:0;;;;;:::i;:::-;;:::i;59892:104::-;;;;;;;;;;;;;:::i;58800:445::-;;;;;;;;;;-1:-1:-1;58800:445:0;;;;;:::i;:::-;;:::i;18206:192::-;;;;;;;;;;-1:-1:-1;18206:192:0;;;;;:::i;:::-;;:::i;60005:101::-;;;;;;;;;;-1:-1:-1;60005:101:0;;;;;:::i;:::-;;:::i;50249:224::-;50351:4;-1:-1:-1;;;;;;50375:50:0;;-1:-1:-1;;;50375:50:0;;:90;;;50429:36;50453:11;50429:23;:36::i;:::-;50368:97;50249:224;-1:-1:-1;;50249:224:0:o;38127:100::-;38181:13;38214:5;38207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38127:100;:::o;39686:221::-;39762:7;39790:16;39798:7;39790;:16::i;:::-;39782:73;;;;-1:-1:-1;;;39782:73:0;;15530:2:1;39782:73:0;;;15512:21:1;15569:2;15549:18;;;15542:30;15608:34;15588:18;;;15581:62;-1:-1:-1;;;15659:18:1;;;15652:42;15711:19;;39782:73:0;;;;;;;;;-1:-1:-1;39875:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39875:24:0;;39686:221::o;39209:411::-;39290:13;39306:23;39321:7;39306:14;:23::i;:::-;39290:39;;39354:5;-1:-1:-1;;;;;39348:11:0;:2;-1:-1:-1;;;;;39348:11:0;;;39340:57;;;;-1:-1:-1;;;39340:57:0;;17116:2:1;39340:57:0;;;17098:21:1;17155:2;17135:18;;;17128:30;17194:34;17174:18;;;17167:62;-1:-1:-1;;;17245:18:1;;;17238:31;17286:19;;39340:57:0;17088:223:1;39340:57:0;39448:5;-1:-1:-1;;;;;39432:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;39432:21:0;;:62;;;;39457:37;39474:5;39481:12;:10;:12::i;39457:37::-;39410:168;;;;-1:-1:-1;;;39410:168:0;;13923:2:1;39410:168:0;;;13905:21:1;13962:2;13942:18;;;13935:30;14001:34;13981:18;;;13974:62;-1:-1:-1;;;14052:18:1;;;14045:54;14116:19;;39410:168:0;13895:246:1;39410:168:0;39591:21;39600:2;39604:7;39591:8;:21::i;:::-;39279:341;39209:411;;:::o;3434:1151::-;3692:152;;;3635:12;3692:152;;;;;-1:-1:-1;;;;;3730:19:0;;3660:29;3730:19;;;:6;:19;;;;;;;;;3692:152;;;;;;;;;;;3879:45;3737:11;3692:152;3907:4;3913;3919;3879:6;:45::i;:::-;3857:128;;;;-1:-1:-1;;;3857:128:0;;16714:2:1;3857:128:0;;;16696:21:1;16753:2;16733:18;;;16726:30;16792:34;16772:18;;;16765:62;-1:-1:-1;;;16843:18:1;;;16836:31;16884:19;;3857:128:0;16686:223:1;3857:128:0;-1:-1:-1;;;;;4074:19:0;;;;;;:6;:19;;;;;;:26;;4098:1;4074:23;:26::i;:::-;-1:-1:-1;;;;;4052:19:0;;;;;;:6;:19;;;;;;;:48;;;;4118:126;;;;;4059:11;;4190:10;;4216:17;;4118:126;:::i;:::-;;;;;;;;4355:12;4369:23;4404:4;-1:-1:-1;;;;;4396:18:0;4446:17;4465:11;4429:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;4429:48:0;;;;;;;;;;4396:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4354:134;;;;4507:7;4499:48;;;;-1:-1:-1;;;4499:48:0;;11631:2:1;4499:48:0;;;11613:21:1;11670:2;11650:18;;;11643:30;-1:-1:-1;;;11689:18:1;;;11682:58;11757:18;;4499:48:0;11603:178:1;4499:48:0;4567:10;3434:1151;-1:-1:-1;;;;;;;;3434:1151:0:o;40576:339::-;40771:41;40790:12;:10;:12::i;:::-;40804:7;40771:18;:41::i;:::-;40763:103;;;;-1:-1:-1;;;40763:103:0;;;;;;;:::i;:::-;40879:28;40889:4;40895:2;40899:7;40879:9;:28::i;50557:256::-;50654:7;50690:23;50707:5;50690:16;:23::i;:::-;50682:5;:31;50674:87;;;;-1:-1:-1;;;50674:87:0;;10393:2:1;50674:87:0;;;10375:21:1;10432:2;10412:18;;;10405:30;10471:34;10451:18;;;10444:62;-1:-1:-1;;;10522:18:1;;;10515:41;10573:19;;50674:87:0;10365:233:1;50674:87:0;-1:-1:-1;;;;;;50779:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;50557:256::o;40986:185::-;41124:39;41141:4;41147:2;41151:7;41124:39;;;;;;;;;;;;:16;:39::i;51079:233::-;51154:7;51190:30;50977:10;:17;;50889:113;51190:30;51182:5;:38;51174:95;;;;-1:-1:-1;;;51174:95:0;;17936:2:1;51174:95:0;;;17918:21:1;17975:2;17955:18;;;17948:30;18014:34;17994:18;;;17987:62;-1:-1:-1;;;18065:18:1;;;18058:42;18117:19;;51174:95:0;17908:234:1;51174:95:0;51287:10;51298:5;51287:17;;;;;;;;:::i;:::-;;;;;;;;;51280:24;;51079:233;;;:::o;37821:239::-;37893:7;37929:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37929:16:0;37964:19;37956:73;;;;-1:-1:-1;;;37956:73:0;;14759:2:1;37956:73:0;;;14741:21:1;14798:2;14778:18;;;14771:30;14837:34;14817:18;;;14810:62;-1:-1:-1;;;14888:18:1;;;14881:39;14937:19;;37956:73:0;14731:231:1;37551:208:0;37623:7;-1:-1:-1;;;;;37651:19:0;;37643:74;;;;-1:-1:-1;;;37643:74:0;;14348:2:1;37643:74:0;;;14330:21:1;14387:2;14367:18;;;14360:30;14426:34;14406:18;;;14399:62;-1:-1:-1;;;14477:18:1;;;14470:40;14527:19;;37643:74:0;14320:232:1;37643:74:0;-1:-1:-1;;;;;;37735:16:0;;;;;:9;:16;;;;;;;37551:208::o;17957:94::-;17537:12;:10;:12::i;:::-;-1:-1:-1;;;;;17526:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17526:23:0;;17518:68;;;;-1:-1:-1;;;17518:68:0;;;;;;;:::i;:::-;18022:21:::1;18040:1;18022:9;:21::i;:::-;17957:94::o:0;57425:166::-;17537:12;:10;:12::i;:::-;-1:-1:-1;;;;;17526:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17526:23:0;;17518:68;;;;-1:-1:-1;;;17518:68:0;;;;;;;:::i;:::-;57482:18:::1;57503:17;:15;:17::i;:::-;57482:38;;57531:22;57537:3;57542:10;57531:5;:22::i;:::-;57564:19;:17;:19::i;:::-;57471:120;57425:166:::0;:::o;17306:87::-;17379:6;;-1:-1:-1;;;;;17379:6:0;;17306:87::o;38296:104::-;38352:13;38385:7;38378:14;;;;;:::i;39979:295::-;40094:12;:10;:12::i;:::-;-1:-1:-1;;;;;40082:24:0;:8;-1:-1:-1;;;;;40082:24:0;;;40074:62;;;;-1:-1:-1;;;40074:62:0;;12750:2:1;40074:62:0;;;12732:21:1;12789:2;12769:18;;;12762:30;-1:-1:-1;;;12808:18:1;;;12801:55;12873:18;;40074:62:0;12722:175:1;40074:62:0;40194:8;40149:18;:32;40168:12;:10;:12::i;:::-;-1:-1:-1;;;;;40149:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;40149:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;40149:53:0;;;;;;;;;;;40233:12;:10;:12::i;:::-;-1:-1:-1;;;;;40218:48:0;;40257:8;40218:48;;;;8711:14:1;8704:22;8686:41;;8674:2;8659:18;;8641:92;40218:48:0;;;;;;;;39979:295;;:::o;41242:328::-;41417:41;41436:12;:10;:12::i;:::-;41450:7;41417:18;:41::i;:::-;41409:103;;;;-1:-1:-1;;;41409:103:0;;;;;;;:::i;:::-;41523:39;41537:4;41543:2;41547:7;41556:5;41523:13;:39::i;:::-;41242:328;;;;:::o;57605:85::-;17537:12;:10;:12::i;:::-;-1:-1:-1;;;;;17526:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17526:23:0;;17518:68;;;;-1:-1:-1;;;17518:68:0;;;;;;;:::i;:::-;57666:15:::1;57672:8;57666:5;:15::i;:::-;57605:85:::0;:::o;59794:88::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58370:297::-;58436:13;58615:14;:12;:14::i;:::-;58631:26;58648:8;58631:16;:26::i;:::-;58598:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58584:75;;58370:297;;;:::o;59892:104::-;59947:13;59980:8;59973:15;;;;;:::i;58800:445::-;59054:20;;59098:28;;-1:-1:-1;;;59098:28:0;;58925:4;;-1:-1:-1;;;;;59054:20:0;;;;59090:49;;;;59054:20;;59098:21;;:28;;59120:5;;59098:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59090:49:0;;59086:93;;;59163:4;59156:11;;;;;59086:93;-1:-1:-1;;;;;40466:25:0;;;40442:4;40466:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;59198:39;59191:46;58800:445;-1:-1:-1;;;;58800:445:0:o;18206:192::-;17537:12;:10;:12::i;:::-;-1:-1:-1;;;;;17526:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;17526:23:0;;17518:68;;;;-1:-1:-1;;;17518:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18295:22:0;::::1;18287:73;;;::::0;-1:-1:-1;;;18287:73:0;;11224:2:1;18287:73:0::1;::::0;::::1;11206:21:1::0;11263:2;11243:18;;;11236:30;11302:34;11282:18;;;11275:62;-1:-1:-1;;;11353:18:1;;;11346:36;11399:19;;18287:73:0::1;11196:228:1::0;18287:73:0::1;18371:19;18381:8;18371:9;:19::i;60005:101::-:0;60080:18;;;;:8;;:18;;;;;:::i;5752:650::-;5823:22;5867:10;5889:4;5867:27;5863:508;;;5911:18;5932:8;;5911:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;5971:8:0;6182:17;6176:24;-1:-1:-1;;;;;6150:134:0;;-1:-1:-1;5863:508:0;;-1:-1:-1;5863:508:0;;-1:-1:-1;6348:10:0;5863:508;5752:650;:::o;37182:305::-;37284:4;-1:-1:-1;;;;;;37321:40:0;;-1:-1:-1;;;37321:40:0;;:105;;-1:-1:-1;;;;;;;37378:48:0;;-1:-1:-1;;;37378:48:0;37321:105;:158;;;-1:-1:-1;;;;;;;;;;33071:40:0;;;37443:36;32962:157;43080:127;43145:4;43169:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43169:16:0;:30;;;43080:127::o;59389:161::-;59479:14;59518:24;:22;:24::i;:::-;59511:31;;59389:161;:::o;47062:174::-;47137:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47137:29:0;-1:-1:-1;;;;;47137:29:0;;;;;;;;:24;;47191:23;47137:24;47191:14;:23::i;:::-;-1:-1:-1;;;;;47182:46:0;;;;;;;;;;;47062:174;;:::o;5126:486::-;5304:4;-1:-1:-1;;;;;5329:20:0;;5321:70;;;;-1:-1:-1;;;5321:70:0;;13517:2:1;5321:70:0;;;13499:21:1;13556:2;13536:18;;;13529:30;13595:34;13575:18;;;13568:62;-1:-1:-1;;;13646:18:1;;;13639:35;13691:19;;5321:70:0;13489:227:1;5321:70:0;5445:159;5473:47;5492:27;5512:6;5492:19;:27::i;:::-;5473:18;:47::i;:::-;5445:159;;;;;;;;;;;;9569:25:1;;;;9642:4;9630:17;;9610:18;;;9603:45;9664:18;;;9657:34;;;9707:18;;;9700:34;;;9541:19;;5445:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5422:182:0;:6;-1:-1:-1;;;;;5422:182:0;;5402:202;;5126:486;;;;;;;:::o;9209:98::-;9267:7;9294:5;9298:1;9294;:5;:::i;:::-;9287:12;9209:98;-1:-1:-1;;;9209:98:0:o;43374:348::-;43467:4;43492:16;43500:7;43492;:16::i;:::-;43484:73;;;;-1:-1:-1;;;43484:73:0;;13104:2:1;43484:73:0;;;13086:21:1;13143:2;13123:18;;;13116:30;13182:34;13162:18;;;13155:62;-1:-1:-1;;;13233:18:1;;;13226:42;13285:19;;43484:73:0;13076:234:1;43484:73:0;43568:13;43584:23;43599:7;43584:14;:23::i;:::-;43568:39;;43637:5;-1:-1:-1;;;;;43626:16:0;:7;-1:-1:-1;;;;;43626:16:0;;:51;;;;43670:7;-1:-1:-1;;;;;43646:31:0;:20;43658:7;43646:11;:20::i;:::-;-1:-1:-1;;;;;43646:31:0;;43626:51;:87;;;;43681:32;43698:5;43705:7;43681:16;:32::i;46366:578::-;46525:4;-1:-1:-1;;;;;46498:31:0;:23;46513:7;46498:14;:23::i;:::-;-1:-1:-1;;;;;46498:31:0;;46490:85;;;;-1:-1:-1;;;46490:85:0;;16304:2:1;46490:85:0;;;16286:21:1;16343:2;16323:18;;;16316:30;16382:34;16362:18;;;16355:62;-1:-1:-1;;;16433:18:1;;;16426:39;16482:19;;46490:85:0;16276:231:1;46490:85:0;-1:-1:-1;;;;;46594:16:0;;46586:65;;;;-1:-1:-1;;;46586:65:0;;12345:2:1;46586:65:0;;;12327:21:1;12384:2;12364:18;;;12357:30;12423:34;12403:18;;;12396:62;-1:-1:-1;;;12474:18:1;;;12467:34;12518:19;;46586:65:0;12317:226:1;46586:65:0;46664:39;46685:4;46691:2;46695:7;46664:20;:39::i;:::-;46768:29;46785:1;46789:7;46768:8;:29::i;:::-;-1:-1:-1;;;;;46810:15:0;;;;;;:9;:15;;;;;:20;;46829:1;;46810:15;:20;;46829:1;;46810:20;:::i;:::-;;;;-1:-1:-1;;;;;;;46841:13:0;;;;;;:9;:13;;;;;:18;;46858:1;;46841:13;:18;;46858:1;;46841:18;:::i;:::-;;;;-1:-1:-1;;46870:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46870:21:0;-1:-1:-1;;;;;46870:21:0;;;;;;;;;46909:27;;46870:16;;46909:27;;;;-1:-1:-1;;;;;;;;;;;46909:27:0;;46366:578;;;:::o;18406:173::-;18481:6;;;-1:-1:-1;;;;;18498:17:0;;;-1:-1:-1;;;;;;18498:17:0;;;;;;;18531:40;;18481:6;;;18498:17;18481:6;;18531:40;;18462:16;;18531:40;18451:128;18406:173;:::o;57840:106::-;57916:15;;57889:7;;57916:22;;57936:1;57916:19;:22::i;45058:382::-;-1:-1:-1;;;;;45138:16:0;;45130:61;;;;-1:-1:-1;;;45130:61:0;;15169:2:1;45130:61:0;;;15151:21:1;;;15188:18;;;15181:30;15247:34;15227:18;;;15220:62;15299:18;;45130:61:0;15141:182:1;45130:61:0;45211:16;45219:7;45211;:16::i;:::-;45210:17;45202:58;;;;-1:-1:-1;;;45202:58:0;;11988:2:1;45202:58:0;;;11970:21:1;12027:2;12007:18;;;12000:30;-1:-1:-1;;;12046:18:1;;;12039:58;12114:18;;45202:58:0;11960:178:1;45202:58:0;45273:45;45302:1;45306:2;45310:7;45273:20;:45::i;:::-;-1:-1:-1;;;;;45331:13:0;;;;;;:9;:13;;;;;:18;;45348:1;;45331:13;:18;;45348:1;;45331:18;:::i;:::-;;;;-1:-1:-1;;45360:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45360:21:0;-1:-1:-1;;;;;45360:21:0;;;;;;;;45399:33;;45360:16;;;-1:-1:-1;;;;;;;;;;;45399:33:0;45360:16;;45399:33;45058:382;;:::o;58025:73::-;58073:15;:17;;;:15;:17;;;:::i;:::-;;;;;;58025:73::o;42452:315::-;42609:28;42619:4;42625:2;42629:7;42609:9;:28::i;:::-;42656:48;42679:4;42685:2;42689:7;42698:5;42656:22;:48::i;:::-;42648:111;;;;-1:-1:-1;;;42648:111:0;;;;;;;:::i;45669:360::-;45729:13;45745:23;45760:7;45745:14;:23::i;:::-;45729:39;;45781:48;45802:5;45817:1;45821:7;45781:20;:48::i;:::-;45870:29;45887:1;45891:7;45870:8;:29::i;:::-;-1:-1:-1;;;;;45912:16:0;;;;;;:9;:16;;;;;:21;;45932:1;;45912:16;:21;;45932:1;;45912:21;:::i;:::-;;;;-1:-1:-1;;45951:16:0;;;;:7;:16;;;;;;45944:23;;-1:-1:-1;;;;;;45944:23:0;;;45985:36;45959:7;;45951:16;-1:-1:-1;;;;;45985:36:0;;;-1:-1:-1;;;;;;;;;;;45985:36:0;45951:16;;45985:36;45718:311;45669:360;:::o;13695:723::-;13751:13;13972:10;13968:53;;-1:-1:-1;;13999:10:0;;;;;;;;;;;;-1:-1:-1;;;13999:10:0;;;;;13695:723::o;13968:53::-;14046:5;14031:12;14087:78;14094:9;;14087:78;;14120:8;;;;:::i;:::-;;-1:-1:-1;14143:10:0;;-1:-1:-1;14151:2:0;14143:10;;:::i;:::-;;;14087:78;;;14175:19;14207:6;-1:-1:-1;;;;;14197:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14197:17:0;;14175:39;;14225:154;14232:10;;14225:154;;14259:11;14269:1;14259:11;;:::i;:::-;;-1:-1:-1;14328:10:0;14336:2;14328:5;:10;:::i;:::-;14315:24;;:2;:24;:::i;:::-;14302:39;;14285:6;14292;14285:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14285:56:0;;;;;;;;-1:-1:-1;14356:11:0;14365:2;14356:11;;:::i;:::-;;;14225:154;;4593:410;4703:7;2770:100;;;;;;;;;;;;;;;;;2750:127;;;;;;;4857:12;;4892:11;;;;4936:24;;;;;4926:35;;;;;;4776:204;;;;;9151:25:1;;;9207:2;9192:18;;9185:34;;;;-1:-1:-1;;;;;9255:32:1;9250:2;9235:18;;9228:60;9319:2;9304:18;;9297:34;9138:3;9123:19;;9105:232;4776:204:0;;;;;;;;;;;;;4748:247;;;;;;4728:267;;4593:410;;;:::o;2239:258::-;2338:7;2440:20;1678:15;;;1600:101;2440:20;2411:63;;-1:-1:-1;;;2411:63:0;;;7270:27:1;7313:11;;;7306:27;;;;7349:12;;;7342:28;;;7386:12;;2411:63:0;7260:144:1;51925:589:0;-1:-1:-1;;;;;52131:18:0;;52127:187;;52166:40;52198:7;53341:10;:17;;53314:24;;;;:15;:24;;;;;:44;;;53369:24;;;;;;;;;;;;53237:164;52166:40;52127:187;;;52236:2;-1:-1:-1;;;;;52228:10:0;:4;-1:-1:-1;;;;;52228:10:0;;52224:90;;52255:47;52288:4;52294:7;52255:32;:47::i;:::-;-1:-1:-1;;;;;52328:16:0;;52324:183;;52361:45;52398:7;52361:36;:45::i;52324:183::-;52434:4;-1:-1:-1;;;;;52428:10:0;:2;-1:-1:-1;;;;;52428:10:0;;52424:83;;52455:40;52483:2;52487:7;52455:27;:40::i;47801:803::-;47956:4;-1:-1:-1;;;;;47977:13:0;;19689:20;19737:8;47973:624;;48029:2;-1:-1:-1;;;;;48013:36:0;;48050:12;:10;:12::i;:::-;48064:4;48070:7;48079:5;48013:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48013:72:0;;;;;;;;-1:-1:-1;;48013:72:0;;;;;;;;;;;;:::i;:::-;;;48009:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48259:13:0;;48255:272;;48302:60;;-1:-1:-1;;;48302:60:0;;;;;;;:::i;48255:272::-;48477:6;48471:13;48462:6;48458:2;48454:15;48447:38;48009:533;-1:-1:-1;;;;;;48136:55:0;-1:-1:-1;;;48136:55:0;;-1:-1:-1;48129:62:0;;47973:624;-1:-1:-1;48581:4:0;47801:803;;;;;;:::o;54028:988::-;54294:22;54344:1;54319:22;54336:4;54319:16;:22::i;:::-;:26;;;;:::i;:::-;54356:18;54377:26;;;:17;:26;;;;;;54294:51;;-1:-1:-1;54510:28:0;;;54506:328;;-1:-1:-1;;;;;54577:18:0;;54555:19;54577:18;;;:12;:18;;;;;;;;:34;;;;;;;;;54628:30;;;;;;:44;;;54745:30;;:17;:30;;;;;:43;;;54506:328;-1:-1:-1;54930:26:0;;;;:17;:26;;;;;;;;54923:33;;;-1:-1:-1;;;;;54974:18:0;;;;;:12;:18;;;;;:34;;;;;;;54967:41;54028:988::o;55311:1079::-;55589:10;:17;55564:22;;55589:21;;55609:1;;55589:21;:::i;:::-;55621:18;55642:24;;;:15;:24;;;;;;56015:10;:26;;55564:46;;-1:-1:-1;55642:24:0;;55564:46;;56015:26;;;;;;:::i;:::-;;;;;;;;;55993:48;;56079:11;56054:10;56065;56054:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;56159:28;;;:15;:28;;;;;;;:41;;;56331:24;;;;;56324:31;56366:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;55382:1008;;;55311:1079;:::o;52815:221::-;52900:14;52917:20;52934:2;52917:16;:20::i;:::-;-1:-1:-1;;;;;52948:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;52993:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;52815:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:220::-;692:5;745:3;738:4;730:6;726:17;722:27;712:2;;763:1;760;753:12;712:2;785:79;860:3;851:6;838:20;831:4;823:6;819:17;785:79;:::i;875:247::-;934:6;987:2;975:9;966:7;962:23;958:32;955:2;;;1003:1;1000;993:12;955:2;1042:9;1029:23;1061:31;1086:5;1061:31;:::i;1127:388::-;1195:6;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1272:1;1269;1262:12;1224:2;1311:9;1298:23;1330:31;1355:5;1330:31;:::i;:::-;1380:5;-1:-1:-1;1437:2:1;1422:18;;1409:32;1450:33;1409:32;1450:33;:::i;:::-;1502:7;1492:17;;;1214:301;;;;;:::o;1520:456::-;1597:6;1605;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:2;;;1682:1;1679;1672:12;1634:2;1721:9;1708:23;1740:31;1765:5;1740:31;:::i;:::-;1790:5;-1:-1:-1;1847:2:1;1832:18;;1819:32;1860:33;1819:32;1860:33;:::i;:::-;1624:352;;1912:7;;-1:-1:-1;;;1966:2:1;1951:18;;;;1938:32;;1624:352::o;1981:665::-;2076:6;2084;2092;2100;2153:3;2141:9;2132:7;2128:23;2124:33;2121:2;;;2170:1;2167;2160:12;2121:2;2209:9;2196:23;2228:31;2253:5;2228:31;:::i;:::-;2278:5;-1:-1:-1;2335:2:1;2320:18;;2307:32;2348:33;2307:32;2348:33;:::i;:::-;2400:7;-1:-1:-1;2454:2:1;2439:18;;2426:32;;-1:-1:-1;2509:2:1;2494:18;;2481:32;-1:-1:-1;;;;;2525:30:1;;2522:2;;;2568:1;2565;2558:12;2522:2;2591:49;2632:7;2623:6;2612:9;2608:22;2591:49;:::i;:::-;2581:59;;;2111:535;;;;;;;:::o;2651:416::-;2716:6;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:2;;;2793:1;2790;2783:12;2745:2;2832:9;2819:23;2851:31;2876:5;2851:31;:::i;:::-;2901:5;-1:-1:-1;2958:2:1;2943:18;;2930:32;3000:15;;2993:23;2981:36;;2971:2;;3031:1;3028;3021:12;3072:758;3174:6;3182;3190;3198;3206;3259:3;3247:9;3238:7;3234:23;3230:33;3227:2;;;3276:1;3273;3266:12;3227:2;3315:9;3302:23;3334:31;3359:5;3334:31;:::i;:::-;3384:5;-1:-1:-1;3440:2:1;3425:18;;3412:32;-1:-1:-1;;;;;3456:30:1;;3453:2;;;3499:1;3496;3489:12;3453:2;3522:49;3563:7;3554:6;3543:9;3539:22;3522:49;:::i;:::-;3512:59;;;3618:2;3607:9;3603:18;3590:32;3580:42;;3669:2;3658:9;3654:18;3641:32;3631:42;;3725:3;3714:9;3710:19;3697:33;3774:4;3765:7;3761:18;3752:7;3749:31;3739:2;;3794:1;3791;3784:12;3739:2;3817:7;3807:17;;;3217:613;;;;;;;;:::o;3835:315::-;3903:6;3911;3964:2;3952:9;3943:7;3939:23;3935:32;3932:2;;;3980:1;3977;3970:12;3932:2;4019:9;4006:23;4038:31;4063:5;4038:31;:::i;:::-;4088:5;4140:2;4125:18;;;;4112:32;;-1:-1:-1;;;3922:228:1:o;4155:245::-;4213:6;4266:2;4254:9;4245:7;4241:23;4237:32;4234:2;;;4282:1;4279;4272:12;4234:2;4321:9;4308:23;4340:30;4364:5;4340:30;:::i;4405:249::-;4474:6;4527:2;4515:9;4506:7;4502:23;4498:32;4495:2;;;4543:1;4540;4533:12;4495:2;4575:9;4569:16;4594:30;4618:5;4594:30;:::i;4659:280::-;4758:6;4811:2;4799:9;4790:7;4786:23;4782:32;4779:2;;;4827:1;4824;4817:12;4779:2;4859:9;4853:16;4878:31;4903:5;4878:31;:::i;4944:450::-;5013:6;5066:2;5054:9;5045:7;5041:23;5037:32;5034:2;;;5082:1;5079;5072:12;5034:2;5122:9;5109:23;-1:-1:-1;;;;;5147:6:1;5144:30;5141:2;;;5187:1;5184;5177:12;5141:2;5210:22;;5263:4;5255:13;;5251:27;-1:-1:-1;5241:2:1;;5292:1;5289;5282:12;5241:2;5315:73;5380:7;5375:2;5362:16;5357:2;5353;5349:11;5315:73;:::i;5399:180::-;5458:6;5511:2;5499:9;5490:7;5486:23;5482:32;5479:2;;;5527:1;5524;5517:12;5479:2;-1:-1:-1;5550:23:1;;5469:110;-1:-1:-1;5469:110:1:o;5584:257::-;5625:3;5663:5;5657:12;5690:6;5685:3;5678:19;5706:63;5762:6;5755:4;5750:3;5746:14;5739:4;5732:5;5728:16;5706:63;:::i;:::-;5823:2;5802:15;-1:-1:-1;;5798:29:1;5789:39;;;;5830:4;5785:50;;5633:208;-1:-1:-1;;5633:208:1:o;5846:274::-;5975:3;6013:6;6007:13;6029:53;6075:6;6070:3;6063:4;6055:6;6051:17;6029:53;:::i;:::-;6098:16;;;;;5983:137;-1:-1:-1;;5983:137:1:o;6125:407::-;6282:3;6320:6;6314:13;6336:53;6382:6;6377:3;6370:4;6362:6;6358:17;6336:53;:::i;:::-;6483:2;6454:15;;;;-1:-1:-1;;;;;;6450:45:1;6411:16;;;;6436:60;;;6523:2;6512:14;;6290:242;-1:-1:-1;;6290:242:1:o;6537:470::-;6716:3;6754:6;6748:13;6770:53;6816:6;6811:3;6804:4;6796:6;6792:17;6770:53;:::i;:::-;6886:13;;6845:16;;;;6908:57;6886:13;6845:16;6942:4;6930:17;;6908:57;:::i;:::-;6981:20;;6724:283;-1:-1:-1;;;;6724:283:1:o;7409:203::-;-1:-1:-1;;;;;7573:32:1;;;;7555:51;;7543:2;7528:18;;7510:102::o;7617:431::-;-1:-1:-1;;;;;7874:15:1;;;7856:34;;7926:15;;7921:2;7906:18;;7899:43;7978:2;7973;7958:18;;7951:30;;;7799:4;;7998:44;;8023:18;;8015:6;7998:44;:::i;:::-;7990:52;7808:240;-1:-1:-1;;;;;7808:240:1:o;8053:488::-;-1:-1:-1;;;;;8322:15:1;;;8304:34;;8374:15;;8369:2;8354:18;;8347:43;8421:2;8406:18;;8399:34;;;8469:3;8464:2;8449:18;;8442:31;;;8247:4;;8490:45;;8515:19;;8507:6;8490:45;:::i;:::-;8482:53;8256:285;-1:-1:-1;;;;;;8256:285:1:o;9745:217::-;9892:2;9881:9;9874:21;9855:4;9912:44;9952:2;9941:9;9937:18;9929:6;9912:44;:::i;10603:414::-;10805:2;10787:21;;;10844:2;10824:18;;;10817:30;10883:34;10878:2;10863:18;;10856:62;-1:-1:-1;;;10949:2:1;10934:18;;10927:48;11007:3;10992:19;;10777:240::o;15741:356::-;15943:2;15925:21;;;15962:18;;;15955:30;16021:34;16016:2;16001:18;;15994:62;16088:2;16073:18;;15915:182::o;17316:413::-;17518:2;17500:21;;;17557:2;17537:18;;;17530:30;17596:34;17591:2;17576:18;;17569:62;-1:-1:-1;;;17662:2:1;17647:18;;17640:47;17719:3;17704:19;;17490:239::o;18329:128::-;18369:3;18400:1;18396:6;18393:1;18390:13;18387:2;;;18406:18;;:::i;:::-;-1:-1:-1;18442:9:1;;18377:80::o;18462:120::-;18502:1;18528;18518:2;;18533:18;;:::i;:::-;-1:-1:-1;18567:9:1;;18508:74::o;18587:125::-;18627:4;18655:1;18652;18649:8;18646:2;;;18660:18;;:::i;:::-;-1:-1:-1;18697:9:1;;18636:76::o;18717:258::-;18789:1;18799:113;18813:6;18810:1;18807:13;18799:113;;;18889:11;;;18883:18;18870:11;;;18863:39;18835:2;18828:10;18799:113;;;18930:6;18927:1;18924:13;18921:2;;;-1:-1:-1;;18965:1:1;18947:16;;18940:27;18770:205::o;18980:380::-;19059:1;19055:12;;;;19102;;;19123:2;;19177:4;19169:6;19165:17;19155:27;;19123:2;19230;19222:6;19219:14;19199:18;19196:38;19193:2;;;19276:10;19271:3;19267:20;19264:1;19257:31;19311:4;19308:1;19301:15;19339:4;19336:1;19329:15;19193:2;;19035:325;;;:::o;19365:135::-;19404:3;-1:-1:-1;;19425:17:1;;19422:2;;;19445:18;;:::i;:::-;-1:-1:-1;19492:1:1;19481:13;;19412:88::o;19505:112::-;19537:1;19563;19553:2;;19568:18;;:::i;:::-;-1:-1:-1;19602:9:1;;19543:74::o;19622:127::-;19683:10;19678:3;19674:20;19671:1;19664:31;19714:4;19711:1;19704:15;19738:4;19735:1;19728:15;19754:127;19815:10;19810:3;19806:20;19803:1;19796:31;19846:4;19843:1;19836:15;19870:4;19867:1;19860:15;19886:127;19947:10;19942:3;19938:20;19935:1;19928:31;19978:4;19975:1;19968:15;20002:4;19999:1;19992:15;20018:127;20079:10;20074:3;20070:20;20067:1;20060:31;20110:4;20107:1;20100:15;20134:4;20131:1;20124:15;20150:127;20211:10;20206:3;20202:20;20199:1;20192:31;20242:4;20239:1;20232:15;20266:4;20263:1;20256:15;20282:131;-1:-1:-1;;;;;20357:31:1;;20347:42;;20337:2;;20403:1;20400;20393:12;20418:131;-1:-1:-1;;;;;;20492:32:1;;20482:43;;20472:2;;20539:1;20536;20529:12

Swarm Source

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