ETH Price: $3,502.86 (+3.91%)
Gas: 3 Gwei

Token

Woke Zombies (WOKE)
 

Overview

Max Total Supply

1,280 WOKE

Holders

394

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*static🇮🇪.eth
Balance
1 WOKE
0x045d6dccdf79417ba4dd30b080768d8f936a622b
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:
WokeZombies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-28
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Strings.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.7;

contract WokeZombies is ERC721A, Ownable {
    using Strings for uint256;

    string public baseMetaUri;
    
    //General Settings
    uint16 public maxMintAmountPerTransaction = 69;
    uint16 public maxMintAmountPerWallet = 69;

    //Inventory
    uint256 public maxSupply = 7420;

    //Prices
    uint256 public cost = 0.5 ether;

    //Utility
    bool public paused = true;
    
    constructor(string memory _baseUrl) ERC721A("Woke Zombies", "WOKE") {
        baseMetaUri = _baseUrl;
    }

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

    // public
    function mint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()) {
            uint256 ownerTokenCount = balanceOf(msg.sender);

            require(!paused, "Contract Paused");
            require(_mintAmount > 0, "Mint amount should be greater than 0");
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );
            require(
                (ownerTokenCount + _mintAmount) <= maxMintAmountPerWallet,
                "Sorry you cant mint more"
            );
            require(
                msg.value >= cost * _mintAmount, 
                "Insuffient funds");
        }
        _mintLoop(msg.sender, _mintAmount);
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, 1);
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : "";
    }

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

     //Burn functions
    function batchBurn(uint256[] memory _BurnTokenIds) public virtual {
            for(uint256 i = 0; i < _BurnTokenIds.length; i++){
                _burn(_BurnTokenIds[i], true);
            }
    }

    function burn(uint256 _BurnTokenId) public virtual{
        _burn(_BurnTokenId, true);
    }
   
    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

    function setMaxMintAmountPerWallet(uint16 _amount) public onlyOwner {
        maxMintAmountPerWallet = _amount;
    }

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

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

    function togglePause() public onlyOwner {
        paused = !paused;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseMetaUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_BurnTokenIds","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_BurnTokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a805463ffffffff191662450045179055611cfc600b556706f05b59d3b20000600c55600d805460ff191660011790553480156200004257600080fd5b5060405162002730380380620027308339810160408190526200006591620001f3565b604080518082018252600c81526b576f6b65205a6f6d6269657360a01b602080830191825283518085019094526004845263574f4b4560e01b908401528151919291620000b5916002916200014d565b508051620000cb9060039060208401906200014d565b5050600160005550620000de33620000fb565b8051620000f39060099060208401906200014d565b505062000322565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015b90620002cf565b90600052602060002090601f0160209004810192826200017f5760008555620001ca565b82601f106200019a57805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001ca578251825591602001919060010190620001ad565b50620001d8929150620001dc565b5090565b5b80821115620001d85760008155600101620001dd565b600060208083850312156200020757600080fd5b82516001600160401b03808211156200021f57600080fd5b818501915085601f8301126200023457600080fd5b8151818111156200024957620002496200030c565b604051601f8201601f19908116603f011681019083821181831017156200027457620002746200030c565b8160405282815288868487010111156200028d57600080fd5b600093505b82841015620002b1578484018601518185018701529285019262000292565b82841115620002c35760008684830101525b98975050505050505050565b600181811c90821680620002e457607f821691505b602082108114156200030657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6123fe80620003326000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e681146105d2578063dc8e92ea146105f2578063e97800cb14610612578063e985e9c514610632578063f2fde38b1461067b57600080fd5b8063c87b56dd1461055c578063cbce4c971461057c578063cef117291461059c578063d5abeb01146105bc57600080fd5b8063aa5aa2f6116100e7578063aa5aa2f6146104c3578063b88d4fde146104d8578063bbb89744146104f8578063bc951b9114610526578063c4ae31681461054757600080fd5b80638da5cb5b1461045d57806395d89b411461047b578063a0712d6814610490578063a22cb465146104a357600080fd5b806342966c681161019b5780636352211e1161016a5780636352211e146103c85780636f8b44b0146103e857806370a0823114610408578063715018a614610428578063729ad39e1461043d57600080fd5b806342966c681461034e57806344a0d68a1461036e57806355f804b31461038e5780635c975abb146103ae57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612083565b61069b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ed565b60405161024091906121da565b34801561027757600080fd5b5061028b61028636600461212a565b61077f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611f29565b6107c3565b005b3480156102d157600080fd5b506102db600c5481565b604051908152602001610240565b3480156102f557600080fd5b5060015460005403600019016102db565b34801561031257600080fd5b506102c3610321366004611e35565b610851565b6102c361085c565b34801561033a57600080fd5b506102c3610349366004611e35565b610901565b34801561035a57600080fd5b506102c361036936600461212a565b61091c565b34801561037a57600080fd5b506102c361038936600461212a565b610927565b34801561039a57600080fd5b506102c36103a93660046120bd565b610974565b3480156103ba57600080fd5b50600d546102349060ff1681565b3480156103d457600080fd5b5061028b6103e336600461212a565b6109d3565b3480156103f457600080fd5b506102c361040336600461212a565b6109e5565b34801561041457600080fd5b506102db610423366004611de7565b610a32565b34801561043457600080fd5b506102c3610a81565b34801561044957600080fd5b506102c3610458366004611f53565b610ad5565b34801561046957600080fd5b506008546001600160a01b031661028b565b34801561048757600080fd5b5061025e610b65565b6102c361049e36600461212a565b610b74565b3480156104af57600080fd5b506102c36104be366004611eed565b610de0565b3480156104cf57600080fd5b5061025e610e76565b3480156104e457600080fd5b506102c36104f3366004611e71565b610f04565b34801561050457600080fd5b50600a546105139061ffff1681565b60405161ffff9091168152602001610240565b34801561053257600080fd5b50600a546105139062010000900461ffff1681565b34801561055357600080fd5b506102c3610f55565b34801561056857600080fd5b5061025e61057736600461212a565b610fb1565b34801561058857600080fd5b506102c3610597366004611f29565b61108a565b3480156105a857600080fd5b506102c36105b7366004612106565b6110dc565b3480156105c857600080fd5b506102db600b5481565b3480156105de57600080fd5b506102db6105ed366004611de7565b611144565b3480156105fe57600080fd5b506102c361060d366004611ff7565b611178565b34801561061e57600080fd5b506102c361062d366004612106565b6111ba565b34801561063e57600080fd5b5061023461064d366004611e02565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068757600080fd5b506102c3610696366004611de7565b61121a565b60006001600160e01b031982166380ac58cd60e01b14806106cc57506001600160e01b03198216635b5e139f60e01b145b806106e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fc906122d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610728906122d0565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a826112d0565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ce826109d3565b9050806001600160a01b0316836001600160a01b031614156108035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108235750610821813361064d565b155b15610841576040516367d9dca160e11b815260040160405180910390fd5b61084c838383611309565b505050565b61084c838383611372565b6008546001600160a01b031633146108a95760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064015b60405180910390fd5b604051600090339047908381818185875af1925050503d80600081146108eb576040519150601f19603f3d011682016040523d82523d6000602084013e6108f0565b606091505b50509050806108fe57600080fd5b50565b61084c83838360405180602001604052806000815250610f04565b6108fe816001611562565b6008546001600160a01b0316331461096f5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600c55565b6008546001600160a01b031633146109bc5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b80516109cf906009906020840190611cda565b5050565b60006109de8261173d565b5192915050565b6008546001600160a01b03163314610a2d5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600b55565b60006001600160a01b038216610a5b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac95760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b610ad36000611866565b565b6008546001600160a01b03163314610b1d5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b60005b81518110156109cf576000828281518110610b3d57610b3d612366565b60200260200101519050610b528160016118c5565b5080610b5d8161230b565b915050610b20565b6060600380546106fc906122d0565b6008546001600160a01b03163314610dd6576000610b9133610a32565b600d5490915060ff1615610be75760405162461bcd60e51b815260206004820152600f60248201527f436f6e747261637420506175736564000000000000000000000000000000000060448201526064016108a0565b60008211610c435760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016108a0565b600a5461ffff16821115610ca95760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016108a0565b600b546001546000548491900360001901610cc49190612242565b1115610d125760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c79000000000000000000000000000060448201526064016108a0565b600a5462010000900461ffff16610d298383612242565b1115610d775760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016108a0565b81600c54610d85919061226e565b341015610dd45760405162461bcd60e51b815260206004820152601060248201527f496e7375666669656e742066756e64730000000000000000000000000000000060448201526064016108a0565b505b6108fe33826118c5565b6001600160a01b038216331415610e0a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610e83906122d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf906122d0565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b610f0f848484611372565b6001600160a01b0383163b15158015610f315750610f2f848484846118cf565b155b15610f4f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f9d5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600d805460ff19811660ff90911615179055565b6060610fbc826112d0565b61102e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108a0565b60006110386119c7565b905060008151116110585760405180602001604052806000815250611083565b80611062846119d6565b60405160200161107392919061216f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110d25760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b6109cf82826118c5565b6008546001600160a01b031633146111245760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600a805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff166106e7565b60005b81518110156109cf576111a882828151811061119957611199612366565b60200260200101516001611562565b806111b28161230b565b91505061117b565b6008546001600160a01b031633146112025760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600a805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146112625760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b6001600160a01b0381166112c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a0565b6108fe81611866565b6000816001111580156112e4575060005482105b80156106e7575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061137d8261173d565b9050836001600160a01b031681600001516001600160a01b0316146113b45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113d257506113d2853361064d565b806113ed5750336113e28461077f565b6001600160a01b0316145b90508061140d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661143457604051633a954ecd60e21b815260040160405180910390fd5b61144060008487611309565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611516576000548214611516578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600061156d8361173d565b805190915082156115d3576000336001600160a01b03831614806115965750611596823361064d565b806115b15750336115a68661077f565b6001600160a01b0316145b9050806115d157604051632ce44b5f60e11b815260040160405180910390fd5b505b6115df60008583611309565b6001600160a01b038082166000818152600560209081526040808320805470010000000000000000000000000000000060001967ffffffffffffffff80841691909101811667ffffffffffffffff19841681178390048216600190810183169093027fffffffffffffffff0000000000000000ffffffffffffffff0000000000000000909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166116f35760005482146116f3578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b6040805160608101825260008082526020820181905291810191909152818060011115801561176d575060005481105b1561184d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061184b5780516001600160a01b0316156117e1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611846579392505050565b6117e1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109cf8282611aec565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061190490339089908890889060040161219e565b602060405180830381600087803b15801561191e57600080fd5b505af192505050801561194e575060408051601f3d908101601f1916820190925261194b918101906120a0565b60015b6119a9573d80801561197c576040519150601f19603f3d011682016040523d82523d6000602084013e611981565b606091505b5080516119a1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fc906122d0565b6060816119fa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a245780611a0e8161230b565b9150611a1d9050600a8361225a565b91506119fe565b60008167ffffffffffffffff811115611a3f57611a3f61237c565b6040519080825280601f01601f191660200182016040528015611a69576020820181803683370190505b5090505b84156119bf57611a7e60018361228d565b9150611a8b600a86612326565b611a96906030612242565b60f81b818381518110611aab57611aab612366565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611ae5600a8661225a565b9450611a6d565b6109cf82826040518060200160405280600081525061084c83838360016000546001600160a01b038516611b3257604051622e076360e81b815260040160405180910390fd5b83611b505760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c0257506001600160a01b0387163b15155b15611c8b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c5360008884806001019550886118cf565b611c70576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c08578260005414611c8657600080fd5b611cd1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c8c575b5060005561155b565b828054611ce6906122d0565b90600052602060002090601f016020900481019282611d085760008555611d4e565b82601f10611d2157805160ff1916838001178555611d4e565b82800160010185558215611d4e579182015b82811115611d4e578251825591602001919060010190611d33565b50611d5a929150611d5e565b5090565b5b80821115611d5a5760008155600101611d5f565b600067ffffffffffffffff831115611d8d57611d8d61237c565b611da0601f8401601f19166020016121ed565b9050828152838383011115611db457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611de257600080fd5b919050565b600060208284031215611df957600080fd5b61108382611dcb565b60008060408385031215611e1557600080fd5b611e1e83611dcb565b9150611e2c60208401611dcb565b90509250929050565b600080600060608486031215611e4a57600080fd5b611e5384611dcb565b9250611e6160208501611dcb565b9150604084013590509250925092565b60008060008060808587031215611e8757600080fd5b611e9085611dcb565b9350611e9e60208601611dcb565b925060408501359150606085013567ffffffffffffffff811115611ec157600080fd5b8501601f81018713611ed257600080fd5b611ee187823560208401611d73565b91505092959194509250565b60008060408385031215611f0057600080fd5b611f0983611dcb565b915060208301358015158114611f1e57600080fd5b809150509250929050565b60008060408385031215611f3c57600080fd5b611f4583611dcb565b946020939093013593505050565b60006020808385031215611f6657600080fd5b823567ffffffffffffffff811115611f7d57600080fd5b8301601f81018513611f8e57600080fd5b8035611fa1611f9c8261221e565b6121ed565b80828252848201915084840188868560051b8701011115611fc157600080fd5b600094505b83851015611feb57611fd781611dcb565b835260019490940193918501918501611fc6565b50979650505050505050565b6000602080838503121561200a57600080fd5b823567ffffffffffffffff81111561202157600080fd5b8301601f8101851361203257600080fd5b8035612040611f9c8261221e565b80828252848201915084840188868560051b870101111561206057600080fd5b600094505b83851015611feb578035835260019490940193918501918501612065565b60006020828403121561209557600080fd5b813561108381612392565b6000602082840312156120b257600080fd5b815161108381612392565b6000602082840312156120cf57600080fd5b813567ffffffffffffffff8111156120e657600080fd5b8201601f810184136120f757600080fd5b6119bf84823560208401611d73565b60006020828403121561211857600080fd5b813561ffff8116811461108357600080fd5b60006020828403121561213c57600080fd5b5035919050565b6000815180845261215b8160208601602086016122a4565b601f01601f19169290920160200192915050565b600083516121818184602088016122a4565b8351908301906121958183602088016122a4565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121d06080830184612143565b9695505050505050565b6020815260006110836020830184612143565b604051601f8201601f1916810167ffffffffffffffff811182821017156122165761221661237c565b604052919050565b600067ffffffffffffffff8211156122385761223861237c565b5060051b60200190565b600082198211156122555761225561233a565b500190565b60008261226957612269612350565b500490565b60008160001904831182151516156122885761228861233a565b500290565b60008282101561229f5761229f61233a565b500390565b60005b838110156122bf5781810151838201526020016122a7565b83811115610f4f5750506000910152565b600181811c908216806122e457607f821691505b6020821081141561230557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231f5761231f61233a565b5060010190565b60008261233557612335612350565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108fe57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220dd1d3f37d6d3e8f5cd2c3128815ad1767cdf82773d5d7b92aee78984f1e59f2564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000012697066733a2f2f62617365686f6c6465722f0000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e681146105d2578063dc8e92ea146105f2578063e97800cb14610612578063e985e9c514610632578063f2fde38b1461067b57600080fd5b8063c87b56dd1461055c578063cbce4c971461057c578063cef117291461059c578063d5abeb01146105bc57600080fd5b8063aa5aa2f6116100e7578063aa5aa2f6146104c3578063b88d4fde146104d8578063bbb89744146104f8578063bc951b9114610526578063c4ae31681461054757600080fd5b80638da5cb5b1461045d57806395d89b411461047b578063a0712d6814610490578063a22cb465146104a357600080fd5b806342966c681161019b5780636352211e1161016a5780636352211e146103c85780636f8b44b0146103e857806370a0823114610408578063715018a614610428578063729ad39e1461043d57600080fd5b806342966c681461034e57806344a0d68a1461036e57806355f804b31461038e5780635c975abb146103ae57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612083565b61069b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ed565b60405161024091906121da565b34801561027757600080fd5b5061028b61028636600461212a565b61077f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611f29565b6107c3565b005b3480156102d157600080fd5b506102db600c5481565b604051908152602001610240565b3480156102f557600080fd5b5060015460005403600019016102db565b34801561031257600080fd5b506102c3610321366004611e35565b610851565b6102c361085c565b34801561033a57600080fd5b506102c3610349366004611e35565b610901565b34801561035a57600080fd5b506102c361036936600461212a565b61091c565b34801561037a57600080fd5b506102c361038936600461212a565b610927565b34801561039a57600080fd5b506102c36103a93660046120bd565b610974565b3480156103ba57600080fd5b50600d546102349060ff1681565b3480156103d457600080fd5b5061028b6103e336600461212a565b6109d3565b3480156103f457600080fd5b506102c361040336600461212a565b6109e5565b34801561041457600080fd5b506102db610423366004611de7565b610a32565b34801561043457600080fd5b506102c3610a81565b34801561044957600080fd5b506102c3610458366004611f53565b610ad5565b34801561046957600080fd5b506008546001600160a01b031661028b565b34801561048757600080fd5b5061025e610b65565b6102c361049e36600461212a565b610b74565b3480156104af57600080fd5b506102c36104be366004611eed565b610de0565b3480156104cf57600080fd5b5061025e610e76565b3480156104e457600080fd5b506102c36104f3366004611e71565b610f04565b34801561050457600080fd5b50600a546105139061ffff1681565b60405161ffff9091168152602001610240565b34801561053257600080fd5b50600a546105139062010000900461ffff1681565b34801561055357600080fd5b506102c3610f55565b34801561056857600080fd5b5061025e61057736600461212a565b610fb1565b34801561058857600080fd5b506102c3610597366004611f29565b61108a565b3480156105a857600080fd5b506102c36105b7366004612106565b6110dc565b3480156105c857600080fd5b506102db600b5481565b3480156105de57600080fd5b506102db6105ed366004611de7565b611144565b3480156105fe57600080fd5b506102c361060d366004611ff7565b611178565b34801561061e57600080fd5b506102c361062d366004612106565b6111ba565b34801561063e57600080fd5b5061023461064d366004611e02565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068757600080fd5b506102c3610696366004611de7565b61121a565b60006001600160e01b031982166380ac58cd60e01b14806106cc57506001600160e01b03198216635b5e139f60e01b145b806106e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fc906122d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610728906122d0565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a826112d0565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ce826109d3565b9050806001600160a01b0316836001600160a01b031614156108035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108235750610821813361064d565b155b15610841576040516367d9dca160e11b815260040160405180910390fd5b61084c838383611309565b505050565b61084c838383611372565b6008546001600160a01b031633146108a95760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064015b60405180910390fd5b604051600090339047908381818185875af1925050503d80600081146108eb576040519150601f19603f3d011682016040523d82523d6000602084013e6108f0565b606091505b50509050806108fe57600080fd5b50565b61084c83838360405180602001604052806000815250610f04565b6108fe816001611562565b6008546001600160a01b0316331461096f5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600c55565b6008546001600160a01b031633146109bc5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b80516109cf906009906020840190611cda565b5050565b60006109de8261173d565b5192915050565b6008546001600160a01b03163314610a2d5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600b55565b60006001600160a01b038216610a5b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac95760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b610ad36000611866565b565b6008546001600160a01b03163314610b1d5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b60005b81518110156109cf576000828281518110610b3d57610b3d612366565b60200260200101519050610b528160016118c5565b5080610b5d8161230b565b915050610b20565b6060600380546106fc906122d0565b6008546001600160a01b03163314610dd6576000610b9133610a32565b600d5490915060ff1615610be75760405162461bcd60e51b815260206004820152600f60248201527f436f6e747261637420506175736564000000000000000000000000000000000060448201526064016108a0565b60008211610c435760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016108a0565b600a5461ffff16821115610ca95760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016108a0565b600b546001546000548491900360001901610cc49190612242565b1115610d125760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c79000000000000000000000000000060448201526064016108a0565b600a5462010000900461ffff16610d298383612242565b1115610d775760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016108a0565b81600c54610d85919061226e565b341015610dd45760405162461bcd60e51b815260206004820152601060248201527f496e7375666669656e742066756e64730000000000000000000000000000000060448201526064016108a0565b505b6108fe33826118c5565b6001600160a01b038216331415610e0a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610e83906122d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf906122d0565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b610f0f848484611372565b6001600160a01b0383163b15158015610f315750610f2f848484846118cf565b155b15610f4f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f9d5760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600d805460ff19811660ff90911615179055565b6060610fbc826112d0565b61102e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108a0565b60006110386119c7565b905060008151116110585760405180602001604052806000815250611083565b80611062846119d6565b60405160200161107392919061216f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110d25760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b6109cf82826118c5565b6008546001600160a01b031633146111245760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600a805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff166106e7565b60005b81518110156109cf576111a882828151811061119957611199612366565b60200260200101516001611562565b806111b28161230b565b91505061117b565b6008546001600160a01b031633146112025760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b600a805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146112625760405162461bcd60e51b815260206004820181905260248201526000805160206123a983398151915260448201526064016108a0565b6001600160a01b0381166112c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a0565b6108fe81611866565b6000816001111580156112e4575060005482105b80156106e7575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061137d8261173d565b9050836001600160a01b031681600001516001600160a01b0316146113b45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113d257506113d2853361064d565b806113ed5750336113e28461077f565b6001600160a01b0316145b90508061140d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661143457604051633a954ecd60e21b815260040160405180910390fd5b61144060008487611309565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611516576000548214611516578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600061156d8361173d565b805190915082156115d3576000336001600160a01b03831614806115965750611596823361064d565b806115b15750336115a68661077f565b6001600160a01b0316145b9050806115d157604051632ce44b5f60e11b815260040160405180910390fd5b505b6115df60008583611309565b6001600160a01b038082166000818152600560209081526040808320805470010000000000000000000000000000000060001967ffffffffffffffff80841691909101811667ffffffffffffffff19841681178390048216600190810183169093027fffffffffffffffff0000000000000000ffffffffffffffff0000000000000000909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166116f35760005482146116f3578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b6040805160608101825260008082526020820181905291810191909152818060011115801561176d575060005481105b1561184d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061184b5780516001600160a01b0316156117e1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611846579392505050565b6117e1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109cf8282611aec565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061190490339089908890889060040161219e565b602060405180830381600087803b15801561191e57600080fd5b505af192505050801561194e575060408051601f3d908101601f1916820190925261194b918101906120a0565b60015b6119a9573d80801561197c576040519150601f19603f3d011682016040523d82523d6000602084013e611981565b606091505b5080516119a1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fc906122d0565b6060816119fa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a245780611a0e8161230b565b9150611a1d9050600a8361225a565b91506119fe565b60008167ffffffffffffffff811115611a3f57611a3f61237c565b6040519080825280601f01601f191660200182016040528015611a69576020820181803683370190505b5090505b84156119bf57611a7e60018361228d565b9150611a8b600a86612326565b611a96906030612242565b60f81b818381518110611aab57611aab612366565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611ae5600a8661225a565b9450611a6d565b6109cf82826040518060200160405280600081525061084c83838360016000546001600160a01b038516611b3257604051622e076360e81b815260040160405180910390fd5b83611b505760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c0257506001600160a01b0387163b15155b15611c8b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c5360008884806001019550886118cf565b611c70576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c08578260005414611c8657600080fd5b611cd1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c8c575b5060005561155b565b828054611ce6906122d0565b90600052602060002090601f016020900481019282611d085760008555611d4e565b82601f10611d2157805160ff1916838001178555611d4e565b82800160010185558215611d4e579182015b82811115611d4e578251825591602001919060010190611d33565b50611d5a929150611d5e565b5090565b5b80821115611d5a5760008155600101611d5f565b600067ffffffffffffffff831115611d8d57611d8d61237c565b611da0601f8401601f19166020016121ed565b9050828152838383011115611db457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611de257600080fd5b919050565b600060208284031215611df957600080fd5b61108382611dcb565b60008060408385031215611e1557600080fd5b611e1e83611dcb565b9150611e2c60208401611dcb565b90509250929050565b600080600060608486031215611e4a57600080fd5b611e5384611dcb565b9250611e6160208501611dcb565b9150604084013590509250925092565b60008060008060808587031215611e8757600080fd5b611e9085611dcb565b9350611e9e60208601611dcb565b925060408501359150606085013567ffffffffffffffff811115611ec157600080fd5b8501601f81018713611ed257600080fd5b611ee187823560208401611d73565b91505092959194509250565b60008060408385031215611f0057600080fd5b611f0983611dcb565b915060208301358015158114611f1e57600080fd5b809150509250929050565b60008060408385031215611f3c57600080fd5b611f4583611dcb565b946020939093013593505050565b60006020808385031215611f6657600080fd5b823567ffffffffffffffff811115611f7d57600080fd5b8301601f81018513611f8e57600080fd5b8035611fa1611f9c8261221e565b6121ed565b80828252848201915084840188868560051b8701011115611fc157600080fd5b600094505b83851015611feb57611fd781611dcb565b835260019490940193918501918501611fc6565b50979650505050505050565b6000602080838503121561200a57600080fd5b823567ffffffffffffffff81111561202157600080fd5b8301601f8101851361203257600080fd5b8035612040611f9c8261221e565b80828252848201915084840188868560051b870101111561206057600080fd5b600094505b83851015611feb578035835260019490940193918501918501612065565b60006020828403121561209557600080fd5b813561108381612392565b6000602082840312156120b257600080fd5b815161108381612392565b6000602082840312156120cf57600080fd5b813567ffffffffffffffff8111156120e657600080fd5b8201601f810184136120f757600080fd5b6119bf84823560208401611d73565b60006020828403121561211857600080fd5b813561ffff8116811461108357600080fd5b60006020828403121561213c57600080fd5b5035919050565b6000815180845261215b8160208601602086016122a4565b601f01601f19169290920160200192915050565b600083516121818184602088016122a4565b8351908301906121958183602088016122a4565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121d06080830184612143565b9695505050505050565b6020815260006110836020830184612143565b604051601f8201601f1916810167ffffffffffffffff811182821017156122165761221661237c565b604052919050565b600067ffffffffffffffff8211156122385761223861237c565b5060051b60200190565b600082198211156122555761225561233a565b500190565b60008261226957612269612350565b500490565b60008160001904831182151516156122885761228861233a565b500290565b60008282101561229f5761229f61233a565b500390565b60005b838110156122bf5781810151838201526020016122a7565b83811115610f4f5750506000910152565b600181811c908216806122e457607f821691505b6020821081141561230557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231f5761231f61233a565b5060010190565b60008261233557612335612350565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108fe57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220dd1d3f37d6d3e8f5cd2c3128815ad1767cdf82773d5d7b92aee78984f1e59f2564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000012697066733a2f2f62617365686f6c6465722f0000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUrl (string): ipfs://baseholder/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [2] : 697066733a2f2f62617365686f6c6465722f0000000000000000000000000000


Deployed Bytecode Sourcemap

44830:3874:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27045:305;;;;;;;;;;-1:-1:-1;27045:305:0;;;;;:::i;:::-;;:::i;:::-;;;7797:14:1;;7790:22;7772:41;;7760:2;7745:18;27045:305:0;;;;;;;;30158:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31661:204::-;;;;;;;;;;-1:-1:-1;31661:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7049:55:1;;;7031:74;;7019:2;7004:18;31661:204:0;6885:226:1;31224:371:0;;;;;;;;;;-1:-1:-1;31224:371:0;;;;;:::i;:::-;;:::i;:::-;;45148:31;;;;;;;;;;;;;;;;;;;11773:25:1;;;11761:2;11746:18;45148:31:0;11627:177:1;26294:303:0;;;;;;;;;;-1:-1:-1;26151:1:0;26548:12;26338:7;26532:13;:28;-1:-1:-1;;26532:46:0;26294:303;;32526:170;;;;;;;;;;-1:-1:-1;32526:170:0;;;;;:::i;:::-;;:::i;48509:192::-;;;:::i;32767:185::-;;;;;;;;;;-1:-1:-1;32767:185:0;;;;;:::i;:::-;;:::i;47711:94::-;;;;;;;;;;-1:-1:-1;47711:94:0;;;;;:::i;:::-;;:::i;47385:86::-;;;;;;;;;;-1:-1:-1;47385:86:0;;;;;:::i;:::-;;:::i;48182:108::-;;;;;;;;;;-1:-1:-1;48182:108:0;;;;;:::i;:::-;;:::i;45203:25::-;;;;;;;;;;-1:-1:-1;45203:25:0;;;;;;;;29966:125;;;;;;;;;;-1:-1:-1;29966:125:0;;;;;:::i;:::-;;:::i;48080:94::-;;;;;;;;;;-1:-1:-1;48080:94:0;;;;;:::i;:::-;;:::i;27414:206::-;;;;;;;;;;-1:-1:-1;27414:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;46528:234::-;;;;;;;;;;-1:-1:-1;46528:234:0;;;;;:::i;:::-;;:::i;4112:87::-;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;30327:104;;;;;;;;;;;;;:::i;45494:907::-;;;;;;:::i;:::-;;:::i;31937:287::-;;;;;;;;;;-1:-1:-1;31937:287:0;;;;;:::i;:::-;;:::i;44912:25::-;;;;;;;;;;;;;:::i;33023:369::-;;;;;;;;;;-1:-1:-1;33023:369:0;;;;;:::i;:::-;;:::i;44974:46::-;;;;;;;;;;-1:-1:-1;44974:46:0;;;;;;;;;;;11608:6:1;11596:19;;;11578:38;;11566:2;11551:18;44974:46:0;11434:188:1;45027:41:0;;;;;;;;;;-1:-1:-1;45027:41:0;;;;;;;;;;;48298:75;;;;;;;;;;;;;:::i;46890:487::-;;;;;;;;;;-1:-1:-1;46890:487:0;;;;;:::i;:::-;;:::i;46409:111::-;;;;;;;;;;-1:-1:-1;46409:111:0;;;;;:::i;:::-;;:::i;47953:119::-;;;;;;;;;;-1:-1:-1;47953:119:0;;;;;:::i;:::-;;:::i;45094:31::-;;;;;;;;;;;;;;;;45358:113;;;;;;;;;;-1:-1:-1;45358:113:0;;;;;:::i;:::-;;:::i;47502:201::-;;;;;;;;;;-1:-1:-1;47502:201:0;;;;;:::i;:::-;;:::i;47816:129::-;;;;;;;;;;-1:-1:-1;47816:129:0;;;;;:::i;:::-;;:::i;32295:164::-;;;;;;;;;;-1:-1:-1;32295:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32416:25:0;;;32392:4;32416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32295:164;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;27045:305::-;27147:4;-1:-1:-1;;;;;;27184:40:0;;-1:-1:-1;;;27184:40:0;;:105;;-1:-1:-1;;;;;;;27241:48:0;;-1:-1:-1;;;27241:48:0;27184:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;27306:36;27164:178;27045:305;-1:-1:-1;;27045:305:0:o;30158:100::-;30212:13;30245:5;30238:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30158:100;:::o;31661:204::-;31729:7;31754:16;31762:7;31754;:16::i;:::-;31749:64;;31779:34;;-1:-1:-1;;;31779:34:0;;;;;;;;;;;31749:64;-1:-1:-1;31833:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31833:24:0;;31661:204::o;31224:371::-;31297:13;31313:24;31329:7;31313:15;:24::i;:::-;31297:40;;31358:5;-1:-1:-1;;;;;31352:11:0;:2;-1:-1:-1;;;;;31352:11:0;;31348:48;;;31372:24;;-1:-1:-1;;;31372:24:0;;;;;;;;;;;31348:48;2916:10;-1:-1:-1;;;;;31413:21:0;;;;;;:63;;-1:-1:-1;31439:37:0;31456:5;2916:10;32295:164;:::i;31439:37::-;31438:38;31413:63;31409:138;;;31500:35;;-1:-1:-1;;;31500:35:0;;;;;;;;;;;31409:138;31559:28;31568:2;31572:7;31581:5;31559:8;:28::i;:::-;31286:309;31224:371;;:::o;32526:170::-;32660:28;32670:4;32676:2;32680:7;32660:9;:28::i;48509:192::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;;;;;;;;;48584:82:::1;::::0;48566:12:::1;::::0;48592:10:::1;::::0;48630:21:::1;::::0;48566:12;48584:82;48566:12;48584:82;48630:21;48592:10;48584:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48565:101;;;48685:7;48677:16;;;::::0;::::1;;48554:147;48509:192::o:0;32767:185::-;32905:39;32922:4;32928:2;32932:7;32905:39;;;;;;;;;;;;:16;:39::i;47711:94::-;47772:25;47778:12;47792:4;47772:5;:25::i;47385:86::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;47448:4:::1;:15:::0;47385:86::o;48182:108::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;48257:25;;::::1;::::0;:11:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48182:108:::0;:::o;29966:125::-;30030:7;30057:21;30070:7;30057:12;:21::i;:::-;:26;;29966:125;-1:-1:-1;;29966:125:0:o;48080:94::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;48147:9:::1;:19:::0;48080:94::o;27414:206::-;27478:7;-1:-1:-1;;;;;27502:19:0;;27498:60;;27530:28;;-1:-1:-1;;;27530:28:0;;;;;;;;;;;27498:60;-1:-1:-1;;;;;;27584:19:0;;;;;:12;:19;;;;;:27;;;;27414:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;46528:234::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;46614:9:::1;46609:146;46633:17;:24;46629:1;:28;46609:146;;;46679:10;46692:17;46710:1;46692:20;;;;;;;;:::i;:::-;;;;;;;46679:33;;46727:16;46737:2;46741:1;46727:9;:16::i;:::-;-1:-1:-1::0;46659:3:0;::::1;::::0;::::1;:::i;:::-;;;;46609:146;;30327:104:::0;30383:13;30416:7;30409:14;;;;;:::i;45494:907::-;4185:6;;-1:-1:-1;;;;;4185:6:0;45559:10;:21;45555:794;;45597:23;45623:21;45633:10;45623:9;:21::i;:::-;45670:6;;45597:47;;-1:-1:-1;45670:6:0;;45669:7;45661:35;;;;-1:-1:-1;;;45661:35:0;;10939:2:1;45661:35:0;;;10921:21:1;10978:2;10958:18;;;10951:30;11017:17;10997:18;;;10990:45;11052:18;;45661:35:0;10737:339:1;45661:35:0;45733:1;45719:11;:15;45711:64;;;;-1:-1:-1;;;45711:64:0;;10534:2:1;45711:64:0;;;10516:21:1;10573:2;10553:18;;;10546:30;10612:34;10592:18;;;10585:62;-1:-1:-1;;;10663:18:1;;;10656:34;10707:19;;45711:64:0;10332:400:1;45711:64:0;45831:27;;;;45816:42;;;45790:143;;;;-1:-1:-1;;;45790:143:0;;9349:2:1;45790:143:0;;;9331:21:1;9388:2;9368:18;;;9361:30;9427:34;9407:18;;;9400:62;-1:-1:-1;;;9478:18:1;;;9471:37;9525:19;;45790:143:0;9147:403:1;45790:143:0;46005:9;;26151:1;26548:12;26338:7;26532:13;45990:11;;26532:28;;-1:-1:-1;;26532:46:0;45974:27;;;;:::i;:::-;:40;;45948:120;;;;-1:-1:-1;;;45948:120:0;;8250:2:1;45948:120:0;;;8232:21:1;8289:2;8269:18;;;8262:30;8328:20;8308:18;;;8301:48;8366:18;;45948:120:0;8048:342:1;45948:120:0;46144:22;;;;;;;46110:29;46128:11;46110:15;:29;:::i;:::-;46109:57;;46083:143;;;;-1:-1:-1;;;46083:143:0;;11283:2:1;46083:143:0;;;11265:21:1;11322:2;11302:18;;;11295:30;11361:26;11341:18;;;11334:54;11405:18;;46083:143:0;11081:348:1;46083:143:0;46287:11;46280:4;;:18;;;;:::i;:::-;46267:9;:31;;46241:96;;;;-1:-1:-1;;;46241:96:0;;9004:2:1;46241:96:0;;;8986:21:1;9043:2;9023:18;;;9016:30;9082:18;9062;;;9055:46;9118:18;;46241:96:0;8802:340:1;46241:96:0;45582:767;45555:794;46359:34;46369:10;46381:11;46359:9;:34::i;31937:287::-;-1:-1:-1;;;;;32036:24:0;;2916:10;32036:24;32032:54;;;32069:17;;-1:-1:-1;;;32069:17:0;;;;;;;;;;;32032:54;2916:10;32099:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32099:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32099:53:0;;;;;;;;;;32168:48;;7772:41:1;;;32099:42:0;;2916:10;32168:48;;7745:18:1;32168:48:0;;;;;;;31937:287;;:::o;44912:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33023:369::-;33190:28;33200:4;33206:2;33210:7;33190:9;:28::i;:::-;-1:-1:-1;;;;;33233:13:0;;7108:19;:23;;33233:76;;;;;33253:56;33284:4;33290:2;33294:7;33303:5;33253:30;:56::i;:::-;33252:57;33233:76;33229:156;;;33333:40;;-1:-1:-1;;;33333:40:0;;;;;;;;;;;33229:156;33023:369;;;;:::o;48298:75::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;48359:6:::1;::::0;;-1:-1:-1;;48349:16:0;::::1;48359:6;::::0;;::::1;48358:7;48349:16;::::0;;48298:75::o;46890:487::-;47008:13;47061:16;47069:7;47061;:16::i;:::-;47039:113;;;;-1:-1:-1;;;47039:113:0;;10118:2:1;47039:113:0;;;10100:21:1;10157:2;10137:18;;;10130:30;10196:34;10176:18;;;10169:62;10267:17;10247:18;;;10240:45;10302:19;;47039:113:0;9916:411:1;47039:113:0;47163:28;47194:10;:8;:10::i;:::-;47163:41;;47266:1;47241:14;47235:28;:32;:134;;;;;;;;;;;;;;;;;47311:14;47327:18;:7;:16;:18::i;:::-;47294:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47235:134;47215:154;46890:487;-1:-1:-1;;;46890:487:0:o;46409:111::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;46485:27:::1;46495:3;46500:11;46485:9;:27::i;47953:119::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;48032:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48032:32:0;;::::1;::::0;;;::::1;::::0;;47953:119::o;45358:113::-;-1:-1:-1;;;;;27798:19:0;;45416:7;27798:19;;;:12;:19;;;;;:32;;;;;;45443:20;27702:137;47502:201;47587:9;47583:113;47606:13;:20;47602:1;:24;47583:113;;;47651:29;47657:13;47671:1;47657:16;;;;;;;;:::i;:::-;;;;;;;47675:4;47651:5;:29::i;:::-;47628:3;;;;:::i;:::-;;;;47583:113;;47816:129;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;47900:27:::1;:37:::0;;-1:-1:-1;;47900:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47816:129::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;9757:2:1;4324:68:0;;;9739:21:1;;;9776:18;;;9769:30;-1:-1:-1;;;;;;;;;;;9815:18:1;;;9808:62;9887:18;;4324:68:0;9555:356:1;4324:68:0;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;8597:2:1;5102:73:0::1;::::0;::::1;8579:21:1::0;8636:2;8616:18;;;8609:30;8675:34;8655:18;;;8648:62;-1:-1:-1;;;8726:18:1;;;8719:36;8772:19;;5102:73:0::1;8395:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;33647:187::-:0;33704:4;33747:7;26151:1;33728:26;;:53;;;;;33768:13;;33758:7;:23;33728:53;:98;;;;-1:-1:-1;;33799:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33799:27:0;;;;33798:28;;33647:187::o;41817:196::-;41932:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;41932:29:0;-1:-1:-1;;;;;41932:29:0;;;;;;;;;41977:28;;41932:24;;41977:28;;;;;;;41817:196;;;:::o;36760:2130::-;36875:35;36913:21;36926:7;36913:12;:21::i;:::-;36875:59;;36973:4;-1:-1:-1;;;;;36951:26:0;:13;:18;;;-1:-1:-1;;;;;36951:26:0;;36947:67;;36986:28;;-1:-1:-1;;;36986:28:0;;;;;;;;;;;36947:67;37027:22;2916:10;-1:-1:-1;;;;;37053:20:0;;;;:73;;-1:-1:-1;37090:36:0;37107:4;2916:10;32295:164;:::i;37090:36::-;37053:126;;;-1:-1:-1;2916:10:0;37143:20;37155:7;37143:11;:20::i;:::-;-1:-1:-1;;;;;37143:36:0;;37053:126;37027:153;;37198:17;37193:66;;37224:35;;-1:-1:-1;;;37224:35:0;;;;;;;;;;;37193:66;-1:-1:-1;;;;;37274:16:0;;37270:52;;37299:23;;-1:-1:-1;;;37299:23:0;;;;;;;;;;;37270:52;37443:35;37460:1;37464:7;37473:4;37443:8;:35::i;:::-;-1:-1:-1;;;;;37774:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37774:31:0;;;;;;;-1:-1:-1;;37774:31:0;;;;;;;37820:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37820:29:0;;;;;;;;;;;37900:20;;;:11;:20;;;;;;37935:18;;-1:-1:-1;;;;;;37968:49:0;;;;-1:-1:-1;;;38001:15:0;37968:49;;;;;;;;;;38291:11;;38351:24;;;;;38394:13;;37900:20;;38351:24;;38394:13;38390:384;;38604:13;;38589:11;:28;38585:174;;38642:20;;38711:28;;;;38685:54;;-1:-1:-1;;;38685:54:0;-1:-1:-1;;;;;;38685:54:0;;;-1:-1:-1;;;;;38642:20:0;;38685:54;;;;38585:174;37749:1036;;;38821:7;38817:2;-1:-1:-1;;;;;38802:27:0;38811:4;-1:-1:-1;;;;;38802:27:0;;;;;;;;;;;38840:42;36864:2026;;36760:2130;;;:::o;39291:2408::-;39371:35;39409:21;39422:7;39409:12;:21::i;:::-;39458:18;;39371:59;;-1:-1:-1;39489:290:0;;;;39523:22;2916:10;-1:-1:-1;;;;;39549:20:0;;;;:77;;-1:-1:-1;39590:36:0;39607:4;2916:10;32295:164;:::i;39590:36::-;39549:134;;;-1:-1:-1;2916:10:0;39647:20;39659:7;39647:11;:20::i;:::-;-1:-1:-1;;;;;39647:36:0;;39549:134;39523:161;;39706:17;39701:66;;39732:35;;-1:-1:-1;;;39732:35:0;;;;;;;;;;;39701:66;39508:271;39489:290;39907:35;39924:1;39928:7;39937:4;39907:8;:35::i;:::-;-1:-1:-1;;;;;40272:18:0;;;40238:31;40272:18;;;:12;:18;;;;;;;;40305:24;;40344:29;-1:-1:-1;;40305:24:0;;;;;;;;;;-1:-1:-1;;40305:24:0;;;;40344:29;;;;;40328:1;40344:29;;;;;;;;;;;;;;;;;;;40506:20;;;:11;:20;;;;;;40541;;-1:-1:-1;;;;40609:15:0;40576:49;;;-1:-1:-1;;;40576:49:0;-1:-1:-1;;;;;;40576:49:0;;;;;;;;;;40640:22;-1:-1:-1;;;40640:22:0;;;40932:11;;;40992:24;;;;;41035:13;;40272:18;;40992:24;;41035:13;41031:384;;41245:13;;41230:11;:28;41226:174;;41283:20;;41352:28;;;;41326:54;;-1:-1:-1;;;41326:54:0;-1:-1:-1;;;;;;41326:54:0;;;-1:-1:-1;;;;;41283:20:0;;41326:54;;;;41226:174;-1:-1:-1;;41443:35:0;;41470:7;;-1:-1:-1;41466:1:0;;-1:-1:-1;;;;;;41443:35:0;;;;;41466:1;;41443:35;-1:-1:-1;;41666:12:0;:14;;;;;;-1:-1:-1;;39291:2408:0:o;28795:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28906:7:0;;26151:1;28955:23;;:47;;;;;28989:13;;28982:4;:20;28955:47;28951:886;;;29023:31;29057:17;;;:11;:17;;;;;;;;;29023:51;;;;;;;;;-1:-1:-1;;;;;29023:51:0;;;;-1:-1:-1;;;29023:51:0;;;;;;;;;;;-1:-1:-1;;;29023:51:0;;;;;;;;;;;;;;29093:729;;29143:14;;-1:-1:-1;;;;;29143:28:0;;29139:101;;29207:9;28795:1109;-1:-1:-1;;;28795:1109:0:o;29139:101::-;-1:-1:-1;;;29582:6:0;29627:17;;;;:11;:17;;;;;;;;;29615:29;;;;;;;;;-1:-1:-1;;;;;29615:29:0;;;;;-1:-1:-1;;;29615:29:0;;;;;;;;;;;-1:-1:-1;;;29615:29:0;;;;;;;;;;;;;29675:28;29671:109;;29743:9;28795:1109;-1:-1:-1;;;28795:1109:0:o;29671:109::-;29542:261;;;29004:833;28951:886;29865:31;;-1:-1:-1;;;29865:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;48381:120::-;48460:33;48470:9;48481:11;48460:9;:33::i;42505:667::-;42689:72;;-1:-1:-1;;;42689:72:0;;42668:4;;-1:-1:-1;;;;;42689:36:0;;;;;:72;;2916:10;;42740:4;;42746:7;;42755:5;;42689:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42689:72:0;;;;;;;;-1:-1:-1;;42689:72:0;;;;;;;;;;;;:::i;:::-;;;42685:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42923:13:0;;42919:235;;42969:40;;-1:-1:-1;;;42969:40:0;;;;;;;;;;;42919:235;43112:6;43106:13;43097:6;43093:2;43089:15;43082:38;42685:480;-1:-1:-1;;;;;;42808:55:0;-1:-1:-1;;;42808:55:0;;-1:-1:-1;42685:480:0;42505:667;;;;;;:::o;46770:112::-;46830:13;46863:11;46856:18;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;33842:104;33911:27;33921:2;33925:8;33911:27;;;;;;;;;;;;34432:32;34438:2;34442:8;34452:5;34459:4;34870:20;34893:13;-1:-1:-1;;;;;34921:16:0;;34917:48;;34946:19;;-1:-1:-1;;;34946:19:0;;;;;;;;;;;34917:48;34980:13;34976:44;;35002:18;;-1:-1:-1;;;35002:18:0;;;;;;;;;;;34976:44;-1:-1:-1;;;;;35371:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35430:49:0;;35371:44;;;;;;;;35430:49;;;;-1:-1:-1;;35371:44:0;;;;;;35430:49;;;;;;;;;;;;;;;;35496:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35546:66:0;;;;-1:-1:-1;;;35596:15:0;35546:66;;;;;;;;;;35496:25;35693:23;;;35737:4;:23;;;;-1:-1:-1;;;;;;35745:13:0;;7108:19;:23;;35745:15;35733:641;;;35781:314;35812:38;;35837:12;;-1:-1:-1;;;;;35812:38:0;;;35829:1;;35812:38;;35829:1;;35812:38;35878:69;35917:1;35921:2;35925:14;;;;;;35941:5;35878:30;:69::i;:::-;35873:174;;35983:40;;-1:-1:-1;;;35983:40:0;;;;;;;;;;;35873:174;36090:3;36074:12;:19;;35781:314;;36176:12;36159:13;;:29;36155:43;;36190:8;;;36155:43;35733:641;;;36239:120;36270:40;;36295:14;;;;;-1:-1:-1;;;;;36270:40:0;;;36287:1;;36270:40;;36287:1;;36270:40;36354:3;36338:12;:19;;36239:120;;35733:641;-1:-1:-1;36388:13:0;:28;36438:60;33023:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:196::-;493:20;;-1:-1:-1;;;;;542:54:1;;532:65;;522:93;;611:1;608;601:12;522:93;425:196;;;:::o;626:186::-;685:6;738:2;726:9;717:7;713:23;709:32;706:52;;;754:1;751;744:12;706:52;777:29;796:9;777:29;:::i;817:260::-;885:6;893;946:2;934:9;925:7;921:23;917:32;914:52;;;962:1;959;952:12;914:52;985:29;1004:9;985:29;:::i;:::-;975:39;;1033:38;1067:2;1056:9;1052:18;1033:38;:::i;:::-;1023:48;;817:260;;;;;:::o;1082:328::-;1159:6;1167;1175;1228:2;1216:9;1207:7;1203:23;1199:32;1196:52;;;1244:1;1241;1234:12;1196:52;1267:29;1286:9;1267:29;:::i;:::-;1257:39;;1315:38;1349:2;1338:9;1334:18;1315:38;:::i;:::-;1305:48;;1400:2;1389:9;1385:18;1372:32;1362:42;;1082:328;;;;;:::o;1415:666::-;1510:6;1518;1526;1534;1587:3;1575:9;1566:7;1562:23;1558:33;1555:53;;;1604:1;1601;1594:12;1555:53;1627:29;1646:9;1627:29;:::i;:::-;1617:39;;1675:38;1709:2;1698:9;1694:18;1675:38;:::i;:::-;1665:48;;1760:2;1749:9;1745:18;1732:32;1722:42;;1815:2;1804:9;1800:18;1787:32;1842:18;1834:6;1831:30;1828:50;;;1874:1;1871;1864:12;1828:50;1897:22;;1950:4;1942:13;;1938:27;-1:-1:-1;1928:55:1;;1979:1;1976;1969:12;1928:55;2002:73;2067:7;2062:2;2049:16;2044:2;2040;2036:11;2002:73;:::i;:::-;1992:83;;;1415:666;;;;;;;:::o;2086:347::-;2151:6;2159;2212:2;2200:9;2191:7;2187:23;2183:32;2180:52;;;2228:1;2225;2218:12;2180:52;2251:29;2270:9;2251:29;:::i;:::-;2241:39;;2330:2;2319:9;2315:18;2302:32;2377:5;2370:13;2363:21;2356:5;2353:32;2343:60;;2399:1;2396;2389:12;2343:60;2422:5;2412:15;;;2086:347;;;;;:::o;2438:254::-;2506:6;2514;2567:2;2555:9;2546:7;2542:23;2538:32;2535:52;;;2583:1;2580;2573:12;2535:52;2606:29;2625:9;2606:29;:::i;:::-;2596:39;2682:2;2667:18;;;;2654:32;;-1:-1:-1;;;2438:254:1:o;2697:908::-;2781:6;2812:2;2855;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;2911:9;2898:23;2944:18;2936:6;2933:30;2930:50;;;2976:1;2973;2966:12;2930:50;2999:22;;3052:4;3044:13;;3040:27;-1:-1:-1;3030:55:1;;3081:1;3078;3071:12;3030:55;3117:2;3104:16;3140:60;3156:43;3196:2;3156:43;:::i;:::-;3140:60;:::i;:::-;3222:3;3246:2;3241:3;3234:15;3274:2;3269:3;3265:12;3258:19;;3305:2;3301;3297:11;3353:7;3348:2;3342;3339:1;3335:10;3331:2;3327:19;3323:28;3320:41;3317:61;;;3374:1;3371;3364:12;3317:61;3396:1;3387:10;;3406:169;3420:2;3417:1;3414:9;3406:169;;;3477:23;3496:3;3477:23;:::i;:::-;3465:36;;3438:1;3431:9;;;;;3521:12;;;;3553;;3406:169;;;-1:-1:-1;3594:5:1;2697:908;-1:-1:-1;;;;;;;2697:908:1:o;3610:902::-;3694:6;3725:2;3768;3756:9;3747:7;3743:23;3739:32;3736:52;;;3784:1;3781;3774:12;3736:52;3824:9;3811:23;3857:18;3849:6;3846:30;3843:50;;;3889:1;3886;3879:12;3843:50;3912:22;;3965:4;3957:13;;3953:27;-1:-1:-1;3943:55:1;;3994:1;3991;3984:12;3943:55;4030:2;4017:16;4053:60;4069:43;4109:2;4069:43;:::i;4053:60::-;4135:3;4159:2;4154:3;4147:15;4187:2;4182:3;4178:12;4171:19;;4218:2;4214;4210:11;4266:7;4261:2;4255;4252:1;4248:10;4244:2;4240:19;4236:28;4233:41;4230:61;;;4287:1;4284;4277:12;4230:61;4309:1;4300:10;;4319:163;4333:2;4330:1;4327:9;4319:163;;;4390:17;;4378:30;;4351:1;4344:9;;;;;4428:12;;;;4460;;4319:163;;4517:245;4575:6;4628:2;4616:9;4607:7;4603:23;4599:32;4596:52;;;4644:1;4641;4634:12;4596:52;4683:9;4670:23;4702:30;4726:5;4702:30;:::i;4767:249::-;4836:6;4889:2;4877:9;4868:7;4864:23;4860:32;4857:52;;;4905:1;4902;4895:12;4857:52;4937:9;4931:16;4956:30;4980:5;4956:30;:::i;5021:450::-;5090:6;5143:2;5131:9;5122:7;5118:23;5114:32;5111:52;;;5159:1;5156;5149:12;5111:52;5199:9;5186:23;5232:18;5224:6;5221:30;5218:50;;;5264:1;5261;5254:12;5218:50;5287:22;;5340:4;5332:13;;5328:27;-1:-1:-1;5318:55:1;;5369:1;5366;5359:12;5318:55;5392:73;5457:7;5452:2;5439:16;5434:2;5430;5426:11;5392:73;:::i;5476:272::-;5534:6;5587:2;5575:9;5566:7;5562:23;5558:32;5555:52;;;5603:1;5600;5593:12;5555:52;5642:9;5629:23;5692:6;5685:5;5681:18;5674:5;5671:29;5661:57;;5714:1;5711;5704:12;5753:180;5812:6;5865:2;5853:9;5844:7;5840:23;5836:32;5833:52;;;5881:1;5878;5871:12;5833:52;-1:-1:-1;5904:23:1;;5753:180;-1:-1:-1;5753:180:1:o;5938:257::-;5979:3;6017:5;6011:12;6044:6;6039:3;6032:19;6060:63;6116:6;6109:4;6104:3;6100:14;6093:4;6086:5;6082:16;6060:63;:::i;:::-;6177:2;6156:15;-1:-1:-1;;6152:29:1;6143:39;;;;6184:4;6139:50;;5938:257;-1:-1:-1;;5938:257:1:o;6200:470::-;6379:3;6417:6;6411:13;6433:53;6479:6;6474:3;6467:4;6459:6;6455:17;6433:53;:::i;:::-;6549:13;;6508:16;;;;6571:57;6549:13;6508:16;6605:4;6593:17;;6571:57;:::i;:::-;6644:20;;6200:470;-1:-1:-1;;;;6200:470:1:o;7116:511::-;7310:4;-1:-1:-1;;;;;7420:2:1;7412:6;7408:15;7397:9;7390:34;7472:2;7464:6;7460:15;7455:2;7444:9;7440:18;7433:43;;7512:6;7507:2;7496:9;7492:18;7485:34;7555:3;7550:2;7539:9;7535:18;7528:31;7576:45;7616:3;7605:9;7601:19;7593:6;7576:45;:::i;:::-;7568:53;7116:511;-1:-1:-1;;;;;;7116:511:1:o;7824:219::-;7973:2;7962:9;7955:21;7936:4;7993:44;8033:2;8022:9;8018:18;8010:6;7993:44;:::i;11809:275::-;11880:2;11874:9;11945:2;11926:13;;-1:-1:-1;;11922:27:1;11910:40;;11980:18;11965:34;;12001:22;;;11962:62;11959:88;;;12027:18;;:::i;:::-;12063:2;12056:22;11809:275;;-1:-1:-1;11809:275:1:o;12089:183::-;12149:4;12182:18;12174:6;12171:30;12168:56;;;12204:18;;:::i;:::-;-1:-1:-1;12249:1:1;12245:14;12261:4;12241:25;;12089:183::o;12277:128::-;12317:3;12348:1;12344:6;12341:1;12338:13;12335:39;;;12354:18;;:::i;:::-;-1:-1:-1;12390:9:1;;12277:128::o;12410:120::-;12450:1;12476;12466:35;;12481:18;;:::i;:::-;-1:-1:-1;12515:9:1;;12410:120::o;12535:168::-;12575:7;12641:1;12637;12633:6;12629:14;12626:1;12623:21;12618:1;12611:9;12604:17;12600:45;12597:71;;;12648:18;;:::i;:::-;-1:-1:-1;12688:9:1;;12535:168::o;12708:125::-;12748:4;12776:1;12773;12770:8;12767:34;;;12781:18;;:::i;:::-;-1:-1:-1;12818:9:1;;12708:125::o;12838:258::-;12910:1;12920:113;12934:6;12931:1;12928:13;12920:113;;;13010:11;;;13004:18;12991:11;;;12984:39;12956:2;12949:10;12920:113;;;13051:6;13048:1;13045:13;13042:48;;;-1:-1:-1;;13086:1:1;13068:16;;13061:27;12838:258::o;13101:380::-;13180:1;13176:12;;;;13223;;;13244:61;;13298:4;13290:6;13286:17;13276:27;;13244:61;13351:2;13343:6;13340:14;13320:18;13317:38;13314:161;;;13397:10;13392:3;13388:20;13385:1;13378:31;13432:4;13429:1;13422:15;13460:4;13457:1;13450:15;13314:161;;13101:380;;;:::o;13486:135::-;13525:3;-1:-1:-1;;13546:17:1;;13543:43;;;13566:18;;:::i;:::-;-1:-1:-1;13613:1:1;13602:13;;13486:135::o;13626:112::-;13658:1;13684;13674:35;;13689:18;;:::i;:::-;-1:-1:-1;13723:9:1;;13626:112::o;13743:127::-;13804:10;13799:3;13795:20;13792:1;13785:31;13835:4;13832:1;13825:15;13859:4;13856:1;13849:15;13875:127;13936:10;13931:3;13927:20;13924:1;13917:31;13967:4;13964:1;13957:15;13991:4;13988:1;13981:15;14007:127;14068:10;14063:3;14059:20;14056:1;14049:31;14099:4;14096:1;14089:15;14123:4;14120:1;14113:15;14139:127;14200:10;14195:3;14191:20;14188:1;14181:31;14231:4;14228:1;14221:15;14255:4;14252:1;14245:15;14271:131;-1:-1:-1;;;;;;14345:32:1;;14335:43;;14325:71;;14392:1;14389;14382:12

Swarm Source

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