ETH Price: $3,352.10 (+0.12%)
Gas: 10 Gwei

Token

DefinitelyNotDicks (DND)
 

Overview

Max Total Supply

303 DND

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DND
0x2eca0bbd9ea9ea5998c9803f5d56ac0088462b65
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:
DefinitelyNotDicks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-05
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: erc721a/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: erc721a/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 0;
    }

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

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

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (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: @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/DefinitelyNotDicks.sol



// Amended by Achraf

pragma solidity >=0.7.0 <0.9.0;





contract DefinitelyNotDicks is Ownable, ERC721A {
  using StringsUpgradeable for uint256;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.001 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 50;
  uint256 public nftPerAddressLimit = 500;

  bool public paused = false;
  bool public revealed = true;

  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721A("DefinitelyNotDicks", "DND")  {
    setHiddenMetadataUri("ipfs://CID__URL/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused, "The contract is paused!");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    addressMintedBalance[_receiver] = addressMintedBalance[_receiver] + _mintAmount;
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setNftPerAddressLimit(uint256 _nftPerAddressLimit) public onlyOwner {
    nftPerAddressLimit = _nftPerAddressLimit;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"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"},{"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":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPerAddressLimit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160099162000235565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a9162000235565b5066038d7ea4c68000600c55612710600d556032600e556101f4600f556010805461ffff19166101001790553480156200008357600080fd5b5060405180604001604052806012815260200171446566696e6974656c794e6f744469636b7360701b8152506040518060400160405280600381526020016211139160ea1b815250620000e5620000df6200015d60201b60201c565b62000161565b8151620000fa90600390602085019062000235565b5080516200011090600490602084019062000235565b506000600155505060408051808201909152601b81527f697066733a2f2f4349445f5f55524c2f68696464656e2e6a736f6e000000000060208201526200015790620001b1565b62000318565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001bb620001d4565b8051620001d090600b90602084019062000235565b5050565b6000546001600160a01b03163314620002335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280546200024390620002db565b90600052602060002090601f016020900481019282620002675760008555620002b2565b82601f106200028257805160ff1916838001178555620002b2565b82800160010185558215620002b2579182015b82811115620002b257825182559160200191906001019062000295565b50620002c0929150620002c4565b5090565b5b80821115620002c05760008155600101620002c5565b600181811c90821680620002f057607f821691505b602082108114156200031257634e487b7160e01b600052602260045260246000fd5b50919050565b611f9a80620003286000396000f3fe60806040526004361061023b5760003560e01c80636f8b44b01161012e578063b071401b116100ab578063d5abeb011161006f578063d5abeb011461067c578063e0a8085314610692578063e985e9c5146106b2578063efbd73f4146106fb578063f2fde38b1461071b57600080fd5b8063b071401b146105e6578063b88d4fde14610606578063ba7d2c7614610626578063c87b56dd1461063c578063d0eb26b01461065c57600080fd5b806394354fd0116100f257806394354fd01461057357806395d89b4114610589578063a0712d681461059e578063a22cb465146105b1578063a45ba8e7146105d157600080fd5b80636f8b44b0146104e057806370a0823114610500578063715018a6146105205780637ec4a659146105355780638da5cb5b1461055557600080fd5b80633ccfd60b116101bc5780635183022711610180578063518302271461045d5780635503a0e81461047c5780635c975abb1461049157806362b99ad4146104ab5780636352211e146104c057600080fd5b80633ccfd60b146103bb57806342842e0e146103d0578063438b6300146103f057806344a0d68a1461041d5780634fdd43cb1461043d57600080fd5b806316ba10e01161020357806316ba10e01461031557806316c38b3c1461033557806318160ddd1461035557806318cae2691461036e57806323b872dd1461039b57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611bbb565b61073b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61078d565b60405161026c9190611deb565b3480156102a357600080fd5b506102b76102b2366004611c3e565b61081f565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611b76565b610863565b005b3480156102fd57600080fd5b50610307600c5481565b60405190815260200161026c565b34801561032157600080fd5b506102ef610330366004611bf5565b610903565b34801561034157600080fd5b506102ef610350366004611ba0565b610922565b34801561036157600080fd5b5060025460015403610307565b34801561037a57600080fd5b50610307610389366004611a46565b60116020526000908152604090205481565b3480156103a757600080fd5b506102ef6103b6366004611a94565b61093d565b3480156103c757600080fd5b506102ef610ace565b3480156103dc57600080fd5b506102ef6103eb366004611a94565b610b39565b3480156103fc57600080fd5b5061041061040b366004611a46565b610b59565b60405161026c9190611da7565b34801561042957600080fd5b506102ef610438366004611c3e565b610c3a565b34801561044957600080fd5b506102ef610458366004611bf5565b610c47565b34801561046957600080fd5b5060105461026090610100900460ff1681565b34801561048857600080fd5b5061028a610c62565b34801561049d57600080fd5b506010546102609060ff1681565b3480156104b757600080fd5b5061028a610cf0565b3480156104cc57600080fd5b506102b76104db366004611c3e565b610cfd565b3480156104ec57600080fd5b506102ef6104fb366004611c3e565b610d08565b34801561050c57600080fd5b5061030761051b366004611a46565b610d15565b34801561052c57600080fd5b506102ef610d64565b34801561054157600080fd5b506102ef610550366004611bf5565b610d78565b34801561056157600080fd5b506000546001600160a01b03166102b7565b34801561057f57600080fd5b50610307600e5481565b34801561059557600080fd5b5061028a610d93565b6102ef6105ac366004611c3e565b610da2565b3480156105bd57600080fd5b506102ef6105cc366004611b4c565b610fa2565b3480156105dd57600080fd5b5061028a611038565b3480156105f257600080fd5b506102ef610601366004611c3e565b611045565b34801561061257600080fd5b506102ef610621366004611ad0565b611052565b34801561063257600080fd5b50610307600f5481565b34801561064857600080fd5b5061028a610657366004611c3e565b61109c565b34801561066857600080fd5b506102ef610677366004611c3e565b61120b565b34801561068857600080fd5b50610307600d5481565b34801561069e57600080fd5b506102ef6106ad366004611ba0565b611218565b3480156106be57600080fd5b506102606106cd366004611a61565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561070757600080fd5b506102ef610716366004611c57565b61123a565b34801561072757600080fd5b506102ef610736366004611a46565b6113f9565b60006301ffc9a760e01b6001600160e01b03198316148061076c57506380ac58cd60e01b6001600160e01b03198316145b806107875750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461079c90611e8c565b80601f01602080910402602001604051908101604052809291908181526020018280546107c890611e8c565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b600061082a8261146f565b610847576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061086e82610cfd565b9050336001600160a01b038216146108a75761088a81336106cd565b6108a7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61090b611497565b805161091e90600a90602084019061190b565b5050565b61092a611497565b6010805460ff1916911515919091179055565b6000610948826114f1565b9050836001600160a01b0316816001600160a01b03161461097b5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176109c8576109ab86336106cd565b6109c857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109ef57604051633a954ecd60e21b815260040160405180910390fd5b80156109fa57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610a855760018401600081815260056020526040902054610a83576001548114610a835760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610ad6611497565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610b23576040519150601f19603f3d011682016040523d82523d6000602084013e610b28565b606091505b5050905080610b3657600080fd5b50565b610b5483838360405180602001604052806000815250611052565b505050565b60606000610b6683610d15565b905060008167ffffffffffffffff811115610b8357610b83611f38565b604051908082528060200260200182016040528015610bac578160200160208202803683370190505b509050600160005b8381108015610bc55750600d548211155b15610c30576000610bd583610cfd565b9050866001600160a01b0316816001600160a01b03161415610c1d5782848381518110610c0457610c04611f22565b602090810291909101015281610c1981611ec7565b9250505b82610c2781611ec7565b93505050610bb4565b5090949350505050565b610c42611497565b600c55565b610c4f611497565b805161091e90600b90602084019061190b565b600a8054610c6f90611e8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9b90611e8c565b8015610ce85780601f10610cbd57610100808354040283529160200191610ce8565b820191906000526020600020905b815481529060010190602001808311610ccb57829003601f168201915b505050505081565b60098054610c6f90611e8c565b6000610787826114f1565b610d10611497565b600d55565b60006001600160a01b038216610d3e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610d6c611497565b610d766000611552565b565b610d80611497565b805161091e90600990602084019061190b565b60606004805461079c90611e8c565b33600090815260116020526040902054600f54829190610dc28383611dfe565b1115610e155760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064015b60405180910390fd5b600082118015610e275750600e548211155b610e6a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e0c565b600d5482610e7b6002546001540390565b610e859190611dfe565b1115610eca5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610e0c565b60105460ff1615610f175760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610e0c565b82600c54610f259190611e2a565b341015610f6a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610e0c565b33600090815260116020526040902054610f85908490611dfe565b33600081815260116020526040902091909155610b5490846115a2565b6001600160a01b038216331415610fcc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610c6f90611e8c565b61104d611497565b600e55565b61105d84848461093d565b6001600160a01b0383163b1561109657611079848484846115bc565b611096576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110a78261146f565b61110b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e0c565b601054610100900460ff166111ac57600b805461112790611e8c565b80601f016020809104026020016040519081016040528092919081815260200182805461115390611e8c565b80156111a05780601f10611175576101008083540402835291602001916111a0565b820191906000526020600020905b81548152906001019060200180831161118357829003601f168201915b50505050509050919050565b60006111b66116b4565b905060008151116111d65760405180602001604052806000815250611204565b806111e0846116c3565b600a6040516020016111f493929190611ca6565b6040516020818303038152906040525b9392505050565b611213611497565b600f55565b611220611497565b601080549115156101000261ff0019909216919091179055565b33600090815260116020526040902054600f5483919061125a8383611dfe565b11156112a85760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610e0c565b6000821180156112ba5750600e548211155b6112fd5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e0c565b600d548261130e6002546001540390565b6113189190611dfe565b111561135d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610e0c565b60105460ff16156113aa5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610e0c565b6113b2611497565b6001600160a01b0383166000908152601160205260409020546113d6908590611dfe565b6001600160a01b03841660009081526011602052604090205561109683856115a2565b611401611497565b6001600160a01b0381166114665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e0c565b610b3681611552565b600060015482108015610787575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610d765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0c565b60008160015481101561153957600081815260056020526040902054600160e01b8116611537575b80611204575060001901600081815260056020526040902054611519565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61091e8282604051806020016040528060008152506117c1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115f1903390899088908890600401611d6a565b602060405180830381600087803b15801561160b57600080fd5b505af192505050801561163b575060408051601f3d908101601f1916820190925261163891810190611bd8565b60015b611696573d808015611669576040519150601f19603f3d011682016040523d82523d6000602084013e61166e565b606091505b50805161168e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461079c90611e8c565b6060816116e75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171157806116fb81611ec7565b915061170a9050600a83611e16565b91506116eb565b60008167ffffffffffffffff81111561172c5761172c611f38565b6040519080825280601f01601f191660200182016040528015611756576020820181803683370190505b5090505b84156116ac5761176b600183611e49565b9150611778600a86611ee2565b611783906030611dfe565b60f81b81838151811061179857611798611f22565b60200101906001600160f81b031916908160001a9053506117ba600a86611e16565b945061175a565b6117cb838361182e565b6001600160a01b0383163b15610b54576001548281035b6117f560008683806001019450866115bc565b611812576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117e257816001541461182757600080fd5b5050505050565b6001546001600160a01b03831661185757604051622e076360e81b815260040160405180910390fd5b816118755760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118bf5760015550505050565b82805461191790611e8c565b90600052602060002090601f016020900481019282611939576000855561197f565b82601f1061195257805160ff191683800117855561197f565b8280016001018555821561197f579182015b8281111561197f578251825591602001919060010190611964565b5061198b92915061198f565b5090565b5b8082111561198b5760008155600101611990565b600067ffffffffffffffff808411156119bf576119bf611f38565b604051601f8501601f19908116603f011681019082821181831017156119e7576119e7611f38565b81604052809350858152868686011115611a0057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a3157600080fd5b919050565b80358015158114611a3157600080fd5b600060208284031215611a5857600080fd5b61120482611a1a565b60008060408385031215611a7457600080fd5b611a7d83611a1a565b9150611a8b60208401611a1a565b90509250929050565b600080600060608486031215611aa957600080fd5b611ab284611a1a565b9250611ac060208501611a1a565b9150604084013590509250925092565b60008060008060808587031215611ae657600080fd5b611aef85611a1a565b9350611afd60208601611a1a565b925060408501359150606085013567ffffffffffffffff811115611b2057600080fd5b8501601f81018713611b3157600080fd5b611b40878235602084016119a4565b91505092959194509250565b60008060408385031215611b5f57600080fd5b611b6883611a1a565b9150611a8b60208401611a36565b60008060408385031215611b8957600080fd5b611b9283611a1a565b946020939093013593505050565b600060208284031215611bb257600080fd5b61120482611a36565b600060208284031215611bcd57600080fd5b813561120481611f4e565b600060208284031215611bea57600080fd5b815161120481611f4e565b600060208284031215611c0757600080fd5b813567ffffffffffffffff811115611c1e57600080fd5b8201601f81018413611c2f57600080fd5b6116ac848235602084016119a4565b600060208284031215611c5057600080fd5b5035919050565b60008060408385031215611c6a57600080fd5b82359150611a8b60208401611a1a565b60008151808452611c92816020860160208601611e60565b601f01601f19169290920160200192915050565b600084516020611cb98285838a01611e60565b855191840191611ccc8184848a01611e60565b8554920191600090600181811c9080831680611ce957607f831692505b858310811415611d0757634e487b7160e01b85526022600452602485fd5b808015611d1b5760018114611d2c57611d59565b60ff19851688528388019550611d59565b60008b81526020902060005b85811015611d515781548a820152908401908801611d38565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d9d90830184611c7a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ddf57835183529284019291840191600101611dc3565b50909695505050505050565b6020815260006112046020830184611c7a565b60008219821115611e1157611e11611ef6565b500190565b600082611e2557611e25611f0c565b500490565b6000816000190483118215151615611e4457611e44611ef6565b500290565b600082821015611e5b57611e5b611ef6565b500390565b60005b83811015611e7b578181015183820152602001611e63565b838111156110965750506000910152565b600181811c90821680611ea057607f821691505b60208210811415611ec157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611edb57611edb611ef6565b5060010190565b600082611ef157611ef1611f0c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3657600080fdfea2646970667358221220a4ab2781508f5bea7386a95b3d1dcf9c63146240f6b946fb9e9be1515a91991364736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636f8b44b01161012e578063b071401b116100ab578063d5abeb011161006f578063d5abeb011461067c578063e0a8085314610692578063e985e9c5146106b2578063efbd73f4146106fb578063f2fde38b1461071b57600080fd5b8063b071401b146105e6578063b88d4fde14610606578063ba7d2c7614610626578063c87b56dd1461063c578063d0eb26b01461065c57600080fd5b806394354fd0116100f257806394354fd01461057357806395d89b4114610589578063a0712d681461059e578063a22cb465146105b1578063a45ba8e7146105d157600080fd5b80636f8b44b0146104e057806370a0823114610500578063715018a6146105205780637ec4a659146105355780638da5cb5b1461055557600080fd5b80633ccfd60b116101bc5780635183022711610180578063518302271461045d5780635503a0e81461047c5780635c975abb1461049157806362b99ad4146104ab5780636352211e146104c057600080fd5b80633ccfd60b146103bb57806342842e0e146103d0578063438b6300146103f057806344a0d68a1461041d5780634fdd43cb1461043d57600080fd5b806316ba10e01161020357806316ba10e01461031557806316c38b3c1461033557806318160ddd1461035557806318cae2691461036e57806323b872dd1461039b57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611bbb565b61073b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61078d565b60405161026c9190611deb565b3480156102a357600080fd5b506102b76102b2366004611c3e565b61081f565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611b76565b610863565b005b3480156102fd57600080fd5b50610307600c5481565b60405190815260200161026c565b34801561032157600080fd5b506102ef610330366004611bf5565b610903565b34801561034157600080fd5b506102ef610350366004611ba0565b610922565b34801561036157600080fd5b5060025460015403610307565b34801561037a57600080fd5b50610307610389366004611a46565b60116020526000908152604090205481565b3480156103a757600080fd5b506102ef6103b6366004611a94565b61093d565b3480156103c757600080fd5b506102ef610ace565b3480156103dc57600080fd5b506102ef6103eb366004611a94565b610b39565b3480156103fc57600080fd5b5061041061040b366004611a46565b610b59565b60405161026c9190611da7565b34801561042957600080fd5b506102ef610438366004611c3e565b610c3a565b34801561044957600080fd5b506102ef610458366004611bf5565b610c47565b34801561046957600080fd5b5060105461026090610100900460ff1681565b34801561048857600080fd5b5061028a610c62565b34801561049d57600080fd5b506010546102609060ff1681565b3480156104b757600080fd5b5061028a610cf0565b3480156104cc57600080fd5b506102b76104db366004611c3e565b610cfd565b3480156104ec57600080fd5b506102ef6104fb366004611c3e565b610d08565b34801561050c57600080fd5b5061030761051b366004611a46565b610d15565b34801561052c57600080fd5b506102ef610d64565b34801561054157600080fd5b506102ef610550366004611bf5565b610d78565b34801561056157600080fd5b506000546001600160a01b03166102b7565b34801561057f57600080fd5b50610307600e5481565b34801561059557600080fd5b5061028a610d93565b6102ef6105ac366004611c3e565b610da2565b3480156105bd57600080fd5b506102ef6105cc366004611b4c565b610fa2565b3480156105dd57600080fd5b5061028a611038565b3480156105f257600080fd5b506102ef610601366004611c3e565b611045565b34801561061257600080fd5b506102ef610621366004611ad0565b611052565b34801561063257600080fd5b50610307600f5481565b34801561064857600080fd5b5061028a610657366004611c3e565b61109c565b34801561066857600080fd5b506102ef610677366004611c3e565b61120b565b34801561068857600080fd5b50610307600d5481565b34801561069e57600080fd5b506102ef6106ad366004611ba0565b611218565b3480156106be57600080fd5b506102606106cd366004611a61565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561070757600080fd5b506102ef610716366004611c57565b61123a565b34801561072757600080fd5b506102ef610736366004611a46565b6113f9565b60006301ffc9a760e01b6001600160e01b03198316148061076c57506380ac58cd60e01b6001600160e01b03198316145b806107875750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461079c90611e8c565b80601f01602080910402602001604051908101604052809291908181526020018280546107c890611e8c565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b600061082a8261146f565b610847576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061086e82610cfd565b9050336001600160a01b038216146108a75761088a81336106cd565b6108a7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61090b611497565b805161091e90600a90602084019061190b565b5050565b61092a611497565b6010805460ff1916911515919091179055565b6000610948826114f1565b9050836001600160a01b0316816001600160a01b03161461097b5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176109c8576109ab86336106cd565b6109c857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109ef57604051633a954ecd60e21b815260040160405180910390fd5b80156109fa57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610a855760018401600081815260056020526040902054610a83576001548114610a835760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610ad6611497565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610b23576040519150601f19603f3d011682016040523d82523d6000602084013e610b28565b606091505b5050905080610b3657600080fd5b50565b610b5483838360405180602001604052806000815250611052565b505050565b60606000610b6683610d15565b905060008167ffffffffffffffff811115610b8357610b83611f38565b604051908082528060200260200182016040528015610bac578160200160208202803683370190505b509050600160005b8381108015610bc55750600d548211155b15610c30576000610bd583610cfd565b9050866001600160a01b0316816001600160a01b03161415610c1d5782848381518110610c0457610c04611f22565b602090810291909101015281610c1981611ec7565b9250505b82610c2781611ec7565b93505050610bb4565b5090949350505050565b610c42611497565b600c55565b610c4f611497565b805161091e90600b90602084019061190b565b600a8054610c6f90611e8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9b90611e8c565b8015610ce85780601f10610cbd57610100808354040283529160200191610ce8565b820191906000526020600020905b815481529060010190602001808311610ccb57829003601f168201915b505050505081565b60098054610c6f90611e8c565b6000610787826114f1565b610d10611497565b600d55565b60006001600160a01b038216610d3e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610d6c611497565b610d766000611552565b565b610d80611497565b805161091e90600990602084019061190b565b60606004805461079c90611e8c565b33600090815260116020526040902054600f54829190610dc28383611dfe565b1115610e155760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064015b60405180910390fd5b600082118015610e275750600e548211155b610e6a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e0c565b600d5482610e7b6002546001540390565b610e859190611dfe565b1115610eca5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610e0c565b60105460ff1615610f175760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610e0c565b82600c54610f259190611e2a565b341015610f6a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610e0c565b33600090815260116020526040902054610f85908490611dfe565b33600081815260116020526040902091909155610b5490846115a2565b6001600160a01b038216331415610fcc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610c6f90611e8c565b61104d611497565b600e55565b61105d84848461093d565b6001600160a01b0383163b1561109657611079848484846115bc565b611096576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110a78261146f565b61110b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e0c565b601054610100900460ff166111ac57600b805461112790611e8c565b80601f016020809104026020016040519081016040528092919081815260200182805461115390611e8c565b80156111a05780601f10611175576101008083540402835291602001916111a0565b820191906000526020600020905b81548152906001019060200180831161118357829003601f168201915b50505050509050919050565b60006111b66116b4565b905060008151116111d65760405180602001604052806000815250611204565b806111e0846116c3565b600a6040516020016111f493929190611ca6565b6040516020818303038152906040525b9392505050565b611213611497565b600f55565b611220611497565b601080549115156101000261ff0019909216919091179055565b33600090815260116020526040902054600f5483919061125a8383611dfe565b11156112a85760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610e0c565b6000821180156112ba5750600e548211155b6112fd5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610e0c565b600d548261130e6002546001540390565b6113189190611dfe565b111561135d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610e0c565b60105460ff16156113aa5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610e0c565b6113b2611497565b6001600160a01b0383166000908152601160205260409020546113d6908590611dfe565b6001600160a01b03841660009081526011602052604090205561109683856115a2565b611401611497565b6001600160a01b0381166114665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e0c565b610b3681611552565b600060015482108015610787575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610d765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0c565b60008160015481101561153957600081815260056020526040902054600160e01b8116611537575b80611204575060001901600081815260056020526040902054611519565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61091e8282604051806020016040528060008152506117c1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115f1903390899088908890600401611d6a565b602060405180830381600087803b15801561160b57600080fd5b505af192505050801561163b575060408051601f3d908101601f1916820190925261163891810190611bd8565b60015b611696573d808015611669576040519150601f19603f3d011682016040523d82523d6000602084013e61166e565b606091505b50805161168e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461079c90611e8c565b6060816116e75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171157806116fb81611ec7565b915061170a9050600a83611e16565b91506116eb565b60008167ffffffffffffffff81111561172c5761172c611f38565b6040519080825280601f01601f191660200182016040528015611756576020820181803683370190505b5090505b84156116ac5761176b600183611e49565b9150611778600a86611ee2565b611783906030611dfe565b60f81b81838151811061179857611798611f22565b60200101906001600160f81b031916908160001a9053506117ba600a86611e16565b945061175a565b6117cb838361182e565b6001600160a01b0383163b15610b54576001548281035b6117f560008683806001019450866115bc565b611812576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117e257816001541461182757600080fd5b5050505050565b6001546001600160a01b03831661185757604051622e076360e81b815260040160405180910390fd5b816118755760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118bf5760015550505050565b82805461191790611e8c565b90600052602060002090601f016020900481019282611939576000855561197f565b82601f1061195257805160ff191683800117855561197f565b8280016001018555821561197f579182015b8281111561197f578251825591602001919060010190611964565b5061198b92915061198f565b5090565b5b8082111561198b5760008155600101611990565b600067ffffffffffffffff808411156119bf576119bf611f38565b604051601f8501601f19908116603f011681019082821181831017156119e7576119e7611f38565b81604052809350858152868686011115611a0057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a3157600080fd5b919050565b80358015158114611a3157600080fd5b600060208284031215611a5857600080fd5b61120482611a1a565b60008060408385031215611a7457600080fd5b611a7d83611a1a565b9150611a8b60208401611a1a565b90509250929050565b600080600060608486031215611aa957600080fd5b611ab284611a1a565b9250611ac060208501611a1a565b9150604084013590509250925092565b60008060008060808587031215611ae657600080fd5b611aef85611a1a565b9350611afd60208601611a1a565b925060408501359150606085013567ffffffffffffffff811115611b2057600080fd5b8501601f81018713611b3157600080fd5b611b40878235602084016119a4565b91505092959194509250565b60008060408385031215611b5f57600080fd5b611b6883611a1a565b9150611a8b60208401611a36565b60008060408385031215611b8957600080fd5b611b9283611a1a565b946020939093013593505050565b600060208284031215611bb257600080fd5b61120482611a36565b600060208284031215611bcd57600080fd5b813561120481611f4e565b600060208284031215611bea57600080fd5b815161120481611f4e565b600060208284031215611c0757600080fd5b813567ffffffffffffffff811115611c1e57600080fd5b8201601f81018413611c2f57600080fd5b6116ac848235602084016119a4565b600060208284031215611c5057600080fd5b5035919050565b60008060408385031215611c6a57600080fd5b82359150611a8b60208401611a1a565b60008151808452611c92816020860160208601611e60565b601f01601f19169290920160200192915050565b600084516020611cb98285838a01611e60565b855191840191611ccc8184848a01611e60565b8554920191600090600181811c9080831680611ce957607f831692505b858310811415611d0757634e487b7160e01b85526022600452602485fd5b808015611d1b5760018114611d2c57611d59565b60ff19851688528388019550611d59565b60008b81526020902060005b85811015611d515781548a820152908401908801611d38565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d9d90830184611c7a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ddf57835183529284019291840191600101611dc3565b50909695505050505050565b6020815260006112046020830184611c7a565b60008219821115611e1157611e11611ef6565b500190565b600082611e2557611e25611f0c565b500490565b6000816000190483118215151615611e4457611e44611ef6565b500290565b600082821015611e5b57611e5b611ef6565b500390565b60005b83811015611e7b578181015183820152602001611e63565b838111156110965750506000910152565b600181811c90821680611ea057607f821691505b60208210811415611ec157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611edb57611edb611ef6565b5060010190565b600082611ef157611ef1611f0c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3657600080fdfea2646970667358221220a4ab2781508f5bea7386a95b3d1dcf9c63146240f6b946fb9e9be1515a91991364736f6c63430008070033

Deployed Bytecode Sourcemap

50999:3980:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17158:615;;;;;;;;;;-1:-1:-1;17158:615:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;17158:615:0;;;;;;;;22805:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24751:204::-;;;;;;;;;;-1:-1:-1;24751:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;24751:204:0;6563:203:1;24299:386:0;;;;;;;;;;-1:-1:-1;24299:386:0;;;;;:::i;:::-;;:::i;:::-;;51206:33;;;;;;;;;;;;;;;;;;;11402:25:1;;;11390:2;11375:18;51206:33:0;11256:177:1;54436:100:0;;;;;;;;;;-1:-1:-1;54436:100:0;;;;;:::i;:::-;;:::i;54642:77::-;;;;;;;;;;-1:-1:-1;54642:77:0;;;;;:::i;:::-;;:::i;16212:315::-;;;;;;;;;;-1:-1:-1;16478:12:0;;16462:13;;:28;16212:315;;51435:55;;;;;;;;;;-1:-1:-1;51435:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;34016:2800;;;;;;;;;;-1:-1:-1;34016:2800:0;;;;;:::i;:::-;;:::i;54725:141::-;;;;;;;;;;;;;:::i;25641:185::-;;;;;;;;;;-1:-1:-1;25641:185:0;;;;;:::i;:::-;;:::i;52612:635::-;;;;;;;;;;-1:-1:-1;52612:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53840:74::-;;;;;;;;;;-1:-1:-1;53840:74:0;;;;;:::i;:::-;;:::i;54192:132::-;;;;;;;;;;-1:-1:-1;54192:132:0;;;;;:::i;:::-;;:::i;51401:27::-;;;;;;;;;;-1:-1:-1;51401:27:0;;;;;;;;;;;51128:33;;;;;;;;;;;;;:::i;51370:26::-;;;;;;;;;;-1:-1:-1;51370:26:0;;;;;;;;51095:28;;;;;;;;;;;;;:::i;22594:144::-;;;;;;;;;;-1:-1:-1;22594:144:0;;;;;:::i;:::-;;:::i;54542:94::-;;;;;;;;;;-1:-1:-1;54542:94:0;;;;;:::i;:::-;;:::i;17837:224::-;;;;;;;;;;-1:-1:-1;17837:224:0;;;;;:::i;:::-;;:::i;50066:103::-;;;;;;;;;;;;;:::i;54330:100::-;;;;;;;;;;-1:-1:-1;54330:100:0;;;;;:::i;:::-;;:::i;49418:87::-;;;;;;;;;;-1:-1:-1;49464:7:0;49491:6;-1:-1:-1;;;;;49491:6:0;49418:87;;51281:38;;;;;;;;;;;;;;;;22974:104;;;;;;;;;;;;;:::i;52072:285::-;;;;;;:::i;:::-;;:::i;25027:308::-;;;;;;;;;;-1:-1:-1;25027:308:0;;;;;:::i;:::-;;:::i;51166:31::-;;;;;;;;;;;;;:::i;53920:130::-;;;;;;;;;;-1:-1:-1;53920:130:0;;;;;:::i;:::-;;:::i;25897:399::-;;;;;;;;;;-1:-1:-1;25897:399:0;;;;;:::i;:::-;;:::i;51324:39::-;;;;;;;;;;;;;;;;53253:494;;;;;;;;;;-1:-1:-1;53253:494:0;;;;;:::i;:::-;;:::i;54056:130::-;;;;;;;;;;-1:-1:-1;54056:130:0;;;;;:::i;:::-;;:::i;51244:32::-;;;;;;;;;;;;;;;;53753:81;;;;;;;;;;-1:-1:-1;53753:81:0;;;;;:::i;:::-;;:::i;25406:164::-;;;;;;;;;;-1:-1:-1;25406:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25527:25:0;;;25503:4;25527:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25406:164;52365:241;;;;;;;;;;-1:-1:-1;52365:241:0;;;;;:::i;:::-;;:::i;50324:201::-;;;;;;;;;;-1:-1:-1;50324:201:0;;;;;:::i;:::-;;:::i;17158:615::-;17243:4;-1:-1:-1;;;;;;;;;17543:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;17620:25:0;;;17543:102;:179;;;-1:-1:-1;;;;;;;;;;17697:25:0;;;17543:179;17523:199;17158:615;-1:-1:-1;;17158:615:0:o;22805:100::-;22859:13;22892:5;22885:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22805:100;:::o;24751:204::-;24819:7;24844:16;24852:7;24844;:16::i;:::-;24839:64;;24869:34;;-1:-1:-1;;;24869:34:0;;;;;;;;;;;24839:64;-1:-1:-1;24923:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24923:24:0;;24751:204::o;24299:386::-;24372:13;24388:16;24396:7;24388;:16::i;:::-;24372:32;-1:-1:-1;45199:10:0;-1:-1:-1;;;;;24421:28:0;;;24417:175;;24469:44;24486:5;45199:10;25406:164;:::i;24469:44::-;24464:128;;24541:35;;-1:-1:-1;;;24541:35:0;;;;;;;;;;;24464:128;24604:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24604:29:0;-1:-1:-1;;;;;24604:29:0;;;;;;;;;24649:28;;24604:24;;24649:28;;;;;;;24361:324;24299:386;;:::o;54436:100::-;49304:13;:11;:13::i;:::-;54508:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54436:100:::0;:::o;54642:77::-;49304:13;:11;:13::i;:::-;54698:6:::1;:15:::0;;-1:-1:-1;;54698:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54642:77::o;34016:2800::-;34150:27;34180;34199:7;34180:18;:27::i;:::-;34150:57;;34265:4;-1:-1:-1;;;;;34224:45:0;34240:19;-1:-1:-1;;;;;34224:45:0;;34220:86;;34278:28;;-1:-1:-1;;;34278:28:0;;;;;;;;;;;34220:86;34320:27;32746:21;;;32573:15;32788:4;32781:36;32870:4;32854:21;;32960:26;;45199:10;33713:30;;;-1:-1:-1;;;;;33411:26:0;;33692:19;;;33689:55;34499:174;;34586:43;34603:4;45199:10;25406:164;:::i;34586:43::-;34581:92;;34638:35;;-1:-1:-1;;;34638:35:0;;;;;;;;;;;34581:92;-1:-1:-1;;;;;34690:16:0;;34686:52;;34715:23;;-1:-1:-1;;;34715:23:0;;;;;;;;;;;34686:52;34887:15;34884:160;;;35027:1;35006:19;34999:30;34884:160;-1:-1:-1;;;;;35422:24:0;;;;;;;:18;:24;;;;;;35420:26;;-1:-1:-1;;35420:26:0;;;35491:22;;;;;;;;;35489:24;;-1:-1:-1;35489:24:0;;;22493:11;22469:22;22465:40;22452:62;-1:-1:-1;;;22452:62:0;35784:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;36078:46:0;;36074:626;;36182:1;36172:11;;36150:19;36305:30;;;:17;:30;;;;;;36301:384;;36443:13;;36428:11;:28;36424:242;;36590:30;;;;:17;:30;;;;;:52;;;36424:242;36131:569;36074:626;36747:7;36743:2;-1:-1:-1;;;;;36728:27:0;36737:4;-1:-1:-1;;;;;36728:27:0;;;;;;;;;;;34139:2677;;;34016:2800;;;:::o;54725:141::-;49304:13;:11;:13::i;:::-;54774:7:::1;49491:6:::0;;54787:55:::1;::::0;-1:-1:-1;;;;;49491:6:0;;;;54816:21:::1;::::0;54774:7;54787:55;54774:7;54787:55;54816:21;49491:6;54787:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54773:69;;;54857:2;54849:11;;;::::0;::::1;;54762:104;54725:141::o:0;25641:185::-;25779:39;25796:4;25802:2;25806:7;25779:39;;;;;;;;;;;;:16;:39::i;:::-;25641:185;;;:::o;52612:635::-;52687:16;52715:23;52741:17;52751:6;52741:9;:17::i;:::-;52715:43;;52765:30;52812:15;52798:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52798:30:0;-1:-1:-1;52765:63:0;-1:-1:-1;52860:1:0;52835:22;52904:309;52929:15;52911;:33;:64;;;;;52966:9;;52948:14;:27;;52911:64;52904:309;;;52986:25;53014:23;53022:14;53014:7;:23::i;:::-;52986:51;;53073:6;-1:-1:-1;;;;;53052:27:0;:17;-1:-1:-1;;;;;53052:27:0;;53048:131;;;53125:14;53092:13;53106:15;53092:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;53152:17;;;;:::i;:::-;;;;53048:131;53189:16;;;;:::i;:::-;;;;52977:236;52904:309;;;-1:-1:-1;53228:13:0;;52612:635;-1:-1:-1;;;;52612:635:0:o;53840:74::-;49304:13;:11;:13::i;:::-;53896:4:::1;:12:::0;53840:74::o;54192:132::-;49304:13;:11;:13::i;:::-;54280:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;51128:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51095:28::-;;;;;;;:::i;22594:144::-;22658:7;22701:27;22720:7;22701:18;:27::i;54542:94::-;49304:13;:11;:13::i;:::-;54608:9:::1;:22:::0;54542:94::o;17837:224::-;17901:7;-1:-1:-1;;;;;17925:19:0;;17921:60;;17953:28;;-1:-1:-1;;;17953:28:0;;;;;;;;;;;17921:60;-1:-1:-1;;;;;;17999:25:0;;;;;:18;:25;;;;;;12392:13;17999:54;;17837:224::o;50066:103::-;49304:13;:11;:13::i;:::-;50131:30:::1;50158:1;50131:18;:30::i;:::-;50066:103::o:0;54330:100::-;49304:13;:11;:13::i;:::-;54402:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;22974:104::-:0;23030:13;23063:7;23056:14;;;;;:::i;52072:285::-;51719:10;51671:24;51698:32;;;:20;:32;;;;;;51779:18;;52137:11;;51698:32;51745:30;52137:11;51698:32;51745:30;:::i;:::-;:52;;51737:93;;;;-1:-1:-1;;;51737:93:0;;9275:2:1;51737:93:0;;;9257:21:1;9314:2;9294:18;;;9287:30;9353;9333:18;;;9326:58;9401:18;;51737:93:0;;;;;;;;;51859:1;51845:11;:15;:52;;;;;51879:18;;51864:11;:33;;51845:52;51837:85;;;;-1:-1:-1;;;51837:85:0;;8926:2:1;51837:85:0;;;8908:21:1;8965:2;8945:18;;;8938:30;-1:-1:-1;;;8984:18:1;;;8977:50;9044:18;;51837:85:0;8724:344:1;51837:85:0;51968:9;;51953:11;51937:13;16478:12;;16462:13;;:28;;16212:315;51937:13;:27;;;;:::i;:::-;:40;;51929:73;;;;-1:-1:-1;;;51929:73:0;;10761:2:1;51929:73:0;;;10743:21:1;10800:2;10780:18;;;10773:30;-1:-1:-1;;;10819:18:1;;;10812:50;10879:18;;51929:73:0;10559:344:1;51929:73:0;52018:6;;;;52017:7;52009:43;;;;-1:-1:-1;;;52009:43:0;;9993:2:1;52009:43:0;;;9975:21:1;10032:2;10012:18;;;10005:30;-1:-1:-1;;;10051:18:1;;;10044:53;10114:18;;52009:43:0;9791:347:1;52009:43:0;52185:11:::1;52178:4;;:18;;;;:::i;:::-;52165:9;:31;;52157:63;;;::::0;-1:-1:-1;;;52157:63:0;;11110:2:1;52157:63:0::1;::::0;::::1;11092:21:1::0;11149:2;11129:18;;;11122:30;-1:-1:-1;;;11168:18:1;;;11161:49;11227:18;;52157:63:0::1;10908:343:1::0;52157:63:0::1;52285:10;52264:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;52299:11;;52264:46:::1;:::i;:::-;52250:10;52229:32;::::0;;;:20:::1;:32;::::0;;;;:81;;;;52317:34:::1;::::0;52339:11;52317:9:::1;:34::i;25027:308::-:0;-1:-1:-1;;;;;25126:31:0;;45199:10;25126:31;25122:61;;;25166:17;;-1:-1:-1;;;25166:17:0;;;;;;;;;;;25122:61;45199:10;25196:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;25196:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;25196:60:0;;;;;;;;;;25272:55;;8041:41:1;;;25196:49:0;;45199:10;25272:55;;8014:18:1;25272:55:0;;;;;;;25027:308;;:::o;51166:31::-;;;;;;;:::i;53920:130::-;49304:13;:11;:13::i;:::-;54004:18:::1;:40:::0;53920:130::o;25897:399::-;26064:31;26077:4;26083:2;26087:7;26064:12;:31::i;:::-;-1:-1:-1;;;;;26110:14:0;;;:19;26106:183;;26149:56;26180:4;26186:2;26190:7;26199:5;26149:30;:56::i;:::-;26144:145;;26233:40;;-1:-1:-1;;;26233:40:0;;;;;;;;;;;26144:145;25897:399;;;;:::o;53253:494::-;53352:13;53393:17;53401:8;53393:7;:17::i;:::-;53377:98;;;;-1:-1:-1;;;53377:98:0;;10345:2:1;53377:98:0;;;10327:21:1;10384:2;10364:18;;;10357:30;10423:34;10403:18;;;10396:62;-1:-1:-1;;;10474:18:1;;;10467:45;10529:19;;53377:98:0;10143:411:1;53377:98:0;53488:8;;;;;;;53484:64;;53523:17;53516:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53253:494;;;:::o;53484:64::-;53556:28;53587:10;:8;:10::i;:::-;53556:41;;53642:1;53617:14;53611:28;:32;:130;;;;;;;;;;;;;;;;;53679:14;53695:19;:8;:17;:19::i;:::-;53716:9;53662:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53611:130;53604:137;53253:494;-1:-1:-1;;;53253:494:0:o;54056:130::-;49304:13;:11;:13::i;:::-;54140:18:::1;:40:::0;54056:130::o;53753:81::-;49304:13;:11;:13::i;:::-;53811:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;53811:17:0;;::::1;::::0;;;::::1;::::0;;53753:81::o;52365:241::-;51719:10;51671:24;51698:32;;;:20;:32;;;;;;51779:18;;52451:11;;51698:32;51745:30;52451:11;51698:32;51745:30;:::i;:::-;:52;;51737:93;;;;-1:-1:-1;;;51737:93:0;;9275:2:1;51737:93:0;;;9257:21:1;9314:2;9294:18;;;9287:30;9353;9333:18;;;9326:58;9401:18;;51737:93:0;9073:352:1;51737:93:0;51859:1;51845:11;:15;:52;;;;;51879:18;;51864:11;:33;;51845:52;51837:85;;;;-1:-1:-1;;;51837:85:0;;8926:2:1;51837:85:0;;;8908:21:1;8965:2;8945:18;;;8938:30;-1:-1:-1;;;8984:18:1;;;8977:50;9044:18;;51837:85:0;8724:344:1;51837:85:0;51968:9;;51953:11;51937:13;16478:12;;16462:13;;:28;;16212:315;51937:13;:27;;;;:::i;:::-;:40;;51929:73;;;;-1:-1:-1;;;51929:73:0;;10761:2:1;51929:73:0;;;10743:21:1;10800:2;10780:18;;;10773:30;-1:-1:-1;;;10819:18:1;;;10812:50;10879:18;;51929:73:0;10559:344:1;51929:73:0;52018:6;;;;52017:7;52009:43;;;;-1:-1:-1;;;52009:43:0;;9993:2:1;52009:43:0;;;9975:21:1;10032:2;10012:18;;;10005:30;-1:-1:-1;;;10051:18:1;;;10044:53;10114:18;;52009:43:0;9791:347:1;52009:43:0;49304:13:::1;:11;:13::i;:::-;-1:-1:-1::0;;;;;52515:31:0;::::2;;::::0;;;:20:::2;:31;::::0;;;;;:45:::2;::::0;52549:11;;52515:45:::2;:::i;:::-;-1:-1:-1::0;;;;;52481:31:0;::::2;;::::0;;;:20:::2;:31;::::0;;;;:79;52567:33:::2;52502:9:::0;52588:11;52567:9:::2;:33::i;50324:201::-:0;49304:13;:11;:13::i;:::-;-1:-1:-1;;;;;50413:22:0;::::1;50405:73;;;::::0;-1:-1:-1;;;50405:73:0;;8519:2:1;50405:73:0::1;::::0;::::1;8501:21:1::0;8558:2;8538:18;;;8531:30;8597:34;8577:18;;;8570:62;-1:-1:-1;;;8648:18:1;;;8641:36;8694:19;;50405:73:0::1;8317:402:1::0;50405:73:0::1;50489:28;50508:8;50489:18;:28::i;26551:273::-:0;26608:4;26698:13;;26688:7;:23;26645:152;;;;-1:-1:-1;;26749:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;26749:43:0;:48;;26551:273::o;49583:132::-;49464:7;49491:6;-1:-1:-1;;;;;49491:6:0;45199:10;49647:23;49639:68;;;;-1:-1:-1;;;49639:68:0;;9632:2:1;49639:68:0;;;9614:21:1;;;9651:18;;;9644:30;9710:34;9690:18;;;9683:62;9762:18;;49639:68:0;9430:356:1;19511:1129:0;19578:7;19613;19715:13;;19708:4;:20;19704:869;;;19753:14;19770:23;;;:17;:23;;;;;;-1:-1:-1;;;19859:23:0;;19855:699;;20378:113;20385:11;20378:113;;-1:-1:-1;;;20456:6:0;20438:25;;;;:17;:25;;;;;;20378:113;;19855:699;19730:843;19704:869;20601:31;;-1:-1:-1;;;20601:31:0;;;;;;;;;;;50685:191;50759:16;50778:6;;-1:-1:-1;;;;;50795:17:0;;;-1:-1:-1;;;;;;50795:17:0;;;;;;50828:40;;50778:6;;;;;;;50828:40;;50759:16;50828:40;50748:128;50685:191;:::o;26908:104::-;26977:27;26987:2;26991:8;26977:27;;;;;;;;;;;;:9;:27::i;40767:716::-;40951:88;;-1:-1:-1;;;40951:88:0;;40930:4;;-1:-1:-1;;;;;40951:45:0;;;;;:88;;45199:10;;41018:4;;41024:7;;41033:5;;40951:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40951:88:0;;;;;;;;-1:-1:-1;;40951:88:0;;;;;;;;;;;;:::i;:::-;;;40947:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41234:13:0;;41230:235;;41280:40;;-1:-1:-1;;;41280:40:0;;;;;;;;;;;41230:235;41423:6;41417:13;41408:6;41404:2;41400:15;41393:38;40947:529;-1:-1:-1;;;;;;41110:64:0;-1:-1:-1;;;41110:64:0;;-1:-1:-1;40947:529:0;40767:716;;;;;;:::o;54872:104::-;54932:13;54961:9;54954:16;;;;;:::i;499:723::-;555:13;776:10;772:53;;-1:-1:-1;;803:10:0;;;;;;;;;;;;-1:-1:-1;;;803:10:0;;;;;499:723::o;772:53::-;850:5;835:12;891:78;898:9;;891:78;;924:8;;;;:::i;:::-;;-1:-1:-1;947:10:0;;-1:-1:-1;955:2:0;947:10;;:::i;:::-;;;891:78;;;979:19;1011:6;1001:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1001:17:0;;979:39;;1029:154;1036:10;;1029:154;;1063:11;1073:1;1063:11;;:::i;:::-;;-1:-1:-1;1132:10:0;1140:2;1132:5;:10;:::i;:::-;1119:24;;:2;:24;:::i;:::-;1106:39;;1089:6;1096;1089:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1089:56:0;;;;;;;;-1:-1:-1;1160:11:0;1169:2;1160:11;;:::i;:::-;;;1029:154;;27428:681;27551:19;27557:2;27561:8;27551:5;:19::i;:::-;-1:-1:-1;;;;;27612:14:0;;;:19;27608:483;;27666:13;;27714:14;;;27747:233;27778:62;27817:1;27821:2;27825:7;;;;;;27834:5;27778:30;:62::i;:::-;27773:167;;27876:40;;-1:-1:-1;;;27876:40:0;;;;;;;;;;;27773:167;27975:3;27967:5;:11;27747:233;;28062:3;28045:13;;:20;28041:34;;28067:8;;;28041:34;27633:458;;27428:681;;;:::o;28382:1529::-;28470:13;;-1:-1:-1;;;;;28498:16:0;;28494:48;;28523:19;;-1:-1:-1;;;28523:19:0;;;;;;;;;;;28494:48;28557:13;28553:44;;28579:18;;-1:-1:-1;;;28579:18:0;;;;;;;;;;;28553:44;-1:-1:-1;;;;;29085:22:0;;;;;;:18;:22;;12529:2;29085:22;;:70;;29123:31;29111:44;;29085:70;;;22493:11;22469:22;22465:40;-1:-1:-1;24203:15:0;;24178:23;24174:45;22462:51;22452:62;29398:31;;;;:17;:31;;;;;:173;29416:12;29647:23;;;29685:101;29712:35;;29737:9;;;;;-1:-1:-1;;;;;29712:35:0;;;29729:1;;29712:35;;29729:1;;29712:35;29781:3;29771:7;:13;29685:101;;29802:13;:19;-1:-1:-1;25641:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;11511:1;11504:14;;;11548:4;11535:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8093:219::-;8242:2;8231:9;8224:21;8205:4;8262:44;8302:2;8291:9;8287:18;8279:6;8262:44;:::i;11564:128::-;11604:3;11635:1;11631:6;11628:1;11625:13;11622:39;;;11641:18;;:::i;:::-;-1:-1:-1;11677:9:1;;11564:128::o;11697:120::-;11737:1;11763;11753:35;;11768:18;;:::i;:::-;-1:-1:-1;11802:9:1;;11697:120::o;11822:168::-;11862:7;11928:1;11924;11920:6;11916:14;11913:1;11910:21;11905:1;11898:9;11891:17;11887:45;11884:71;;;11935:18;;:::i;:::-;-1:-1:-1;11975:9:1;;11822:168::o;11995:125::-;12035:4;12063:1;12060;12057:8;12054:34;;;12068:18;;:::i;:::-;-1:-1:-1;12105:9:1;;11995:125::o;12125:258::-;12197:1;12207:113;12221:6;12218:1;12215:13;12207:113;;;12297:11;;;12291:18;12278:11;;;12271:39;12243:2;12236:10;12207:113;;;12338:6;12335:1;12332:13;12329:48;;;-1:-1:-1;;12373:1:1;12355:16;;12348:27;12125:258::o;12388:380::-;12467:1;12463:12;;;;12510;;;12531:61;;12585:4;12577:6;12573:17;12563:27;;12531:61;12638:2;12630:6;12627:14;12607:18;12604:38;12601:161;;;12684:10;12679:3;12675:20;12672:1;12665:31;12719:4;12716:1;12709:15;12747:4;12744:1;12737:15;12601:161;;12388:380;;;:::o;12773:135::-;12812:3;-1:-1:-1;;12833:17:1;;12830:43;;;12853:18;;:::i;:::-;-1:-1:-1;12900:1:1;12889:13;;12773:135::o;12913:112::-;12945:1;12971;12961:35;;12976:18;;:::i;:::-;-1:-1:-1;13010:9:1;;12913:112::o;13030:127::-;13091:10;13086:3;13082:20;13079:1;13072:31;13122:4;13119:1;13112:15;13146:4;13143:1;13136:15;13162:127;13223:10;13218:3;13214:20;13211:1;13204:31;13254:4;13251:1;13244:15;13278:4;13275:1;13268:15;13294:127;13355:10;13350:3;13346:20;13343:1;13336:31;13386:4;13383:1;13376:15;13410:4;13407:1;13400:15;13426:127;13487:10;13482:3;13478:20;13475:1;13468:31;13518:4;13515:1;13508:15;13542:4;13539:1;13532:15;13558:131;-1:-1:-1;;;;;;13632:32:1;;13622:43;;13612:71;;13679:1;13676;13669:12

Swarm Source

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