ETH Price: $3,464.74 (+2.18%)
Gas: 9 Gwei

Token

borb (BORB)
 

Overview

Max Total Supply

5,555 BORB

Holders

1,672

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
mihawk88.eth
Balance
6 BORB
0x4e4e018514c72776fe0f48bdc13aa1aa49e88f61
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:
Borb

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Borb.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract Borb is ERC721A, Ownable {

    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public constant PUBLIC_FREE_SUPPLY = 1000; // not including 1000 free for WL
    uint256 public constant MAX_MINT_PER_TX = 5;
    uint256 public PUBLIC_SALE_PRICE = 0.0077 ether;

    string private baseTokenUri;

    bool public isRevealed;
    bool public isPublicLive;
    bool public teamMinted;

    bytes32 private merkleRoot;

    mapping(address => bool) public addressClaimed;
    uint256 public numFreeMinted = 0;

    constructor() ERC721A("borb", "BORB") {

    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Borb :: Cannot be called by a contract");
        _;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function mint(uint256 _quantity) external payable callerIsUser {
        require(isPublicLive, "Not Yet Active.");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Beyond Max Supply");
        require(_quantity <= MAX_MINT_PER_TX, "Exceeded max quantity per tx");
        if (numFreeMinted >= PUBLIC_FREE_SUPPLY || addressClaimed[msg.sender]) {
            require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "Payment is below the price");
        } else {
            // 1 free mint
            require(msg.value + PUBLIC_SALE_PRICE >= PUBLIC_SALE_PRICE * _quantity, "Payment is below the price");
            addressClaimed[msg.sender] = true;
            numFreeMinted += 1;
        }

        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser {
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Beyond max supply");
        require(_quantity <= MAX_MINT_PER_TX, "Exceeded max quantity per tx");
        require(!addressClaimed[msg.sender], "Already claimed whitelist mint!");
        require(msg.value + PUBLIC_SALE_PRICE >= PUBLIC_SALE_PRICE * _quantity, "Payment is below the price");
        //create leaf node
        bytes32 sender = keccak256(abi.encodePacked(msg.sender)); // leaf
        require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "You are not whitelisted");

        addressClaimed[msg.sender] = true;
        _safeMint(msg.sender, _quantity);
    }

    function teamMint() external onlyOwner {
        require(!teamMinted, "Team already minted");
        teamMinted = true;
        _safeMint(msg.sender, 10);
    }

    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if(!isRevealed){
            return "ipfs://bafkreifyvozh33ecvhzt3xsjzsfze6iqli5hslfg3jdojztbd62psvyo6i";
        }

        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, _toString(tokenId), ".json")) : "";
    }

    // include ipfs:// and /json/
    function setTokenUri(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function setMintPrice(uint256 price) external onlyOwner {
        PUBLIC_SALE_PRICE = price;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function getMerkleRoot() external view returns (bytes32){
        return merkleRoot;
    }

    function togglePublic() external onlyOwner {
        isPublicLive = !isPublicLive;
    }

    function toggleReveal() external onlyOwner {
        isRevealed = !isRevealed;
    }

    function withdraw() external onlyOwner {
        uint256 withdrawPortion = address(this).balance / 3;
        payable(0x40cD24A31f44BC398065E9Da992dFB938986e630).transfer(withdrawPortion);
        payable(0x22B7Ef67859eE837060bF6b753E12Fc2dc43a372).transfer(withdrawPortion);
        payable(0x679515E94ffe463d633c44a7c1c27F059cB71319).transfer(address(this).balance);
    }
}

File 2 of 6 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721A.sol";

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

            _currentIndex = startTokenId + quantity;
        }
        _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 5 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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 6 of 6 : 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;
    }
}

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":"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"isPublicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052661b5b1bf4c540006009556000600e553480156200002157600080fd5b506040518060400160405280600481526020017f626f7262000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f5242000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000a6929190620001d5565b508060039080519060200190620000bf929190620001d5565b50620000d0620000fe60201b60201c565b6000819055505050620000f8620000ec6200010760201b60201c565b6200010f60201b60201c565b620002ea565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e39062000285565b90600052602060002090601f01602090048101928262000207576000855562000253565b82601f106200022257805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025257825182559160200191906001019062000235565b5b50905062000262919062000266565b5090565b5b808211156200028157600081600090555060010162000267565b5090565b600060028204905060018216806200029e57607f821691505b60208210811415620002b557620002b4620002bb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b9480620002fa6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063e8b5498d1161006f578063e8b5498d14610725578063e985e9c514610750578063eed86eec1461078d578063f2fde38b146107b8578063f4a0a528146107e15761020f565b8063a22cb4651461067f578063b88d4fde146106a8578063ba7a86b8146106d1578063c87b56dd146106e85761020f565b80638da5cb5b116100e75780638da5cb5b146105cb5780638ecad721146105f657806395d89b4114610621578063981d87711461064c578063a0712d68146106635761020f565b8063715018a6146105235780637335d5cd1461053a578063772dc32f146105655780637cb64759146105a25761020f565b806332cb6b0c1161019b57806354214f691161016a57806354214f691461043c5780635b8ad429146104675780635e5f3ce41461047e5780636352211e146104a957806370a08231146104e65761020f565b806332cb6b0c146103a65780633ccfd60b146103d157806342842e0e146103e857806349590657146104115761020f565b8063081812fc116101e2578063081812fc146102d0578063095ea7b31461030d57806318160ddd1461033657806323b872dd146103615780632904e6d91461038a5761020f565b806301ffc9a7146102145780630675b7c61461025157806306fdde031461027a57806307e89ec0146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612cd4565b61080a565b6040516102489190613191565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612d2e565b61089c565b005b34801561028657600080fd5b5061028f610932565b60405161029c91906131c7565b60405180910390f35b3480156102b157600080fd5b506102ba6109c4565b6040516102c79190613369565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190612d77565b6109ca565b604051610304919061312a565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612c0b565b610a46565b005b34801561034257600080fd5b5061034b610b87565b6040516103589190613369565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612af5565b610b9e565b005b6103a4600480360381019061039f9190612c4b565b610bae565b005b3480156103b257600080fd5b506103bb610e7f565b6040516103c89190613369565b60405180910390f35b3480156103dd57600080fd5b506103e6610e85565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612af5565b611026565b005b34801561041d57600080fd5b50610426611046565b60405161043391906131ac565b60405180910390f35b34801561044857600080fd5b50610451611050565b60405161045e9190613191565b60405180910390f35b34801561047357600080fd5b5061047c611063565b005b34801561048a57600080fd5b5061049361110b565b6040516104a09190613191565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190612d77565b61111e565b6040516104dd919061312a565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612a88565b611130565b60405161051a9190613369565b60405180910390f35b34801561052f57600080fd5b506105386111c5565b005b34801561054657600080fd5b5061054f61124d565b60405161055c9190613369565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612a88565b611253565b6040516105999190613191565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612ca7565b611273565b005b3480156105d757600080fd5b506105e06112f9565b6040516105ed919061312a565b60405180910390f35b34801561060257600080fd5b5061060b611323565b6040516106189190613369565b60405180910390f35b34801561062d57600080fd5b50610636611328565b60405161064391906131c7565b60405180910390f35b34801561065857600080fd5b506106616113ba565b005b61067d60048036038101906106789190612d77565b611462565b005b34801561068b57600080fd5b506106a660048036038101906106a19190612bcb565b61174d565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190612b48565b6118c5565b005b3480156106dd57600080fd5b506106e6611938565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190612d77565b611a2c565b60405161071c91906131c7565b60405180910390f35b34801561073157600080fd5b5061073a611b09565b6040516107479190613191565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612ab5565b611b1c565b6040516107849190613191565b60405180910390f35b34801561079957600080fd5b506107a2611bb0565b6040516107af9190613369565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190612a88565b611bb6565b005b3480156107ed57600080fd5b5061080860048036038101906108039190612d77565b611cae565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108955750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108a4611d34565b73ffffffffffffffffffffffffffffffffffffffff166108c26112f9565b73ffffffffffffffffffffffffffffffffffffffff1614610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f906132c9565b60405180910390fd5b80600a908051906020019061092e9291906127e9565b5050565b60606002805461094190613630565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90613630565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b60095481565b60006109d582611d3c565b610a0b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5182611d9b565b90508073ffffffffffffffffffffffffffffffffffffffff16610a72611e69565b73ffffffffffffffffffffffffffffffffffffffff1614610ad557610a9e81610a99611e69565b611b1c565b610ad4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b91611e71565b6001546000540303905090565b610ba9838383611e7a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613209565b60405180910390fd5b6115b381610c28610b87565b610c32919061348f565b1115610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613309565b60405180910390fd5b6005811115610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90613249565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613349565b60405180910390fd5b80600954610d529190613516565b60095434610d60919061348f565b1015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890613269565b60405180910390fd5b600033604051602001610db491906130e0565b604051602081830303815290604052805190602001209050610dd983600c5483612242565b610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906132a9565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e7a3383612259565b505050565b6115b381565b610e8d611d34565b73ffffffffffffffffffffffffffffffffffffffff16610eab6112f9565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906132c9565b60405180910390fd5b6000600347610f1091906134e5565b90507340cd24a31f44bc398065e9da992dfb938986e63073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f6c573d6000803e3d6000fd5b507322b7ef67859ee837060bf6b753e12fc2dc43a37273ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fc7573d6000803e3d6000fd5b5073679515e94ffe463d633c44a7c1c27f059cb7131973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611022573d6000803e3d6000fd5b5050565b611041838383604051806020016040528060008152506118c5565b505050565b6000600c54905090565b600b60009054906101000a900460ff1681565b61106b611d34565b73ffffffffffffffffffffffffffffffffffffffff166110896112f9565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d6906132c9565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff1681565b600061112982611d9b565b9050919050565b60008061113c83612277565b1415611174576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111cd611d34565b73ffffffffffffffffffffffffffffffffffffffff166111eb6112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906132c9565b60405180910390fd5b61124b6000612281565b565b6103e881565b600d6020528060005260406000206000915054906101000a900460ff1681565b61127b611d34565b73ffffffffffffffffffffffffffffffffffffffff166112996112f9565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906132c9565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b60606003805461133790613630565b80601f016020809104026020016040519081016040528092919081815260200182805461136390613630565b80156113b05780601f10611385576101008083540402835291602001916113b0565b820191906000526020600020905b81548152906001019060200180831161139357829003601f168201915b5050505050905090565b6113c2611d34565b73ffffffffffffffffffffffffffffffffffffffff166113e06112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d906132c9565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613209565b60405180910390fd5b600b60019054906101000a900460ff1661151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613289565b60405180910390fd5b6115b38161152b610b87565b611535919061348f565b1115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90613329565b60405180910390fd5b60058111156115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190613249565b60405180910390fd5b6103e8600e541015806116165750600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561167057806009546116299190613516565b34101561166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290613269565b60405180910390fd5b611740565b8060095461167e9190613516565b6009543461168c919061348f565b10156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613269565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000828254611738919061348f565b925050819055505b61174a3382612259565b50565b611755611e69565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ba576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117c7611e69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611874611e69565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b99190613191565b60405180910390a35050565b6118d0848484611e7a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611932576118fb84848484612347565b611931576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611940611d34565b73ffffffffffffffffffffffffffffffffffffffff1661195e6112f9565b73ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab906132c9565b60405180910390fd5b600b60029054906101000a900460ff1615611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613229565b60405180910390fd5b6001600b60026101000a81548160ff021916908315150217905550611a2a33600a612259565b565b6060611a3782611d3c565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d906132e9565b60405180910390fd5b600b60009054906101000a900460ff16611aaa57604051806080016040528060428152602001613b1d604291399050611b04565b6000600a8054611ab990613630565b905011611ad55760405180602001604052806000815250611b01565b600a611ae0836124a7565b604051602001611af19291906130fb565b6040516020818303038152906040525b90505b919050565b600b60029054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611bbe611d34565b73ffffffffffffffffffffffffffffffffffffffff16611bdc6112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c29906132c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c99906131e9565b60405180910390fd5b611cab81612281565b50565b611cb6611d34565b73ffffffffffffffffffffffffffffffffffffffff16611cd46112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906132c9565b60405180910390fd5b8060098190555050565b600033905090565b600081611d47611e71565b11158015611d56575060005482105b8015611d94575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611daa611e71565b11611e3257600054811015611e315760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e2f575b6000811415611e25576004600083600190039350838152602001908152602001600020549050611dfa565b8092505050611e64565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611e8582611d9b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611eec576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611f45611e69565b73ffffffffffffffffffffffffffffffffffffffff161480611f745750611f7386611f6e611e69565b611b1c565b5b80611fb15750611f82611e69565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611fea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ff586612277565b141561202d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61203a8686866001612501565b600061204583612277565b14612081576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61214887612277565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156121d25760006001850190506000600460008381526020019081526020016000205414156121d05760005481146121cf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461223a8686866001612507565b505050505050565b60008261224f858461250d565b1490509392505050565b612273828260405180602001604052806000815250612582565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236d611e69565b8786866040518563ffffffff1660e01b815260040161238f9493929190613145565b602060405180830381600087803b1580156123a957600080fd5b505af19250505080156123da57506040513d601f19601f820116820180604052508101906123d79190612d01565b60015b612454573d806000811461240a576040519150601f19603f3d011682016040523d82523d6000602084013e61240f565b606091505b5060008151141561244c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156124ed57600183039250600a81066030018353600a810490506124cd565b508181036020830392508083525050919050565b50505050565b50505050565b60008082905060005b84518110156125775760008582815181106125345761253361378d565b5b602002602001015190508083116125565761254f838261261f565b9250612563565b612560818461261f565b92505b50808061256f90613693565b915050612516565b508091505092915050565b61258c8383612636565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461261a57600080549050600083820390505b6125cc6000868380600101945086612347565b612602576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125b957816000541461261757600080fd5b50505b505050565b600082600052816020526040600020905092915050565b600080549050600061264784612277565b141561267f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156126ba576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126c76000848385612501565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161272c600184146127df565b901b60a042901b61273c85612277565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a482811061275857828201600081905550506127da6000848385612507565b505050565b6000819050919050565b8280546127f590613630565b90600052602060002090601f016020900481019282612817576000855561285e565b82601f1061283057805160ff191683800117855561285e565b8280016001018555821561285e579182015b8281111561285d578251825591602001919060010190612842565b5b50905061286b919061286f565b5090565b5b80821115612888576000816000905550600101612870565b5090565b600061289f61289a846133a9565b613384565b905080838252602082019050828560208602820111156128c2576128c16137f0565b5b60005b858110156128f257816128d888826129d8565b8452602084019350602083019250506001810190506128c5565b5050509392505050565b600061290f61290a846133d5565b613384565b90508281526020810184848401111561292b5761292a6137f5565b5b6129368482856135ee565b509392505050565b600061295161294c84613406565b613384565b90508281526020810184848401111561296d5761296c6137f5565b5b6129788482856135ee565b509392505050565b60008135905061298f81613aa9565b92915050565b600082601f8301126129aa576129a96137eb565b5b81356129ba84826020860161288c565b91505092915050565b6000813590506129d281613ac0565b92915050565b6000813590506129e781613ad7565b92915050565b6000813590506129fc81613aee565b92915050565b600081519050612a1181613aee565b92915050565b600082601f830112612a2c57612a2b6137eb565b5b8135612a3c8482602086016128fc565b91505092915050565b600082601f830112612a5a57612a596137eb565b5b8135612a6a84826020860161293e565b91505092915050565b600081359050612a8281613b05565b92915050565b600060208284031215612a9e57612a9d6137ff565b5b6000612aac84828501612980565b91505092915050565b60008060408385031215612acc57612acb6137ff565b5b6000612ada85828601612980565b9250506020612aeb85828601612980565b9150509250929050565b600080600060608486031215612b0e57612b0d6137ff565b5b6000612b1c86828701612980565b9350506020612b2d86828701612980565b9250506040612b3e86828701612a73565b9150509250925092565b60008060008060808587031215612b6257612b616137ff565b5b6000612b7087828801612980565b9450506020612b8187828801612980565b9350506040612b9287828801612a73565b925050606085013567ffffffffffffffff811115612bb357612bb26137fa565b5b612bbf87828801612a17565b91505092959194509250565b60008060408385031215612be257612be16137ff565b5b6000612bf085828601612980565b9250506020612c01858286016129c3565b9150509250929050565b60008060408385031215612c2257612c216137ff565b5b6000612c3085828601612980565b9250506020612c4185828601612a73565b9150509250929050565b60008060408385031215612c6257612c616137ff565b5b600083013567ffffffffffffffff811115612c8057612c7f6137fa565b5b612c8c85828601612995565b9250506020612c9d85828601612a73565b9150509250929050565b600060208284031215612cbd57612cbc6137ff565b5b6000612ccb848285016129d8565b91505092915050565b600060208284031215612cea57612ce96137ff565b5b6000612cf8848285016129ed565b91505092915050565b600060208284031215612d1757612d166137ff565b5b6000612d2584828501612a02565b91505092915050565b600060208284031215612d4457612d436137ff565b5b600082013567ffffffffffffffff811115612d6257612d616137fa565b5b612d6e84828501612a45565b91505092915050565b600060208284031215612d8d57612d8c6137ff565b5b6000612d9b84828501612a73565b91505092915050565b612dad81613570565b82525050565b612dc4612dbf82613570565b6136dc565b82525050565b612dd381613582565b82525050565b612de28161358e565b82525050565b6000612df38261344c565b612dfd8185613462565b9350612e0d8185602086016135fd565b612e1681613804565b840191505092915050565b6000612e2c82613457565b612e368185613473565b9350612e468185602086016135fd565b612e4f81613804565b840191505092915050565b6000612e6582613457565b612e6f8185613484565b9350612e7f8185602086016135fd565b80840191505092915050565b60008154612e9881613630565b612ea28186613484565b94506001821660008114612ebd5760018114612ece57612f01565b60ff19831686528186019350612f01565b612ed785613437565b60005b83811015612ef957815481890152600182019150602081019050612eda565b838801955050505b50505092915050565b6000612f17602683613473565b9150612f2282613822565b604082019050919050565b6000612f3a602683613473565b9150612f4582613871565b604082019050919050565b6000612f5d601383613473565b9150612f68826138c0565b602082019050919050565b6000612f80601c83613473565b9150612f8b826138e9565b602082019050919050565b6000612fa3601a83613473565b9150612fae82613912565b602082019050919050565b6000612fc6600f83613473565b9150612fd18261393b565b602082019050919050565b6000612fe9601783613473565b9150612ff482613964565b602082019050919050565b600061300c600583613484565b91506130178261398d565b600582019050919050565b600061302f602083613473565b915061303a826139b6565b602082019050919050565b6000613052602f83613473565b915061305d826139df565b604082019050919050565b6000613075601183613473565b915061308082613a2e565b602082019050919050565b6000613098601183613473565b91506130a382613a57565b602082019050919050565b60006130bb601f83613473565b91506130c682613a80565b602082019050919050565b6130da816135e4565b82525050565b60006130ec8284612db3565b60148201915081905092915050565b60006131078285612e8b565b91506131138284612e5a565b915061311e82612fff565b91508190509392505050565b600060208201905061313f6000830184612da4565b92915050565b600060808201905061315a6000830187612da4565b6131676020830186612da4565b61317460408301856130d1565b81810360608301526131868184612de8565b905095945050505050565b60006020820190506131a66000830184612dca565b92915050565b60006020820190506131c16000830184612dd9565b92915050565b600060208201905081810360008301526131e18184612e21565b905092915050565b6000602082019050818103600083015261320281612f0a565b9050919050565b6000602082019050818103600083015261322281612f2d565b9050919050565b6000602082019050818103600083015261324281612f50565b9050919050565b6000602082019050818103600083015261326281612f73565b9050919050565b6000602082019050818103600083015261328281612f96565b9050919050565b600060208201905081810360008301526132a281612fb9565b9050919050565b600060208201905081810360008301526132c281612fdc565b9050919050565b600060208201905081810360008301526132e281613022565b9050919050565b6000602082019050818103600083015261330281613045565b9050919050565b6000602082019050818103600083015261332281613068565b9050919050565b600060208201905081810360008301526133428161308b565b9050919050565b60006020820190508181036000830152613362816130ae565b9050919050565b600060208201905061337e60008301846130d1565b92915050565b600061338e61339f565b905061339a8282613662565b919050565b6000604051905090565b600067ffffffffffffffff8211156133c4576133c36137bc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133f0576133ef6137bc565b5b6133f982613804565b9050602081019050919050565b600067ffffffffffffffff821115613421576134206137bc565b5b61342a82613804565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061349a826135e4565b91506134a5836135e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134da576134d9613700565b5b828201905092915050565b60006134f0826135e4565b91506134fb836135e4565b92508261350b5761350a61372f565b5b828204905092915050565b6000613521826135e4565b915061352c836135e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561356557613564613700565b5b828202905092915050565b600061357b826135c4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561361b578082015181840152602081019050613600565b8381111561362a576000848401525b50505050565b6000600282049050600182168061364857607f821691505b6020821081141561365c5761365b61375e565b5b50919050565b61366b82613804565b810181811067ffffffffffffffff8211171561368a576136896137bc565b5b80604052505050565b600061369e826135e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136d1576136d0613700565b5b600182019050919050565b60006136e7826136ee565b9050919050565b60006136f982613815565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426f7262203a3a2043616e6e6f742062652063616c6c6564206279206120636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c7265616479206d696e74656400000000000000000000000000600082015250565b7f4578636565646564206d6178207175616e746974792070657220747800000000600082015250565b7f5061796d656e742069732062656c6f7720746865207072696365000000000000600082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4265796f6e64206d617820737570706c79000000000000000000000000000000600082015250565b7f4265796f6e64204d617820537570706c79000000000000000000000000000000600082015250565b7f416c726561647920636c61696d65642077686974656c697374206d696e742100600082015250565b613ab281613570565b8114613abd57600080fd5b50565b613ac981613582565b8114613ad457600080fd5b50565b613ae08161358e565b8114613aeb57600080fd5b50565b613af781613598565b8114613b0257600080fd5b50565b613b0e816135e4565b8114613b1957600080fd5b5056fe697066733a2f2f6261666b7265696679766f7a683333656376687a743378736a7a73667a653669716c693568736c6667336a646f6a7a7462643632707376796f3669a26469706673582212208d15a46617a92ca9fe8935f3db4faa27e2200dfcb0430d2a7dda28b70802220764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063e8b5498d1161006f578063e8b5498d14610725578063e985e9c514610750578063eed86eec1461078d578063f2fde38b146107b8578063f4a0a528146107e15761020f565b8063a22cb4651461067f578063b88d4fde146106a8578063ba7a86b8146106d1578063c87b56dd146106e85761020f565b80638da5cb5b116100e75780638da5cb5b146105cb5780638ecad721146105f657806395d89b4114610621578063981d87711461064c578063a0712d68146106635761020f565b8063715018a6146105235780637335d5cd1461053a578063772dc32f146105655780637cb64759146105a25761020f565b806332cb6b0c1161019b57806354214f691161016a57806354214f691461043c5780635b8ad429146104675780635e5f3ce41461047e5780636352211e146104a957806370a08231146104e65761020f565b806332cb6b0c146103a65780633ccfd60b146103d157806342842e0e146103e857806349590657146104115761020f565b8063081812fc116101e2578063081812fc146102d0578063095ea7b31461030d57806318160ddd1461033657806323b872dd146103615780632904e6d91461038a5761020f565b806301ffc9a7146102145780630675b7c61461025157806306fdde031461027a57806307e89ec0146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612cd4565b61080a565b6040516102489190613191565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612d2e565b61089c565b005b34801561028657600080fd5b5061028f610932565b60405161029c91906131c7565b60405180910390f35b3480156102b157600080fd5b506102ba6109c4565b6040516102c79190613369565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190612d77565b6109ca565b604051610304919061312a565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612c0b565b610a46565b005b34801561034257600080fd5b5061034b610b87565b6040516103589190613369565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612af5565b610b9e565b005b6103a4600480360381019061039f9190612c4b565b610bae565b005b3480156103b257600080fd5b506103bb610e7f565b6040516103c89190613369565b60405180910390f35b3480156103dd57600080fd5b506103e6610e85565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612af5565b611026565b005b34801561041d57600080fd5b50610426611046565b60405161043391906131ac565b60405180910390f35b34801561044857600080fd5b50610451611050565b60405161045e9190613191565b60405180910390f35b34801561047357600080fd5b5061047c611063565b005b34801561048a57600080fd5b5061049361110b565b6040516104a09190613191565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190612d77565b61111e565b6040516104dd919061312a565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612a88565b611130565b60405161051a9190613369565b60405180910390f35b34801561052f57600080fd5b506105386111c5565b005b34801561054657600080fd5b5061054f61124d565b60405161055c9190613369565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612a88565b611253565b6040516105999190613191565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612ca7565b611273565b005b3480156105d757600080fd5b506105e06112f9565b6040516105ed919061312a565b60405180910390f35b34801561060257600080fd5b5061060b611323565b6040516106189190613369565b60405180910390f35b34801561062d57600080fd5b50610636611328565b60405161064391906131c7565b60405180910390f35b34801561065857600080fd5b506106616113ba565b005b61067d60048036038101906106789190612d77565b611462565b005b34801561068b57600080fd5b506106a660048036038101906106a19190612bcb565b61174d565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190612b48565b6118c5565b005b3480156106dd57600080fd5b506106e6611938565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190612d77565b611a2c565b60405161071c91906131c7565b60405180910390f35b34801561073157600080fd5b5061073a611b09565b6040516107479190613191565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612ab5565b611b1c565b6040516107849190613191565b60405180910390f35b34801561079957600080fd5b506107a2611bb0565b6040516107af9190613369565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190612a88565b611bb6565b005b3480156107ed57600080fd5b5061080860048036038101906108039190612d77565b611cae565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108955750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108a4611d34565b73ffffffffffffffffffffffffffffffffffffffff166108c26112f9565b73ffffffffffffffffffffffffffffffffffffffff1614610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f906132c9565b60405180910390fd5b80600a908051906020019061092e9291906127e9565b5050565b60606002805461094190613630565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90613630565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b60095481565b60006109d582611d3c565b610a0b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5182611d9b565b90508073ffffffffffffffffffffffffffffffffffffffff16610a72611e69565b73ffffffffffffffffffffffffffffffffffffffff1614610ad557610a9e81610a99611e69565b611b1c565b610ad4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b91611e71565b6001546000540303905090565b610ba9838383611e7a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613209565b60405180910390fd5b6115b381610c28610b87565b610c32919061348f565b1115610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613309565b60405180910390fd5b6005811115610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90613249565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613349565b60405180910390fd5b80600954610d529190613516565b60095434610d60919061348f565b1015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890613269565b60405180910390fd5b600033604051602001610db491906130e0565b604051602081830303815290604052805190602001209050610dd983600c5483612242565b610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906132a9565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e7a3383612259565b505050565b6115b381565b610e8d611d34565b73ffffffffffffffffffffffffffffffffffffffff16610eab6112f9565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906132c9565b60405180910390fd5b6000600347610f1091906134e5565b90507340cd24a31f44bc398065e9da992dfb938986e63073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f6c573d6000803e3d6000fd5b507322b7ef67859ee837060bf6b753e12fc2dc43a37273ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fc7573d6000803e3d6000fd5b5073679515e94ffe463d633c44a7c1c27f059cb7131973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611022573d6000803e3d6000fd5b5050565b611041838383604051806020016040528060008152506118c5565b505050565b6000600c54905090565b600b60009054906101000a900460ff1681565b61106b611d34565b73ffffffffffffffffffffffffffffffffffffffff166110896112f9565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d6906132c9565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600b60019054906101000a900460ff1681565b600061112982611d9b565b9050919050565b60008061113c83612277565b1415611174576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111cd611d34565b73ffffffffffffffffffffffffffffffffffffffff166111eb6112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906132c9565b60405180910390fd5b61124b6000612281565b565b6103e881565b600d6020528060005260406000206000915054906101000a900460ff1681565b61127b611d34565b73ffffffffffffffffffffffffffffffffffffffff166112996112f9565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906132c9565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b60606003805461133790613630565b80601f016020809104026020016040519081016040528092919081815260200182805461136390613630565b80156113b05780601f10611385576101008083540402835291602001916113b0565b820191906000526020600020905b81548152906001019060200180831161139357829003601f168201915b5050505050905090565b6113c2611d34565b73ffffffffffffffffffffffffffffffffffffffff166113e06112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d906132c9565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613209565b60405180910390fd5b600b60019054906101000a900460ff1661151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613289565b60405180910390fd5b6115b38161152b610b87565b611535919061348f565b1115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90613329565b60405180910390fd5b60058111156115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190613249565b60405180910390fd5b6103e8600e541015806116165750600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561167057806009546116299190613516565b34101561166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290613269565b60405180910390fd5b611740565b8060095461167e9190613516565b6009543461168c919061348f565b10156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613269565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000828254611738919061348f565b925050819055505b61174a3382612259565b50565b611755611e69565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ba576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117c7611e69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611874611e69565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b99190613191565b60405180910390a35050565b6118d0848484611e7a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611932576118fb84848484612347565b611931576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611940611d34565b73ffffffffffffffffffffffffffffffffffffffff1661195e6112f9565b73ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab906132c9565b60405180910390fd5b600b60029054906101000a900460ff1615611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613229565b60405180910390fd5b6001600b60026101000a81548160ff021916908315150217905550611a2a33600a612259565b565b6060611a3782611d3c565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d906132e9565b60405180910390fd5b600b60009054906101000a900460ff16611aaa57604051806080016040528060428152602001613b1d604291399050611b04565b6000600a8054611ab990613630565b905011611ad55760405180602001604052806000815250611b01565b600a611ae0836124a7565b604051602001611af19291906130fb565b6040516020818303038152906040525b90505b919050565b600b60029054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611bbe611d34565b73ffffffffffffffffffffffffffffffffffffffff16611bdc6112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c29906132c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c99906131e9565b60405180910390fd5b611cab81612281565b50565b611cb6611d34565b73ffffffffffffffffffffffffffffffffffffffff16611cd46112f9565b73ffffffffffffffffffffffffffffffffffffffff1614611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906132c9565b60405180910390fd5b8060098190555050565b600033905090565b600081611d47611e71565b11158015611d56575060005482105b8015611d94575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611daa611e71565b11611e3257600054811015611e315760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e2f575b6000811415611e25576004600083600190039350838152602001908152602001600020549050611dfa565b8092505050611e64565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611e8582611d9b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611eec576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611f45611e69565b73ffffffffffffffffffffffffffffffffffffffff161480611f745750611f7386611f6e611e69565b611b1c565b5b80611fb15750611f82611e69565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611fea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ff586612277565b141561202d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61203a8686866001612501565b600061204583612277565b14612081576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61214887612277565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156121d25760006001850190506000600460008381526020019081526020016000205414156121d05760005481146121cf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461223a8686866001612507565b505050505050565b60008261224f858461250d565b1490509392505050565b612273828260405180602001604052806000815250612582565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236d611e69565b8786866040518563ffffffff1660e01b815260040161238f9493929190613145565b602060405180830381600087803b1580156123a957600080fd5b505af19250505080156123da57506040513d601f19601f820116820180604052508101906123d79190612d01565b60015b612454573d806000811461240a576040519150601f19603f3d011682016040523d82523d6000602084013e61240f565b606091505b5060008151141561244c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156124ed57600183039250600a81066030018353600a810490506124cd565b508181036020830392508083525050919050565b50505050565b50505050565b60008082905060005b84518110156125775760008582815181106125345761253361378d565b5b602002602001015190508083116125565761254f838261261f565b9250612563565b612560818461261f565b92505b50808061256f90613693565b915050612516565b508091505092915050565b61258c8383612636565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461261a57600080549050600083820390505b6125cc6000868380600101945086612347565b612602576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125b957816000541461261757600080fd5b50505b505050565b600082600052816020526040600020905092915050565b600080549050600061264784612277565b141561267f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156126ba576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126c76000848385612501565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161272c600184146127df565b901b60a042901b61273c85612277565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a482811061275857828201600081905550506127da6000848385612507565b505050565b6000819050919050565b8280546127f590613630565b90600052602060002090601f016020900481019282612817576000855561285e565b82601f1061283057805160ff191683800117855561285e565b8280016001018555821561285e579182015b8281111561285d578251825591602001919060010190612842565b5b50905061286b919061286f565b5090565b5b80821115612888576000816000905550600101612870565b5090565b600061289f61289a846133a9565b613384565b905080838252602082019050828560208602820111156128c2576128c16137f0565b5b60005b858110156128f257816128d888826129d8565b8452602084019350602083019250506001810190506128c5565b5050509392505050565b600061290f61290a846133d5565b613384565b90508281526020810184848401111561292b5761292a6137f5565b5b6129368482856135ee565b509392505050565b600061295161294c84613406565b613384565b90508281526020810184848401111561296d5761296c6137f5565b5b6129788482856135ee565b509392505050565b60008135905061298f81613aa9565b92915050565b600082601f8301126129aa576129a96137eb565b5b81356129ba84826020860161288c565b91505092915050565b6000813590506129d281613ac0565b92915050565b6000813590506129e781613ad7565b92915050565b6000813590506129fc81613aee565b92915050565b600081519050612a1181613aee565b92915050565b600082601f830112612a2c57612a2b6137eb565b5b8135612a3c8482602086016128fc565b91505092915050565b600082601f830112612a5a57612a596137eb565b5b8135612a6a84826020860161293e565b91505092915050565b600081359050612a8281613b05565b92915050565b600060208284031215612a9e57612a9d6137ff565b5b6000612aac84828501612980565b91505092915050565b60008060408385031215612acc57612acb6137ff565b5b6000612ada85828601612980565b9250506020612aeb85828601612980565b9150509250929050565b600080600060608486031215612b0e57612b0d6137ff565b5b6000612b1c86828701612980565b9350506020612b2d86828701612980565b9250506040612b3e86828701612a73565b9150509250925092565b60008060008060808587031215612b6257612b616137ff565b5b6000612b7087828801612980565b9450506020612b8187828801612980565b9350506040612b9287828801612a73565b925050606085013567ffffffffffffffff811115612bb357612bb26137fa565b5b612bbf87828801612a17565b91505092959194509250565b60008060408385031215612be257612be16137ff565b5b6000612bf085828601612980565b9250506020612c01858286016129c3565b9150509250929050565b60008060408385031215612c2257612c216137ff565b5b6000612c3085828601612980565b9250506020612c4185828601612a73565b9150509250929050565b60008060408385031215612c6257612c616137ff565b5b600083013567ffffffffffffffff811115612c8057612c7f6137fa565b5b612c8c85828601612995565b9250506020612c9d85828601612a73565b9150509250929050565b600060208284031215612cbd57612cbc6137ff565b5b6000612ccb848285016129d8565b91505092915050565b600060208284031215612cea57612ce96137ff565b5b6000612cf8848285016129ed565b91505092915050565b600060208284031215612d1757612d166137ff565b5b6000612d2584828501612a02565b91505092915050565b600060208284031215612d4457612d436137ff565b5b600082013567ffffffffffffffff811115612d6257612d616137fa565b5b612d6e84828501612a45565b91505092915050565b600060208284031215612d8d57612d8c6137ff565b5b6000612d9b84828501612a73565b91505092915050565b612dad81613570565b82525050565b612dc4612dbf82613570565b6136dc565b82525050565b612dd381613582565b82525050565b612de28161358e565b82525050565b6000612df38261344c565b612dfd8185613462565b9350612e0d8185602086016135fd565b612e1681613804565b840191505092915050565b6000612e2c82613457565b612e368185613473565b9350612e468185602086016135fd565b612e4f81613804565b840191505092915050565b6000612e6582613457565b612e6f8185613484565b9350612e7f8185602086016135fd565b80840191505092915050565b60008154612e9881613630565b612ea28186613484565b94506001821660008114612ebd5760018114612ece57612f01565b60ff19831686528186019350612f01565b612ed785613437565b60005b83811015612ef957815481890152600182019150602081019050612eda565b838801955050505b50505092915050565b6000612f17602683613473565b9150612f2282613822565b604082019050919050565b6000612f3a602683613473565b9150612f4582613871565b604082019050919050565b6000612f5d601383613473565b9150612f68826138c0565b602082019050919050565b6000612f80601c83613473565b9150612f8b826138e9565b602082019050919050565b6000612fa3601a83613473565b9150612fae82613912565b602082019050919050565b6000612fc6600f83613473565b9150612fd18261393b565b602082019050919050565b6000612fe9601783613473565b9150612ff482613964565b602082019050919050565b600061300c600583613484565b91506130178261398d565b600582019050919050565b600061302f602083613473565b915061303a826139b6565b602082019050919050565b6000613052602f83613473565b915061305d826139df565b604082019050919050565b6000613075601183613473565b915061308082613a2e565b602082019050919050565b6000613098601183613473565b91506130a382613a57565b602082019050919050565b60006130bb601f83613473565b91506130c682613a80565b602082019050919050565b6130da816135e4565b82525050565b60006130ec8284612db3565b60148201915081905092915050565b60006131078285612e8b565b91506131138284612e5a565b915061311e82612fff565b91508190509392505050565b600060208201905061313f6000830184612da4565b92915050565b600060808201905061315a6000830187612da4565b6131676020830186612da4565b61317460408301856130d1565b81810360608301526131868184612de8565b905095945050505050565b60006020820190506131a66000830184612dca565b92915050565b60006020820190506131c16000830184612dd9565b92915050565b600060208201905081810360008301526131e18184612e21565b905092915050565b6000602082019050818103600083015261320281612f0a565b9050919050565b6000602082019050818103600083015261322281612f2d565b9050919050565b6000602082019050818103600083015261324281612f50565b9050919050565b6000602082019050818103600083015261326281612f73565b9050919050565b6000602082019050818103600083015261328281612f96565b9050919050565b600060208201905081810360008301526132a281612fb9565b9050919050565b600060208201905081810360008301526132c281612fdc565b9050919050565b600060208201905081810360008301526132e281613022565b9050919050565b6000602082019050818103600083015261330281613045565b9050919050565b6000602082019050818103600083015261332281613068565b9050919050565b600060208201905081810360008301526133428161308b565b9050919050565b60006020820190508181036000830152613362816130ae565b9050919050565b600060208201905061337e60008301846130d1565b92915050565b600061338e61339f565b905061339a8282613662565b919050565b6000604051905090565b600067ffffffffffffffff8211156133c4576133c36137bc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133f0576133ef6137bc565b5b6133f982613804565b9050602081019050919050565b600067ffffffffffffffff821115613421576134206137bc565b5b61342a82613804565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061349a826135e4565b91506134a5836135e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134da576134d9613700565b5b828201905092915050565b60006134f0826135e4565b91506134fb836135e4565b92508261350b5761350a61372f565b5b828204905092915050565b6000613521826135e4565b915061352c836135e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561356557613564613700565b5b828202905092915050565b600061357b826135c4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561361b578082015181840152602081019050613600565b8381111561362a576000848401525b50505050565b6000600282049050600182168061364857607f821691505b6020821081141561365c5761365b61375e565b5b50919050565b61366b82613804565b810181811067ffffffffffffffff8211171561368a576136896137bc565b5b80604052505050565b600061369e826135e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136d1576136d0613700565b5b600182019050919050565b60006136e7826136ee565b9050919050565b60006136f982613815565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426f7262203a3a2043616e6e6f742062652063616c6c6564206279206120636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c7265616479206d696e74656400000000000000000000000000600082015250565b7f4578636565646564206d6178207175616e746974792070657220747800000000600082015250565b7f5061796d656e742069732062656c6f7720746865207072696365000000000000600082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4265796f6e64206d617820737570706c79000000000000000000000000000000600082015250565b7f4265796f6e64204d617820537570706c79000000000000000000000000000000600082015250565b7f416c726561647920636c61696d65642077686974656c697374206d696e742100600082015250565b613ab281613570565b8114613abd57600080fd5b50565b613ac981613582565b8114613ad457600080fd5b50565b613ae08161358e565b8114613aeb57600080fd5b50565b613af781613598565b8114613b0257600080fd5b50565b613b0e816135e4565b8114613b1957600080fd5b5056fe697066733a2f2f6261666b7265696679766f7a683333656376687a743378736a7a73667a653669716c693568736c6667336a646f6a7a7462643632707376796f3669a26469706673582212208d15a46617a92ca9fe8935f3db4faa27e2200dfcb0430d2a7dda28b70802220764736f6c63430008070033

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.