ETH Price: $2,295.44 (+0.32%)
Gas: 1.21 Gwei

Token

BAMC Capital (BAMCC)
 

Overview

Max Total Supply

68 BAMCC

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kimi.eth
Balance
64 BAMCC
0x09a4d3be4fb596e26fbcf2e9379460349b111131
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:
BAMC

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : BAMC48H.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

contract BAMC is ERC721("BAMC Capital", "BAMCC"), ERC721Enumerable, Ownable {
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant PRICE = 2 * 10**18; // 2ETH
    string public baseURI =
        "ipfs://bafybeiacfuwzr52qfehohdllvv2t73urq7aqknzow6aovpaw4u3azjwin4/";
    bool public mintStarted = true;
    uint256 public nextTokenId;

    address internal constant _artist =
        0x2Bd07813C54B090fd137Ee9E4eBA6A8307c262e0;

    mapping(address => uint256) public allowListMinted;
    mapping(address => uint256) public allowList;

    event Mint(address minter, uint256 amount);
    event MintStatusChanged(bool isStarted);

    function setMintStart(bool isStarted) external onlyOwner {
        mintStarted = isStarted;
        emit MintStatusChanged(isStarted);
    }

    function addToAllowList(address[] memory toAllowList) external onlyOwner {
        for (uint256 i = 0; i < toAllowList.length; i++) {
            allowList[toAllowList[i]] += 1;
        }
    }

    function allowMintCount(address owner) public view returns (uint256) {
        return allowList[owner];
    }

    function allowListMint(uint256 amount) external {
        require(mintStarted, "BAMC: mint has not started yet");

        uint256 _nextTokenId = nextTokenId;
        require(_nextTokenId + 1 <= MAX_SUPPLY, "BAMC: max supply exceeded");
        require(
            allowListMinted[_msgSender()] + amount <= allowList[_msgSender()],
            "BAMC: you cant mint this many"
        );

        allowListMinted[_msgSender()] += amount;

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(_msgSender(), _nextTokenId);
            _nextTokenId += 1;
        }

        nextTokenId = _nextTokenId;
        emit Mint(_msgSender(), amount);
    }

    // todo bug
    // https://polygonscan.com/tx/0x3af32f7ad2ee86185d9161d323db3fe3fcf8c69a1484337ba99435cbba8aa642
    // mint 2 只失败
    // 挂单失败~
    function mint(uint256 amount) external payable {
        require(mintStarted, "BAMC: mint has not started yet");

        uint256 _nextTokenId = nextTokenId;
        require(_nextTokenId + 1 <= MAX_SUPPLY, "BAMC: max supply exceeded");
        require(
            msg.value == PRICE * amount,
            "BAMC: ether sent is less than the price"
        );

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(_msgSender(), _nextTokenId);
            _nextTokenId += 1;
        }

        nextTokenId = _nextTokenId;
        emit Mint(_msgSender(), amount);
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_artist).transfer(balance);
    }

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

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

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

File 2 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

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

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 13 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isStarted","type":"bool"}],"name":"MintStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAllowList","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allowListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isStarted","type":"bool"}],"name":"setMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620045ed60439139600b908051906020019062000035929190620001f3565b506001600c60006101000a81548160ff0219169083151502179055503480156200005e57600080fd5b506040518060400160405280600c81526020017f42414d43204361706974616c00000000000000000000000000000000000000008152506040518060400160405280600581526020017f42414d43430000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e3929190620001f3565b508060019080519060200190620000fc929190620001f3565b5050506200011f620001136200012560201b60201c565b6200012d60201b60201c565b62000308565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020190620002a3565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d2620002d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6142d580620003186000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146106e5578063e985e9c514610722578063f2fde38b1461075f578063fa1431da14610788576101e3565b8063a0712d681461064c578063a22cb46514610668578063a9722cf314610691578063b88d4fde146106bc576101e3565b806379995c11116100d157806379995c11146105a25780638d859f3e146105cb5780638da5cb5b146105f657806395d89b4114610621576101e3565b806370a08231146104fa578063715018a6146105375780637263cfe21461054e57806375794a3c14610577576101e3565b80632acd1cbd1161017a57806342842e0e1161014957806342842e0e1461042c5780634f6ccce7146104555780636352211e146104925780636c0360eb146104cf576101e3565b80632acd1cbd146103705780632f745c59146103ad57806332cb6b0c146103ea5780633ccfd60b14610415576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df57806323b872dd1461030a5780632848aeaf14610333576101e3565b806301ffc9a7146101e857806306fdde03146102255780630715d70414610250578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613030565b6107c5565b60405161021c9190613531565b60405180910390f35b34801561023157600080fd5b5061023a6107d7565b604051610247919061354c565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613007565b610869565b005b34801561028557600080fd5b506102a0600480360381019061029b9190613082565b610939565b6040516102ad91906134a1565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612f8a565b6109be565b005b3480156102eb57600080fd5b506102f4610ad6565b604051610301919061382e565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612e84565b610ae3565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612e1f565b610b43565b604051610367919061382e565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612e1f565b610b5b565b6040516103a4919061382e565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612f8a565b610ba4565b6040516103e1919061382e565b60405180910390f35b3480156103f657600080fd5b506103ff610c49565b60405161040c919061382e565b60405180910390f35b34801561042157600080fd5b5061042a610c4f565b005b34801561043857600080fd5b50610453600480360381019061044e9190612e84565b610d2e565b005b34801561046157600080fd5b5061047c60048036038101906104779190613082565b610d4e565b604051610489919061382e565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613082565b610de5565b6040516104c691906134a1565b60405180910390f35b3480156104db57600080fd5b506104e4610e97565b6040516104f1919061354c565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612e1f565b610f25565b60405161052e919061382e565b60405180910390f35b34801561054357600080fd5b5061054c610fdd565b005b34801561055a57600080fd5b5061057560048036038101906105709190612fc6565b611065565b005b34801561058357600080fd5b5061058c61119b565b604051610599919061382e565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613082565b6111a1565b005b3480156105d757600080fd5b506105e0611409565b6040516105ed919061382e565b60405180910390f35b34801561060257600080fd5b5061060b611415565b60405161061891906134a1565b60405180910390f35b34801561062d57600080fd5b5061063661143f565b604051610643919061354c565b60405180910390f35b61066660048036038101906106619190613082565b6114d1565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612f4e565b611657565b005b34801561069d57600080fd5b506106a66117d8565b6040516106b39190613531565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612ed3565b6117eb565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613082565b61184d565b604051610719919061354c565b60405180910390f35b34801561072e57600080fd5b5061074960048036038101906107449190612e48565b6118f4565b6040516107569190613531565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190612e1f565b611988565b005b34801561079457600080fd5b506107af60048036038101906107aa9190612e1f565b611a80565b6040516107bc919061382e565b60405180910390f35b60006107d082611a98565b9050919050565b6060600080546107e690613ad9565b80601f016020809104026020016040519081016040528092919081815260200182805461081290613ad9565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b610871611b12565b73ffffffffffffffffffffffffffffffffffffffff1661088f611415565b73ffffffffffffffffffffffffffffffffffffffff16146108e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dc9061374e565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507fb304fe5dd2d3c45e8ec87c1dd1bd2b3a773b3135e84a7b9151f5fb4bf1a06d0e8160405161092e9190613531565b60405180910390a150565b600061094482611b1a565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a9061372e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c982610de5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a31906137ce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a59611b12565b73ffffffffffffffffffffffffffffffffffffffff161480610a885750610a8781610a82611b12565b6118f4565b5b610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe9061368e565b60405180910390fd5b610ad18383611b86565b505050565b6000600880549050905090565b610af4610aee611b12565b82611c3f565b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906137ee565b60405180910390fd5b610b3e838383611d1d565b505050565b600f6020528060005260406000206000915090505481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610baf83610f25565b8210610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be79061356e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610c57611b12565b73ffffffffffffffffffffffffffffffffffffffff16610c75611415565b73ffffffffffffffffffffffffffffffffffffffff1614610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc29061374e565b60405180910390fd5b6000479050732bd07813c54b090fd137ee9e4eba6a8307c262e073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d2a573d6000803e3d6000fd5b5050565b610d49838383604051806020016040528060008152506117eb565b505050565b6000610d58610ad6565b8210610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061380e565b60405180910390fd5b60088281548110610dd3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e85906136ce565b60405180910390fd5b80915050919050565b600b8054610ea490613ad9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090613ad9565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906136ae565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fe5611b12565b73ffffffffffffffffffffffffffffffffffffffff16611003611415565b73ffffffffffffffffffffffffffffffffffffffff1614611059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110509061374e565b60405180910390fd5b6110636000611f79565b565b61106d611b12565b73ffffffffffffffffffffffffffffffffffffffff1661108b611415565b73ffffffffffffffffffffffffffffffffffffffff16146110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d89061374e565b60405180910390fd5b60005b8151811015611197576001600f600084848151811061112c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461117d919061390e565b92505081905550808061118f90613b3c565b9150506110e4565b5050565b600d5481565b600c60009054906101000a900460ff166111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e7906137ae565b60405180910390fd5b6000600d549050612710600182611207919061390e565b1115611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f9061364e565b60405180910390fd5b600f6000611254611b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482600e600061129c611b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112e1919061390e565b1115611322576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113199061366e565b60405180910390fd5b81600e600061132f611b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611378919061390e565b9250508190555060005b828110156113bd5761139b611395611b12565b8361203f565b6001826113a8919061390e565b915080806113b590613b3c565b915050611382565b5080600d819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968856113ee611b12565b836040516113fd929190613508565b60405180910390a15050565b671bc16d674ec8000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461144e90613ad9565b80601f016020809104026020016040519081016040528092919081815260200182805461147a90613ad9565b80156114c75780601f1061149c576101008083540402835291602001916114c7565b820191906000526020600020905b8154815290600101906020018083116114aa57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906137ae565b60405180910390fd5b6000600d549050612710600182611537919061390e565b1115611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f9061364e565b60405180910390fd5b81671bc16d674ec8000061158c9190613995565b34146115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906136ee565b60405180910390fd5b60005b8281101561160b576115e96115e3611b12565b8361203f565b6001826115f6919061390e565b9150808061160390613b3c565b9150506115d0565b5080600d819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561163c611b12565b8360405161164b929190613508565b60405180910390a15050565b61165f611b12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c49061360e565b60405180910390fd5b80600560006116da611b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611787611b12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117cc9190613531565b60405180910390a35050565b600c60009054906101000a900460ff1681565b6117fc6117f6611b12565b83611c3f565b61183b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611832906137ee565b60405180910390fd5b6118478484848461205d565b50505050565b606061185882611b1a565b611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e9061378e565b60405180910390fd5b60006118a16120b9565b905060008151116118c157604051806020016040528060008152506118ec565b806118cb8461214b565b6040516020016118dc92919061347d565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611990611b12565b73ffffffffffffffffffffffffffffffffffffffff166119ae611415565b73ffffffffffffffffffffffffffffffffffffffff1614611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb9061374e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b906135ae565b60405180910390fd5b611a7d81611f79565b50565b600e6020528060005260406000206000915090505481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b0b5750611b0a826122f8565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bf983610de5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c4a82611b1a565b611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061362e565b60405180910390fd5b6000611c9483610de5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d0357508373ffffffffffffffffffffffffffffffffffffffff16611ceb84610939565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d145750611d1381856118f4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3d82610de5565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a9061376e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906135ee565b60405180910390fd5b611e0e8383836123da565b611e19600082611b86565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6991906139ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ec0919061390e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120598282604051806020016040528060008152506123ea565b5050565b612068848484611d1d565b61207484848484612445565b6120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa9061358e565b60405180910390fd5b50505050565b6060600b80546120c890613ad9565b80601f01602080910402602001604051908101604052809291908181526020018280546120f490613ad9565b80156121415780601f1061211657610100808354040283529160200191612141565b820191906000526020600020905b81548152906001019060200180831161212457829003601f168201915b5050505050905090565b60606000821415612193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f3565b600082905060005b600082146121c55780806121ae90613b3c565b915050600a826121be9190613964565b915061219b565b60008167ffffffffffffffff811115612207577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122395781602001600182028036833780820191505090505b5090505b600085146122ec5760018261225291906139ef565b9150600a856122619190613b85565b603061226d919061390e565b60f81b8183815181106122a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e59190613964565b945061223d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123d357506123d2826125dc565b5b9050919050565b6123e5838383612646565b505050565b6123f4838361275a565b6124016000848484612445565b612440576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124379061358e565b60405180910390fd5b505050565b60006124668473ffffffffffffffffffffffffffffffffffffffff16612928565b156125cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248f611b12565b8786866040518563ffffffff1660e01b81526004016124b194939291906134bc565b602060405180830381600087803b1580156124cb57600080fd5b505af19250505080156124fc57506040513d601f19601f820116820180604052508101906124f99190613059565b60015b61257f573d806000811461252c576040519150601f19603f3d011682016040523d82523d6000602084013e612531565b606091505b50600081511415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e9061358e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125d4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61265183838361293b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126945761268f81612940565b6126d3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126d2576126d18382612989565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127165761271181612af6565b612755565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612754576127538282612c39565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c19061370e565b60405180910390fd5b6127d381611b1a565b15612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a906135ce565b60405180910390fd5b61281f600083836123da565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461286f919061390e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161299684610f25565b6129a091906139ef565b9050600060076000848152602001908152602001600020549050818114612a85576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b0a91906139ef565b9050600060096000848152602001908152602001600020549050600060088381548110612b60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ba8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c4483610f25565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000612ccb612cc68461386e565b613849565b90508083825260208201905082856020860282011115612cea57600080fd5b60005b85811015612d1a5781612d008882612d62565b845260208401935060208301925050600181019050612ced565b5050509392505050565b6000612d37612d328461389a565b613849565b905082815260208101848484011115612d4f57600080fd5b612d5a848285613a97565b509392505050565b600081359050612d7181614243565b92915050565b600082601f830112612d8857600080fd5b8135612d98848260208601612cb8565b91505092915050565b600081359050612db08161425a565b92915050565b600081359050612dc581614271565b92915050565b600081519050612dda81614271565b92915050565b600082601f830112612df157600080fd5b8135612e01848260208601612d24565b91505092915050565b600081359050612e1981614288565b92915050565b600060208284031215612e3157600080fd5b6000612e3f84828501612d62565b91505092915050565b60008060408385031215612e5b57600080fd5b6000612e6985828601612d62565b9250506020612e7a85828601612d62565b9150509250929050565b600080600060608486031215612e9957600080fd5b6000612ea786828701612d62565b9350506020612eb886828701612d62565b9250506040612ec986828701612e0a565b9150509250925092565b60008060008060808587031215612ee957600080fd5b6000612ef787828801612d62565b9450506020612f0887828801612d62565b9350506040612f1987828801612e0a565b925050606085013567ffffffffffffffff811115612f3657600080fd5b612f4287828801612de0565b91505092959194509250565b60008060408385031215612f6157600080fd5b6000612f6f85828601612d62565b9250506020612f8085828601612da1565b9150509250929050565b60008060408385031215612f9d57600080fd5b6000612fab85828601612d62565b9250506020612fbc85828601612e0a565b9150509250929050565b600060208284031215612fd857600080fd5b600082013567ffffffffffffffff811115612ff257600080fd5b612ffe84828501612d77565b91505092915050565b60006020828403121561301957600080fd5b600061302784828501612da1565b91505092915050565b60006020828403121561304257600080fd5b600061305084828501612db6565b91505092915050565b60006020828403121561306b57600080fd5b600061307984828501612dcb565b91505092915050565b60006020828403121561309457600080fd5b60006130a284828501612e0a565b91505092915050565b6130b481613a23565b82525050565b6130c381613a35565b82525050565b60006130d4826138cb565b6130de81856138e1565b93506130ee818560208601613aa6565b6130f781613c72565b840191505092915050565b600061310d826138d6565b61311781856138f2565b9350613127818560208601613aa6565b61313081613c72565b840191505092915050565b6000613146826138d6565b6131508185613903565b9350613160818560208601613aa6565b80840191505092915050565b6000613179602b836138f2565b915061318482613c83565b604082019050919050565b600061319c6032836138f2565b91506131a782613cd2565b604082019050919050565b60006131bf6026836138f2565b91506131ca82613d21565b604082019050919050565b60006131e2601c836138f2565b91506131ed82613d70565b602082019050919050565b60006132056024836138f2565b915061321082613d99565b604082019050919050565b60006132286019836138f2565b915061323382613de8565b602082019050919050565b600061324b602c836138f2565b915061325682613e11565b604082019050919050565b600061326e6019836138f2565b915061327982613e60565b602082019050919050565b6000613291601d836138f2565b915061329c82613e89565b602082019050919050565b60006132b46038836138f2565b91506132bf82613eb2565b604082019050919050565b60006132d7602a836138f2565b91506132e282613f01565b604082019050919050565b60006132fa6029836138f2565b915061330582613f50565b604082019050919050565b600061331d6027836138f2565b915061332882613f9f565b604082019050919050565b60006133406020836138f2565b915061334b82613fee565b602082019050919050565b6000613363602c836138f2565b915061336e82614017565b604082019050919050565b60006133866020836138f2565b915061339182614066565b602082019050919050565b60006133a96029836138f2565b91506133b48261408f565b604082019050919050565b60006133cc602f836138f2565b91506133d7826140de565b604082019050919050565b60006133ef601e836138f2565b91506133fa8261412d565b602082019050919050565b60006134126021836138f2565b915061341d82614156565b604082019050919050565b60006134356031836138f2565b9150613440826141a5565b604082019050919050565b6000613458602c836138f2565b9150613463826141f4565b604082019050919050565b61347781613a8d565b82525050565b6000613489828561313b565b9150613495828461313b565b91508190509392505050565b60006020820190506134b660008301846130ab565b92915050565b60006080820190506134d160008301876130ab565b6134de60208301866130ab565b6134eb604083018561346e565b81810360608301526134fd81846130c9565b905095945050505050565b600060408201905061351d60008301856130ab565b61352a602083018461346e565b9392505050565b600060208201905061354660008301846130ba565b92915050565b600060208201905081810360008301526135668184613102565b905092915050565b600060208201905081810360008301526135878161316c565b9050919050565b600060208201905081810360008301526135a78161318f565b9050919050565b600060208201905081810360008301526135c7816131b2565b9050919050565b600060208201905081810360008301526135e7816131d5565b9050919050565b60006020820190508181036000830152613607816131f8565b9050919050565b600060208201905081810360008301526136278161321b565b9050919050565b600060208201905081810360008301526136478161323e565b9050919050565b6000602082019050818103600083015261366781613261565b9050919050565b6000602082019050818103600083015261368781613284565b9050919050565b600060208201905081810360008301526136a7816132a7565b9050919050565b600060208201905081810360008301526136c7816132ca565b9050919050565b600060208201905081810360008301526136e7816132ed565b9050919050565b6000602082019050818103600083015261370781613310565b9050919050565b6000602082019050818103600083015261372781613333565b9050919050565b6000602082019050818103600083015261374781613356565b9050919050565b6000602082019050818103600083015261376781613379565b9050919050565b600060208201905081810360008301526137878161339c565b9050919050565b600060208201905081810360008301526137a7816133bf565b9050919050565b600060208201905081810360008301526137c7816133e2565b9050919050565b600060208201905081810360008301526137e781613405565b9050919050565b6000602082019050818103600083015261380781613428565b9050919050565b600060208201905081810360008301526138278161344b565b9050919050565b6000602082019050613843600083018461346e565b92915050565b6000613853613864565b905061385f8282613b0b565b919050565b6000604051905090565b600067ffffffffffffffff82111561388957613888613c43565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138b5576138b4613c43565b5b6138be82613c72565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391982613a8d565b915061392483613a8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395957613958613bb6565b5b828201905092915050565b600061396f82613a8d565b915061397a83613a8d565b92508261398a57613989613be5565b5b828204905092915050565b60006139a082613a8d565b91506139ab83613a8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139e4576139e3613bb6565b5b828202905092915050565b60006139fa82613a8d565b9150613a0583613a8d565b925082821015613a1857613a17613bb6565b5b828203905092915050565b6000613a2e82613a6d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ac4578082015181840152602081019050613aa9565b83811115613ad3576000848401525b50505050565b60006002820490506001821680613af157607f821691505b60208210811415613b0557613b04613c14565b5b50919050565b613b1482613c72565b810181811067ffffffffffffffff82111715613b3357613b32613c43565b5b80604052505050565b6000613b4782613a8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7a57613b79613bb6565b5b600182019050919050565b6000613b9082613a8d565b9150613b9b83613a8d565b925082613bab57613baa613be5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f42414d433a206d617820737570706c7920657863656564656400000000000000600082015250565b7f42414d433a20796f752063616e74206d696e742074686973206d616e79000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f42414d433a2065746865722073656e74206973206c657373207468616e20746860008201527f6520707269636500000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f42414d433a206d696e7420686173206e6f742073746172746564207965740000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61424c81613a23565b811461425757600080fd5b50565b61426381613a35565b811461426e57600080fd5b50565b61427a81613a41565b811461428557600080fd5b50565b61429181613a8d565b811461429c57600080fd5b5056fea26469706673582212209330843f5c2ec45021301e654fd85e0af51d6400cf72915a516c36653aa884b564736f6c63430008040033697066733a2f2f6261667962656961636675777a723532716665686f68646c6c7676327437337572713761716b6e7a6f7736616f76706177347533617a6a77696e342f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146106e5578063e985e9c514610722578063f2fde38b1461075f578063fa1431da14610788576101e3565b8063a0712d681461064c578063a22cb46514610668578063a9722cf314610691578063b88d4fde146106bc576101e3565b806379995c11116100d157806379995c11146105a25780638d859f3e146105cb5780638da5cb5b146105f657806395d89b4114610621576101e3565b806370a08231146104fa578063715018a6146105375780637263cfe21461054e57806375794a3c14610577576101e3565b80632acd1cbd1161017a57806342842e0e1161014957806342842e0e1461042c5780634f6ccce7146104555780636352211e146104925780636c0360eb146104cf576101e3565b80632acd1cbd146103705780632f745c59146103ad57806332cb6b0c146103ea5780633ccfd60b14610415576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df57806323b872dd1461030a5780632848aeaf14610333576101e3565b806301ffc9a7146101e857806306fdde03146102255780630715d70414610250578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613030565b6107c5565b60405161021c9190613531565b60405180910390f35b34801561023157600080fd5b5061023a6107d7565b604051610247919061354c565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613007565b610869565b005b34801561028557600080fd5b506102a0600480360381019061029b9190613082565b610939565b6040516102ad91906134a1565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612f8a565b6109be565b005b3480156102eb57600080fd5b506102f4610ad6565b604051610301919061382e565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612e84565b610ae3565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612e1f565b610b43565b604051610367919061382e565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612e1f565b610b5b565b6040516103a4919061382e565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612f8a565b610ba4565b6040516103e1919061382e565b60405180910390f35b3480156103f657600080fd5b506103ff610c49565b60405161040c919061382e565b60405180910390f35b34801561042157600080fd5b5061042a610c4f565b005b34801561043857600080fd5b50610453600480360381019061044e9190612e84565b610d2e565b005b34801561046157600080fd5b5061047c60048036038101906104779190613082565b610d4e565b604051610489919061382e565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613082565b610de5565b6040516104c691906134a1565b60405180910390f35b3480156104db57600080fd5b506104e4610e97565b6040516104f1919061354c565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612e1f565b610f25565b60405161052e919061382e565b60405180910390f35b34801561054357600080fd5b5061054c610fdd565b005b34801561055a57600080fd5b5061057560048036038101906105709190612fc6565b611065565b005b34801561058357600080fd5b5061058c61119b565b604051610599919061382e565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613082565b6111a1565b005b3480156105d757600080fd5b506105e0611409565b6040516105ed919061382e565b60405180910390f35b34801561060257600080fd5b5061060b611415565b60405161061891906134a1565b60405180910390f35b34801561062d57600080fd5b5061063661143f565b604051610643919061354c565b60405180910390f35b61066660048036038101906106619190613082565b6114d1565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612f4e565b611657565b005b34801561069d57600080fd5b506106a66117d8565b6040516106b39190613531565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612ed3565b6117eb565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613082565b61184d565b604051610719919061354c565b60405180910390f35b34801561072e57600080fd5b5061074960048036038101906107449190612e48565b6118f4565b6040516107569190613531565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190612e1f565b611988565b005b34801561079457600080fd5b506107af60048036038101906107aa9190612e1f565b611a80565b6040516107bc919061382e565b60405180910390f35b60006107d082611a98565b9050919050565b6060600080546107e690613ad9565b80601f016020809104026020016040519081016040528092919081815260200182805461081290613ad9565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b610871611b12565b73ffffffffffffffffffffffffffffffffffffffff1661088f611415565b73ffffffffffffffffffffffffffffffffffffffff16146108e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dc9061374e565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507fb304fe5dd2d3c45e8ec87c1dd1bd2b3a773b3135e84a7b9151f5fb4bf1a06d0e8160405161092e9190613531565b60405180910390a150565b600061094482611b1a565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a9061372e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c982610de5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a31906137ce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a59611b12565b73ffffffffffffffffffffffffffffffffffffffff161480610a885750610a8781610a82611b12565b6118f4565b5b610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe9061368e565b60405180910390fd5b610ad18383611b86565b505050565b6000600880549050905090565b610af4610aee611b12565b82611c3f565b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906137ee565b60405180910390fd5b610b3e838383611d1d565b505050565b600f6020528060005260406000206000915090505481565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610baf83610f25565b8210610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be79061356e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610c57611b12565b73ffffffffffffffffffffffffffffffffffffffff16610c75611415565b73ffffffffffffffffffffffffffffffffffffffff1614610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc29061374e565b60405180910390fd5b6000479050732bd07813c54b090fd137ee9e4eba6a8307c262e073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d2a573d6000803e3d6000fd5b5050565b610d49838383604051806020016040528060008152506117eb565b505050565b6000610d58610ad6565b8210610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061380e565b60405180910390fd5b60088281548110610dd3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e85906136ce565b60405180910390fd5b80915050919050565b600b8054610ea490613ad9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090613ad9565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d906136ae565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fe5611b12565b73ffffffffffffffffffffffffffffffffffffffff16611003611415565b73ffffffffffffffffffffffffffffffffffffffff1614611059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110509061374e565b60405180910390fd5b6110636000611f79565b565b61106d611b12565b73ffffffffffffffffffffffffffffffffffffffff1661108b611415565b73ffffffffffffffffffffffffffffffffffffffff16146110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d89061374e565b60405180910390fd5b60005b8151811015611197576001600f600084848151811061112c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461117d919061390e565b92505081905550808061118f90613b3c565b9150506110e4565b5050565b600d5481565b600c60009054906101000a900460ff166111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e7906137ae565b60405180910390fd5b6000600d549050612710600182611207919061390e565b1115611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f9061364e565b60405180910390fd5b600f6000611254611b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482600e600061129c611b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112e1919061390e565b1115611322576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113199061366e565b60405180910390fd5b81600e600061132f611b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611378919061390e565b9250508190555060005b828110156113bd5761139b611395611b12565b8361203f565b6001826113a8919061390e565b915080806113b590613b3c565b915050611382565b5080600d819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968856113ee611b12565b836040516113fd929190613508565b60405180910390a15050565b671bc16d674ec8000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461144e90613ad9565b80601f016020809104026020016040519081016040528092919081815260200182805461147a90613ad9565b80156114c75780601f1061149c576101008083540402835291602001916114c7565b820191906000526020600020905b8154815290600101906020018083116114aa57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906137ae565b60405180910390fd5b6000600d549050612710600182611537919061390e565b1115611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f9061364e565b60405180910390fd5b81671bc16d674ec8000061158c9190613995565b34146115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906136ee565b60405180910390fd5b60005b8281101561160b576115e96115e3611b12565b8361203f565b6001826115f6919061390e565b9150808061160390613b3c565b9150506115d0565b5080600d819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561163c611b12565b8360405161164b929190613508565b60405180910390a15050565b61165f611b12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c49061360e565b60405180910390fd5b80600560006116da611b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611787611b12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117cc9190613531565b60405180910390a35050565b600c60009054906101000a900460ff1681565b6117fc6117f6611b12565b83611c3f565b61183b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611832906137ee565b60405180910390fd5b6118478484848461205d565b50505050565b606061185882611b1a565b611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e9061378e565b60405180910390fd5b60006118a16120b9565b905060008151116118c157604051806020016040528060008152506118ec565b806118cb8461214b565b6040516020016118dc92919061347d565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611990611b12565b73ffffffffffffffffffffffffffffffffffffffff166119ae611415565b73ffffffffffffffffffffffffffffffffffffffff1614611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb9061374e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b906135ae565b60405180910390fd5b611a7d81611f79565b50565b600e6020528060005260406000206000915090505481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b0b5750611b0a826122f8565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bf983610de5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c4a82611b1a565b611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061362e565b60405180910390fd5b6000611c9483610de5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d0357508373ffffffffffffffffffffffffffffffffffffffff16611ceb84610939565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d145750611d1381856118f4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3d82610de5565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a9061376e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906135ee565b60405180910390fd5b611e0e8383836123da565b611e19600082611b86565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6991906139ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ec0919061390e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120598282604051806020016040528060008152506123ea565b5050565b612068848484611d1d565b61207484848484612445565b6120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa9061358e565b60405180910390fd5b50505050565b6060600b80546120c890613ad9565b80601f01602080910402602001604051908101604052809291908181526020018280546120f490613ad9565b80156121415780601f1061211657610100808354040283529160200191612141565b820191906000526020600020905b81548152906001019060200180831161212457829003601f168201915b5050505050905090565b60606000821415612193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f3565b600082905060005b600082146121c55780806121ae90613b3c565b915050600a826121be9190613964565b915061219b565b60008167ffffffffffffffff811115612207577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122395781602001600182028036833780820191505090505b5090505b600085146122ec5760018261225291906139ef565b9150600a856122619190613b85565b603061226d919061390e565b60f81b8183815181106122a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e59190613964565b945061223d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123d357506123d2826125dc565b5b9050919050565b6123e5838383612646565b505050565b6123f4838361275a565b6124016000848484612445565b612440576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124379061358e565b60405180910390fd5b505050565b60006124668473ffffffffffffffffffffffffffffffffffffffff16612928565b156125cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248f611b12565b8786866040518563ffffffff1660e01b81526004016124b194939291906134bc565b602060405180830381600087803b1580156124cb57600080fd5b505af19250505080156124fc57506040513d601f19601f820116820180604052508101906124f99190613059565b60015b61257f573d806000811461252c576040519150601f19603f3d011682016040523d82523d6000602084013e612531565b606091505b50600081511415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e9061358e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125d4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61265183838361293b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126945761268f81612940565b6126d3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126d2576126d18382612989565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127165761271181612af6565b612755565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612754576127538282612c39565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c19061370e565b60405180910390fd5b6127d381611b1a565b15612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a906135ce565b60405180910390fd5b61281f600083836123da565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461286f919061390e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161299684610f25565b6129a091906139ef565b9050600060076000848152602001908152602001600020549050818114612a85576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b0a91906139ef565b9050600060096000848152602001908152602001600020549050600060088381548110612b60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ba8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c4483610f25565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000612ccb612cc68461386e565b613849565b90508083825260208201905082856020860282011115612cea57600080fd5b60005b85811015612d1a5781612d008882612d62565b845260208401935060208301925050600181019050612ced565b5050509392505050565b6000612d37612d328461389a565b613849565b905082815260208101848484011115612d4f57600080fd5b612d5a848285613a97565b509392505050565b600081359050612d7181614243565b92915050565b600082601f830112612d8857600080fd5b8135612d98848260208601612cb8565b91505092915050565b600081359050612db08161425a565b92915050565b600081359050612dc581614271565b92915050565b600081519050612dda81614271565b92915050565b600082601f830112612df157600080fd5b8135612e01848260208601612d24565b91505092915050565b600081359050612e1981614288565b92915050565b600060208284031215612e3157600080fd5b6000612e3f84828501612d62565b91505092915050565b60008060408385031215612e5b57600080fd5b6000612e6985828601612d62565b9250506020612e7a85828601612d62565b9150509250929050565b600080600060608486031215612e9957600080fd5b6000612ea786828701612d62565b9350506020612eb886828701612d62565b9250506040612ec986828701612e0a565b9150509250925092565b60008060008060808587031215612ee957600080fd5b6000612ef787828801612d62565b9450506020612f0887828801612d62565b9350506040612f1987828801612e0a565b925050606085013567ffffffffffffffff811115612f3657600080fd5b612f4287828801612de0565b91505092959194509250565b60008060408385031215612f6157600080fd5b6000612f6f85828601612d62565b9250506020612f8085828601612da1565b9150509250929050565b60008060408385031215612f9d57600080fd5b6000612fab85828601612d62565b9250506020612fbc85828601612e0a565b9150509250929050565b600060208284031215612fd857600080fd5b600082013567ffffffffffffffff811115612ff257600080fd5b612ffe84828501612d77565b91505092915050565b60006020828403121561301957600080fd5b600061302784828501612da1565b91505092915050565b60006020828403121561304257600080fd5b600061305084828501612db6565b91505092915050565b60006020828403121561306b57600080fd5b600061307984828501612dcb565b91505092915050565b60006020828403121561309457600080fd5b60006130a284828501612e0a565b91505092915050565b6130b481613a23565b82525050565b6130c381613a35565b82525050565b60006130d4826138cb565b6130de81856138e1565b93506130ee818560208601613aa6565b6130f781613c72565b840191505092915050565b600061310d826138d6565b61311781856138f2565b9350613127818560208601613aa6565b61313081613c72565b840191505092915050565b6000613146826138d6565b6131508185613903565b9350613160818560208601613aa6565b80840191505092915050565b6000613179602b836138f2565b915061318482613c83565b604082019050919050565b600061319c6032836138f2565b91506131a782613cd2565b604082019050919050565b60006131bf6026836138f2565b91506131ca82613d21565b604082019050919050565b60006131e2601c836138f2565b91506131ed82613d70565b602082019050919050565b60006132056024836138f2565b915061321082613d99565b604082019050919050565b60006132286019836138f2565b915061323382613de8565b602082019050919050565b600061324b602c836138f2565b915061325682613e11565b604082019050919050565b600061326e6019836138f2565b915061327982613e60565b602082019050919050565b6000613291601d836138f2565b915061329c82613e89565b602082019050919050565b60006132b46038836138f2565b91506132bf82613eb2565b604082019050919050565b60006132d7602a836138f2565b91506132e282613f01565b604082019050919050565b60006132fa6029836138f2565b915061330582613f50565b604082019050919050565b600061331d6027836138f2565b915061332882613f9f565b604082019050919050565b60006133406020836138f2565b915061334b82613fee565b602082019050919050565b6000613363602c836138f2565b915061336e82614017565b604082019050919050565b60006133866020836138f2565b915061339182614066565b602082019050919050565b60006133a96029836138f2565b91506133b48261408f565b604082019050919050565b60006133cc602f836138f2565b91506133d7826140de565b604082019050919050565b60006133ef601e836138f2565b91506133fa8261412d565b602082019050919050565b60006134126021836138f2565b915061341d82614156565b604082019050919050565b60006134356031836138f2565b9150613440826141a5565b604082019050919050565b6000613458602c836138f2565b9150613463826141f4565b604082019050919050565b61347781613a8d565b82525050565b6000613489828561313b565b9150613495828461313b565b91508190509392505050565b60006020820190506134b660008301846130ab565b92915050565b60006080820190506134d160008301876130ab565b6134de60208301866130ab565b6134eb604083018561346e565b81810360608301526134fd81846130c9565b905095945050505050565b600060408201905061351d60008301856130ab565b61352a602083018461346e565b9392505050565b600060208201905061354660008301846130ba565b92915050565b600060208201905081810360008301526135668184613102565b905092915050565b600060208201905081810360008301526135878161316c565b9050919050565b600060208201905081810360008301526135a78161318f565b9050919050565b600060208201905081810360008301526135c7816131b2565b9050919050565b600060208201905081810360008301526135e7816131d5565b9050919050565b60006020820190508181036000830152613607816131f8565b9050919050565b600060208201905081810360008301526136278161321b565b9050919050565b600060208201905081810360008301526136478161323e565b9050919050565b6000602082019050818103600083015261366781613261565b9050919050565b6000602082019050818103600083015261368781613284565b9050919050565b600060208201905081810360008301526136a7816132a7565b9050919050565b600060208201905081810360008301526136c7816132ca565b9050919050565b600060208201905081810360008301526136e7816132ed565b9050919050565b6000602082019050818103600083015261370781613310565b9050919050565b6000602082019050818103600083015261372781613333565b9050919050565b6000602082019050818103600083015261374781613356565b9050919050565b6000602082019050818103600083015261376781613379565b9050919050565b600060208201905081810360008301526137878161339c565b9050919050565b600060208201905081810360008301526137a7816133bf565b9050919050565b600060208201905081810360008301526137c7816133e2565b9050919050565b600060208201905081810360008301526137e781613405565b9050919050565b6000602082019050818103600083015261380781613428565b9050919050565b600060208201905081810360008301526138278161344b565b9050919050565b6000602082019050613843600083018461346e565b92915050565b6000613853613864565b905061385f8282613b0b565b919050565b6000604051905090565b600067ffffffffffffffff82111561388957613888613c43565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156138b5576138b4613c43565b5b6138be82613c72565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391982613a8d565b915061392483613a8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395957613958613bb6565b5b828201905092915050565b600061396f82613a8d565b915061397a83613a8d565b92508261398a57613989613be5565b5b828204905092915050565b60006139a082613a8d565b91506139ab83613a8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139e4576139e3613bb6565b5b828202905092915050565b60006139fa82613a8d565b9150613a0583613a8d565b925082821015613a1857613a17613bb6565b5b828203905092915050565b6000613a2e82613a6d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ac4578082015181840152602081019050613aa9565b83811115613ad3576000848401525b50505050565b60006002820490506001821680613af157607f821691505b60208210811415613b0557613b04613c14565b5b50919050565b613b1482613c72565b810181811067ffffffffffffffff82111715613b3357613b32613c43565b5b80604052505050565b6000613b4782613a8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7a57613b79613bb6565b5b600182019050919050565b6000613b9082613a8d565b9150613b9b83613a8d565b925082613bab57613baa613be5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f42414d433a206d617820737570706c7920657863656564656400000000000000600082015250565b7f42414d433a20796f752063616e74206d696e742074686973206d616e79000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f42414d433a2065746865722073656e74206973206c657373207468616e20746860008201527f6520707269636500000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f42414d433a206d696e7420686173206e6f742073746172746564207965740000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61424c81613a23565b811461425757600080fd5b50565b61426381613a35565b811461426e57600080fd5b50565b61427a81613a41565b811461428557600080fd5b50565b61429181613a8d565b811461429c57600080fd5b5056fea26469706673582212209330843f5c2ec45021301e654fd85e0af51d6400cf72915a516c36653aa884b564736f6c63430008040033

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.