ETH Price: $2,551.18 (-0.50%)

Token

Confecta (CFKTA)
 

Overview

Max Total Supply

100 CFKTA

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
indoorkid.eth
Balance
1 CFKTA
0xc33a74718826b3e7cb15f821067d0f2ce8dc3ecb
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:
Confecta

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Confecta.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

///////////////////////////////////////////////////////
//   ___  _____  _  _  ____  ____  ___  ____   __    //
//  / __)(  _  )( \( )( ___)( ___)/ __)(_  _) /__\   //
// ( (__  )(_)(  )  (  )__)  )__)( (__   )(  /(__)\  //
//  \___)(_____)(_)\_)(__)  (____)\___) (__)(__)(__) //
//                                                   //
///////////////////////////////////////////////////////
// by Nick Kuder

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";

contract Confecta is
    ERC721,
    ERC721Enumerable,
    Pausable,
    Ownable,
    ERC721Burnable
{
    uint256 private _tokenIdCounter;

    string private baseUri;
    uint256 public mintPrice; // in Wei
    uint256 public availSupply; // public supply
    // mapping address to number of works it can mint
    mapping(address => uint8) public whitelist; // Rings Genesis specific optimization: uint8 has max of 255. no one address can hold more than 255 pieces because the RG supply is 65

    event Mint(address indexed _purchaser, uint256 _tokenId, uint256 _price);

    modifier supplyAvailable() {
        require(availSupply > 0, "Reached max public token supply");
        _;
    }

    constructor(
        uint256 _mintPrice,
        uint256 _availSupply,
        string memory _baseUri
    ) ERC721("Confecta", "CFKTA") {
        mintPrice = _mintPrice;
        availSupply = _availSupply;
        baseUri = _baseUri;

        pause();
    }

    function setAvailSupply(uint256 _availSupply) public onlyOwner {
        availSupply = _availSupply;
    }

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    // add a single entry to whitelist. can also be used to remove if _mints set to 0.
    function setWhitelistEntry(address _whitelister, uint8 _mints)
        public
        onlyOwner
    {
        whitelist[_whitelister] = _mints;
    }

    // attempt to set many entries in whitelist. refer to setWhitelistEntry for more info.
    function setWhiteList(address[] memory _whitelisters, uint8[] memory _mints)
        public
        onlyOwner
    {
        require(
            _whitelisters.length == _mints.length,
            "Length of Whitelistees Does Not Match Length of Quantity of Mints Per Whitelistee"
        );
        for (uint256 i = 0; i < _whitelisters.length; i++) {
            whitelist[_whitelisters[i]] = _mints[i];
        }
    }

    // mint one of whitelisters token
    function whitelistMint() public {
        bool onWhitelist = whitelist[msg.sender] > 0;
        require(onWhitelist, "Minter is not on Whitelist");

        // run side-effect first
        // decrease
        whitelist[msg.sender] -= 1;
        mint(msg.sender, 0);
    }

    // mint all of whitelisters tokens with one call
    function whitelistMintAll() public {
        uint8 mintsAvail = whitelist[msg.sender];
        require(mintsAvail > 0, "Minter is not on Whitelist");

        // run side-effect first
        // decrease
        for (uint8 i = 0; i < mintsAvail; i++) {
            whitelist[msg.sender] -= 1;
            mint(msg.sender, 0);
        }
    }

    // purchase token with mintPrice if not on whitelist
    function purchase() public payable supplyAvailable {
        // check can mint
        bool notOnWhitelist = whitelist[msg.sender] <= 0; // either not on whitelist or ran out of mints
        if (notOnWhitelist) {
            // make sure Eth was sent
            require(
                msg.value == mintPrice,
                "Eth Value Not Equal to Mint Price"
            );
        } else {
            revert("Purchaser is on Whitelist; Call `whitelistMint` instead");
        }

        // passed check, able to mint
        availSupply -= 1;
        mint(msg.sender, msg.value);
    }

    function mint(address _to, uint256 _mintPrice) internal {
        uint256 tokenId = _tokenIdCounter;
        _tokenIdCounter++;
        _safeMint(_to, tokenId);
        emit Mint(msg.sender, tokenId, _mintPrice);
    }

    // withdraw all ether from this contract to owner
    function withdraw() public onlyOwner {
        // get the amount of ether stored in this contract
        uint256 amount = address(this).balance;

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

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

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

    function ownerMint() public onlyOwner {
        mint(owner(), 0);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        // pausable doesnt apply to owner in this case
        if (msg.sender != owner() && paused()) {
            revert("Pausable: paused");
        }
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // OPENZEPPELIN GENERATED CODE: start
    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    // The following functions are overrides required by Solidity.

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    // OPENZEPPELIN GENERATED CODE: end
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

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 4 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 15 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 15 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_availSupply","type":"uint256"},{"internalType":"string","name":"_baseUri","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":"_purchaser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"Mint","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":[],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchase","outputs":[],"stateMutability":"payable","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":"uint256","name":"_availSupply","type":"uint256"}],"name":"setAvailSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelisters","type":"address[]"},{"internalType":"uint8[]","name":"_mints","type":"uint8[]"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelister","type":"address"},{"internalType":"uint8","name":"_mints","type":"uint8"}],"name":"setWhitelistEntry","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620057ec380380620057ec8339818101604052810190620000379190620004f3565b6040518060400160405280600881526020017f436f6e66656374610000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f43464b54410000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620003ba565b508060019080519060200190620000d4929190620003ba565b5050506000600a60006101000a81548160ff02191690831515021790555062000112620001066200015260201b60201c565b6200015a60201b60201c565b82600d8190555081600e8190555080600c908051906020019062000138929190620003ba565b50620001496200022060201b60201c565b5050506200084d565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002306200015260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000256620002c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a69062000600565b60405180910390fd5b620002bf620002eb60201b60201c565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620002fb620003a360201b60201c565b156200033e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033590620005de565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200038a6200015260201b60201c565b604051620003999190620005c1565b60405180910390a1565b6000600a60009054906101000a900460ff16905090565b828054620003c89062000706565b90600052602060002090601f016020900481019282620003ec576000855562000438565b82601f106200040757805160ff191683800117855562000438565b8280016001018555821562000438579182015b82811115620004375782518255916020019190600101906200041a565b5b5090506200044791906200044b565b5090565b5b80821115620004665760008160009055506001016200044c565b5090565b6000620004816200047b846200064b565b62000622565b9050828152602081018484840111156200049a57600080fd5b620004a7848285620006d0565b509392505050565b600082601f830112620004c157600080fd5b8151620004d38482602086016200046a565b91505092915050565b600081519050620004ed8162000833565b92915050565b6000806000606084860312156200050957600080fd5b60006200051986828701620004dc565b93505060206200052c86828701620004dc565b925050604084015167ffffffffffffffff8111156200054a57600080fd5b6200055886828701620004af565b9150509250925092565b6200056d8162000692565b82525050565b60006200058260108362000681565b91506200058f82620007e1565b602082019050919050565b6000620005a960208362000681565b9150620005b6826200080a565b602082019050919050565b6000602082019050620005d8600083018462000562565b92915050565b60006020820190508181036000830152620005f98162000573565b9050919050565b600060208201905081810360008301526200061b816200059a565b9050919050565b60006200062e62000641565b90506200063c82826200073c565b919050565b6000604051905090565b600067ffffffffffffffff821115620006695762000668620007a1565b5b6200067482620007d0565b9050602081019050919050565b600082825260208201905092915050565b60006200069f82620006a6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006f0578082015181840152602081019050620006d3565b8381111562000700576000848401525b50505050565b600060028204905060018216806200071f57607f821691505b6020821081141562000736576200073562000772565b5b50919050565b6200074782620007d0565b810181811067ffffffffffffffff82111715620007695762000768620007a1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200083e81620006c6565b81146200084a57600080fd5b50565b614f8f806200085d6000396000f3fe60806040526004361061020f5760003560e01c80636817c76c116101185780639f5215dd116100a0578063b88d4fde1161006f578063b88d4fde14610708578063c87b56dd14610731578063e985e9c51461076e578063f2fde38b146107ab578063f4a0a528146107d45761020f565b80639f5215dd14610674578063a22cb4651461069f578063adcf8c04146106c8578063b12dc991146106f15761020f565b8063804f43cd116100e7578063804f43cd146105b35780638456cb59146105ca5780638da5cb5b146105e157806395d89b411461060c5780639b19251a146106375761020f565b80636817c76c1461051d57806370a0823114610548578063715018a614610585578063731027451461059c5761020f565b80633ccfd60b1161019b5780634f6ccce71161016a5780634f6ccce71461044557806355f804b3146104825780635c975abb146104ab5780636352211e146104d657806364edfbf0146105135761020f565b80633ccfd60b146103c55780633f4ba83a146103dc57806342842e0e146103f357806342966c681461041c5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd1461033657806325f3f9071461035f5780632f745c59146103885761020f565b806301ffc9a71461021457806306fdde03146102515780630732c1b61461027c578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613900565b6107fd565b6040516102489190613f0f565b60405180910390f35b34801561025d57600080fd5b5061026661080f565b6040516102739190613f2a565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613894565b6108a1565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190613993565b610a5d565b6040516102d99190613ea8565b60405180910390f35b3480156102ee57600080fd5b506103096004803603810190610304919061381c565b610ae2565b005b34801561031757600080fd5b50610320610bfa565b60405161032d91906142ac565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613716565b610c07565b005b34801561036b57600080fd5b5061038660048036038101906103819190613858565b610c67565b005b34801561039457600080fd5b506103af60048036038101906103aa919061381c565b610d3f565b6040516103bc91906142ac565b60405180910390f35b3480156103d157600080fd5b506103da610de4565b005b3480156103e857600080fd5b506103f1610f1c565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190613716565b610fa2565b005b34801561042857600080fd5b50610443600480360381019061043e9190613993565b610fc2565b005b34801561045157600080fd5b5061046c60048036038101906104679190613993565b61101e565b60405161047991906142ac565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613952565b6110b5565b005b3480156104b757600080fd5b506104c061114b565b6040516104cd9190613f0f565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190613993565b611162565b60405161050a9190613ea8565b60405180910390f35b61051b611214565b005b34801561052957600080fd5b50610532611361565b60405161053f91906142ac565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906136b1565b611367565b60405161057c91906142ac565b60405180910390f35b34801561059157600080fd5b5061059a61141f565b005b3480156105a857600080fd5b506105b16114a7565b005b3480156105bf57600080fd5b506105c86115e5565b005b3480156105d657600080fd5b506105df6116fd565b005b3480156105ed57600080fd5b506105f6611783565b6040516106039190613ea8565b60405180910390f35b34801561061857600080fd5b506106216117ad565b60405161062e9190613f2a565b60405180910390f35b34801561064357600080fd5b5061065e600480360381019061065991906136b1565b61183f565b60405161066b91906142f0565b60405180910390f35b34801561068057600080fd5b5061068961185f565b60405161069691906142ac565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906137e0565b611865565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613993565b61187b565b005b3480156106fd57600080fd5b50610706611901565b005b34801561071457600080fd5b5061072f600480360381019061072a9190613765565b611991565b005b34801561073d57600080fd5b5061075860048036038101906107539190613993565b6119f3565b6040516107659190613f2a565b60405180910390f35b34801561077a57600080fd5b50610795600480360381019061079091906136da565b611a9a565b6040516107a29190613f0f565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906136b1565b611b2e565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613993565b611c26565b005b600061080882611cac565b9050919050565b60606000805461081e906145ea565b80601f016020809104026020016040519081016040528092919081815260200182805461084a906145ea565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b6108a9611d26565b73ffffffffffffffffffffffffffffffffffffffff166108c7611783565b73ffffffffffffffffffffffffffffffffffffffff161461091d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610914906141ac565b60405180910390fd5b8051825114610961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109589061424c565b60405180910390fd5b60005b8251811015610a58578181815181106109a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60008584815181106109eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080610a509061464d565b915050610964565b505050565b6000610a6882611d2e565b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e9061418c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aed82611162565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b559061420c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7d611d26565b73ffffffffffffffffffffffffffffffffffffffff161480610bac5750610bab81610ba6611d26565b611a9a565b5b610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906140ec565b60405180910390fd5b610bf58383611d9a565b505050565b6000600880549050905090565b610c18610c12611d26565b82611e53565b610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e9061422c565b60405180910390fd5b610c62838383611f31565b505050565b610c6f611d26565b73ffffffffffffffffffffffffffffffffffffffff16610c8d611783565b73ffffffffffffffffffffffffffffffffffffffff1614610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda906141ac565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050565b6000610d4a83611367565b8210610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290613fac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dec611d26565b73ffffffffffffffffffffffffffffffffffffffff16610e0a611783565b73ffffffffffffffffffffffffffffffffffffffff1614610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e57906141ac565b60405180910390fd5b60004790506000610e6f611783565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e9290613e93565b60006040518083038185875af1925050503d8060008114610ecf576040519150601f19603f3d011682016040523d82523d6000602084013e610ed4565b606091505b5050905080610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061402c565b60405180910390fd5b5050565b610f24611d26565b73ffffffffffffffffffffffffffffffffffffffff16610f42611783565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906141ac565b60405180910390fd5b610fa061218d565b565b610fbd83838360405180602001604052806000815250611991565b505050565b610fd3610fcd611d26565b82611e53565b611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110099061428c565b60405180910390fd5b61101b8161222f565b50565b6000611028610bfa565b8210611069576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110609061426c565b60405180910390fd5b600882815481106110a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6110bd611d26565b73ffffffffffffffffffffffffffffffffffffffff166110db611783565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611128906141ac565b60405180910390fd5b80600c9080519060200190611147929190613394565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112029061412c565b60405180910390fd5b80915050919050565b6000600e5411611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090613f8c565b60405180910390fd5b600080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115905080156112ff57600d5434146112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f19061408c565b60405180910390fd5b61133a565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113319061414c565b60405180910390fd5b6001600e600082825461134d91906144bf565b9250508190555061135e3334612340565b50565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf9061410c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611427611d26565b73ffffffffffffffffffffffffffffffffffffffff16611445611783565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611492906141ac565b60405180910390fd5b6114a560006123be565b565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905060008160ff161161153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590613f6c565b60405180910390fd5b60005b8160ff168160ff1610156115e1576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166115ab91906144f3565b92506101000a81548160ff021916908360ff1602179055506115ce336000612340565b80806115d990614696565b915050611541565b5050565b600080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161190508061167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613f6c565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166116d791906144f3565b92506101000a81548160ff021916908360ff1602179055506116fa336000612340565b50565b611705611d26565b73ffffffffffffffffffffffffffffffffffffffff16611723611783565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906141ac565b60405180910390fd5b611781612484565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117bc906145ea565b80601f01602080910402602001604051908101604052809291908181526020018280546117e8906145ea565b80156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b5050505050905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e5481565b611877611870611d26565b8383612527565b5050565b611883611d26565b73ffffffffffffffffffffffffffffffffffffffff166118a1611783565b73ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee906141ac565b60405180910390fd5b80600e8190555050565b611909611d26565b73ffffffffffffffffffffffffffffffffffffffff16611927611783565b73ffffffffffffffffffffffffffffffffffffffff161461197d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611974906141ac565b60405180910390fd5b61198f611988611783565b6000612340565b565b6119a261199c611d26565b83611e53565b6119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d89061422c565b60405180910390fd5b6119ed84848484612694565b50505050565b60606119fe82611d2e565b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a34906141ec565b60405180910390fd5b6000611a476126f0565b90506000815111611a675760405180602001604052806000815250611a92565b80611a7184612782565b604051602001611a82929190613e6f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b36611d26565b73ffffffffffffffffffffffffffffffffffffffff16611b54611783565b73ffffffffffffffffffffffffffffffffffffffff1614611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba1906141ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190613fec565b60405180910390fd5b611c23816123be565b50565b611c2e611d26565b73ffffffffffffffffffffffffffffffffffffffff16611c4c611783565b73ffffffffffffffffffffffffffffffffffffffff1614611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c99906141ac565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1f5750611d1e8261292f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e0d83611162565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e5e82611d2e565b611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e94906140ac565b60405180910390fd5b6000611ea883611162565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f1757508373ffffffffffffffffffffffffffffffffffffffff16611eff84610a5d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f285750611f278185611a9a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f5182611162565b73ffffffffffffffffffffffffffffffffffffffff1614611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e906141cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e9061404c565b60405180910390fd5b612022838383612a11565b61202d600082611d9a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207d91906144bf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d49190614438565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61219561114b565b6121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613f4c565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612218611d26565b6040516122259190613ea8565b60405180910390a1565b600061223a82611162565b905061224881600084612a11565b612253600083611d9a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a391906144bf565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600b549050600b600081548092919061235a9061464d565b91905055506123698382612aa8565b3373ffffffffffffffffffffffffffffffffffffffff167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f82846040516123b19291906142c7565b60405180910390a2505050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61248c61114b565b156124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c3906140cc565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612510611d26565b60405161251d9190613ea8565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d9061406c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126879190613f0f565b60405180910390a3505050565b61269f848484611f31565b6126ab84848484612ac6565b6126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e190613fcc565b60405180910390fd5b50505050565b6060600c80546126ff906145ea565b80601f016020809104026020016040519081016040528092919081815260200182805461272b906145ea565b80156127785780601f1061274d57610100808354040283529160200191612778565b820191906000526020600020905b81548152906001019060200180831161275b57829003601f168201915b5050505050905090565b606060008214156127ca576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292a565b600082905060005b600082146127fc5780806127e59061464d565b915050600a826127f5919061448e565b91506127d2565b60008167ffffffffffffffff81111561283e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128705781602001600182028036833780820191505090505b5090505b600085146129235760018261288991906144bf565b9150600a8561289891906146c0565b60306128a49190614438565b60f81b8183815181106128e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291c919061448e565b9450612874565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a0a5750612a0982612c5d565b5b9050919050565b612a19611783565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015612a585750612a5761114b565b5b15612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8f906140cc565b60405180910390fd5b612aa3838383612cc7565b505050565b612ac2828260405180602001604052806000815250612ddb565b5050565b6000612ae78473ffffffffffffffffffffffffffffffffffffffff16612e36565b15612c50578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b10611d26565b8786866040518563ffffffff1660e01b8152600401612b329493929190613ec3565b602060405180830381600087803b158015612b4c57600080fd5b505af1925050508015612b7d57506040513d601f19601f82011682018060405250810190612b7a9190613929565b60015b612c00573d8060008114612bad576040519150601f19603f3d011682016040523d82523d6000602084013e612bb2565b606091505b50600081511415612bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bef90613fcc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c55565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cd2838383612e49565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d1557612d1081612e4e565b612d54565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d5357612d528382612e97565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d9757612d9281613004565b612dd6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612dd557612dd48282613147565b5b5b505050565b612de583836131c6565b612df26000848484612ac6565b612e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2890613fcc565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ea484611367565b612eae91906144bf565b9050600060076000848152602001908152602001600020549050818114612f93576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061301891906144bf565b905060006009600084815260200190815260200160002054905060006008838154811061306e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106130b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061312b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061315283611367565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322d9061416c565b60405180910390fd5b61323f81611d2e565b1561327f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132769061400c565b60405180910390fd5b61328b60008383612a11565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132db9190614438565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546133a0906145ea565b90600052602060002090601f0160209004810192826133c25760008555613409565b82601f106133db57805160ff1916838001178555613409565b82800160010185558215613409579182015b828111156134085782518255916020019190600101906133ed565b5b509050613416919061341a565b5090565b5b8082111561343357600081600090555060010161341b565b5090565b600061344a61344584614330565b61430b565b9050808382526020820190508285602086028201111561346957600080fd5b60005b85811015613499578161347f888261358b565b84526020840193506020830192505060018101905061346c565b5050509392505050565b60006134b66134b18461435c565b61430b565b905080838252602082019050828560208602820111156134d557600080fd5b60005b8581101561350557816134eb888261369c565b8452602084019350602083019250506001810190506134d8565b5050509392505050565b600061352261351d84614388565b61430b565b90508281526020810184848401111561353a57600080fd5b6135458482856145a8565b509392505050565b600061356061355b846143b9565b61430b565b90508281526020810184848401111561357857600080fd5b6135838482856145a8565b509392505050565b60008135905061359a81614ee6565b92915050565b600082601f8301126135b157600080fd5b81356135c1848260208601613437565b91505092915050565b600082601f8301126135db57600080fd5b81356135eb8482602086016134a3565b91505092915050565b60008135905061360381614efd565b92915050565b60008135905061361881614f14565b92915050565b60008151905061362d81614f14565b92915050565b600082601f83011261364457600080fd5b813561365484826020860161350f565b91505092915050565b600082601f83011261366e57600080fd5b813561367e84826020860161354d565b91505092915050565b60008135905061369681614f2b565b92915050565b6000813590506136ab81614f42565b92915050565b6000602082840312156136c357600080fd5b60006136d18482850161358b565b91505092915050565b600080604083850312156136ed57600080fd5b60006136fb8582860161358b565b925050602061370c8582860161358b565b9150509250929050565b60008060006060848603121561372b57600080fd5b60006137398682870161358b565b935050602061374a8682870161358b565b925050604061375b86828701613687565b9150509250925092565b6000806000806080858703121561377b57600080fd5b60006137898782880161358b565b945050602061379a8782880161358b565b93505060406137ab87828801613687565b925050606085013567ffffffffffffffff8111156137c857600080fd5b6137d487828801613633565b91505092959194509250565b600080604083850312156137f357600080fd5b60006138018582860161358b565b9250506020613812858286016135f4565b9150509250929050565b6000806040838503121561382f57600080fd5b600061383d8582860161358b565b925050602061384e85828601613687565b9150509250929050565b6000806040838503121561386b57600080fd5b60006138798582860161358b565b925050602061388a8582860161369c565b9150509250929050565b600080604083850312156138a757600080fd5b600083013567ffffffffffffffff8111156138c157600080fd5b6138cd858286016135a0565b925050602083013567ffffffffffffffff8111156138ea57600080fd5b6138f6858286016135ca565b9150509250929050565b60006020828403121561391257600080fd5b600061392084828501613609565b91505092915050565b60006020828403121561393b57600080fd5b60006139498482850161361e565b91505092915050565b60006020828403121561396457600080fd5b600082013567ffffffffffffffff81111561397e57600080fd5b61398a8482850161365d565b91505092915050565b6000602082840312156139a557600080fd5b60006139b384828501613687565b91505092915050565b6139c581614527565b82525050565b6139d481614539565b82525050565b60006139e5826143ea565b6139ef8185614400565b93506139ff8185602086016145b7565b613a08816147ad565b840191505092915050565b6000613a1e826143f5565b613a28818561441c565b9350613a388185602086016145b7565b613a41816147ad565b840191505092915050565b6000613a57826143f5565b613a61818561442d565b9350613a718185602086016145b7565b80840191505092915050565b6000613a8a60148361441c565b9150613a95826147be565b602082019050919050565b6000613aad601a8361441c565b9150613ab8826147e7565b602082019050919050565b6000613ad0601f8361441c565b9150613adb82614810565b602082019050919050565b6000613af3602b8361441c565b9150613afe82614839565b604082019050919050565b6000613b1660328361441c565b9150613b2182614888565b604082019050919050565b6000613b3960268361441c565b9150613b44826148d7565b604082019050919050565b6000613b5c601c8361441c565b9150613b6782614926565b602082019050919050565b6000613b7f60148361441c565b9150613b8a8261494f565b602082019050919050565b6000613ba260248361441c565b9150613bad82614978565b604082019050919050565b6000613bc560198361441c565b9150613bd0826149c7565b602082019050919050565b6000613be860218361441c565b9150613bf3826149f0565b604082019050919050565b6000613c0b602c8361441c565b9150613c1682614a3f565b604082019050919050565b6000613c2e60108361441c565b9150613c3982614a8e565b602082019050919050565b6000613c5160388361441c565b9150613c5c82614ab7565b604082019050919050565b6000613c74602a8361441c565b9150613c7f82614b06565b604082019050919050565b6000613c9760298361441c565b9150613ca282614b55565b604082019050919050565b6000613cba60378361441c565b9150613cc582614ba4565b604082019050919050565b6000613cdd60208361441c565b9150613ce882614bf3565b602082019050919050565b6000613d00602c8361441c565b9150613d0b82614c1c565b604082019050919050565b6000613d2360208361441c565b9150613d2e82614c6b565b602082019050919050565b6000613d4660298361441c565b9150613d5182614c94565b604082019050919050565b6000613d69602f8361441c565b9150613d7482614ce3565b604082019050919050565b6000613d8c60218361441c565b9150613d9782614d32565b604082019050919050565b6000613daf600083614411565b9150613dba82614d81565b600082019050919050565b6000613dd260318361441c565b9150613ddd82614d84565b604082019050919050565b6000613df560518361441c565b9150613e0082614dd3565b606082019050919050565b6000613e18602c8361441c565b9150613e2382614e48565b604082019050919050565b6000613e3b60308361441c565b9150613e4682614e97565b604082019050919050565b613e5a81614591565b82525050565b613e698161459b565b82525050565b6000613e7b8285613a4c565b9150613e878284613a4c565b91508190509392505050565b6000613e9e82613da2565b9150819050919050565b6000602082019050613ebd60008301846139bc565b92915050565b6000608082019050613ed860008301876139bc565b613ee560208301866139bc565b613ef26040830185613e51565b8181036060830152613f0481846139da565b905095945050505050565b6000602082019050613f2460008301846139cb565b92915050565b60006020820190508181036000830152613f448184613a13565b905092915050565b60006020820190508181036000830152613f6581613a7d565b9050919050565b60006020820190508181036000830152613f8581613aa0565b9050919050565b60006020820190508181036000830152613fa581613ac3565b9050919050565b60006020820190508181036000830152613fc581613ae6565b9050919050565b60006020820190508181036000830152613fe581613b09565b9050919050565b6000602082019050818103600083015261400581613b2c565b9050919050565b6000602082019050818103600083015261402581613b4f565b9050919050565b6000602082019050818103600083015261404581613b72565b9050919050565b6000602082019050818103600083015261406581613b95565b9050919050565b6000602082019050818103600083015261408581613bb8565b9050919050565b600060208201905081810360008301526140a581613bdb565b9050919050565b600060208201905081810360008301526140c581613bfe565b9050919050565b600060208201905081810360008301526140e581613c21565b9050919050565b6000602082019050818103600083015261410581613c44565b9050919050565b6000602082019050818103600083015261412581613c67565b9050919050565b6000602082019050818103600083015261414581613c8a565b9050919050565b6000602082019050818103600083015261416581613cad565b9050919050565b6000602082019050818103600083015261418581613cd0565b9050919050565b600060208201905081810360008301526141a581613cf3565b9050919050565b600060208201905081810360008301526141c581613d16565b9050919050565b600060208201905081810360008301526141e581613d39565b9050919050565b6000602082019050818103600083015261420581613d5c565b9050919050565b6000602082019050818103600083015261422581613d7f565b9050919050565b6000602082019050818103600083015261424581613dc5565b9050919050565b6000602082019050818103600083015261426581613de8565b9050919050565b6000602082019050818103600083015261428581613e0b565b9050919050565b600060208201905081810360008301526142a581613e2e565b9050919050565b60006020820190506142c16000830184613e51565b92915050565b60006040820190506142dc6000830185613e51565b6142e96020830184613e51565b9392505050565b60006020820190506143056000830184613e60565b92915050565b6000614315614326565b9050614321828261461c565b919050565b6000604051905090565b600067ffffffffffffffff82111561434b5761434a61477e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143775761437661477e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143a3576143a261477e565b5b6143ac826147ad565b9050602081019050919050565b600067ffffffffffffffff8211156143d4576143d361477e565b5b6143dd826147ad565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061444382614591565b915061444e83614591565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614483576144826146f1565b5b828201905092915050565b600061449982614591565b91506144a483614591565b9250826144b4576144b3614720565b5b828204905092915050565b60006144ca82614591565b91506144d583614591565b9250828210156144e8576144e76146f1565b5b828203905092915050565b60006144fe8261459b565b91506145098361459b565b92508282101561451c5761451b6146f1565b5b828203905092915050565b600061453282614571565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156145d55780820151818401526020810190506145ba565b838111156145e4576000848401525b50505050565b6000600282049050600182168061460257607f821691505b602082108114156146165761461561474f565b5b50919050565b614625826147ad565b810181811067ffffffffffffffff821117156146445761464361477e565b5b80604052505050565b600061465882614591565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561468b5761468a6146f1565b5b600182019050919050565b60006146a18261459b565b915060ff8214156146b5576146b46146f1565b5b600182019050919050565b60006146cb82614591565b91506146d683614591565b9250826146e6576146e5614720565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4d696e746572206973206e6f74206f6e2057686974656c697374000000000000600082015250565b7f52656163686564206d6178207075626c696320746f6b656e20737570706c7900600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4574682056616c7565204e6f7420457175616c20746f204d696e74205072696360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736572206973206f6e2057686974656c6973743b2043616c6c2060008201527f6077686974656c6973744d696e746020696e7374656164000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4c656e677468206f662057686974656c69737465657320446f6573204e6f742060008201527f4d61746368204c656e677468206f66205175616e74697479206f66204d696e7460208201527f73205065722057686974656c6973746565000000000000000000000000000000604082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b614eef81614527565b8114614efa57600080fd5b50565b614f0681614539565b8114614f1157600080fd5b50565b614f1d81614545565b8114614f2857600080fd5b50565b614f3481614591565b8114614f3f57600080fd5b50565b614f4b8161459b565b8114614f5657600080fd5b5056fea26469706673582212203e7bca09abb3561809db3b038ddf9d32545dad11589a9741c7ca113028cd09a664736f6c6343000804003300000000000000000000000000000000000000000000000000005af3107a4000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50756e56674e53584c5677335172577338346f3137636333745647756b48436d336672474b414557393363452f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636817c76c116101185780639f5215dd116100a0578063b88d4fde1161006f578063b88d4fde14610708578063c87b56dd14610731578063e985e9c51461076e578063f2fde38b146107ab578063f4a0a528146107d45761020f565b80639f5215dd14610674578063a22cb4651461069f578063adcf8c04146106c8578063b12dc991146106f15761020f565b8063804f43cd116100e7578063804f43cd146105b35780638456cb59146105ca5780638da5cb5b146105e157806395d89b411461060c5780639b19251a146106375761020f565b80636817c76c1461051d57806370a0823114610548578063715018a614610585578063731027451461059c5761020f565b80633ccfd60b1161019b5780634f6ccce71161016a5780634f6ccce71461044557806355f804b3146104825780635c975abb146104ab5780636352211e146104d657806364edfbf0146105135761020f565b80633ccfd60b146103c55780633f4ba83a146103dc57806342842e0e146103f357806342966c681461041c5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd1461033657806325f3f9071461035f5780632f745c59146103885761020f565b806301ffc9a71461021457806306fdde03146102515780630732c1b61461027c578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613900565b6107fd565b6040516102489190613f0f565b60405180910390f35b34801561025d57600080fd5b5061026661080f565b6040516102739190613f2a565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613894565b6108a1565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190613993565b610a5d565b6040516102d99190613ea8565b60405180910390f35b3480156102ee57600080fd5b506103096004803603810190610304919061381c565b610ae2565b005b34801561031757600080fd5b50610320610bfa565b60405161032d91906142ac565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613716565b610c07565b005b34801561036b57600080fd5b5061038660048036038101906103819190613858565b610c67565b005b34801561039457600080fd5b506103af60048036038101906103aa919061381c565b610d3f565b6040516103bc91906142ac565b60405180910390f35b3480156103d157600080fd5b506103da610de4565b005b3480156103e857600080fd5b506103f1610f1c565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190613716565b610fa2565b005b34801561042857600080fd5b50610443600480360381019061043e9190613993565b610fc2565b005b34801561045157600080fd5b5061046c60048036038101906104679190613993565b61101e565b60405161047991906142ac565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613952565b6110b5565b005b3480156104b757600080fd5b506104c061114b565b6040516104cd9190613f0f565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190613993565b611162565b60405161050a9190613ea8565b60405180910390f35b61051b611214565b005b34801561052957600080fd5b50610532611361565b60405161053f91906142ac565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906136b1565b611367565b60405161057c91906142ac565b60405180910390f35b34801561059157600080fd5b5061059a61141f565b005b3480156105a857600080fd5b506105b16114a7565b005b3480156105bf57600080fd5b506105c86115e5565b005b3480156105d657600080fd5b506105df6116fd565b005b3480156105ed57600080fd5b506105f6611783565b6040516106039190613ea8565b60405180910390f35b34801561061857600080fd5b506106216117ad565b60405161062e9190613f2a565b60405180910390f35b34801561064357600080fd5b5061065e600480360381019061065991906136b1565b61183f565b60405161066b91906142f0565b60405180910390f35b34801561068057600080fd5b5061068961185f565b60405161069691906142ac565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906137e0565b611865565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613993565b61187b565b005b3480156106fd57600080fd5b50610706611901565b005b34801561071457600080fd5b5061072f600480360381019061072a9190613765565b611991565b005b34801561073d57600080fd5b5061075860048036038101906107539190613993565b6119f3565b6040516107659190613f2a565b60405180910390f35b34801561077a57600080fd5b50610795600480360381019061079091906136da565b611a9a565b6040516107a29190613f0f565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906136b1565b611b2e565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613993565b611c26565b005b600061080882611cac565b9050919050565b60606000805461081e906145ea565b80601f016020809104026020016040519081016040528092919081815260200182805461084a906145ea565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b6108a9611d26565b73ffffffffffffffffffffffffffffffffffffffff166108c7611783565b73ffffffffffffffffffffffffffffffffffffffff161461091d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610914906141ac565b60405180910390fd5b8051825114610961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109589061424c565b60405180910390fd5b60005b8251811015610a58578181815181106109a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60008584815181106109eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080610a509061464d565b915050610964565b505050565b6000610a6882611d2e565b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e9061418c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aed82611162565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b559061420c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7d611d26565b73ffffffffffffffffffffffffffffffffffffffff161480610bac5750610bab81610ba6611d26565b611a9a565b5b610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906140ec565b60405180910390fd5b610bf58383611d9a565b505050565b6000600880549050905090565b610c18610c12611d26565b82611e53565b610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e9061422c565b60405180910390fd5b610c62838383611f31565b505050565b610c6f611d26565b73ffffffffffffffffffffffffffffffffffffffff16610c8d611783565b73ffffffffffffffffffffffffffffffffffffffff1614610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda906141ac565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050565b6000610d4a83611367565b8210610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290613fac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dec611d26565b73ffffffffffffffffffffffffffffffffffffffff16610e0a611783565b73ffffffffffffffffffffffffffffffffffffffff1614610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e57906141ac565b60405180910390fd5b60004790506000610e6f611783565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e9290613e93565b60006040518083038185875af1925050503d8060008114610ecf576040519150601f19603f3d011682016040523d82523d6000602084013e610ed4565b606091505b5050905080610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061402c565b60405180910390fd5b5050565b610f24611d26565b73ffffffffffffffffffffffffffffffffffffffff16610f42611783565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906141ac565b60405180910390fd5b610fa061218d565b565b610fbd83838360405180602001604052806000815250611991565b505050565b610fd3610fcd611d26565b82611e53565b611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110099061428c565b60405180910390fd5b61101b8161222f565b50565b6000611028610bfa565b8210611069576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110609061426c565b60405180910390fd5b600882815481106110a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6110bd611d26565b73ffffffffffffffffffffffffffffffffffffffff166110db611783565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611128906141ac565b60405180910390fd5b80600c9080519060200190611147929190613394565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561120b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112029061412c565b60405180910390fd5b80915050919050565b6000600e5411611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090613f8c565b60405180910390fd5b600080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115905080156112ff57600d5434146112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f19061408c565b60405180910390fd5b61133a565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113319061414c565b60405180910390fd5b6001600e600082825461134d91906144bf565b9250508190555061135e3334612340565b50565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf9061410c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611427611d26565b73ffffffffffffffffffffffffffffffffffffffff16611445611783565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611492906141ac565b60405180910390fd5b6114a560006123be565b565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905060008160ff161161153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590613f6c565b60405180910390fd5b60005b8160ff168160ff1610156115e1576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166115ab91906144f3565b92506101000a81548160ff021916908360ff1602179055506115ce336000612340565b80806115d990614696565b915050611541565b5050565b600080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161190508061167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613f6c565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166116d791906144f3565b92506101000a81548160ff021916908360ff1602179055506116fa336000612340565b50565b611705611d26565b73ffffffffffffffffffffffffffffffffffffffff16611723611783565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906141ac565b60405180910390fd5b611781612484565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117bc906145ea565b80601f01602080910402602001604051908101604052809291908181526020018280546117e8906145ea565b80156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b5050505050905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b600e5481565b611877611870611d26565b8383612527565b5050565b611883611d26565b73ffffffffffffffffffffffffffffffffffffffff166118a1611783565b73ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee906141ac565b60405180910390fd5b80600e8190555050565b611909611d26565b73ffffffffffffffffffffffffffffffffffffffff16611927611783565b73ffffffffffffffffffffffffffffffffffffffff161461197d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611974906141ac565b60405180910390fd5b61198f611988611783565b6000612340565b565b6119a261199c611d26565b83611e53565b6119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d89061422c565b60405180910390fd5b6119ed84848484612694565b50505050565b60606119fe82611d2e565b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a34906141ec565b60405180910390fd5b6000611a476126f0565b90506000815111611a675760405180602001604052806000815250611a92565b80611a7184612782565b604051602001611a82929190613e6f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b36611d26565b73ffffffffffffffffffffffffffffffffffffffff16611b54611783565b73ffffffffffffffffffffffffffffffffffffffff1614611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba1906141ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190613fec565b60405180910390fd5b611c23816123be565b50565b611c2e611d26565b73ffffffffffffffffffffffffffffffffffffffff16611c4c611783565b73ffffffffffffffffffffffffffffffffffffffff1614611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c99906141ac565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1f5750611d1e8261292f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e0d83611162565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e5e82611d2e565b611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e94906140ac565b60405180910390fd5b6000611ea883611162565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f1757508373ffffffffffffffffffffffffffffffffffffffff16611eff84610a5d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f285750611f278185611a9a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f5182611162565b73ffffffffffffffffffffffffffffffffffffffff1614611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e906141cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e9061404c565b60405180910390fd5b612022838383612a11565b61202d600082611d9a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207d91906144bf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d49190614438565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61219561114b565b6121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613f4c565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612218611d26565b6040516122259190613ea8565b60405180910390a1565b600061223a82611162565b905061224881600084612a11565b612253600083611d9a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a391906144bf565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600b549050600b600081548092919061235a9061464d565b91905055506123698382612aa8565b3373ffffffffffffffffffffffffffffffffffffffff167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f82846040516123b19291906142c7565b60405180910390a2505050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61248c61114b565b156124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c3906140cc565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612510611d26565b60405161251d9190613ea8565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d9061406c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126879190613f0f565b60405180910390a3505050565b61269f848484611f31565b6126ab84848484612ac6565b6126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e190613fcc565b60405180910390fd5b50505050565b6060600c80546126ff906145ea565b80601f016020809104026020016040519081016040528092919081815260200182805461272b906145ea565b80156127785780601f1061274d57610100808354040283529160200191612778565b820191906000526020600020905b81548152906001019060200180831161275b57829003601f168201915b5050505050905090565b606060008214156127ca576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292a565b600082905060005b600082146127fc5780806127e59061464d565b915050600a826127f5919061448e565b91506127d2565b60008167ffffffffffffffff81111561283e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128705781602001600182028036833780820191505090505b5090505b600085146129235760018261288991906144bf565b9150600a8561289891906146c0565b60306128a49190614438565b60f81b8183815181106128e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291c919061448e565b9450612874565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a0a5750612a0982612c5d565b5b9050919050565b612a19611783565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015612a585750612a5761114b565b5b15612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8f906140cc565b60405180910390fd5b612aa3838383612cc7565b505050565b612ac2828260405180602001604052806000815250612ddb565b5050565b6000612ae78473ffffffffffffffffffffffffffffffffffffffff16612e36565b15612c50578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b10611d26565b8786866040518563ffffffff1660e01b8152600401612b329493929190613ec3565b602060405180830381600087803b158015612b4c57600080fd5b505af1925050508015612b7d57506040513d601f19601f82011682018060405250810190612b7a9190613929565b60015b612c00573d8060008114612bad576040519150601f19603f3d011682016040523d82523d6000602084013e612bb2565b606091505b50600081511415612bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bef90613fcc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c55565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cd2838383612e49565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d1557612d1081612e4e565b612d54565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d5357612d528382612e97565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d9757612d9281613004565b612dd6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612dd557612dd48282613147565b5b5b505050565b612de583836131c6565b612df26000848484612ac6565b612e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2890613fcc565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ea484611367565b612eae91906144bf565b9050600060076000848152602001908152602001600020549050818114612f93576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061301891906144bf565b905060006009600084815260200190815260200160002054905060006008838154811061306e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106130b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061312b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061315283611367565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322d9061416c565b60405180910390fd5b61323f81611d2e565b1561327f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132769061400c565b60405180910390fd5b61328b60008383612a11565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132db9190614438565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546133a0906145ea565b90600052602060002090601f0160209004810192826133c25760008555613409565b82601f106133db57805160ff1916838001178555613409565b82800160010185558215613409579182015b828111156134085782518255916020019190600101906133ed565b5b509050613416919061341a565b5090565b5b8082111561343357600081600090555060010161341b565b5090565b600061344a61344584614330565b61430b565b9050808382526020820190508285602086028201111561346957600080fd5b60005b85811015613499578161347f888261358b565b84526020840193506020830192505060018101905061346c565b5050509392505050565b60006134b66134b18461435c565b61430b565b905080838252602082019050828560208602820111156134d557600080fd5b60005b8581101561350557816134eb888261369c565b8452602084019350602083019250506001810190506134d8565b5050509392505050565b600061352261351d84614388565b61430b565b90508281526020810184848401111561353a57600080fd5b6135458482856145a8565b509392505050565b600061356061355b846143b9565b61430b565b90508281526020810184848401111561357857600080fd5b6135838482856145a8565b509392505050565b60008135905061359a81614ee6565b92915050565b600082601f8301126135b157600080fd5b81356135c1848260208601613437565b91505092915050565b600082601f8301126135db57600080fd5b81356135eb8482602086016134a3565b91505092915050565b60008135905061360381614efd565b92915050565b60008135905061361881614f14565b92915050565b60008151905061362d81614f14565b92915050565b600082601f83011261364457600080fd5b813561365484826020860161350f565b91505092915050565b600082601f83011261366e57600080fd5b813561367e84826020860161354d565b91505092915050565b60008135905061369681614f2b565b92915050565b6000813590506136ab81614f42565b92915050565b6000602082840312156136c357600080fd5b60006136d18482850161358b565b91505092915050565b600080604083850312156136ed57600080fd5b60006136fb8582860161358b565b925050602061370c8582860161358b565b9150509250929050565b60008060006060848603121561372b57600080fd5b60006137398682870161358b565b935050602061374a8682870161358b565b925050604061375b86828701613687565b9150509250925092565b6000806000806080858703121561377b57600080fd5b60006137898782880161358b565b945050602061379a8782880161358b565b93505060406137ab87828801613687565b925050606085013567ffffffffffffffff8111156137c857600080fd5b6137d487828801613633565b91505092959194509250565b600080604083850312156137f357600080fd5b60006138018582860161358b565b9250506020613812858286016135f4565b9150509250929050565b6000806040838503121561382f57600080fd5b600061383d8582860161358b565b925050602061384e85828601613687565b9150509250929050565b6000806040838503121561386b57600080fd5b60006138798582860161358b565b925050602061388a8582860161369c565b9150509250929050565b600080604083850312156138a757600080fd5b600083013567ffffffffffffffff8111156138c157600080fd5b6138cd858286016135a0565b925050602083013567ffffffffffffffff8111156138ea57600080fd5b6138f6858286016135ca565b9150509250929050565b60006020828403121561391257600080fd5b600061392084828501613609565b91505092915050565b60006020828403121561393b57600080fd5b60006139498482850161361e565b91505092915050565b60006020828403121561396457600080fd5b600082013567ffffffffffffffff81111561397e57600080fd5b61398a8482850161365d565b91505092915050565b6000602082840312156139a557600080fd5b60006139b384828501613687565b91505092915050565b6139c581614527565b82525050565b6139d481614539565b82525050565b60006139e5826143ea565b6139ef8185614400565b93506139ff8185602086016145b7565b613a08816147ad565b840191505092915050565b6000613a1e826143f5565b613a28818561441c565b9350613a388185602086016145b7565b613a41816147ad565b840191505092915050565b6000613a57826143f5565b613a61818561442d565b9350613a718185602086016145b7565b80840191505092915050565b6000613a8a60148361441c565b9150613a95826147be565b602082019050919050565b6000613aad601a8361441c565b9150613ab8826147e7565b602082019050919050565b6000613ad0601f8361441c565b9150613adb82614810565b602082019050919050565b6000613af3602b8361441c565b9150613afe82614839565b604082019050919050565b6000613b1660328361441c565b9150613b2182614888565b604082019050919050565b6000613b3960268361441c565b9150613b44826148d7565b604082019050919050565b6000613b5c601c8361441c565b9150613b6782614926565b602082019050919050565b6000613b7f60148361441c565b9150613b8a8261494f565b602082019050919050565b6000613ba260248361441c565b9150613bad82614978565b604082019050919050565b6000613bc560198361441c565b9150613bd0826149c7565b602082019050919050565b6000613be860218361441c565b9150613bf3826149f0565b604082019050919050565b6000613c0b602c8361441c565b9150613c1682614a3f565b604082019050919050565b6000613c2e60108361441c565b9150613c3982614a8e565b602082019050919050565b6000613c5160388361441c565b9150613c5c82614ab7565b604082019050919050565b6000613c74602a8361441c565b9150613c7f82614b06565b604082019050919050565b6000613c9760298361441c565b9150613ca282614b55565b604082019050919050565b6000613cba60378361441c565b9150613cc582614ba4565b604082019050919050565b6000613cdd60208361441c565b9150613ce882614bf3565b602082019050919050565b6000613d00602c8361441c565b9150613d0b82614c1c565b604082019050919050565b6000613d2360208361441c565b9150613d2e82614c6b565b602082019050919050565b6000613d4660298361441c565b9150613d5182614c94565b604082019050919050565b6000613d69602f8361441c565b9150613d7482614ce3565b604082019050919050565b6000613d8c60218361441c565b9150613d9782614d32565b604082019050919050565b6000613daf600083614411565b9150613dba82614d81565b600082019050919050565b6000613dd260318361441c565b9150613ddd82614d84565b604082019050919050565b6000613df560518361441c565b9150613e0082614dd3565b606082019050919050565b6000613e18602c8361441c565b9150613e2382614e48565b604082019050919050565b6000613e3b60308361441c565b9150613e4682614e97565b604082019050919050565b613e5a81614591565b82525050565b613e698161459b565b82525050565b6000613e7b8285613a4c565b9150613e878284613a4c565b91508190509392505050565b6000613e9e82613da2565b9150819050919050565b6000602082019050613ebd60008301846139bc565b92915050565b6000608082019050613ed860008301876139bc565b613ee560208301866139bc565b613ef26040830185613e51565b8181036060830152613f0481846139da565b905095945050505050565b6000602082019050613f2460008301846139cb565b92915050565b60006020820190508181036000830152613f448184613a13565b905092915050565b60006020820190508181036000830152613f6581613a7d565b9050919050565b60006020820190508181036000830152613f8581613aa0565b9050919050565b60006020820190508181036000830152613fa581613ac3565b9050919050565b60006020820190508181036000830152613fc581613ae6565b9050919050565b60006020820190508181036000830152613fe581613b09565b9050919050565b6000602082019050818103600083015261400581613b2c565b9050919050565b6000602082019050818103600083015261402581613b4f565b9050919050565b6000602082019050818103600083015261404581613b72565b9050919050565b6000602082019050818103600083015261406581613b95565b9050919050565b6000602082019050818103600083015261408581613bb8565b9050919050565b600060208201905081810360008301526140a581613bdb565b9050919050565b600060208201905081810360008301526140c581613bfe565b9050919050565b600060208201905081810360008301526140e581613c21565b9050919050565b6000602082019050818103600083015261410581613c44565b9050919050565b6000602082019050818103600083015261412581613c67565b9050919050565b6000602082019050818103600083015261414581613c8a565b9050919050565b6000602082019050818103600083015261416581613cad565b9050919050565b6000602082019050818103600083015261418581613cd0565b9050919050565b600060208201905081810360008301526141a581613cf3565b9050919050565b600060208201905081810360008301526141c581613d16565b9050919050565b600060208201905081810360008301526141e581613d39565b9050919050565b6000602082019050818103600083015261420581613d5c565b9050919050565b6000602082019050818103600083015261422581613d7f565b9050919050565b6000602082019050818103600083015261424581613dc5565b9050919050565b6000602082019050818103600083015261426581613de8565b9050919050565b6000602082019050818103600083015261428581613e0b565b9050919050565b600060208201905081810360008301526142a581613e2e565b9050919050565b60006020820190506142c16000830184613e51565b92915050565b60006040820190506142dc6000830185613e51565b6142e96020830184613e51565b9392505050565b60006020820190506143056000830184613e60565b92915050565b6000614315614326565b9050614321828261461c565b919050565b6000604051905090565b600067ffffffffffffffff82111561434b5761434a61477e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143775761437661477e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143a3576143a261477e565b5b6143ac826147ad565b9050602081019050919050565b600067ffffffffffffffff8211156143d4576143d361477e565b5b6143dd826147ad565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061444382614591565b915061444e83614591565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614483576144826146f1565b5b828201905092915050565b600061449982614591565b91506144a483614591565b9250826144b4576144b3614720565b5b828204905092915050565b60006144ca82614591565b91506144d583614591565b9250828210156144e8576144e76146f1565b5b828203905092915050565b60006144fe8261459b565b91506145098361459b565b92508282101561451c5761451b6146f1565b5b828203905092915050565b600061453282614571565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156145d55780820151818401526020810190506145ba565b838111156145e4576000848401525b50505050565b6000600282049050600182168061460257607f821691505b602082108114156146165761461561474f565b5b50919050565b614625826147ad565b810181811067ffffffffffffffff821117156146445761464361477e565b5b80604052505050565b600061465882614591565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561468b5761468a6146f1565b5b600182019050919050565b60006146a18261459b565b915060ff8214156146b5576146b46146f1565b5b600182019050919050565b60006146cb82614591565b91506146d683614591565b9250826146e6576146e5614720565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4d696e746572206973206e6f74206f6e2057686974656c697374000000000000600082015250565b7f52656163686564206d6178207075626c696320746f6b656e20737570706c7900600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4574682056616c7565204e6f7420457175616c20746f204d696e74205072696360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736572206973206f6e2057686974656c6973743b2043616c6c2060008201527f6077686974656c6973744d696e746020696e7374656164000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4c656e677468206f662057686974656c69737465657320446f6573204e6f742060008201527f4d61746368204c656e677468206f66205175616e74697479206f66204d696e7460208201527f73205065722057686974656c6973746565000000000000000000000000000000604082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b614eef81614527565b8114614efa57600080fd5b50565b614f0681614539565b8114614f1157600080fd5b50565b614f1d81614545565b8114614f2857600080fd5b50565b614f3481614591565b8114614f3f57600080fd5b50565b614f4b8161459b565b8114614f5657600080fd5b5056fea26469706673582212203e7bca09abb3561809db3b038ddf9d32545dad11589a9741c7ca113028cd09a664736f6c63430008040033

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

00000000000000000000000000000000000000000000000000005af3107a4000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50756e56674e53584c5677335172577338346f3137636333745647756b48436d336672474b414557393363452f00000000000000000000

-----Decoded View---------------
Arg [0] : _mintPrice (uint256): 100000000000000
Arg [1] : _availSupply (uint256): 10
Arg [2] : _baseUri (string): ipfs://QmPunVgNSXLVw3QrWs84o17cc3tVGukHCm3frGKAEW93cE/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000005af3107a4000
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d50756e56674e53584c5677335172577338346f31376363
Arg [5] : 33745647756b48436d336672474b414557393363452f00000000000000000000


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.