ETH Price: $3,423.74 (+5.16%)
Gas: 11 Gwei

Token

SuckADick (SAD)
 

Overview

Max Total Supply

727 SAD

Holders

147

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SAD
0xC0c5A79EB5c1b583C9E74815889aAff352ECB7F0
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:
SuckADick

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-01
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/IERC721A.sol


// ERC721A Contracts v4.1.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();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // 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`
    // - [232..255] `extraData`
    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 1;
    }

    /**
     * @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 (owner == address(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;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * 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 Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @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 Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * 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 (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // 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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @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: contracts/SuckADick.sol


// SuckADick

pragma solidity >=0.8.9 <0.9.0;



contract SuckADick is ERC721A, Ownable {
    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;

    uint256 public PRICE = 0.005 ether;
    uint256 public MAX_SUPPLY = 10000;
    uint256 public FREE_SUPPLY = 3000;
    uint256 public MAX_MINT = 10;
    uint256 public MAX_FREE_MINT = 5;

    bool public PAUSE = true;
    bool public REVEALED = false;

    mapping(address => uint256) public FREE_MINT_BALANCE;

    /// @notice Contract is paused
    error ContractIsPaused();
    /// @notice Zero amount mint
    error ZeroAmountMint();
    /// @notice Max amount has currently been minted
    error MaxSupplyReached();
    /// @notice User has reached max mint amount
    error MaxMintAmountReached();
    /// @notice User has sent the correct amount of ETH
    error InsufficientFunds();
    /// @notice There are no more free mints
    error FreeMintSoldOut();

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

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

    modifier mintCompliance(uint256 _mintAmount) {
        uint256 supply = totalSupply();
        if (PAUSE) revert ContractIsPaused();
        if (_mintAmount == 0) revert ZeroAmountMint();
        if (supply + _mintAmount > MAX_SUPPLY) revert MaxSupplyReached();
        if (_mintAmount > MAX_MINT) revert MaxMintAmountReached();
        _;
    }

    // public
    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        if (msg.value == 0) {
            if (totalSupply() + _mintAmount > FREE_SUPPLY)
                revert FreeMintSoldOut();

            uint256 FREE_MINT_COUNT = FREE_MINT_BALANCE[msg.sender];
            if (FREE_MINT_COUNT + _mintAmount > MAX_FREE_MINT)
                revert MaxMintAmountReached();

            FREE_MINT_BALANCE[msg.sender] += _mintAmount;
        } else {

            if (msg.value <= PRICE * _mintAmount) revert InsufficientFunds();
        }

        _safeMint(msg.sender, _mintAmount);
    }

    // owner mint
    function mintForOwner(uint256 _mintAmount) public onlyOwner {
        uint256 supply = totalSupply();
        if (MAX_SUPPLY <= supply + _mintAmount) revert MaxSupplyReached();
        _safeMint(msg.sender, _mintAmount);
    }

    function contractURI() public view returns (string memory) {
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        "contract-data",
                        baseExtension
                    )
                )
                : "";
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
            string memory currentBaseURI = _baseURI();

        if (REVEALED == false) {
            return
                bytes(currentBaseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            currentBaseURI,
                            "hidden",
                            baseExtension
                        )
                    )
                    : "";
        }

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

    //only owner    
    function reveal() public onlyOwner {
        REVEALED = true;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        PRICE = _newCost;
    }
    
    function setPause(bool _state) public onlyOwner {
        PAUSE = _state;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        MAX_MINT = _newmaxMintAmount;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function withdraw() public payable onlyOwner {        
        (bool os, ) = payable(0xD181346196Ccc029Ca6b346115C6BABE08861F71).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":"ContractIsPaused","type":"error"},{"inputs":[],"name":"FreeMintSoldOut","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"MaxMintAmountReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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"},{"inputs":[],"name":"ZeroAmountMint","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"internalType":"address","name":"","type":"address"}],"name":"FREE_MINT_BALANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","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":"PAUSE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEALED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600a9062000026908262000240565b506611c37937e08000600c55612710600d55610bb8600e55600a600f5560056010556011805461ffff191660011790553480156200006357600080fd5b5060405162001fb738038062001fb78339810160408190526200008691620003c3565b8282600262000096838262000240565b506003620000a5828262000240565b5050600160005550620000b833620000cc565b620000c3816200011e565b50505062000454565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001286200013a565b600962000136828262000240565b5050565b6008546001600160a01b03163314620001995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001c657607f821691505b602082108103620001e757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023b57600081815260208120601f850160051c81016020861015620002165750805b601f850160051c820191505b81811015620002375782815560010162000222565b5050505b505050565b81516001600160401b038111156200025c576200025c6200019b565b62000274816200026d8454620001b1565b84620001ed565b602080601f831160018114620002ac5760008415620002935750858301515b600019600386901b1c1916600185901b17855562000237565b600085815260208120601f198616915b82811015620002dd57888601518255948401946001909101908401620002bc565b5085821015620002fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200031e57600080fd5b81516001600160401b03808211156200033b576200033b6200019b565b604051601f8301601f19908116603f011681019082821181831017156200036657620003666200019b565b816040528381526020925086838588010111156200038357600080fd5b600091505b83821015620003a7578582018301518183018401529082019062000388565b83821115620003b95760008385830101525b9695505050505050565b600080600060608486031215620003d957600080fd5b83516001600160401b0380821115620003f157600080fd5b620003ff878388016200030c565b945060208601519150808211156200041657600080fd5b62000424878388016200030c565b935060408601519150808211156200043b57600080fd5b506200044a868287016200030c565b9150509250925092565b611b5380620004646000396000f3fe6080604052600436106102255760003560e01c80637f00c7a611610123578063b88d4fde116100ab578063e65fad971161006f578063e65fad9714610602578063e8a3d4851461061c578063e985e9c514610631578063f0292a031461067a578063f2fde38b1461069057600080fd5b8063b88d4fde1461056d578063bedb86fb1461058d578063c6682862146105ad578063c87b56dd146105c2578063da3ef23f146105e257600080fd5b80639858cf19116100f25780639858cf19146104f0578063a0712d6814610506578063a22cb46514610519578063a475b5dd14610539578063a76a95871461054e57600080fd5b80637f00c7a6146104875780638d859f3e146104a75780638da5cb5b146104bd57806395d89b41146104db57600080fd5b8063408b1464116101b15780636352211e116101755780636352211e146103fd57806363bc312a1461041d5780636c0360eb1461043d57806370a0823114610452578063715018a61461047257600080fd5b8063408b14641461035a57806341cda2031461038757806342842e0e1461039d57806344a0d68a146103bd57806355f804b3146103dd57600080fd5b8063095ea7b3116101f8578063095ea7b3146102ce57806318160ddd146102f057806323b872dd1461031c57806332cb6b0c1461033c5780633ccfd60b1461035257600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063081c8c44146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611501565b6106b0565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610702565b6040516102569190611576565b34801561028d57600080fd5b506102a161029c366004611589565b610794565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102746107d8565b3480156102da57600080fd5b506102ee6102e93660046115be565b610866565b005b3480156102fc57600080fd5b5061030e600154600054036000190190565b604051908152602001610256565b34801561032857600080fd5b506102ee6103373660046115e8565b610906565b34801561034857600080fd5b5061030e600d5481565b6102ee610a9f565b34801561036657600080fd5b5061030e610375366004611624565b60126020526000908152604090205481565b34801561039357600080fd5b5061030e60105481565b3480156103a957600080fd5b506102ee6103b83660046115e8565b610b13565b3480156103c957600080fd5b506102ee6103d8366004611589565b610b33565b3480156103e957600080fd5b506102ee6103f83660046116cb565b610b40565b34801561040957600080fd5b506102a1610418366004611589565b610b58565b34801561042957600080fd5b506102ee610438366004611589565b610b63565b34801561044957600080fd5b50610274610bb5565b34801561045e57600080fd5b5061030e61046d366004611624565b610bc2565b34801561047e57600080fd5b506102ee610c11565b34801561049357600080fd5b506102ee6104a2366004611589565b610c25565b3480156104b357600080fd5b5061030e600c5481565b3480156104c957600080fd5b506008546001600160a01b03166102a1565b3480156104e757600080fd5b50610274610c32565b3480156104fc57600080fd5b5061030e600e5481565b6102ee610514366004611589565b610c41565b34801561052557600080fd5b506102ee610534366004611724565b610dd0565b34801561054557600080fd5b506102ee610e65565b34801561055a57600080fd5b5060115461024a90610100900460ff1681565b34801561057957600080fd5b506102ee610588366004611757565b610e7e565b34801561059957600080fd5b506102ee6105a83660046117d3565b610ec8565b3480156105b957600080fd5b50610274610ee3565b3480156105ce57600080fd5b506102746105dd366004611589565b610ef0565b3480156105ee57600080fd5b506102ee6105fd3660046116cb565b61100a565b34801561060e57600080fd5b5060115461024a9060ff1681565b34801561062857600080fd5b5061027461101e565b34801561063d57600080fd5b5061024a61064c3660046117ee565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068657600080fd5b5061030e600f5481565b34801561069c57600080fd5b506102ee6106ab366004611624565b611074565b60006301ffc9a760e01b6001600160e01b0319831614806106e157506380ac58cd60e01b6001600160e01b03198316145b806106fc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461071190611818565b80601f016020809104026020016040519081016040528092919081815260200182805461073d90611818565b801561078a5780601f1061075f5761010080835404028352916020019161078a565b820191906000526020600020905b81548152906001019060200180831161076d57829003601f168201915b5050505050905090565b600061079f826110ea565b6107bc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b80546107e590611818565b80601f016020809104026020016040519081016040528092919081815260200182805461081190611818565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b505050505081565b600061087182610b58565b9050336001600160a01b038216146108aa5761088d813361064c565b6108aa576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109118261111f565b9050836001600160a01b0316816001600160a01b0316146109445760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761099157610974863361064c565b61099157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109b857604051633a954ecd60e21b815260040160405180910390fd5b80156109c357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a5557600184016000818152600460205260408120549003610a53576000548114610a535760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610aa761118e565b60405160009073d181346196ccc029ca6b346115c6babe08861f719047908381818185875af1925050503d8060008114610afd576040519150601f19603f3d011682016040523d82523d6000602084013e610b02565b606091505b5050905080610b1057600080fd5b50565b610b2e83838360405180602001604052806000815250610e7e565b505050565b610b3b61118e565b600c55565b610b4861118e565b6009610b548282611898565b5050565b60006106fc8261111f565b610b6b61118e565b6000610b7e600154600054036000190190565b9050610b8a828261196e565b600d5411610bab5760405163d05cb60960e01b815260040160405180910390fd5b610b5433836111e8565b600980546107e590611818565b60006001600160a01b038216610beb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c1961118e565b610c236000611202565b565b610c2d61118e565b600f55565b60606003805461071190611818565b806000610c55600154600054036000190190565b60115490915060ff1615610c7c576040516306d39fcd60e41b815260040160405180910390fd5b81600003610c9d57604051631f029f1960e11b815260040160405180910390fd5b600d54610caa838361196e565b1115610cc95760405163d05cb60960e01b815260040160405180910390fd5b600f54821115610cec57604051630c398d6560e41b815260040160405180910390fd5b34600003610d9957600e5483610d09600154600054036000190190565b610d13919061196e565b1115610d3257604051631fcc27c360e11b815260040160405180910390fd5b33600090815260126020526040902054601054610d4f858361196e565b1115610d6e57604051630c398d6560e41b815260040160405180910390fd5b3360009081526012602052604081208054869290610d8d90849061196e565b90915550610dc6915050565b82600c54610da79190611986565b3411610dc65760405163356680b760e01b815260040160405180910390fd5b610b2e33846111e8565b336001600160a01b03831603610df95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e6d61118e565b6011805461ff001916610100179055565b610e89848484610906565b6001600160a01b0383163b15610ec257610ea584848484611254565b610ec2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610ed061118e565b6011805460ff1916911515919091179055565b600a80546107e590611818565b6060610efb826110ea565b610f645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b6000610f6e611340565b601154909150610100900460ff161515600003610fce576000815111610fa35760405180602001604052806000815250610fc7565b80600a604051602001610fb7929190611a18565b6040516020818303038152906040525b9392505050565b6000815111610fec5760405180602001604052806000815250610fc7565b80610ff68461134f565b600a604051602001610fb793929190611a50565b61101261118e565b600a610b548282611898565b6060600061102a611340565b9050600081511161104a576040518060200160405280600081525061106e565b80600a60405160200161105e929190611a8d565b6040516020818303038152906040525b91505090565b61107c61118e565b6001600160a01b0381166110e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f5b565b610b1081611202565b6000816001111580156110fe575060005482105b80156106fc575050600090815260046020526040902054600160e01b161590565b60008180600111611175576000548110156111755760008181526004602052604081205490600160e01b82169003611173575b80600003610fc7575060001901600081815260046020526040902054611152565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610c235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f5b565b610b5482826040518060200160405280600081525061139e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611289903390899088908890600401611ac3565b6020604051808303816000875af19250505080156112c4575060408051601f3d908101601f191682019092526112c191810190611b00565b60015b611322573d8080156112f2576040519150601f19603f3d011682016040523d82523d6000602084013e6112f7565b606091505b50805160000361131a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461071190611818565b604080516080810191829052607f0190826030600a8206018353600a90045b801561138c57600183039250600a81066030018353600a900461136e565b50819003601f19909101908152919050565b6113a8838361140b565b6001600160a01b0383163b15610b2e576000548281035b6113d26000868380600101945086611254565b6113ef576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113bf57816000541461140457600080fd5b5050505050565b6000546001600160a01b03831661143457604051622e076360e81b815260040160405180910390fd5b816000036114555760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061149f5760005550505050565b6001600160e01b031981168114610b1057600080fd5b60006020828403121561151357600080fd5b8135610fc7816114eb565b60005b83811015611539578181015183820152602001611521565b83811115610ec25750506000910152565b6000815180845261156281602086016020860161151e565b601f01601f19169290920160200192915050565b602081526000610fc7602083018461154a565b60006020828403121561159b57600080fd5b5035919050565b80356001600160a01b03811681146115b957600080fd5b919050565b600080604083850312156115d157600080fd5b6115da836115a2565b946020939093013593505050565b6000806000606084860312156115fd57600080fd5b611606846115a2565b9250611614602085016115a2565b9150604084013590509250925092565b60006020828403121561163657600080fd5b610fc7826115a2565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116705761167061163f565b604051601f8501601f19908116603f011681019082821181831017156116985761169861163f565b816040528093508581528686860111156116b157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156116dd57600080fd5b813567ffffffffffffffff8111156116f457600080fd5b8201601f8101841361170557600080fd5b61133884823560208401611655565b803580151581146115b957600080fd5b6000806040838503121561173757600080fd5b611740836115a2565b915061174e60208401611714565b90509250929050565b6000806000806080858703121561176d57600080fd5b611776856115a2565b9350611784602086016115a2565b925060408501359150606085013567ffffffffffffffff8111156117a757600080fd5b8501601f810187136117b857600080fd5b6117c787823560208401611655565b91505092959194509250565b6000602082840312156117e557600080fd5b610fc782611714565b6000806040838503121561180157600080fd5b61180a836115a2565b915061174e602084016115a2565b600181811c9082168061182c57607f821691505b60208210810361184c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610b2e57600081815260208120601f850160051c810160208610156118795750805b601f850160051c820191505b81811015610a9757828155600101611885565b815167ffffffffffffffff8111156118b2576118b261163f565b6118c6816118c08454611818565b84611852565b602080601f8311600181146118fb57600084156118e35750858301515b600019600386901b1c1916600185901b178555610a97565b600085815260208120601f198616915b8281101561192a5788860151825594840194600190910190840161190b565b50858210156119485787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000821982111561198157611981611958565b500190565b60008160001904831182151516156119a0576119a0611958565b500290565b600081546119b281611818565b600182811680156119ca57600181146119df57611a0e565b60ff1984168752821515830287019450611a0e565b8560005260208060002060005b85811015611a055781548a8201529084019082016119ec565b50505082870194505b5050505092915050565b60008351611a2a81846020880161151e565b653434b23232b760d11b908301908152611a4760068201856119a5565b95945050505050565b60008451611a6281846020890161151e565b845190830190611a7681836020890161151e565b611a82818301866119a5565b979650505050505050565b60008351611a9f81846020880161151e565b6c636f6e74726163742d6461746160981b908301908152611a47600d8201856119a5565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611af69083018461154a565b9695505050505050565b600060208284031215611b1257600080fd5b8151610fc7816114eb56fea26469706673582212200d85ed38a776fa14b1da421d7091f2973fedf6b80796a1634dce7ce4ab96e7e864736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000095375636b414469636b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035341440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d6259505a705a714d71437650444e6d514e665a6b6d7a783334336a38674a64364a646e563248706b6a4863412f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637f00c7a611610123578063b88d4fde116100ab578063e65fad971161006f578063e65fad9714610602578063e8a3d4851461061c578063e985e9c514610631578063f0292a031461067a578063f2fde38b1461069057600080fd5b8063b88d4fde1461056d578063bedb86fb1461058d578063c6682862146105ad578063c87b56dd146105c2578063da3ef23f146105e257600080fd5b80639858cf19116100f25780639858cf19146104f0578063a0712d6814610506578063a22cb46514610519578063a475b5dd14610539578063a76a95871461054e57600080fd5b80637f00c7a6146104875780638d859f3e146104a75780638da5cb5b146104bd57806395d89b41146104db57600080fd5b8063408b1464116101b15780636352211e116101755780636352211e146103fd57806363bc312a1461041d5780636c0360eb1461043d57806370a0823114610452578063715018a61461047257600080fd5b8063408b14641461035a57806341cda2031461038757806342842e0e1461039d57806344a0d68a146103bd57806355f804b3146103dd57600080fd5b8063095ea7b3116101f8578063095ea7b3146102ce57806318160ddd146102f057806323b872dd1461031c57806332cb6b0c1461033c5780633ccfd60b1461035257600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063081c8c44146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611501565b6106b0565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610702565b6040516102569190611576565b34801561028d57600080fd5b506102a161029c366004611589565b610794565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102746107d8565b3480156102da57600080fd5b506102ee6102e93660046115be565b610866565b005b3480156102fc57600080fd5b5061030e600154600054036000190190565b604051908152602001610256565b34801561032857600080fd5b506102ee6103373660046115e8565b610906565b34801561034857600080fd5b5061030e600d5481565b6102ee610a9f565b34801561036657600080fd5b5061030e610375366004611624565b60126020526000908152604090205481565b34801561039357600080fd5b5061030e60105481565b3480156103a957600080fd5b506102ee6103b83660046115e8565b610b13565b3480156103c957600080fd5b506102ee6103d8366004611589565b610b33565b3480156103e957600080fd5b506102ee6103f83660046116cb565b610b40565b34801561040957600080fd5b506102a1610418366004611589565b610b58565b34801561042957600080fd5b506102ee610438366004611589565b610b63565b34801561044957600080fd5b50610274610bb5565b34801561045e57600080fd5b5061030e61046d366004611624565b610bc2565b34801561047e57600080fd5b506102ee610c11565b34801561049357600080fd5b506102ee6104a2366004611589565b610c25565b3480156104b357600080fd5b5061030e600c5481565b3480156104c957600080fd5b506008546001600160a01b03166102a1565b3480156104e757600080fd5b50610274610c32565b3480156104fc57600080fd5b5061030e600e5481565b6102ee610514366004611589565b610c41565b34801561052557600080fd5b506102ee610534366004611724565b610dd0565b34801561054557600080fd5b506102ee610e65565b34801561055a57600080fd5b5060115461024a90610100900460ff1681565b34801561057957600080fd5b506102ee610588366004611757565b610e7e565b34801561059957600080fd5b506102ee6105a83660046117d3565b610ec8565b3480156105b957600080fd5b50610274610ee3565b3480156105ce57600080fd5b506102746105dd366004611589565b610ef0565b3480156105ee57600080fd5b506102ee6105fd3660046116cb565b61100a565b34801561060e57600080fd5b5060115461024a9060ff1681565b34801561062857600080fd5b5061027461101e565b34801561063d57600080fd5b5061024a61064c3660046117ee565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068657600080fd5b5061030e600f5481565b34801561069c57600080fd5b506102ee6106ab366004611624565b611074565b60006301ffc9a760e01b6001600160e01b0319831614806106e157506380ac58cd60e01b6001600160e01b03198316145b806106fc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461071190611818565b80601f016020809104026020016040519081016040528092919081815260200182805461073d90611818565b801561078a5780601f1061075f5761010080835404028352916020019161078a565b820191906000526020600020905b81548152906001019060200180831161076d57829003601f168201915b5050505050905090565b600061079f826110ea565b6107bc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b80546107e590611818565b80601f016020809104026020016040519081016040528092919081815260200182805461081190611818565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b505050505081565b600061087182610b58565b9050336001600160a01b038216146108aa5761088d813361064c565b6108aa576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109118261111f565b9050836001600160a01b0316816001600160a01b0316146109445760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761099157610974863361064c565b61099157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109b857604051633a954ecd60e21b815260040160405180910390fd5b80156109c357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a5557600184016000818152600460205260408120549003610a53576000548114610a535760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610aa761118e565b60405160009073d181346196ccc029ca6b346115c6babe08861f719047908381818185875af1925050503d8060008114610afd576040519150601f19603f3d011682016040523d82523d6000602084013e610b02565b606091505b5050905080610b1057600080fd5b50565b610b2e83838360405180602001604052806000815250610e7e565b505050565b610b3b61118e565b600c55565b610b4861118e565b6009610b548282611898565b5050565b60006106fc8261111f565b610b6b61118e565b6000610b7e600154600054036000190190565b9050610b8a828261196e565b600d5411610bab5760405163d05cb60960e01b815260040160405180910390fd5b610b5433836111e8565b600980546107e590611818565b60006001600160a01b038216610beb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c1961118e565b610c236000611202565b565b610c2d61118e565b600f55565b60606003805461071190611818565b806000610c55600154600054036000190190565b60115490915060ff1615610c7c576040516306d39fcd60e41b815260040160405180910390fd5b81600003610c9d57604051631f029f1960e11b815260040160405180910390fd5b600d54610caa838361196e565b1115610cc95760405163d05cb60960e01b815260040160405180910390fd5b600f54821115610cec57604051630c398d6560e41b815260040160405180910390fd5b34600003610d9957600e5483610d09600154600054036000190190565b610d13919061196e565b1115610d3257604051631fcc27c360e11b815260040160405180910390fd5b33600090815260126020526040902054601054610d4f858361196e565b1115610d6e57604051630c398d6560e41b815260040160405180910390fd5b3360009081526012602052604081208054869290610d8d90849061196e565b90915550610dc6915050565b82600c54610da79190611986565b3411610dc65760405163356680b760e01b815260040160405180910390fd5b610b2e33846111e8565b336001600160a01b03831603610df95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e6d61118e565b6011805461ff001916610100179055565b610e89848484610906565b6001600160a01b0383163b15610ec257610ea584848484611254565b610ec2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610ed061118e565b6011805460ff1916911515919091179055565b600a80546107e590611818565b6060610efb826110ea565b610f645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b6000610f6e611340565b601154909150610100900460ff161515600003610fce576000815111610fa35760405180602001604052806000815250610fc7565b80600a604051602001610fb7929190611a18565b6040516020818303038152906040525b9392505050565b6000815111610fec5760405180602001604052806000815250610fc7565b80610ff68461134f565b600a604051602001610fb793929190611a50565b61101261118e565b600a610b548282611898565b6060600061102a611340565b9050600081511161104a576040518060200160405280600081525061106e565b80600a60405160200161105e929190611a8d565b6040516020818303038152906040525b91505090565b61107c61118e565b6001600160a01b0381166110e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f5b565b610b1081611202565b6000816001111580156110fe575060005482105b80156106fc575050600090815260046020526040902054600160e01b161590565b60008180600111611175576000548110156111755760008181526004602052604081205490600160e01b82169003611173575b80600003610fc7575060001901600081815260046020526040902054611152565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610c235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f5b565b610b5482826040518060200160405280600081525061139e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611289903390899088908890600401611ac3565b6020604051808303816000875af19250505080156112c4575060408051601f3d908101601f191682019092526112c191810190611b00565b60015b611322573d8080156112f2576040519150601f19603f3d011682016040523d82523d6000602084013e6112f7565b606091505b50805160000361131a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461071190611818565b604080516080810191829052607f0190826030600a8206018353600a90045b801561138c57600183039250600a81066030018353600a900461136e565b50819003601f19909101908152919050565b6113a8838361140b565b6001600160a01b0383163b15610b2e576000548281035b6113d26000868380600101945086611254565b6113ef576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113bf57816000541461140457600080fd5b5050505050565b6000546001600160a01b03831661143457604051622e076360e81b815260040160405180910390fd5b816000036114555760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061149f5760005550505050565b6001600160e01b031981168114610b1057600080fd5b60006020828403121561151357600080fd5b8135610fc7816114eb565b60005b83811015611539578181015183820152602001611521565b83811115610ec25750506000910152565b6000815180845261156281602086016020860161151e565b601f01601f19169290920160200192915050565b602081526000610fc7602083018461154a565b60006020828403121561159b57600080fd5b5035919050565b80356001600160a01b03811681146115b957600080fd5b919050565b600080604083850312156115d157600080fd5b6115da836115a2565b946020939093013593505050565b6000806000606084860312156115fd57600080fd5b611606846115a2565b9250611614602085016115a2565b9150604084013590509250925092565b60006020828403121561163657600080fd5b610fc7826115a2565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116705761167061163f565b604051601f8501601f19908116603f011681019082821181831017156116985761169861163f565b816040528093508581528686860111156116b157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156116dd57600080fd5b813567ffffffffffffffff8111156116f457600080fd5b8201601f8101841361170557600080fd5b61133884823560208401611655565b803580151581146115b957600080fd5b6000806040838503121561173757600080fd5b611740836115a2565b915061174e60208401611714565b90509250929050565b6000806000806080858703121561176d57600080fd5b611776856115a2565b9350611784602086016115a2565b925060408501359150606085013567ffffffffffffffff8111156117a757600080fd5b8501601f810187136117b857600080fd5b6117c787823560208401611655565b91505092959194509250565b6000602082840312156117e557600080fd5b610fc782611714565b6000806040838503121561180157600080fd5b61180a836115a2565b915061174e602084016115a2565b600181811c9082168061182c57607f821691505b60208210810361184c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610b2e57600081815260208120601f850160051c810160208610156118795750805b601f850160051c820191505b81811015610a9757828155600101611885565b815167ffffffffffffffff8111156118b2576118b261163f565b6118c6816118c08454611818565b84611852565b602080601f8311600181146118fb57600084156118e35750858301515b600019600386901b1c1916600185901b178555610a97565b600085815260208120601f198616915b8281101561192a5788860151825594840194600190910190840161190b565b50858210156119485787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000821982111561198157611981611958565b500190565b60008160001904831182151516156119a0576119a0611958565b500290565b600081546119b281611818565b600182811680156119ca57600181146119df57611a0e565b60ff1984168752821515830287019450611a0e565b8560005260208060002060005b85811015611a055781548a8201529084019082016119ec565b50505082870194505b5050505092915050565b60008351611a2a81846020880161151e565b653434b23232b760d11b908301908152611a4760068201856119a5565b95945050505050565b60008451611a6281846020890161151e565b845190830190611a7681836020890161151e565b611a82818301866119a5565b979650505050505050565b60008351611a9f81846020880161151e565b6c636f6e74726163742d6461746160981b908301908152611a47600d8201856119a5565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611af69083018461154a565b9695505050505050565b600060208284031215611b1257600080fd5b8151610fc7816114eb56fea26469706673582212200d85ed38a776fa14b1da421d7091f2973fedf6b80796a1634dce7ce4ab96e7e864736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000095375636b414469636b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035341440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d6259505a705a714d71437650444e6d514e665a6b6d7a783334336a38674a64364a646e563248706b6a4863412f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): SuckADick
Arg [1] : _symbol (string): SAD
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmbYPZpZqMqCvPDNmQNfZkmzx343j8gJd6JdnV2HpkjHcA/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 5375636b414469636b0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5341440000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d6259505a705a714d71
Arg [9] : 437650444e6d514e665a6b6d7a783334336a38674a64364a646e563248706b6a
Arg [10] : 4863412f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48427:4943:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18202:615;;;;;;;;;;-1:-1:-1;18202:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18202:615:0;;;;;;;;23849:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25795:204::-;;;;;;;;;;-1:-1:-1;25795:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25795:204:0;1528:203:1;48545:28:0;;;;;;;;;;;;;:::i;25343:386::-;;;;;;;;;;-1:-1:-1;25343:386:0;;;;;:::i;:::-;;:::i;:::-;;17256:315;;;;;;;;;;;;16863:1;17522:12;17309:7;17506:13;:28;-1:-1:-1;;17506:46:0;;17256:315;;;;2319:25:1;;;2307:2;2292:18;17256:315:0;2173:177:1;35060:2800:0;;;;;;;;;;-1:-1:-1;35060:2800:0;;;;;:::i;:::-;;:::i;48623:33::-;;;;;;;;;;;;;;;;53169:198;;;:::i;48847:52::-;;;;;;;;;;-1:-1:-1;48847:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;48738:32;;;;;;;;;;;;;;;;26685:185;;;;;;;;;;-1:-1:-1;26685:185:0;;;;;:::i;:::-;;:::i;52585:87::-;;;;;;;;;;-1:-1:-1;52585:87:0;;;;;:::i;:::-;;:::i;52898:104::-;;;;;;;;;;-1:-1:-1;52898:104:0;;;;;:::i;:::-;;:::i;23638:144::-;;;;;;;;;;-1:-1:-1;23638:144:0;;;;;:::i;:::-;;:::i;50757:230::-;;;;;;;;;;-1:-1:-1;50757:230:0;;;;;:::i;:::-;;:::i;48473:21::-;;;;;;;;;;;;;:::i;18881:224::-;;;;;;;;;;-1:-1:-1;18881:224:0;;;;;:::i;:::-;;:::i;2809:103::-;;;;;;;;;;;;;:::i;52773:117::-;;;;;;;;;;-1:-1:-1;52773:117:0;;;;;:::i;:::-;;:::i;48582:34::-;;;;;;;;;;;;;;;;2161:87;;;;;;;;;;-1:-1:-1;2234:6:0;;-1:-1:-1;;;;;2234:6:0;2161:87;;24018:104;;;;;;;;;;;;;:::i;48663:33::-;;;;;;;;;;;;;;;;50076:654;;;;;;:::i;:::-;;:::i;26071:308::-;;;;;;;;;;-1:-1:-1;26071:308:0;;;;;:::i;:::-;;:::i;52508:69::-;;;;;;;;;;;;;:::i;48810:28::-;;;;;;;;;;-1:-1:-1;48810:28:0;;;;;;;;;;;26941:399;;;;;;;;;;-1:-1:-1;26941:399:0;;;;;:::i;:::-;;:::i;52684:81::-;;;;;;;;;;-1:-1:-1;52684:81:0;;;;;:::i;:::-;;:::i;48501:37::-;;;;;;;;;;;;;:::i;51437:1041::-;;;;;;;;;;-1:-1:-1;51437:1041:0;;;;;:::i;:::-;;:::i;53010:151::-;;;;;;;;;;-1:-1:-1;53010:151:0;;;;;:::i;:::-;;:::i;48779:24::-;;;;;;;;;;-1:-1:-1;48779:24:0;;;;;;;;50995:434;;;;;;;;;;;;;:::i;26450:164::-;;;;;;;;;;-1:-1:-1;26450:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26571:25:0;;;26547:4;26571:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26450:164;48703:28;;;;;;;;;;;;;;;;3067:201;;;;;;;;;;-1:-1:-1;3067:201:0;;;;;:::i;:::-;;:::i;18202:615::-;18287:4;-1:-1:-1;;;;;;;;;18587:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18664:25:0;;;18587:102;:179;;;-1:-1:-1;;;;;;;;;;18741:25:0;;;18587:179;18567:199;18202:615;-1:-1:-1;;18202:615:0:o;23849:100::-;23903:13;23936:5;23929:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23849:100;:::o;25795:204::-;25863:7;25888:16;25896:7;25888;:16::i;:::-;25883:64;;25913:34;;-1:-1:-1;;;25913:34:0;;;;;;;;;;;25883:64;-1:-1:-1;25967:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25967:24:0;;25795:204::o;48545:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25343:386::-;25416:13;25432:16;25440:7;25432;:16::i;:::-;25416:32;-1:-1:-1;46243:10:0;-1:-1:-1;;;;;25465:28:0;;;25461:175;;25513:44;25530:5;46243:10;26450:164;:::i;25513:44::-;25508:128;;25585:35;;-1:-1:-1;;;25585:35:0;;;;;;;;;;;25508:128;25648:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25648:29:0;-1:-1:-1;;;;;25648:29:0;;;;;;;;;25693:28;;25648:24;;25693:28;;;;;;;25405:324;25343:386;;:::o;35060:2800::-;35194:27;35224;35243:7;35224:18;:27::i;:::-;35194:57;;35309:4;-1:-1:-1;;;;;35268:45:0;35284:19;-1:-1:-1;;;;;35268:45:0;;35264:86;;35322:28;;-1:-1:-1;;;35322:28:0;;;;;;;;;;;35264:86;35364:27;33790:21;;;33617:15;33832:4;33825:36;33914:4;33898:21;;34004:26;;46243:10;34757:30;;;-1:-1:-1;;;;;34455:26:0;;34736:19;;;34733:55;35543:174;;35630:43;35647:4;46243:10;26450:164;:::i;35630:43::-;35625:92;;35682:35;;-1:-1:-1;;;35682:35:0;;;;;;;;;;;35625:92;-1:-1:-1;;;;;35734:16:0;;35730:52;;35759:23;;-1:-1:-1;;;35759:23:0;;;;;;;;;;;35730:52;35931:15;35928:160;;;36071:1;36050:19;36043:30;35928:160;-1:-1:-1;;;;;36466:24:0;;;;;;;:18;:24;;;;;;36464:26;;-1:-1:-1;;36464:26:0;;;36535:22;;;;;;;;;36533:24;;-1:-1:-1;36533:24:0;;;23537:11;23513:22;23509:40;23496:62;-1:-1:-1;;;23496:62:0;36828:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;37122:46:0;;:51;;37118:626;;37226:1;37216:11;;37194:19;37349:30;;;:17;:30;;;;;;:35;;37345:384;;37487:13;;37472:11;:28;37468:242;;37634:30;;;;:17;:30;;;;;:52;;;37468:242;37175:569;37118:626;37791:7;37787:2;-1:-1:-1;;;;;37772:27:0;37781:4;-1:-1:-1;;;;;37772:27:0;;;;;;;;;;;37810:42;35183:2677;;;35060:2800;;;:::o;53169:198::-;2047:13;:11;:13::i;:::-;53247:90:::1;::::0;53234:7:::1;::::0;53255:42:::1;::::0;53311:21:::1;::::0;53234:7;53247:90;53234:7;53247:90;53311:21;53255:42;53247:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53233:104;;;53356:2;53348:11;;;::::0;::::1;;53214:153;53169:198::o:0;26685:185::-;26823:39;26840:4;26846:2;26850:7;26823:39;;;;;;;;;;;;:16;:39::i;:::-;26685:185;;;:::o;52585:87::-;2047:13;:11;:13::i;:::-;52648:5:::1;:16:::0;52585:87::o;52898:104::-;2047:13;:11;:13::i;:::-;52973:7:::1;:21;52983:11:::0;52973:7;:21:::1;:::i;:::-;;52898:104:::0;:::o;23638:144::-;23702:7;23745:27;23764:7;23745:18;:27::i;50757:230::-;2047:13;:11;:13::i;:::-;50828:14:::1;50845:13;16863:1:::0;17522:12;17309:7;17506:13;:28;-1:-1:-1;;17506:46:0;;17256:315;50845:13:::1;50828:30:::0;-1:-1:-1;50887:20:0::1;50896:11:::0;50828:30;50887:20:::1;:::i;:::-;50873:10;;:34;50869:65;;50916:18;;-1:-1:-1::0;;;50916:18:0::1;;;;;;;;;;;50869:65;50945:34;50955:10;50967:11;50945:9;:34::i;48473:21::-:0;;;;;;;:::i;18881:224::-;18945:7;-1:-1:-1;;;;;18969:19:0;;18965:60;;18997:28;;-1:-1:-1;;;18997:28:0;;;;;;;;;;;18965:60;-1:-1:-1;;;;;;19043:25:0;;;;;:18;:25;;;;;;13436:13;19043:54;;18881:224::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;52773:117::-;2047:13;:11;:13::i;:::-;52854:8:::1;:28:::0;52773:117::o;24018:104::-;24074:13;24107:7;24100:14;;;;;:::i;50076:654::-;50168:11;49757:14;49774:13;16863:1;17522:12;17309:7;17506:13;:28;-1:-1:-1;;17506:46:0;;17256:315;49774:13;49802:5;;49757:30;;-1:-1:-1;49802:5:0;;49798:36;;;49816:18;;-1:-1:-1;;;49816:18:0;;;;;;;;;;;49798:36;49849:11;49864:1;49849:16;49845:45;;49874:16;;-1:-1:-1;;;49874:16:0;;;;;;;;;;;49845:45;49928:10;;49905:20;49914:11;49905:6;:20;:::i;:::-;:33;49901:64;;;49947:18;;-1:-1:-1;;;49947:18:0;;;;;;;;;;;49901:64;49994:8;;49980:11;:22;49976:57;;;50011:22;;-1:-1:-1;;;50011:22:0;;;;;;;;;;;49976:57;50201:9:::1;50214:1;50201:14:::0;50197:479:::1;;50266:11;;50252;50236:13;16863:1:::0;17522:12;17309:7;17506:13;:28;-1:-1:-1;;17506:46:0;;17256:315;50236:13:::1;:27;;;;:::i;:::-;:41;50232:88;;;50303:17;;-1:-1:-1::0;;;50303:17:0::1;;;;;;;;;;;50232:88;50381:10;50337:23;50363:29:::0;;;:17:::1;:29;::::0;;;;;50443:13:::1;::::0;50411:29:::1;50429:11:::0;50363:29;50411::::1;:::i;:::-;:45;50407:97;;;50482:22;;-1:-1:-1::0;;;50482:22:0::1;;;;;;;;;;;50407:97;50539:10;50521:29;::::0;;;:17:::1;:29;::::0;;;;:44;;50554:11;;50521:29;:44:::1;::::0;50554:11;;50521:44:::1;:::i;:::-;::::0;;;-1:-1:-1;50197:479:0::1;::::0;-1:-1:-1;;50197:479:0::1;;50625:11;50617:5;;:19;;;;:::i;:::-;50604:9;:32;50600:64;;50645:19;;-1:-1:-1::0;;;50645:19:0::1;;;;;;;;;;;50600:64;50688:34;50698:10;50710:11;50688:9;:34::i;26071:308::-:0;46243:10;-1:-1:-1;;;;;26170:31:0;;;26166:61;;26210:17;;-1:-1:-1;;;26210:17:0;;;;;;;;;;;26166:61;46243:10;26240:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26240:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26240:60:0;;;;;;;;;;26316:55;;540:41:1;;;26240:49:0;;46243:10;26316:55;;513:18:1;26316:55:0;;;;;;;26071:308;;:::o;52508:69::-;2047:13;:11;:13::i;:::-;52554:8:::1;:15:::0;;-1:-1:-1;;52554:15:0::1;;;::::0;;52508:69::o;26941:399::-;27108:31;27121:4;27127:2;27131:7;27108:12;:31::i;:::-;-1:-1:-1;;;;;27154:14:0;;;:19;27150:183;;27193:56;27224:4;27230:2;27234:7;27243:5;27193:30;:56::i;:::-;27188:145;;27277:40;;-1:-1:-1;;;27277:40:0;;;;;;;;;;;27188:145;26941:399;;;;:::o;52684:81::-;2047:13;:11;:13::i;:::-;52743:5:::1;:14:::0;;-1:-1:-1;;52743:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52684:81::o;48501:37::-;;;;;;;:::i;51437:1041::-;51555:13;51608:16;51616:7;51608;:16::i;:::-;51586:113;;;;-1:-1:-1;;;51586:113:0;;9089:2:1;51586:113:0;;;9071:21:1;9128:2;9108:18;;;9101:30;9167:34;9147:18;;;9140:62;-1:-1:-1;;;9218:18:1;;;9211:45;9273:19;;51586:113:0;;;;;;;;;51714:28;51745:10;:8;:10::i;:::-;51772:8;;51714:41;;-1:-1:-1;51772:8:0;;;;;:17;;51784:5;51772:17;51768:383;;51861:1;51836:14;51830:28;:32;:309;;;;;;;;;;;;;;;;;51966:14;52050:13;51919:171;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51830:309;51806:333;51437:1041;-1:-1:-1;;;51437:1041:0:o;51768:383::-;52214:1;52189:14;52183:28;:32;:287;;;;;;;;;;;;;;;;;52307:14;52348:18;52358:7;52348:9;:18::i;:::-;52393:13;52264:165;;;;;;;;;;:::i;53010:151::-;2047:13;:11;:13::i;:::-;53120::::1;:33;53136:17:::0;53120:13;:33:::1;:::i;50995:434::-:0;51039:13;51065:28;51096:10;:8;:10::i;:::-;51065:41;;51168:1;51143:14;51137:28;:32;:284;;;;;;;;;;;;;;;;;51261:14;51344:13;51218:162;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51137:284;51117:304;;;50995:434;:::o;3067:201::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3156:22:0;::::1;3148:73;;;::::0;-1:-1:-1;;;3148:73:0;;11853:2:1;3148:73:0::1;::::0;::::1;11835:21:1::0;11892:2;11872:18;;;11865:30;11931:34;11911:18;;;11904:62;-1:-1:-1;;;11982:18:1;;;11975:36;12028:19;;3148:73:0::1;11651:402:1::0;3148:73:0::1;3232:28;3251:8;3232:18;:28::i;27595:273::-:0;27652:4;27708:7;16863:1;27689:26;;:66;;;;;27742:13;;27732:7;:23;27689:66;:152;;;;-1:-1:-1;;27793:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27793:43:0;:48;;27595:273::o;20555:1129::-;20622:7;20657;;16863:1;20706:23;20702:915;;20759:13;;20752:4;:20;20748:869;;;20797:14;20814:23;;;:17;:23;;;;;;;-1:-1:-1;;;20903:23:0;;:28;;20899:699;;21422:113;21429:6;21439:1;21429:11;21422:113;;-1:-1:-1;;;21500:6:0;21482:25;;;;:17;:25;;;;;;21422:113;;20899:699;20774:843;20748:869;21645:31;;-1:-1:-1;;;21645:31:0;;;;;;;;;;;2326:132;2234:6;;-1:-1:-1;;;;;2234:6:0;46243:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;12260:2:1;2382:68:0;;;12242:21:1;;;12279:18;;;12272:30;12338:34;12318:18;;;12311:62;12390:18;;2382:68:0;12058:356:1;27952:104:0;28021:27;28031:2;28035:8;28021:27;;;;;;;;;;;;:9;:27::i;3428:191::-;3521:6;;;-1:-1:-1;;;;;3538:17:0;;;-1:-1:-1;;;;;;3538:17:0;;;;;;;3571:40;;3521:6;;;3538:17;3521:6;;3571:40;;3502:16;;3571:40;3491:128;3428:191;:::o;41811:716::-;41995:88;;-1:-1:-1;;;41995:88:0;;41974:4;;-1:-1:-1;;;;;41995:45:0;;;;;:88;;46243:10;;42062:4;;42068:7;;42077:5;;41995:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41995:88:0;;;;;;;;-1:-1:-1;;41995:88:0;;;;;;;;;;;;:::i;:::-;;;41991:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42278:6;:13;42295:1;42278:18;42274:235;;42324:40;;-1:-1:-1;;;42324:40:0;;;;;;;;;;;42274:235;42467:6;42461:13;42452:6;42448:2;42444:15;42437:38;41991:529;-1:-1:-1;;;;;;42154:64:0;-1:-1:-1;;;42154:64:0;;-1:-1:-1;41991:529:0;41811:716;;;;;;:::o;49585:108::-;49645:13;49678:7;49671:14;;;;;:::i;46367:1960::-;46836:4;46830:11;;46843:3;46826:21;;46921:17;;;;47617:11;;;47496:5;47749:2;47763;47753:13;;47745:22;47617:11;47732:36;47804:2;47794:13;;47388:697;47823:4;47388:697;;;48014:1;48009:3;48005:11;47998:18;;48065:2;48059:4;48055:13;48051:2;48047:22;48042:3;48034:36;47918:2;47908:13;;47388:697;;;-1:-1:-1;48115:13:0;;;-1:-1:-1;;48230:12:0;;;48290:19;;;48230:12;46367:1960;-1:-1:-1;46367:1960:0:o;28472:681::-;28595:19;28601:2;28605:8;28595:5;:19::i;:::-;-1:-1:-1;;;;;28656:14:0;;;:19;28652:483;;28696:11;28710:13;28758:14;;;28791:233;28822:62;28861:1;28865:2;28869:7;;;;;;28878:5;28822:30;:62::i;:::-;28817:167;;28920:40;;-1:-1:-1;;;28920:40:0;;;;;;;;;;;28817:167;29019:3;29011:5;:11;28791:233;;29106:3;29089:13;;:20;29085:34;;29111:8;;;29085:34;28677:458;;28472:681;;;:::o;29426:1529::-;29491:20;29514:13;-1:-1:-1;;;;;29542:16:0;;29538:48;;29567:19;;-1:-1:-1;;;29567:19:0;;;;;;;;;;;29538:48;29601:8;29613:1;29601:13;29597:44;;29623:18;;-1:-1:-1;;;29623:18:0;;;;;;;;;;;29597:44;-1:-1:-1;;;;;30129:22:0;;;;;;:18;:22;;13573:2;30129:22;;:70;;30167:31;30155:44;;30129:70;;;23537:11;23513:22;23509:40;-1:-1:-1;25247:15:0;;25222:23;25218:45;23506:51;23496:62;30442:31;;;;:17;:31;;;;;:173;30460:12;30691:23;;;30729:101;30756:35;;30781:9;;;;;-1:-1:-1;;;;;30756:35:0;;;30773:1;;30756:35;;30773:1;;30756:35;30825:3;30815:7;:13;30729:101;;30846:13;:19;-1:-1:-1;26685:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:254;4334:6;4342;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;4434:29;4453:9;4434:29;:::i;:::-;4424:39;;4482:35;4513:2;4502:9;4498:18;4482:35;:::i;:::-;4472:45;;4269:254;;;;;:::o;4528:667::-;4623:6;4631;4639;4647;4700:3;4688:9;4679:7;4675:23;4671:33;4668:53;;;4717:1;4714;4707:12;4668:53;4740:29;4759:9;4740:29;:::i;:::-;4730:39;;4788:38;4822:2;4811:9;4807:18;4788:38;:::i;:::-;4778:48;;4873:2;4862:9;4858:18;4845:32;4835:42;;4928:2;4917:9;4913:18;4900:32;4955:18;4947:6;4944:30;4941:50;;;4987:1;4984;4977:12;4941:50;5010:22;;5063:4;5055:13;;5051:27;-1:-1:-1;5041:55:1;;5092:1;5089;5082:12;5041:55;5115:74;5181:7;5176:2;5163:16;5158:2;5154;5150:11;5115:74;:::i;:::-;5105:84;;;4528:667;;;;;;;:::o;5200:180::-;5256:6;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;5348:26;5364:9;5348:26;:::i;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6371:545::-;6473:2;6468:3;6465:11;6462:448;;;6509:1;6534:5;6530:2;6523:17;6579:4;6575:2;6565:19;6649:2;6637:10;6633:19;6630:1;6626:27;6620:4;6616:38;6685:4;6673:10;6670:20;6667:47;;;-1:-1:-1;6708:4:1;6667:47;6763:2;6758:3;6754:12;6751:1;6747:20;6741:4;6737:31;6727:41;;6818:82;6836:2;6829:5;6826:13;6818:82;;;6881:17;;;6862:1;6851:13;6818:82;;7092:1352;7218:3;7212:10;7245:18;7237:6;7234:30;7231:56;;;7267:18;;:::i;:::-;7296:97;7386:6;7346:38;7378:4;7372:11;7346:38;:::i;:::-;7340:4;7296:97;:::i;:::-;7448:4;;7512:2;7501:14;;7529:1;7524:663;;;;8231:1;8248:6;8245:89;;;-1:-1:-1;8300:19:1;;;8294:26;8245:89;-1:-1:-1;;7049:1:1;7045:11;;;7041:24;7037:29;7027:40;7073:1;7069:11;;;7024:57;8347:81;;7494:944;;7524:663;6318:1;6311:14;;;6355:4;6342:18;;-1:-1:-1;;7560:20:1;;;7678:236;7692:7;7689:1;7686:14;7678:236;;;7781:19;;;7775:26;7760:42;;7873:27;;;;7841:1;7829:14;;;;7708:19;;7678:236;;;7682:3;7942:6;7933:7;7930:19;7927:201;;;8003:19;;;7997:26;-1:-1:-1;;8086:1:1;8082:14;;;8098:3;8078:24;8074:37;8070:42;8055:58;8040:74;;7927:201;-1:-1:-1;;;;;8174:1:1;8158:14;;;8154:22;8141:36;;-1:-1:-1;7092:1352:1:o;8449:127::-;8510:10;8505:3;8501:20;8498:1;8491:31;8541:4;8538:1;8531:15;8565:4;8562:1;8555:15;8581:128;8621:3;8652:1;8648:6;8645:1;8642:13;8639:39;;;8658:18;;:::i;:::-;-1:-1:-1;8694:9:1;;8581:128::o;8714:168::-;8754:7;8820:1;8816;8812:6;8808:14;8805:1;8802:21;8797:1;8790:9;8783:17;8779:45;8776:71;;;8827:18;;:::i;:::-;-1:-1:-1;8867:9:1;;8714:168::o;9303:722::-;9353:3;9394:5;9388:12;9423:36;9449:9;9423:36;:::i;:::-;9478:1;9495:18;;;9522:133;;;;9669:1;9664:355;;;;9488:531;;9522:133;-1:-1:-1;;9555:24:1;;9543:37;;9628:14;;9621:22;9609:35;;9600:45;;;-1:-1:-1;9522:133:1;;9664:355;9695:5;9692:1;9685:16;9724:4;9769:2;9766:1;9756:16;9794:1;9808:165;9822:6;9819:1;9816:13;9808:165;;;9900:14;;9887:11;;;9880:35;9943:16;;;;9837:10;;9808:165;;;9812:3;;;10002:6;9997:3;9993:16;9986:23;;9488:531;;;;;9303:722;;;;:::o;10030:524::-;10307:3;10345:6;10339:13;10361:53;10407:6;10402:3;10395:4;10387:6;10383:17;10361:53;:::i;:::-;-1:-1:-1;;;10436:16:1;;;10461:23;;;10500:48;10545:1;10534:13;;10526:6;10500:48;:::i;:::-;10493:55;10030:524;-1:-1:-1;;;;;10030:524:1:o;10559:550::-;10783:3;10821:6;10815:13;10837:53;10883:6;10878:3;10871:4;10863:6;10859:17;10837:53;:::i;:::-;10953:13;;10912:16;;;;10975:57;10953:13;10912:16;11009:4;10997:17;;10975:57;:::i;:::-;11048:55;11093:8;11086:5;11082:20;11074:6;11048:55;:::i;:::-;11041:62;10559:550;-1:-1:-1;;;;;;;10559:550:1:o;11114:532::-;11391:3;11429:6;11423:13;11445:53;11491:6;11486:3;11479:4;11471:6;11467:17;11445:53;:::i;:::-;-1:-1:-1;;;11520:16:1;;;11545:30;;;11591:49;11636:2;11625:14;;11617:6;11591:49;:::i;12419:489::-;-1:-1:-1;;;;;12688:15:1;;;12670:34;;12740:15;;12735:2;12720:18;;12713:43;12787:2;12772:18;;12765:34;;;12835:3;12830:2;12815:18;;12808:31;;;12613:4;;12856:46;;12882:19;;12874:6;12856:46;:::i;:::-;12848:54;12419:489;-1:-1:-1;;;;;;12419:489:1:o;12913:249::-;12982:6;13035:2;13023:9;13014:7;13010:23;13006:32;13003:52;;;13051:1;13048;13041:12;13003:52;13083:9;13077:16;13102:30;13126:5;13102:30;:::i

Swarm Source

ipfs://0d85ed38a776fa14b1da421d7091f2973fedf6b80796a1634dce7ce4ab96e7e8
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.