ETH Price: $3,464.88 (+2.09%)
Gas: 12 Gwei

Token

WizardsNouns (WizardsNouns)
 

Overview

Max Total Supply

1,185 WizardsNouns

Holders

889

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WizardsNouns
0xdd62d9c4f4d5bc0b475410edfe0aba2ce76c9d98
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:
WizardsNouns

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : WizardsNouns.sol
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//.........................***************...***************......................
//.........................***..........**...**..........***......................
//..................**********..........*******..........***......................
//..................**.....***..........**...**..........***......................
//..................**.....***..........**...**..........***......................
//.........................***************...***************......................
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//.......................%%########%%%%%%%%%%%%%%%%%********......................
//.......................%%%%%#######%%%%%%%%%%%%%*******%%%......................
//.......................%%%%%%%########%%%%%%%********%%%%%......................
//.......................%%%%%%%%%%#######%%%*******%%%%%%%%......................
//.......................%%%%%..%%%%%#####********%%%%%%%%%%......................
//.......................%%%%%..%%%%%%%%*******%%%%%%%%%%%%%......................
//.......................%%%%%..%%%%%***..........%%%%%%%%%%......................
//.......................%%%%%..////////../////...//////////......................
//.......................%%%%%..////////../////...//////////......................
//.......................*****..%%%%%%%%..........%%%%%%%%%%......................
//.......................*****..%%%%%%%%%%%%%%%%%%%%%%%%%%%%......................
//
// Forgotten Runes Wizard's Nouns
// Wizard x Noun NFTs for Forgotten Runes Wizard's Cult holders
// 
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';

contract WizardsNouns is 
    ERC721,
    ERC721Enumerable,
    Ownable,
    ReentrancyGuard
{
    string private _baseTokenURI;
    bool private _killSwitchEngaged;
    uint256 public mintsAllowedPerAddress = 1;
    uint256 public constant MAX_SUPPLY = 2500;
    mapping(address => uint) public minted;

    ERC721 wizards = ERC721(0x521f9C7505005CFA19A8E5786a9c3c9c9F5e6f42);

    constructor(string memory initialBaseURI) 
        ERC721('WizardsNouns', 'WizardsNouns') 
    {  
        setBaseURI(initialBaseURI);
    }

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

    function setMintsAllowedPerAddress(uint256 _newMintsAllowedPerAddress) public onlyOwner {
        mintsAllowedPerAddress = _newMintsAllowedPerAddress;
    }

    function setKillSwitchEngaged(bool _newKillSwitchEngaged) public onlyOwner {
        require(!_killSwitchEngaged, "Cannot undo what has already been done");
        _killSwitchEngaged = _newKillSwitchEngaged;
    }

    function baseURI() public view returns (string memory) {
        return _baseTokenURI;
    }

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

    function claim(uint256 tokenId) public nonReentrant {
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(!_killSwitchEngaged, "All tokens minted");
        require(wizards.ownerOf(tokenId) == msg.sender, "Not Wizard owner");
        require(minted[msg.sender] < mintsAllowedPerAddress, "Address already minted");
        
        minted[msg.sender] += 1;

        _safeMint(msg.sender, tokenId);
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

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

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

File 2 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 4 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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.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 6 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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 7 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 8 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

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 9 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT

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);
    }

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

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

File 11 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 13 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initialBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintsAllowedPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newKillSwitchEngaged","type":"bool"}],"name":"setKillSwitchEngaged","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintsAllowedPerAddress","type":"uint256"}],"name":"setMintsAllowedPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600e5573521f9c7505005cfa19a8e5786a9c3c9c9f5e6f42601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006b57600080fd5b506040516200461338038062004613833981810160405281019062000091919062000442565b6040518060400160405280600c81526020017f57697a617264734e6f756e7300000000000000000000000000000000000000008152506040518060400160405280600c81526020017f57697a617264734e6f756e73000000000000000000000000000000000000000081525081600090805190602001906200011592919062000314565b5080600190805190602001906200012e92919062000314565b50505062000151620001456200017160201b60201c565b6200017960201b60201c565b6001600b819055506200016a816200023f60201b60201c565b506200069a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024f6200017160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000275620002ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c590620004ba565b60405180910390fd5b80600c9080519060200190620002e692919062000314565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003229062000582565b90600052602060002090601f01602090048101928262000346576000855562000392565b82601f106200036157805160ff191683800117855562000392565b8280016001018555821562000392579182015b828111156200039157825182559160200191906001019062000374565b5b509050620003a19190620003a5565b5090565b5b80821115620003c0576000816000905550600101620003a6565b5090565b6000620003db620003d58462000505565b620004dc565b905082815260208101848484011115620003fa57620003f962000651565b5b620004078482856200054c565b509392505050565b600082601f8301126200042757620004266200064c565b5b815162000439848260208601620003c4565b91505092915050565b6000602082840312156200045b576200045a6200065b565b5b600082015167ffffffffffffffff8111156200047c576200047b62000656565b5b6200048a848285016200040f565b91505092915050565b6000620004a26020836200053b565b9150620004af8262000671565b602082019050919050565b60006020820190508181036000830152620004d58162000493565b9050919050565b6000620004e8620004fb565b9050620004f68282620005b8565b919050565b6000604051905090565b600067ffffffffffffffff8211156200052357620005226200061d565b5b6200052e8262000660565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200056c5780820151818401526020810190506200054f565b838111156200057c576000848401525b50505050565b600060028204905060018216806200059b57607f821691505b60208210811415620005b257620005b1620005ee565b5b50919050565b620005c38262000660565b810181811067ffffffffffffffff82111715620005e557620005e46200061d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613f6980620006aa6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a22cb46511610097578063ca0b4d7b11610071578063ca0b4d7b146104f1578063e6afcd131461050d578063e985e9c51461052b578063f2fde38b1461055b576101c4565b8063a22cb46514610489578063b88d4fde146104a5578063c87b56dd146104c1576101c4565b8063715018a6116100d3578063715018a6146104275780638da5cb5b1461043157806395d89b411461044f5780639feab12f1461046d576101c4565b80636352211e146103a95780636c0360eb146103d957806370a08231146103f7576101c4565b80632f745c59116101665780633ccfd60b116101405780633ccfd60b1461033757806342842e0e146103415780634f6ccce71461035d57806355f804b31461038d576101c4565b80632f745c59146102cd57806332cb6b0c146102fd578063379607f51461031b576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd146102635780631e7269c51461028157806323b872dd146102b1576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612c0f565b610577565b6040516101f0919061315f565b60405180910390f35b610201610589565b60405161020e919061317a565b60405180910390f35b610231600480360381019061022c9190612cb2565b61061b565b60405161023e91906130f8565b60405180910390f35b610261600480360381019061025c9190612ba2565b6106a0565b005b61026b6107b8565b604051610278919061347c565b60405180910390f35b61029b600480360381019061029691906129f2565b6107c5565b6040516102a8919061347c565b60405180910390f35b6102cb60048036038101906102c69190612a8c565b6107dd565b005b6102e760048036038101906102e29190612ba2565b61083d565b6040516102f4919061347c565b60405180910390f35b6103056108e2565b604051610312919061347c565b60405180910390f35b61033560048036038101906103309190612cb2565b6108e8565b005b61033f610bd8565b005b61035b60048036038101906103569190612a8c565b610c9d565b005b61037760048036038101906103729190612cb2565b610cbd565b604051610384919061347c565b60405180910390f35b6103a760048036038101906103a29190612c69565b610d2e565b005b6103c360048036038101906103be9190612cb2565b610dc4565b6040516103d091906130f8565b60405180910390f35b6103e1610e76565b6040516103ee919061317a565b60405180910390f35b610411600480360381019061040c91906129f2565b610f08565b60405161041e919061347c565b60405180910390f35b61042f610fc0565b005b610439611048565b60405161044691906130f8565b60405180910390f35b610457611072565b604051610464919061317a565b60405180910390f35b61048760048036038101906104829190612cb2565b611104565b005b6104a3600480360381019061049e9190612b62565b61118a565b005b6104bf60048036038101906104ba9190612adf565b61130b565b005b6104db60048036038101906104d69190612cb2565b61136d565b6040516104e8919061317a565b60405180910390f35b61050b60048036038101906105069190612be2565b611414565b005b6105156114fd565b604051610522919061347c565b60405180910390f35b61054560048036038101906105409190612a4c565b611503565b604051610552919061315f565b60405180910390f35b610575600480360381019061057091906129f2565b611597565b005b60006105828261168f565b9050919050565b606060008054610598906136d2565b80601f01602080910402602001604051908101604052809291908181526020018280546105c4906136d2565b80156106115780601f106105e657610100808354040283529160200191610611565b820191906000526020600020905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b600061062682611709565b610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c9061335c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ab82610dc4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561071c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610713906133dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661073b611775565b73ffffffffffffffffffffffffffffffffffffffff16148061076a575061076981610764611775565b611503565b5b6107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a0906132dc565b60405180910390fd5b6107b3838361177d565b505050565b6000600880549050905090565b600f6020528060005260406000206000915090505481565b6107ee6107e8611775565b82611836565b61082d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610824906133fc565b60405180910390fd5b610838838383611914565b505050565b600061084883610f08565b8210610889576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610880906131bc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109c481565b6002600b54141561092e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109259061345c565b60405180910390fd5b6002600b819055506109c46109416107b8565b10610981576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109789061321c565b60405180910390fd5b600d60009054906101000a900460ff16156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c89061321c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610a43919061347c565b60206040518083038186803b158015610a5b57600080fd5b505afa158015610a6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a939190612a1f565b73ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae09061319c565b60405180910390fd5b600e54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b639061343c565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bbc9190613561565b92505081905550610bcd3382611b70565b6001600b8190555050565b610be0611775565b73ffffffffffffffffffffffffffffffffffffffff16610bfe611048565b73ffffffffffffffffffffffffffffffffffffffff1614610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b9061337c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c9a573d6000803e3d6000fd5b50565b610cb88383836040518060200160405280600081525061130b565b505050565b6000610cc76107b8565b8210610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061341c565b60405180910390fd5b60088281548110610d1c57610d1b61386b565b5b90600052602060002001549050919050565b610d36611775565b73ffffffffffffffffffffffffffffffffffffffff16610d54611048565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da19061337c565b60405180910390fd5b80600c9080519060200190610dc09291906127f1565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e649061331c565b60405180910390fd5b80915050919050565b6060600c8054610e85906136d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb1906136d2565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f70906132fc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fc8611775565b73ffffffffffffffffffffffffffffffffffffffff16610fe6611048565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110339061337c565b60405180910390fd5b6110466000611b8e565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611081906136d2565b80601f01602080910402602001604051908101604052809291908181526020018280546110ad906136d2565b80156110fa5780601f106110cf576101008083540402835291602001916110fa565b820191906000526020600020905b8154815290600101906020018083116110dd57829003601f168201915b5050505050905090565b61110c611775565b73ffffffffffffffffffffffffffffffffffffffff1661112a611048565b73ffffffffffffffffffffffffffffffffffffffff1614611180576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111779061337c565b60405180910390fd5b80600e8190555050565b611192611775565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f79061327c565b60405180910390fd5b806005600061120d611775565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112ba611775565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ff919061315f565b60405180910390a35050565b61131c611316611775565b83611836565b61135b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611352906133fc565b60405180910390fd5b61136784848484611c54565b50505050565b606061137882611709565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae906133bc565b60405180910390fd5b60006113c1611cb0565b905060008151116113e1576040518060200160405280600081525061140c565b806113eb84611d42565b6040516020016113fc9291906130d4565b6040516020818303038152906040525b915050919050565b61141c611775565b73ffffffffffffffffffffffffffffffffffffffff1661143a611048565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114879061337c565b60405180910390fd5b600d60009054906101000a900460ff16156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d7906132bc565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61159f611775565b73ffffffffffffffffffffffffffffffffffffffff166115bd611048565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a9061337c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a906131fc565b60405180910390fd5b61168c81611b8e565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611702575061170182611ea3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117f083610dc4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061184182611709565b611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061329c565b60405180910390fd5b600061188b83610dc4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118fa57508373ffffffffffffffffffffffffffffffffffffffff166118e28461061b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061190b575061190a8185611503565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661193482610dc4565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119819061339c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f19061325c565b60405180910390fd5b611a05838383611f85565b611a1060008261177d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6091906135e8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab79190613561565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611b8a828260405180602001604052806000815250611f95565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c5f848484611914565b611c6b84848484611ff0565b611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca1906131dc565b60405180910390fd5b50505050565b6060600c8054611cbf906136d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ceb906136d2565b8015611d385780601f10611d0d57610100808354040283529160200191611d38565b820191906000526020600020905b815481529060010190602001808311611d1b57829003601f168201915b5050505050905090565b60606000821415611d8a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e9e565b600082905060005b60008214611dbc578080611da590613735565b915050600a82611db591906135b7565b9150611d92565b60008167ffffffffffffffff811115611dd857611dd761389a565b5b6040519080825280601f01601f191660200182016040528015611e0a5781602001600182028036833780820191505090505b5090505b60008514611e9757600182611e2391906135e8565b9150600a85611e32919061377e565b6030611e3e9190613561565b60f81b818381518110611e5457611e5361386b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e9091906135b7565b9450611e0e565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f6e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f7e5750611f7d82612187565b5b9050919050565b611f908383836121f1565b505050565b611f9f8383612305565b611fac6000848484611ff0565b611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe2906131dc565b60405180910390fd5b505050565b60006120118473ffffffffffffffffffffffffffffffffffffffff166124d3565b1561217a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261203a611775565b8786866040518563ffffffff1660e01b815260040161205c9493929190613113565b602060405180830381600087803b15801561207657600080fd5b505af19250505080156120a757506040513d601f19601f820116820180604052508101906120a49190612c3c565b60015b61212a573d80600081146120d7576040519150601f19603f3d011682016040523d82523d6000602084013e6120dc565b606091505b50600081511415612122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612119906131dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061217f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121fc8383836124e6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561223f5761223a816124eb565b61227e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461227d5761227c8382612534565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c1576122bc816126a1565b612300565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122ff576122fe8282612772565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c9061333c565b60405180910390fd5b61237e81611709565b156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b59061323c565b60405180910390fd5b6123ca60008383611f85565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241a9190613561565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161254184610f08565b61254b91906135e8565b9050600060076000848152602001908152602001600020549050818114612630576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126b591906135e8565b90506000600960008481526020019081526020016000205490506000600883815481106126e5576126e461386b565b5b9060005260206000200154905080600883815481106127075761270661386b565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127565761275561383c565b5b6001900381819060005260206000200160009055905550505050565b600061277d83610f08565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546127fd906136d2565b90600052602060002090601f01602090048101928261281f5760008555612866565b82601f1061283857805160ff1916838001178555612866565b82800160010185558215612866579182015b8281111561286557825182559160200191906001019061284a565b5b5090506128739190612877565b5090565b5b80821115612890576000816000905550600101612878565b5090565b60006128a76128a2846134bc565b613497565b9050828152602081018484840111156128c3576128c26138ce565b5b6128ce848285613690565b509392505050565b60006128e96128e4846134ed565b613497565b905082815260208101848484011115612905576129046138ce565b5b612910848285613690565b509392505050565b60008135905061292781613ed7565b92915050565b60008151905061293c81613ed7565b92915050565b60008135905061295181613eee565b92915050565b60008135905061296681613f05565b92915050565b60008151905061297b81613f05565b92915050565b600082601f830112612996576129956138c9565b5b81356129a6848260208601612894565b91505092915050565b600082601f8301126129c4576129c36138c9565b5b81356129d48482602086016128d6565b91505092915050565b6000813590506129ec81613f1c565b92915050565b600060208284031215612a0857612a076138d8565b5b6000612a1684828501612918565b91505092915050565b600060208284031215612a3557612a346138d8565b5b6000612a438482850161292d565b91505092915050565b60008060408385031215612a6357612a626138d8565b5b6000612a7185828601612918565b9250506020612a8285828601612918565b9150509250929050565b600080600060608486031215612aa557612aa46138d8565b5b6000612ab386828701612918565b9350506020612ac486828701612918565b9250506040612ad5868287016129dd565b9150509250925092565b60008060008060808587031215612af957612af86138d8565b5b6000612b0787828801612918565b9450506020612b1887828801612918565b9350506040612b29878288016129dd565b925050606085013567ffffffffffffffff811115612b4a57612b496138d3565b5b612b5687828801612981565b91505092959194509250565b60008060408385031215612b7957612b786138d8565b5b6000612b8785828601612918565b9250506020612b9885828601612942565b9150509250929050565b60008060408385031215612bb957612bb86138d8565b5b6000612bc785828601612918565b9250506020612bd8858286016129dd565b9150509250929050565b600060208284031215612bf857612bf76138d8565b5b6000612c0684828501612942565b91505092915050565b600060208284031215612c2557612c246138d8565b5b6000612c3384828501612957565b91505092915050565b600060208284031215612c5257612c516138d8565b5b6000612c608482850161296c565b91505092915050565b600060208284031215612c7f57612c7e6138d8565b5b600082013567ffffffffffffffff811115612c9d57612c9c6138d3565b5b612ca9848285016129af565b91505092915050565b600060208284031215612cc857612cc76138d8565b5b6000612cd6848285016129dd565b91505092915050565b612ce88161361c565b82525050565b612cf78161362e565b82525050565b6000612d088261351e565b612d128185613534565b9350612d2281856020860161369f565b612d2b816138dd565b840191505092915050565b6000612d4182613529565b612d4b8185613545565b9350612d5b81856020860161369f565b612d64816138dd565b840191505092915050565b6000612d7a82613529565b612d848185613556565b9350612d9481856020860161369f565b80840191505092915050565b6000612dad601083613545565b9150612db8826138ee565b602082019050919050565b6000612dd0602b83613545565b9150612ddb82613917565b604082019050919050565b6000612df3603283613545565b9150612dfe82613966565b604082019050919050565b6000612e16602683613545565b9150612e21826139b5565b604082019050919050565b6000612e39601183613545565b9150612e4482613a04565b602082019050919050565b6000612e5c601c83613545565b9150612e6782613a2d565b602082019050919050565b6000612e7f602483613545565b9150612e8a82613a56565b604082019050919050565b6000612ea2601983613545565b9150612ead82613aa5565b602082019050919050565b6000612ec5602c83613545565b9150612ed082613ace565b604082019050919050565b6000612ee8602683613545565b9150612ef382613b1d565b604082019050919050565b6000612f0b603883613545565b9150612f1682613b6c565b604082019050919050565b6000612f2e602a83613545565b9150612f3982613bbb565b604082019050919050565b6000612f51602983613545565b9150612f5c82613c0a565b604082019050919050565b6000612f74602083613545565b9150612f7f82613c59565b602082019050919050565b6000612f97602c83613545565b9150612fa282613c82565b604082019050919050565b6000612fba602083613545565b9150612fc582613cd1565b602082019050919050565b6000612fdd602983613545565b9150612fe882613cfa565b604082019050919050565b6000613000602f83613545565b915061300b82613d49565b604082019050919050565b6000613023602183613545565b915061302e82613d98565b604082019050919050565b6000613046603183613545565b915061305182613de7565b604082019050919050565b6000613069602c83613545565b915061307482613e36565b604082019050919050565b600061308c601683613545565b915061309782613e85565b602082019050919050565b60006130af601f83613545565b91506130ba82613eae565b602082019050919050565b6130ce81613686565b82525050565b60006130e08285612d6f565b91506130ec8284612d6f565b91508190509392505050565b600060208201905061310d6000830184612cdf565b92915050565b60006080820190506131286000830187612cdf565b6131356020830186612cdf565b61314260408301856130c5565b81810360608301526131548184612cfd565b905095945050505050565b60006020820190506131746000830184612cee565b92915050565b600060208201905081810360008301526131948184612d36565b905092915050565b600060208201905081810360008301526131b581612da0565b9050919050565b600060208201905081810360008301526131d581612dc3565b9050919050565b600060208201905081810360008301526131f581612de6565b9050919050565b6000602082019050818103600083015261321581612e09565b9050919050565b6000602082019050818103600083015261323581612e2c565b9050919050565b6000602082019050818103600083015261325581612e4f565b9050919050565b6000602082019050818103600083015261327581612e72565b9050919050565b6000602082019050818103600083015261329581612e95565b9050919050565b600060208201905081810360008301526132b581612eb8565b9050919050565b600060208201905081810360008301526132d581612edb565b9050919050565b600060208201905081810360008301526132f581612efe565b9050919050565b6000602082019050818103600083015261331581612f21565b9050919050565b6000602082019050818103600083015261333581612f44565b9050919050565b6000602082019050818103600083015261335581612f67565b9050919050565b6000602082019050818103600083015261337581612f8a565b9050919050565b6000602082019050818103600083015261339581612fad565b9050919050565b600060208201905081810360008301526133b581612fd0565b9050919050565b600060208201905081810360008301526133d581612ff3565b9050919050565b600060208201905081810360008301526133f581613016565b9050919050565b6000602082019050818103600083015261341581613039565b9050919050565b600060208201905081810360008301526134358161305c565b9050919050565b600060208201905081810360008301526134558161307f565b9050919050565b60006020820190508181036000830152613475816130a2565b9050919050565b600060208201905061349160008301846130c5565b92915050565b60006134a16134b2565b90506134ad8282613704565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d7576134d661389a565b5b6134e0826138dd565b9050602081019050919050565b600067ffffffffffffffff8211156135085761350761389a565b5b613511826138dd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061356c82613686565b915061357783613686565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ac576135ab6137af565b5b828201905092915050565b60006135c282613686565b91506135cd83613686565b9250826135dd576135dc6137de565b5b828204905092915050565b60006135f382613686565b91506135fe83613686565b925082821015613611576136106137af565b5b828203905092915050565b600061362782613666565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136bd5780820151818401526020810190506136a2565b838111156136cc576000848401525b50505050565b600060028204905060018216806136ea57607f821691505b602082108114156136fe576136fd61380d565b5b50919050565b61370d826138dd565b810181811067ffffffffffffffff8211171561372c5761372b61389a565b5b80604052505050565b600061374082613686565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613773576137726137af565b5b600182019050919050565b600061378982613686565b915061379483613686565b9250826137a4576137a36137de565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f742057697a617264206f776e657200000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420756e646f20776861742068617320616c72656164792062656560008201527f6e20646f6e650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4164647265737320616c7265616479206d696e74656400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613ee08161361c565b8114613eeb57600080fd5b50565b613ef78161362e565b8114613f0257600080fd5b50565b613f0e8161363a565b8114613f1957600080fd5b50565b613f2581613686565b8114613f3057600080fd5b5056fea2646970667358221220be68cae302844d23743cea89eb68e4a6901eafbffe9d6e14e4d0d975c64ca1bd64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64657864576b71333676616e395046745a55417455524a52526d68654d77624c664a366658795966387756752f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a22cb46511610097578063ca0b4d7b11610071578063ca0b4d7b146104f1578063e6afcd131461050d578063e985e9c51461052b578063f2fde38b1461055b576101c4565b8063a22cb46514610489578063b88d4fde146104a5578063c87b56dd146104c1576101c4565b8063715018a6116100d3578063715018a6146104275780638da5cb5b1461043157806395d89b411461044f5780639feab12f1461046d576101c4565b80636352211e146103a95780636c0360eb146103d957806370a08231146103f7576101c4565b80632f745c59116101665780633ccfd60b116101405780633ccfd60b1461033757806342842e0e146103415780634f6ccce71461035d57806355f804b31461038d576101c4565b80632f745c59146102cd57806332cb6b0c146102fd578063379607f51461031b576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd146102635780631e7269c51461028157806323b872dd146102b1576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612c0f565b610577565b6040516101f0919061315f565b60405180910390f35b610201610589565b60405161020e919061317a565b60405180910390f35b610231600480360381019061022c9190612cb2565b61061b565b60405161023e91906130f8565b60405180910390f35b610261600480360381019061025c9190612ba2565b6106a0565b005b61026b6107b8565b604051610278919061347c565b60405180910390f35b61029b600480360381019061029691906129f2565b6107c5565b6040516102a8919061347c565b60405180910390f35b6102cb60048036038101906102c69190612a8c565b6107dd565b005b6102e760048036038101906102e29190612ba2565b61083d565b6040516102f4919061347c565b60405180910390f35b6103056108e2565b604051610312919061347c565b60405180910390f35b61033560048036038101906103309190612cb2565b6108e8565b005b61033f610bd8565b005b61035b60048036038101906103569190612a8c565b610c9d565b005b61037760048036038101906103729190612cb2565b610cbd565b604051610384919061347c565b60405180910390f35b6103a760048036038101906103a29190612c69565b610d2e565b005b6103c360048036038101906103be9190612cb2565b610dc4565b6040516103d091906130f8565b60405180910390f35b6103e1610e76565b6040516103ee919061317a565b60405180910390f35b610411600480360381019061040c91906129f2565b610f08565b60405161041e919061347c565b60405180910390f35b61042f610fc0565b005b610439611048565b60405161044691906130f8565b60405180910390f35b610457611072565b604051610464919061317a565b60405180910390f35b61048760048036038101906104829190612cb2565b611104565b005b6104a3600480360381019061049e9190612b62565b61118a565b005b6104bf60048036038101906104ba9190612adf565b61130b565b005b6104db60048036038101906104d69190612cb2565b61136d565b6040516104e8919061317a565b60405180910390f35b61050b60048036038101906105069190612be2565b611414565b005b6105156114fd565b604051610522919061347c565b60405180910390f35b61054560048036038101906105409190612a4c565b611503565b604051610552919061315f565b60405180910390f35b610575600480360381019061057091906129f2565b611597565b005b60006105828261168f565b9050919050565b606060008054610598906136d2565b80601f01602080910402602001604051908101604052809291908181526020018280546105c4906136d2565b80156106115780601f106105e657610100808354040283529160200191610611565b820191906000526020600020905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b600061062682611709565b610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c9061335c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ab82610dc4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561071c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610713906133dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661073b611775565b73ffffffffffffffffffffffffffffffffffffffff16148061076a575061076981610764611775565b611503565b5b6107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a0906132dc565b60405180910390fd5b6107b3838361177d565b505050565b6000600880549050905090565b600f6020528060005260406000206000915090505481565b6107ee6107e8611775565b82611836565b61082d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610824906133fc565b60405180910390fd5b610838838383611914565b505050565b600061084883610f08565b8210610889576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610880906131bc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109c481565b6002600b54141561092e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109259061345c565b60405180910390fd5b6002600b819055506109c46109416107b8565b10610981576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109789061321c565b60405180910390fd5b600d60009054906101000a900460ff16156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c89061321c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610a43919061347c565b60206040518083038186803b158015610a5b57600080fd5b505afa158015610a6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a939190612a1f565b73ffffffffffffffffffffffffffffffffffffffff1614610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae09061319c565b60405180910390fd5b600e54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b639061343c565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bbc9190613561565b92505081905550610bcd3382611b70565b6001600b8190555050565b610be0611775565b73ffffffffffffffffffffffffffffffffffffffff16610bfe611048565b73ffffffffffffffffffffffffffffffffffffffff1614610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b9061337c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c9a573d6000803e3d6000fd5b50565b610cb88383836040518060200160405280600081525061130b565b505050565b6000610cc76107b8565b8210610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061341c565b60405180910390fd5b60088281548110610d1c57610d1b61386b565b5b90600052602060002001549050919050565b610d36611775565b73ffffffffffffffffffffffffffffffffffffffff16610d54611048565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da19061337c565b60405180910390fd5b80600c9080519060200190610dc09291906127f1565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e649061331c565b60405180910390fd5b80915050919050565b6060600c8054610e85906136d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb1906136d2565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f70906132fc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fc8611775565b73ffffffffffffffffffffffffffffffffffffffff16610fe6611048565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110339061337c565b60405180910390fd5b6110466000611b8e565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611081906136d2565b80601f01602080910402602001604051908101604052809291908181526020018280546110ad906136d2565b80156110fa5780601f106110cf576101008083540402835291602001916110fa565b820191906000526020600020905b8154815290600101906020018083116110dd57829003601f168201915b5050505050905090565b61110c611775565b73ffffffffffffffffffffffffffffffffffffffff1661112a611048565b73ffffffffffffffffffffffffffffffffffffffff1614611180576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111779061337c565b60405180910390fd5b80600e8190555050565b611192611775565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f79061327c565b60405180910390fd5b806005600061120d611775565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112ba611775565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ff919061315f565b60405180910390a35050565b61131c611316611775565b83611836565b61135b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611352906133fc565b60405180910390fd5b61136784848484611c54565b50505050565b606061137882611709565b6113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae906133bc565b60405180910390fd5b60006113c1611cb0565b905060008151116113e1576040518060200160405280600081525061140c565b806113eb84611d42565b6040516020016113fc9291906130d4565b6040516020818303038152906040525b915050919050565b61141c611775565b73ffffffffffffffffffffffffffffffffffffffff1661143a611048565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114879061337c565b60405180910390fd5b600d60009054906101000a900460ff16156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d7906132bc565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61159f611775565b73ffffffffffffffffffffffffffffffffffffffff166115bd611048565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a9061337c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a906131fc565b60405180910390fd5b61168c81611b8e565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611702575061170182611ea3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117f083610dc4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061184182611709565b611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061329c565b60405180910390fd5b600061188b83610dc4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118fa57508373ffffffffffffffffffffffffffffffffffffffff166118e28461061b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061190b575061190a8185611503565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661193482610dc4565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119819061339c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f19061325c565b60405180910390fd5b611a05838383611f85565b611a1060008261177d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6091906135e8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab79190613561565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611b8a828260405180602001604052806000815250611f95565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c5f848484611914565b611c6b84848484611ff0565b611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca1906131dc565b60405180910390fd5b50505050565b6060600c8054611cbf906136d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ceb906136d2565b8015611d385780601f10611d0d57610100808354040283529160200191611d38565b820191906000526020600020905b815481529060010190602001808311611d1b57829003601f168201915b5050505050905090565b60606000821415611d8a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e9e565b600082905060005b60008214611dbc578080611da590613735565b915050600a82611db591906135b7565b9150611d92565b60008167ffffffffffffffff811115611dd857611dd761389a565b5b6040519080825280601f01601f191660200182016040528015611e0a5781602001600182028036833780820191505090505b5090505b60008514611e9757600182611e2391906135e8565b9150600a85611e32919061377e565b6030611e3e9190613561565b60f81b818381518110611e5457611e5361386b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e9091906135b7565b9450611e0e565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f6e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f7e5750611f7d82612187565b5b9050919050565b611f908383836121f1565b505050565b611f9f8383612305565b611fac6000848484611ff0565b611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe2906131dc565b60405180910390fd5b505050565b60006120118473ffffffffffffffffffffffffffffffffffffffff166124d3565b1561217a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261203a611775565b8786866040518563ffffffff1660e01b815260040161205c9493929190613113565b602060405180830381600087803b15801561207657600080fd5b505af19250505080156120a757506040513d601f19601f820116820180604052508101906120a49190612c3c565b60015b61212a573d80600081146120d7576040519150601f19603f3d011682016040523d82523d6000602084013e6120dc565b606091505b50600081511415612122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612119906131dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061217f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121fc8383836124e6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561223f5761223a816124eb565b61227e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461227d5761227c8382612534565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c1576122bc816126a1565b612300565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122ff576122fe8282612772565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c9061333c565b60405180910390fd5b61237e81611709565b156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b59061323c565b60405180910390fd5b6123ca60008383611f85565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241a9190613561565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161254184610f08565b61254b91906135e8565b9050600060076000848152602001908152602001600020549050818114612630576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126b591906135e8565b90506000600960008481526020019081526020016000205490506000600883815481106126e5576126e461386b565b5b9060005260206000200154905080600883815481106127075761270661386b565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127565761275561383c565b5b6001900381819060005260206000200160009055905550505050565b600061277d83610f08565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546127fd906136d2565b90600052602060002090601f01602090048101928261281f5760008555612866565b82601f1061283857805160ff1916838001178555612866565b82800160010185558215612866579182015b8281111561286557825182559160200191906001019061284a565b5b5090506128739190612877565b5090565b5b80821115612890576000816000905550600101612878565b5090565b60006128a76128a2846134bc565b613497565b9050828152602081018484840111156128c3576128c26138ce565b5b6128ce848285613690565b509392505050565b60006128e96128e4846134ed565b613497565b905082815260208101848484011115612905576129046138ce565b5b612910848285613690565b509392505050565b60008135905061292781613ed7565b92915050565b60008151905061293c81613ed7565b92915050565b60008135905061295181613eee565b92915050565b60008135905061296681613f05565b92915050565b60008151905061297b81613f05565b92915050565b600082601f830112612996576129956138c9565b5b81356129a6848260208601612894565b91505092915050565b600082601f8301126129c4576129c36138c9565b5b81356129d48482602086016128d6565b91505092915050565b6000813590506129ec81613f1c565b92915050565b600060208284031215612a0857612a076138d8565b5b6000612a1684828501612918565b91505092915050565b600060208284031215612a3557612a346138d8565b5b6000612a438482850161292d565b91505092915050565b60008060408385031215612a6357612a626138d8565b5b6000612a7185828601612918565b9250506020612a8285828601612918565b9150509250929050565b600080600060608486031215612aa557612aa46138d8565b5b6000612ab386828701612918565b9350506020612ac486828701612918565b9250506040612ad5868287016129dd565b9150509250925092565b60008060008060808587031215612af957612af86138d8565b5b6000612b0787828801612918565b9450506020612b1887828801612918565b9350506040612b29878288016129dd565b925050606085013567ffffffffffffffff811115612b4a57612b496138d3565b5b612b5687828801612981565b91505092959194509250565b60008060408385031215612b7957612b786138d8565b5b6000612b8785828601612918565b9250506020612b9885828601612942565b9150509250929050565b60008060408385031215612bb957612bb86138d8565b5b6000612bc785828601612918565b9250506020612bd8858286016129dd565b9150509250929050565b600060208284031215612bf857612bf76138d8565b5b6000612c0684828501612942565b91505092915050565b600060208284031215612c2557612c246138d8565b5b6000612c3384828501612957565b91505092915050565b600060208284031215612c5257612c516138d8565b5b6000612c608482850161296c565b91505092915050565b600060208284031215612c7f57612c7e6138d8565b5b600082013567ffffffffffffffff811115612c9d57612c9c6138d3565b5b612ca9848285016129af565b91505092915050565b600060208284031215612cc857612cc76138d8565b5b6000612cd6848285016129dd565b91505092915050565b612ce88161361c565b82525050565b612cf78161362e565b82525050565b6000612d088261351e565b612d128185613534565b9350612d2281856020860161369f565b612d2b816138dd565b840191505092915050565b6000612d4182613529565b612d4b8185613545565b9350612d5b81856020860161369f565b612d64816138dd565b840191505092915050565b6000612d7a82613529565b612d848185613556565b9350612d9481856020860161369f565b80840191505092915050565b6000612dad601083613545565b9150612db8826138ee565b602082019050919050565b6000612dd0602b83613545565b9150612ddb82613917565b604082019050919050565b6000612df3603283613545565b9150612dfe82613966565b604082019050919050565b6000612e16602683613545565b9150612e21826139b5565b604082019050919050565b6000612e39601183613545565b9150612e4482613a04565b602082019050919050565b6000612e5c601c83613545565b9150612e6782613a2d565b602082019050919050565b6000612e7f602483613545565b9150612e8a82613a56565b604082019050919050565b6000612ea2601983613545565b9150612ead82613aa5565b602082019050919050565b6000612ec5602c83613545565b9150612ed082613ace565b604082019050919050565b6000612ee8602683613545565b9150612ef382613b1d565b604082019050919050565b6000612f0b603883613545565b9150612f1682613b6c565b604082019050919050565b6000612f2e602a83613545565b9150612f3982613bbb565b604082019050919050565b6000612f51602983613545565b9150612f5c82613c0a565b604082019050919050565b6000612f74602083613545565b9150612f7f82613c59565b602082019050919050565b6000612f97602c83613545565b9150612fa282613c82565b604082019050919050565b6000612fba602083613545565b9150612fc582613cd1565b602082019050919050565b6000612fdd602983613545565b9150612fe882613cfa565b604082019050919050565b6000613000602f83613545565b915061300b82613d49565b604082019050919050565b6000613023602183613545565b915061302e82613d98565b604082019050919050565b6000613046603183613545565b915061305182613de7565b604082019050919050565b6000613069602c83613545565b915061307482613e36565b604082019050919050565b600061308c601683613545565b915061309782613e85565b602082019050919050565b60006130af601f83613545565b91506130ba82613eae565b602082019050919050565b6130ce81613686565b82525050565b60006130e08285612d6f565b91506130ec8284612d6f565b91508190509392505050565b600060208201905061310d6000830184612cdf565b92915050565b60006080820190506131286000830187612cdf565b6131356020830186612cdf565b61314260408301856130c5565b81810360608301526131548184612cfd565b905095945050505050565b60006020820190506131746000830184612cee565b92915050565b600060208201905081810360008301526131948184612d36565b905092915050565b600060208201905081810360008301526131b581612da0565b9050919050565b600060208201905081810360008301526131d581612dc3565b9050919050565b600060208201905081810360008301526131f581612de6565b9050919050565b6000602082019050818103600083015261321581612e09565b9050919050565b6000602082019050818103600083015261323581612e2c565b9050919050565b6000602082019050818103600083015261325581612e4f565b9050919050565b6000602082019050818103600083015261327581612e72565b9050919050565b6000602082019050818103600083015261329581612e95565b9050919050565b600060208201905081810360008301526132b581612eb8565b9050919050565b600060208201905081810360008301526132d581612edb565b9050919050565b600060208201905081810360008301526132f581612efe565b9050919050565b6000602082019050818103600083015261331581612f21565b9050919050565b6000602082019050818103600083015261333581612f44565b9050919050565b6000602082019050818103600083015261335581612f67565b9050919050565b6000602082019050818103600083015261337581612f8a565b9050919050565b6000602082019050818103600083015261339581612fad565b9050919050565b600060208201905081810360008301526133b581612fd0565b9050919050565b600060208201905081810360008301526133d581612ff3565b9050919050565b600060208201905081810360008301526133f581613016565b9050919050565b6000602082019050818103600083015261341581613039565b9050919050565b600060208201905081810360008301526134358161305c565b9050919050565b600060208201905081810360008301526134558161307f565b9050919050565b60006020820190508181036000830152613475816130a2565b9050919050565b600060208201905061349160008301846130c5565b92915050565b60006134a16134b2565b90506134ad8282613704565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d7576134d661389a565b5b6134e0826138dd565b9050602081019050919050565b600067ffffffffffffffff8211156135085761350761389a565b5b613511826138dd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061356c82613686565b915061357783613686565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ac576135ab6137af565b5b828201905092915050565b60006135c282613686565b91506135cd83613686565b9250826135dd576135dc6137de565b5b828204905092915050565b60006135f382613686565b91506135fe83613686565b925082821015613611576136106137af565b5b828203905092915050565b600061362782613666565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136bd5780820151818401526020810190506136a2565b838111156136cc576000848401525b50505050565b600060028204905060018216806136ea57607f821691505b602082108114156136fe576136fd61380d565b5b50919050565b61370d826138dd565b810181811067ffffffffffffffff8211171561372c5761372b61389a565b5b80604052505050565b600061374082613686565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613773576137726137af565b5b600182019050919050565b600061378982613686565b915061379483613686565b9250826137a4576137a36137de565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f742057697a617264206f776e657200000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420756e646f20776861742068617320616c72656164792062656560008201527f6e20646f6e650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4164647265737320616c7265616479206d696e74656400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613ee08161361c565b8114613eeb57600080fd5b50565b613ef78161362e565b8114613f0257600080fd5b50565b613f0e8161363a565b8114613f1957600080fd5b50565b613f2581613686565b8114613f3057600080fd5b5056fea2646970667358221220be68cae302844d23743cea89eb68e4a6901eafbffe9d6e14e4d0d975c64ca1bd64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64657864576b71333676616e395046745a55417455524a52526d68654d77624c664a366658795966387756752f00000000000000000000

-----Decoded View---------------
Arg [0] : initialBaseURI (string): ipfs://QmdexdWkq36van9PFtZUAtURJRRmheMwbLfJ6fXyYf8wVu/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d64657864576b71333676616e395046745a55417455524a
Arg [3] : 52526d68654d77624c664a366658795966387756752f00000000000000000000


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.