ETH Price: $3,465.07 (-1.47%)
Gas: 5 Gwei

Token

Hellfire By BEEBLE (HELLFIRE)
 

Overview

Max Total Supply

1,000 HELLFIRE

Holders

500

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dirtdoc.eth
Balance
1 HELLFIRE
0x8A1A3b377983A59aD4961311928cF86e9fa3A5dA
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:
HellfireByBEEBLE

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Hellfire.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract HellfireByBEEBLE is ERC721A, Ownable {
    using Strings for uint256;
    uint256 public constant maxSupply = 1000;
    uint256 public cost = 0.02 ether;
    uint256 public pubCost = 0.04 ether;
    uint256 public holderQ;
    bool public holderSaleActive;
    bool public pubActive;
    string private baseURI;
    bool public appendedID;
    mapping(address => uint256) public holderFreeMintAmount;
    mapping(address => uint256) public holderPaidMintAmount;
    mapping(address => uint256) public pubPaidMintAmount;

    constructor() ERC721A("Hellfire By BEEBLE", "HELLFIRE") {
    }

    function mintFreeHolder() external payable {
        uint256 supply = totalSupply();
        holderQ = getHolderWL(msg.sender);
        require(supply + 1 <= maxSupply, "Cant go over supply");
        require(holderSaleActive, "HOLDERSALE_INACTIVE");
        require(holderFreeMintAmount[msg.sender] + 1 <= holderQ, "HOLDERSALEFREE_MAXED");
        unchecked {
            holderFreeMintAmount[msg.sender] += 1;
        }
        _safeMint(msg.sender, 1);
    }

    function mintPaidHolder(uint256 _quantity) external payable {
        uint256 supply = totalSupply();
        holderQ = getHolderWL(msg.sender);
        require(supply + _quantity <= maxSupply, "Cant go over supply");
        require(holderSaleActive, "HOLDERSALE_INACTIVE");
        require(holderPaidMintAmount[msg.sender] + _quantity <= holderQ*2, "HOLDERSALEPAID_MAXED");
        require(msg.value >= cost, "INCORRECT_ETH");
        unchecked {
            holderPaidMintAmount[msg.sender] += _quantity;
        }
        _safeMint(msg.sender, _quantity);
    }

    function mintPaidPublic(uint256 _quantity) external payable {
        uint256 s = totalSupply();
        require(s + _quantity <= maxSupply, "Cant go over supply");
        require(pubActive, "PUBLIC_INACTIVE");
        require(msg.value >= pubCost, "INCORRECT_ETH");
        require(pubPaidMintAmount[msg.sender] + _quantity <= 4, "PUBLICPAID_MAXED");
        unchecked {
            pubPaidMintAmount[msg.sender] += _quantity;
        }
        _safeMint(msg.sender, _quantity);
    }

    function ownerMint(address _account, uint256 _quantity)
        external
        onlyOwner
    {
        uint256 s = totalSupply();
        require(s + _quantity <= maxSupply, "Over Supply");
        require(_quantity > 0, "QUANTITY_INVALID");
        _safeMint(_account, _quantity);
    }

    function setHolderCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setPubCost(uint256 _newCost) public onlyOwner {
        pubCost = _newCost;
    }

    function activateHolderSale() external onlyOwner {
        !holderSaleActive ? holderSaleActive = true : holderSaleActive = false;
    }

    function activatePublicSale() external onlyOwner {
        !pubActive ? pubActive = true : pubActive = false;
    }

    function numberMinted(address owner) external view returns (uint256) {
        return _numberMinted(owner);
    }

    function setBaseURI(string calldata _baseURI, bool appendID) external onlyOwner {
        if (!appendedID && appendID) appendedID = appendID; 
        baseURI = _baseURI;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Cannot query non-existent token");
        if (appendedID) {
        return string(abi.encodePacked(baseURI, _tokenId.toString()));
        } else {
            return baseURI;
        }
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 11 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function getHolderWL(address owner) public view returns (uint256) {
       uint256 holderWL;
       holderWL = uint256(IERC721(0x6FEFb647395e680339bADC84dC774E3CA8bCA7B9).balanceOf(owner));
       return holderWL;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"activateHolderSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"appendedID","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getHolderWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderPaidMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderQ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFreeHolder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPaidHolder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPaidPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pubPaidMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bool","name":"appendID","type":"bool"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setHolderCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPubCost","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":"_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":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266470de4df820000600955668e1bc9bf040000600a553480156200002757600080fd5b506040518060400160405280601281526020017f48656c6c6669726520427920424545424c4500000000000000000000000000008152506040518060400160405280600881526020017f48454c4c464952450000000000000000000000000000000000000000000000008152508160029080519060200190620000ac929190620001d7565b508060039080519060200190620000c5929190620001d7565b50620000d66200010460201b60201c565b6000819055505050620000fe620000f26200010960201b60201c565b6200011160201b60201c565b620002ec565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e590620002b6565b90600052602060002090601f01602090048101928262000209576000855562000255565b82601f106200022457805160ff191683800117855562000255565b8280016001018555821562000255579182015b828111156200025457825182559160200191906001019062000237565b5b50905062000264919062000268565b5090565b5b808211156200028357600081600090555060010162000269565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002cf57607f821691505b60208210811415620002e657620002e562000287565b5b50919050565b613ee580620002fc6000396000f3fe60806040526004361061023b5760003560e01c806377ad99f01161012e578063bf41b4a7116100ab578063eaba90581161006f578063eaba905814610827578063ee2944da14610864578063f183f2f31461088f578063f2fde38b146108ab578063fd8b262d146108d45761023b565b8063bf41b4a71461071a578063c87b56dd14610745578063d5abeb0114610782578063dc33e681146107ad578063e985e9c5146107ea5761023b565b806395d89b41116100f257806395d89b4114610637578063a22cb46514610662578063aac80dd91461068b578063b64b21ca146106c8578063b88d4fde146106f15761023b565b806377ad99f01461055f5780638a9019f01461057b5780638da5cb5b146105b857806390f6f728146105e3578063945937651461060c5761023b565b806322515b77116101bc57806342842e0e1161018057806342842e0e1461047c578063484b973c146104a55780636352211e146104ce57806370a082311461050b578063715018a6146105485761023b565b806322515b77146103fd57806323b872dd146104285780632e77af911461045157806338c303051461045b5780633ccfd60b146104725761023b565b8063081812fc11610203578063081812fc1461032a578063095ea7b31461036757806311eb30471461039057806313faede6146103a757806318160ddd146103d25761023b565b806301ffc9a714610240578063030efb8f1461027d57806305eb4199146102a657806306fdde03146102c25780630714b545146102ed575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612e86565b6108ff565b6040516102749190612ece565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612f1f565b6109e1565b005b6102c060048036038101906102bb9190612f1f565b6109f3565b005b3480156102ce57600080fd5b506102d7610be8565b6040516102e49190612fe5565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613065565b610c7a565b60405161032191906130a1565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612f1f565b610c92565b60405161035e91906130cb565b60405180910390f35b34801561037357600080fd5b5061038e600480360381019061038991906130e6565b610d0e565b005b34801561039c57600080fd5b506103a5610e19565b005b3480156103b357600080fd5b506103bc610e73565b6040516103c991906130a1565b60405180910390f35b3480156103de57600080fd5b506103e7610e79565b6040516103f491906130a1565b60405180910390f35b34801561040957600080fd5b50610412610e90565b60405161041f91906130a1565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613126565b610e96565b005b610459610ea6565b005b34801561046757600080fd5b5061047061104d565b005b61047a6110a7565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613126565b611128565b005b3480156104b157600080fd5b506104cc60048036038101906104c791906130e6565b611148565b005b3480156104da57600080fd5b506104f560048036038101906104f09190612f1f565b6111fe565b60405161050291906130cb565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613065565b611214565b60405161053f91906130a1565b60405180910390f35b34801561055457600080fd5b5061055d6112e4565b005b61057960048036038101906105749190612f1f565b6112f8565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613065565b61137a565b6040516105af91906130a1565b60405180910390f35b3480156105c457600080fd5b506105cd611425565b6040516105da91906130cb565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612f1f565b61144f565b005b34801561061857600080fd5b50610621611461565b60405161062e9190612ece565b60405180910390f35b34801561064357600080fd5b5061064c611474565b6040516106599190612fe5565b60405180910390f35b34801561066e57600080fd5b50610689600480360381019061068491906131a5565b611506565b005b34801561069757600080fd5b506106b260048036038101906106ad9190613065565b61167e565b6040516106bf91906130a1565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea919061324a565b611696565b005b3480156106fd57600080fd5b50610718600480360381019061071391906133da565b6116ef565b005b34801561072657600080fd5b5061072f61176b565b60405161073c91906130a1565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612f1f565b611771565b6040516107799190612fe5565b60405180910390f35b34801561078e57600080fd5b50610797611895565b6040516107a491906130a1565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613065565b61189b565b6040516107e191906130a1565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c919061345d565b6118ad565b60405161081e9190612ece565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613065565b611941565b60405161085b91906130a1565b60405180910390f35b34801561087057600080fd5b50610879611959565b6040516108869190612ece565b60405180910390f35b6108a960048036038101906108a49190612f1f565b61196c565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613065565b611b45565b005b3480156108e057600080fd5b506108e9611bc9565b6040516108f69190612ece565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109da57506109d982611bdc565b5b9050919050565b6109e9611c46565b8060098190555050565b60006109fd610e79565b9050610a083361137a565b600b819055506103e88282610a1d91906134cc565b1115610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a559061356e565b60405180910390fd5b600c60009054906101000a900460ff16610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa4906135da565b60405180910390fd5b6002600b54610abc91906135fa565b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0791906134cc565b1115610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f906136a0565b60405180910390fd5b600954341015610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b849061370c565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550610be43383611cc4565b5050565b606060028054610bf79061375b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c239061375b565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b5050505050905090565b60106020528060005260406000206000915090505481565b6000610c9d82611ce2565b610cd3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d19826111fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d81576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610da0611d30565b73ffffffffffffffffffffffffffffffffffffffff1614158015610dd25750610dd081610dcb611d30565b6118ad565b155b15610e09576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e14838383611d38565b505050565b610e21611c46565b600c60019054906101000a900460ff1615610e55576000600c60016101000a81548160ff0219169083151502179055610e70565b6001600c60016101000a81548160ff02191690831515021790555b50565b60095481565b6000610e83611dea565b6001546000540303905090565b600a5481565b610ea1838383611def565b505050565b6000610eb0610e79565b9050610ebb3361137a565b600b819055506103e8600182610ed191906134cc565b1115610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f099061356e565b60405180910390fd5b600c60009054906101000a900460ff16610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f58906135da565b60405180910390fd5b600b546001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb091906134cc565b1115610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe8906137d9565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061104a336001611cc4565b50565b611055611c46565b600c60009054906101000a900460ff1615611089576000600c60006101000a81548160ff02191690831515021790556110a4565b6001600c60006101000a81548160ff02191690831515021790555b50565b6110af611c46565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110d59061382a565b60006040518083038185875af1925050503d8060008114611112576040519150601f19603f3d011682016040523d82523d6000602084013e611117565b606091505b505090508061112557600080fd5b50565b611143838383604051806020016040528060008152506116ef565b505050565b611150611c46565b600061115a610e79565b90506103e8828261116b91906134cc565b11156111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061388b565b60405180910390fd5b600082116111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906138f7565b60405180910390fd5b6111f98383611cc4565b505050565b6000611209826122a5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112ec611c46565b6112f66000612534565b565b611300611c46565b60003373ffffffffffffffffffffffffffffffffffffffff16826040516113269061382a565b60006040518083038185875af1925050503d8060008114611363576040519150601f19603f3d011682016040523d82523d6000602084013e611368565b606091505b505090508061137657600080fd5b5050565b600080736fefb647395e680339badc84dc774e3ca8bca7b973ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016113ca91906130cb565b60206040518083038186803b1580156113e257600080fd5b505afa1580156113f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141a919061392c565b905080915050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611457611c46565b80600a8190555050565b600e60009054906101000a900460ff1681565b6060600380546114839061375b565b80601f01602080910402602001604051908101604052809291908181526020018280546114af9061375b565b80156114fc5780601f106114d1576101008083540402835291602001916114fc565b820191906000526020600020905b8154815290600101906020018083116114df57829003601f168201915b5050505050905090565b61150e611d30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611573576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611580611d30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661162d611d30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116729190612ece565b60405180910390a35050565b600f6020528060005260406000206000915090505481565b61169e611c46565b600e60009054906101000a900460ff161580156116b85750805b156116d85780600e60006101000a81548160ff0219169083151502179055505b8282600d91906116e9929190612d34565b50505050565b6116fa848484611def565b6117198373ffffffffffffffffffffffffffffffffffffffff166125fa565b801561172e575061172c8484848461261d565b155b15611765576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b5481565b606061177c82611ce2565b6117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b2906139a5565b60405180910390fd5b600e60009054906101000a900460ff161561180257600d6117db8361277d565b6040516020016117ec929190613a95565b6040516020818303038152906040529050611890565b600d805461180f9061375b565b80601f016020809104026020016040519081016040528092919081815260200182805461183b9061375b565b80156118885780601f1061185d57610100808354040283529160200191611888565b820191906000526020600020905b81548152906001019060200180831161186b57829003601f168201915b505050505090505b919050565b6103e881565b60006118a6826128de565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b600c60019054906101000a900460ff1681565b6000611976610e79565b90506103e8828261198791906134cc565b11156119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf9061356e565b60405180910390fd5b600c60019054906101000a900460ff16611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90613b05565b60405180910390fd5b600a54341015611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a539061370c565b60405180910390fd5b600482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa991906134cc565b1115611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613b71565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b413383611cc4565b5050565b611b4d611c46565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490613c03565b60405180910390fd5b611bc681612534565b50565b600c60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c4e611d30565b73ffffffffffffffffffffffffffffffffffffffff16611c6c611425565b73ffffffffffffffffffffffffffffffffffffffff1614611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb990613c6f565b60405180910390fd5b565b611cde828260405180602001604052806000815250612948565b5050565b600081611ced611dea565b11158015611cfc575060005482105b8015611d29575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611dfa826122a5565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e86611d30565b73ffffffffffffffffffffffffffffffffffffffff161480611eb55750611eb485611eaf611d30565b6118ad565b5b80611efa5750611ec3611d30565b73ffffffffffffffffffffffffffffffffffffffff16611ee284610c92565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa7858585600161295a565b611fb360008487611d38565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561223357600054821461223257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229e8585856001612960565b5050505050565b6122ad612dba565b6000829050806122bb611dea565b111580156122ca575060005481105b156124fd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124fb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123df57809250505061252f565b5b6001156124fa57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124f557809250505061252f565b6123e0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612643611d30565b8786866040518563ffffffff1660e01b81526004016126659493929190613ce4565b602060405180830381600087803b15801561267f57600080fd5b505af19250505080156126b057506040513d601f19601f820116820180604052508101906126ad9190613d45565b60015b61272a573d80600081146126e0576040519150601f19603f3d011682016040523d82523d6000602084013e6126e5565b606091505b50600081511415612722576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156127c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128d9565b600082905060005b600082146127f75780806127e090613d72565b915050600a826127f09190613dea565b91506127cd565b60008167ffffffffffffffff811115612813576128126132af565b5b6040519080825280601f01601f1916602001820160405280156128455781602001600182028036833780820191505090505b5090505b600085146128d25760018261285e9190613e1b565b9150600a8561286d9190613e4f565b603061287991906134cc565b60f81b81838151811061288f5761288e613e80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128cb9190613dea565b9450612849565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6129558383836001612966565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a0e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a1b600086838761295a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612be55750612be48773ffffffffffffffffffffffffffffffffffffffff166125fa565b5b15612cab575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5a600088848060010195508861261d565b612c90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612beb578260005414612ca657600080fd5b612d17565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612cac575b816000819055505050612d2d6000868387612960565b5050505050565b828054612d409061375b565b90600052602060002090601f016020900481019282612d625760008555612da9565b82601f10612d7b57803560ff1916838001178555612da9565b82800160010185558215612da9579182015b82811115612da8578235825591602001919060010190612d8d565b5b509050612db69190612dfd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e16576000816000905550600101612dfe565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e6381612e2e565b8114612e6e57600080fd5b50565b600081359050612e8081612e5a565b92915050565b600060208284031215612e9c57612e9b612e24565b5b6000612eaa84828501612e71565b91505092915050565b60008115159050919050565b612ec881612eb3565b82525050565b6000602082019050612ee36000830184612ebf565b92915050565b6000819050919050565b612efc81612ee9565b8114612f0757600080fd5b50565b600081359050612f1981612ef3565b92915050565b600060208284031215612f3557612f34612e24565b5b6000612f4384828501612f0a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f86578082015181840152602081019050612f6b565b83811115612f95576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fb782612f4c565b612fc18185612f57565b9350612fd1818560208601612f68565b612fda81612f9b565b840191505092915050565b60006020820190508181036000830152612fff8184612fac565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061303282613007565b9050919050565b61304281613027565b811461304d57600080fd5b50565b60008135905061305f81613039565b92915050565b60006020828403121561307b5761307a612e24565b5b600061308984828501613050565b91505092915050565b61309b81612ee9565b82525050565b60006020820190506130b66000830184613092565b92915050565b6130c581613027565b82525050565b60006020820190506130e060008301846130bc565b92915050565b600080604083850312156130fd576130fc612e24565b5b600061310b85828601613050565b925050602061311c85828601612f0a565b9150509250929050565b60008060006060848603121561313f5761313e612e24565b5b600061314d86828701613050565b935050602061315e86828701613050565b925050604061316f86828701612f0a565b9150509250925092565b61318281612eb3565b811461318d57600080fd5b50565b60008135905061319f81613179565b92915050565b600080604083850312156131bc576131bb612e24565b5b60006131ca85828601613050565b92505060206131db85828601613190565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261320a576132096131e5565b5b8235905067ffffffffffffffff811115613227576132266131ea565b5b602083019150836001820283011115613243576132426131ef565b5b9250929050565b60008060006040848603121561326357613262612e24565b5b600084013567ffffffffffffffff81111561328157613280612e29565b5b61328d868287016131f4565b935093505060206132a086828701613190565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132e782612f9b565b810181811067ffffffffffffffff82111715613306576133056132af565b5b80604052505050565b6000613319612e1a565b905061332582826132de565b919050565b600067ffffffffffffffff821115613345576133446132af565b5b61334e82612f9b565b9050602081019050919050565b82818337600083830152505050565b600061337d6133788461332a565b61330f565b905082815260208101848484011115613399576133986132aa565b5b6133a484828561335b565b509392505050565b600082601f8301126133c1576133c06131e5565b5b81356133d184826020860161336a565b91505092915050565b600080600080608085870312156133f4576133f3612e24565b5b600061340287828801613050565b945050602061341387828801613050565b935050604061342487828801612f0a565b925050606085013567ffffffffffffffff81111561344557613444612e29565b5b613451878288016133ac565b91505092959194509250565b6000806040838503121561347457613473612e24565b5b600061348285828601613050565b925050602061349385828601613050565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134d782612ee9565b91506134e283612ee9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135175761351661349d565b5b828201905092915050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b6000613558601383612f57565b915061356382613522565b602082019050919050565b600060208201905081810360008301526135878161354b565b9050919050565b7f484f4c44455253414c455f494e41435449564500000000000000000000000000600082015250565b60006135c4601383612f57565b91506135cf8261358e565b602082019050919050565b600060208201905081810360008301526135f3816135b7565b9050919050565b600061360582612ee9565b915061361083612ee9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136495761364861349d565b5b828202905092915050565b7f484f4c44455253414c45504149445f4d41584544000000000000000000000000600082015250565b600061368a601483612f57565b915061369582613654565b602082019050919050565b600060208201905081810360008301526136b98161367d565b9050919050565b7f494e434f52524543545f45544800000000000000000000000000000000000000600082015250565b60006136f6600d83612f57565b9150613701826136c0565b602082019050919050565b60006020820190508181036000830152613725816136e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377357607f821691505b602082108114156137875761378661372c565b5b50919050565b7f484f4c44455253414c45465245455f4d41584544000000000000000000000000600082015250565b60006137c3601483612f57565b91506137ce8261378d565b602082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b600081905092915050565b50565b60006138146000836137f9565b915061381f82613804565b600082019050919050565b600061383582613807565b9150819050919050565b7f4f76657220537570706c79000000000000000000000000000000000000000000600082015250565b6000613875600b83612f57565b91506138808261383f565b602082019050919050565b600060208201905081810360008301526138a481613868565b9050919050565b7f5155414e544954595f494e56414c494400000000000000000000000000000000600082015250565b60006138e1601083612f57565b91506138ec826138ab565b602082019050919050565b60006020820190508181036000830152613910816138d4565b9050919050565b60008151905061392681612ef3565b92915050565b60006020828403121561394257613941612e24565b5b600061395084828501613917565b91505092915050565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b600061398f601f83612f57565b915061399a82613959565b602082019050919050565b600060208201905081810360008301526139be81613982565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546139f28161375b565b6139fc81866139c5565b94506001821660008114613a175760018114613a2857613a5b565b60ff19831686528186019350613a5b565b613a31856139d0565b60005b83811015613a5357815481890152600182019150602081019050613a34565b838801955050505b50505092915050565b6000613a6f82612f4c565b613a7981856139c5565b9350613a89818560208601612f68565b80840191505092915050565b6000613aa182856139e5565b9150613aad8284613a64565b91508190509392505050565b7f5055424c49435f494e4143544956450000000000000000000000000000000000600082015250565b6000613aef600f83612f57565b9150613afa82613ab9565b602082019050919050565b60006020820190508181036000830152613b1e81613ae2565b9050919050565b7f5055424c4943504149445f4d4158454400000000000000000000000000000000600082015250565b6000613b5b601083612f57565b9150613b6682613b25565b602082019050919050565b60006020820190508181036000830152613b8a81613b4e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bed602683612f57565b9150613bf882613b91565b604082019050919050565b60006020820190508181036000830152613c1c81613be0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c59602083612f57565b9150613c6482613c23565b602082019050919050565b60006020820190508181036000830152613c8881613c4c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cb682613c8f565b613cc08185613c9a565b9350613cd0818560208601612f68565b613cd981612f9b565b840191505092915050565b6000608082019050613cf960008301876130bc565b613d0660208301866130bc565b613d136040830185613092565b8181036060830152613d258184613cab565b905095945050505050565b600081519050613d3f81612e5a565b92915050565b600060208284031215613d5b57613d5a612e24565b5b6000613d6984828501613d30565b91505092915050565b6000613d7d82612ee9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613db057613daf61349d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613df582612ee9565b9150613e0083612ee9565b925082613e1057613e0f613dbb565b5b828204905092915050565b6000613e2682612ee9565b9150613e3183612ee9565b925082821015613e4457613e4361349d565b5b828203905092915050565b6000613e5a82612ee9565b9150613e6583612ee9565b925082613e7557613e74613dbb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f4235035b440a6b82e3ad501bc94a20879b107f246132ab596a32b1074d36ee364736f6c63430008090033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806377ad99f01161012e578063bf41b4a7116100ab578063eaba90581161006f578063eaba905814610827578063ee2944da14610864578063f183f2f31461088f578063f2fde38b146108ab578063fd8b262d146108d45761023b565b8063bf41b4a71461071a578063c87b56dd14610745578063d5abeb0114610782578063dc33e681146107ad578063e985e9c5146107ea5761023b565b806395d89b41116100f257806395d89b4114610637578063a22cb46514610662578063aac80dd91461068b578063b64b21ca146106c8578063b88d4fde146106f15761023b565b806377ad99f01461055f5780638a9019f01461057b5780638da5cb5b146105b857806390f6f728146105e3578063945937651461060c5761023b565b806322515b77116101bc57806342842e0e1161018057806342842e0e1461047c578063484b973c146104a55780636352211e146104ce57806370a082311461050b578063715018a6146105485761023b565b806322515b77146103fd57806323b872dd146104285780632e77af911461045157806338c303051461045b5780633ccfd60b146104725761023b565b8063081812fc11610203578063081812fc1461032a578063095ea7b31461036757806311eb30471461039057806313faede6146103a757806318160ddd146103d25761023b565b806301ffc9a714610240578063030efb8f1461027d57806305eb4199146102a657806306fdde03146102c25780630714b545146102ed575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612e86565b6108ff565b6040516102749190612ece565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612f1f565b6109e1565b005b6102c060048036038101906102bb9190612f1f565b6109f3565b005b3480156102ce57600080fd5b506102d7610be8565b6040516102e49190612fe5565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613065565b610c7a565b60405161032191906130a1565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612f1f565b610c92565b60405161035e91906130cb565b60405180910390f35b34801561037357600080fd5b5061038e600480360381019061038991906130e6565b610d0e565b005b34801561039c57600080fd5b506103a5610e19565b005b3480156103b357600080fd5b506103bc610e73565b6040516103c991906130a1565b60405180910390f35b3480156103de57600080fd5b506103e7610e79565b6040516103f491906130a1565b60405180910390f35b34801561040957600080fd5b50610412610e90565b60405161041f91906130a1565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613126565b610e96565b005b610459610ea6565b005b34801561046757600080fd5b5061047061104d565b005b61047a6110a7565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613126565b611128565b005b3480156104b157600080fd5b506104cc60048036038101906104c791906130e6565b611148565b005b3480156104da57600080fd5b506104f560048036038101906104f09190612f1f565b6111fe565b60405161050291906130cb565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613065565b611214565b60405161053f91906130a1565b60405180910390f35b34801561055457600080fd5b5061055d6112e4565b005b61057960048036038101906105749190612f1f565b6112f8565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613065565b61137a565b6040516105af91906130a1565b60405180910390f35b3480156105c457600080fd5b506105cd611425565b6040516105da91906130cb565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612f1f565b61144f565b005b34801561061857600080fd5b50610621611461565b60405161062e9190612ece565b60405180910390f35b34801561064357600080fd5b5061064c611474565b6040516106599190612fe5565b60405180910390f35b34801561066e57600080fd5b50610689600480360381019061068491906131a5565b611506565b005b34801561069757600080fd5b506106b260048036038101906106ad9190613065565b61167e565b6040516106bf91906130a1565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea919061324a565b611696565b005b3480156106fd57600080fd5b50610718600480360381019061071391906133da565b6116ef565b005b34801561072657600080fd5b5061072f61176b565b60405161073c91906130a1565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612f1f565b611771565b6040516107799190612fe5565b60405180910390f35b34801561078e57600080fd5b50610797611895565b6040516107a491906130a1565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613065565b61189b565b6040516107e191906130a1565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c919061345d565b6118ad565b60405161081e9190612ece565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613065565b611941565b60405161085b91906130a1565b60405180910390f35b34801561087057600080fd5b50610879611959565b6040516108869190612ece565b60405180910390f35b6108a960048036038101906108a49190612f1f565b61196c565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613065565b611b45565b005b3480156108e057600080fd5b506108e9611bc9565b6040516108f69190612ece565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109da57506109d982611bdc565b5b9050919050565b6109e9611c46565b8060098190555050565b60006109fd610e79565b9050610a083361137a565b600b819055506103e88282610a1d91906134cc565b1115610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a559061356e565b60405180910390fd5b600c60009054906101000a900460ff16610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa4906135da565b60405180910390fd5b6002600b54610abc91906135fa565b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0791906134cc565b1115610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f906136a0565b60405180910390fd5b600954341015610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b849061370c565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550610be43383611cc4565b5050565b606060028054610bf79061375b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c239061375b565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b5050505050905090565b60106020528060005260406000206000915090505481565b6000610c9d82611ce2565b610cd3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d19826111fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d81576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610da0611d30565b73ffffffffffffffffffffffffffffffffffffffff1614158015610dd25750610dd081610dcb611d30565b6118ad565b155b15610e09576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e14838383611d38565b505050565b610e21611c46565b600c60019054906101000a900460ff1615610e55576000600c60016101000a81548160ff0219169083151502179055610e70565b6001600c60016101000a81548160ff02191690831515021790555b50565b60095481565b6000610e83611dea565b6001546000540303905090565b600a5481565b610ea1838383611def565b505050565b6000610eb0610e79565b9050610ebb3361137a565b600b819055506103e8600182610ed191906134cc565b1115610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f099061356e565b60405180910390fd5b600c60009054906101000a900460ff16610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f58906135da565b60405180910390fd5b600b546001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fb091906134cc565b1115610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe8906137d9565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061104a336001611cc4565b50565b611055611c46565b600c60009054906101000a900460ff1615611089576000600c60006101000a81548160ff02191690831515021790556110a4565b6001600c60006101000a81548160ff02191690831515021790555b50565b6110af611c46565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110d59061382a565b60006040518083038185875af1925050503d8060008114611112576040519150601f19603f3d011682016040523d82523d6000602084013e611117565b606091505b505090508061112557600080fd5b50565b611143838383604051806020016040528060008152506116ef565b505050565b611150611c46565b600061115a610e79565b90506103e8828261116b91906134cc565b11156111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061388b565b60405180910390fd5b600082116111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e6906138f7565b60405180910390fd5b6111f98383611cc4565b505050565b6000611209826122a5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112ec611c46565b6112f66000612534565b565b611300611c46565b60003373ffffffffffffffffffffffffffffffffffffffff16826040516113269061382a565b60006040518083038185875af1925050503d8060008114611363576040519150601f19603f3d011682016040523d82523d6000602084013e611368565b606091505b505090508061137657600080fd5b5050565b600080736fefb647395e680339badc84dc774e3ca8bca7b973ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016113ca91906130cb565b60206040518083038186803b1580156113e257600080fd5b505afa1580156113f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141a919061392c565b905080915050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611457611c46565b80600a8190555050565b600e60009054906101000a900460ff1681565b6060600380546114839061375b565b80601f01602080910402602001604051908101604052809291908181526020018280546114af9061375b565b80156114fc5780601f106114d1576101008083540402835291602001916114fc565b820191906000526020600020905b8154815290600101906020018083116114df57829003601f168201915b5050505050905090565b61150e611d30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611573576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611580611d30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661162d611d30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116729190612ece565b60405180910390a35050565b600f6020528060005260406000206000915090505481565b61169e611c46565b600e60009054906101000a900460ff161580156116b85750805b156116d85780600e60006101000a81548160ff0219169083151502179055505b8282600d91906116e9929190612d34565b50505050565b6116fa848484611def565b6117198373ffffffffffffffffffffffffffffffffffffffff166125fa565b801561172e575061172c8484848461261d565b155b15611765576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b5481565b606061177c82611ce2565b6117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b2906139a5565b60405180910390fd5b600e60009054906101000a900460ff161561180257600d6117db8361277d565b6040516020016117ec929190613a95565b6040516020818303038152906040529050611890565b600d805461180f9061375b565b80601f016020809104026020016040519081016040528092919081815260200182805461183b9061375b565b80156118885780601f1061185d57610100808354040283529160200191611888565b820191906000526020600020905b81548152906001019060200180831161186b57829003601f168201915b505050505090505b919050565b6103e881565b60006118a6826128de565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b600c60019054906101000a900460ff1681565b6000611976610e79565b90506103e8828261198791906134cc565b11156119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf9061356e565b60405180910390fd5b600c60019054906101000a900460ff16611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90613b05565b60405180910390fd5b600a54341015611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a539061370c565b60405180910390fd5b600482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa991906134cc565b1115611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613b71565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b413383611cc4565b5050565b611b4d611c46565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490613c03565b60405180910390fd5b611bc681612534565b50565b600c60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c4e611d30565b73ffffffffffffffffffffffffffffffffffffffff16611c6c611425565b73ffffffffffffffffffffffffffffffffffffffff1614611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb990613c6f565b60405180910390fd5b565b611cde828260405180602001604052806000815250612948565b5050565b600081611ced611dea565b11158015611cfc575060005482105b8015611d29575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611dfa826122a5565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e86611d30565b73ffffffffffffffffffffffffffffffffffffffff161480611eb55750611eb485611eaf611d30565b6118ad565b5b80611efa5750611ec3611d30565b73ffffffffffffffffffffffffffffffffffffffff16611ee284610c92565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa7858585600161295a565b611fb360008487611d38565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561223357600054821461223257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461229e8585856001612960565b5050505050565b6122ad612dba565b6000829050806122bb611dea565b111580156122ca575060005481105b156124fd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124fb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123df57809250505061252f565b5b6001156124fa57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124f557809250505061252f565b6123e0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612643611d30565b8786866040518563ffffffff1660e01b81526004016126659493929190613ce4565b602060405180830381600087803b15801561267f57600080fd5b505af19250505080156126b057506040513d601f19601f820116820180604052508101906126ad9190613d45565b60015b61272a573d80600081146126e0576040519150601f19603f3d011682016040523d82523d6000602084013e6126e5565b606091505b50600081511415612722576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156127c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128d9565b600082905060005b600082146127f75780806127e090613d72565b915050600a826127f09190613dea565b91506127cd565b60008167ffffffffffffffff811115612813576128126132af565b5b6040519080825280601f01601f1916602001820160405280156128455781602001600182028036833780820191505090505b5090505b600085146128d25760018261285e9190613e1b565b9150600a8561286d9190613e4f565b603061287991906134cc565b60f81b81838151811061288f5761288e613e80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128cb9190613dea565b9450612849565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6129558383836001612966565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129d3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a0e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a1b600086838761295a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612be55750612be48773ffffffffffffffffffffffffffffffffffffffff166125fa565b5b15612cab575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5a600088848060010195508861261d565b612c90576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612beb578260005414612ca657600080fd5b612d17565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612cac575b816000819055505050612d2d6000868387612960565b5050505050565b828054612d409061375b565b90600052602060002090601f016020900481019282612d625760008555612da9565b82601f10612d7b57803560ff1916838001178555612da9565b82800160010185558215612da9579182015b82811115612da8578235825591602001919060010190612d8d565b5b509050612db69190612dfd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e16576000816000905550600101612dfe565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e6381612e2e565b8114612e6e57600080fd5b50565b600081359050612e8081612e5a565b92915050565b600060208284031215612e9c57612e9b612e24565b5b6000612eaa84828501612e71565b91505092915050565b60008115159050919050565b612ec881612eb3565b82525050565b6000602082019050612ee36000830184612ebf565b92915050565b6000819050919050565b612efc81612ee9565b8114612f0757600080fd5b50565b600081359050612f1981612ef3565b92915050565b600060208284031215612f3557612f34612e24565b5b6000612f4384828501612f0a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f86578082015181840152602081019050612f6b565b83811115612f95576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fb782612f4c565b612fc18185612f57565b9350612fd1818560208601612f68565b612fda81612f9b565b840191505092915050565b60006020820190508181036000830152612fff8184612fac565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061303282613007565b9050919050565b61304281613027565b811461304d57600080fd5b50565b60008135905061305f81613039565b92915050565b60006020828403121561307b5761307a612e24565b5b600061308984828501613050565b91505092915050565b61309b81612ee9565b82525050565b60006020820190506130b66000830184613092565b92915050565b6130c581613027565b82525050565b60006020820190506130e060008301846130bc565b92915050565b600080604083850312156130fd576130fc612e24565b5b600061310b85828601613050565b925050602061311c85828601612f0a565b9150509250929050565b60008060006060848603121561313f5761313e612e24565b5b600061314d86828701613050565b935050602061315e86828701613050565b925050604061316f86828701612f0a565b9150509250925092565b61318281612eb3565b811461318d57600080fd5b50565b60008135905061319f81613179565b92915050565b600080604083850312156131bc576131bb612e24565b5b60006131ca85828601613050565b92505060206131db85828601613190565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261320a576132096131e5565b5b8235905067ffffffffffffffff811115613227576132266131ea565b5b602083019150836001820283011115613243576132426131ef565b5b9250929050565b60008060006040848603121561326357613262612e24565b5b600084013567ffffffffffffffff81111561328157613280612e29565b5b61328d868287016131f4565b935093505060206132a086828701613190565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132e782612f9b565b810181811067ffffffffffffffff82111715613306576133056132af565b5b80604052505050565b6000613319612e1a565b905061332582826132de565b919050565b600067ffffffffffffffff821115613345576133446132af565b5b61334e82612f9b565b9050602081019050919050565b82818337600083830152505050565b600061337d6133788461332a565b61330f565b905082815260208101848484011115613399576133986132aa565b5b6133a484828561335b565b509392505050565b600082601f8301126133c1576133c06131e5565b5b81356133d184826020860161336a565b91505092915050565b600080600080608085870312156133f4576133f3612e24565b5b600061340287828801613050565b945050602061341387828801613050565b935050604061342487828801612f0a565b925050606085013567ffffffffffffffff81111561344557613444612e29565b5b613451878288016133ac565b91505092959194509250565b6000806040838503121561347457613473612e24565b5b600061348285828601613050565b925050602061349385828601613050565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134d782612ee9565b91506134e283612ee9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135175761351661349d565b5b828201905092915050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b6000613558601383612f57565b915061356382613522565b602082019050919050565b600060208201905081810360008301526135878161354b565b9050919050565b7f484f4c44455253414c455f494e41435449564500000000000000000000000000600082015250565b60006135c4601383612f57565b91506135cf8261358e565b602082019050919050565b600060208201905081810360008301526135f3816135b7565b9050919050565b600061360582612ee9565b915061361083612ee9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136495761364861349d565b5b828202905092915050565b7f484f4c44455253414c45504149445f4d41584544000000000000000000000000600082015250565b600061368a601483612f57565b915061369582613654565b602082019050919050565b600060208201905081810360008301526136b98161367d565b9050919050565b7f494e434f52524543545f45544800000000000000000000000000000000000000600082015250565b60006136f6600d83612f57565b9150613701826136c0565b602082019050919050565b60006020820190508181036000830152613725816136e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377357607f821691505b602082108114156137875761378661372c565b5b50919050565b7f484f4c44455253414c45465245455f4d41584544000000000000000000000000600082015250565b60006137c3601483612f57565b91506137ce8261378d565b602082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b600081905092915050565b50565b60006138146000836137f9565b915061381f82613804565b600082019050919050565b600061383582613807565b9150819050919050565b7f4f76657220537570706c79000000000000000000000000000000000000000000600082015250565b6000613875600b83612f57565b91506138808261383f565b602082019050919050565b600060208201905081810360008301526138a481613868565b9050919050565b7f5155414e544954595f494e56414c494400000000000000000000000000000000600082015250565b60006138e1601083612f57565b91506138ec826138ab565b602082019050919050565b60006020820190508181036000830152613910816138d4565b9050919050565b60008151905061392681612ef3565b92915050565b60006020828403121561394257613941612e24565b5b600061395084828501613917565b91505092915050565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b600061398f601f83612f57565b915061399a82613959565b602082019050919050565b600060208201905081810360008301526139be81613982565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546139f28161375b565b6139fc81866139c5565b94506001821660008114613a175760018114613a2857613a5b565b60ff19831686528186019350613a5b565b613a31856139d0565b60005b83811015613a5357815481890152600182019150602081019050613a34565b838801955050505b50505092915050565b6000613a6f82612f4c565b613a7981856139c5565b9350613a89818560208601612f68565b80840191505092915050565b6000613aa182856139e5565b9150613aad8284613a64565b91508190509392505050565b7f5055424c49435f494e4143544956450000000000000000000000000000000000600082015250565b6000613aef600f83612f57565b9150613afa82613ab9565b602082019050919050565b60006020820190508181036000830152613b1e81613ae2565b9050919050565b7f5055424c4943504149445f4d4158454400000000000000000000000000000000600082015250565b6000613b5b601083612f57565b9150613b6682613b25565b602082019050919050565b60006020820190508181036000830152613b8a81613b4e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bed602683612f57565b9150613bf882613b91565b604082019050919050565b60006020820190508181036000830152613c1c81613be0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c59602083612f57565b9150613c6482613c23565b602082019050919050565b60006020820190508181036000830152613c8881613c4c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cb682613c8f565b613cc08185613c9a565b9350613cd0818560208601612f68565b613cd981612f9b565b840191505092915050565b6000608082019050613cf960008301876130bc565b613d0660208301866130bc565b613d136040830185613092565b8181036060830152613d258184613cab565b905095945050505050565b600081519050613d3f81612e5a565b92915050565b600060208284031215613d5b57613d5a612e24565b5b6000613d6984828501613d30565b91505092915050565b6000613d7d82612ee9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613db057613daf61349d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613df582612ee9565b9150613e0083612ee9565b925082613e1057613e0f613dbb565b5b828204905092915050565b6000613e2682612ee9565b9150613e3183612ee9565b925082821015613e4457613e4361349d565b5b828203905092915050565b6000613e5a82612ee9565b9150613e6583612ee9565b925082613e7557613e74613dbb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f4235035b440a6b82e3ad501bc94a20879b107f246132ab596a32b1074d36ee364736f6c63430008090033

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.