ETH Price: $2,518.36 (+3.17%)

Token

Meeeow vs Owwwl (MvsO)
 

Overview

Max Total Supply

147 MvsO

Holders

34

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MvsO
0x550711fb9c024ccd4de7b03738469bd40bf168ff
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:
Meowvsowl

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

            if (to.code.length != 0) {
                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 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/mvso.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;



// /$$      /$$                                                                                        /$$$$$$                                            /$$
//| $$$    /$$$                                                                                       /$$__  $$                                          | $$
//| $$$$  /$$$$  /$$$$$$   /$$$$$$   /$$$$$$   /$$$$$$  /$$  /$$  /$$       /$$    /$$ /$$$$$$$      | $$  \ $$ /$$  /$$  /$$ /$$  /$$  /$$ /$$  /$$  /$$| $$
//| $$ $$/$$ $$ /$$__  $$ /$$__  $$ /$$__  $$ /$$__  $$| $$ | $$ | $$      |  $$  /$$//$$_____/      | $$  | $$| $$ | $$ | $$| $$ | $$ | $$| $$ | $$ | $$| $$
//| $$  $$$| $$| $$$$$$$$| $$$$$$$$| $$$$$$$$| $$  \ $$| $$ | $$ | $$       \  $$/$$/|  $$$$$$       | $$  | $$| $$ | $$ | $$| $$ | $$ | $$| $$ | $$ | $$| $$
//| $$\  $ | $$| $$_____/| $$_____/| $$_____/| $$  | $$| $$ | $$ | $$        \  $$$/  \____  $$      | $$  | $$| $$ | $$ | $$| $$ | $$ | $$| $$ | $$ | $$| $$
//| $$ \/  | $$|  $$$$$$$|  $$$$$$$|  $$$$$$$|  $$$$$$/|  $$$$$/$$$$/         \  $/   /$$$$$$$/      |  $$$$$$/|  $$$$$/$$$$/|  $$$$$/$$$$/|  $$$$$/$$$$/| $$
//|__/     |__/ \_______/ \_______/ \_______/ \______/  \_____/\___/           \_/   |_______/        \______/  \_____/\___/  \_____/\___/  \_____/\___/ |__/
                                                                                                                                                           

contract Meowvsowl is ERC721A, Ownable {
    uint256 public constant MAX_SUPPLY = 4601;
    uint256 public constant MAX_MINT = 20;
    uint256 public constant PUBLIC_SALE_PRICE = .005 ether;

    string private baseTokenUri;

    bool public publicSale = false;

    constructor() ERC721A("Meeeow vs Owwwl", "MvsO"){}

    function teamMint() external onlyOwner {
        require(totalSupply() == 0, "MvsO - Team Minted Already");
        _safeMint(msg.sender, 100);
    }

    function mint(uint256 _quantity) external payable {
        require(_quantity > 0, "MvsO - No point minting 0");
        require(publicSale, "MvsO - Public Sale Not Active.");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "MvsO - Exceeded Max Supply");

        uint256 numberMinted = _numberMinted(msg.sender);
        require((numberMinted + _quantity) <= MAX_MINT, "MvsO - Exceeded Max Mint");
        
        if (numberMinted > 0) {
            require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "MvsO - Insufficient ETH");
        } else {
            require(msg.value >= (PUBLIC_SALE_PRICE * (_quantity - 1)), "MvsO - Insufficient ETH");
        }
        
        _safeMint(msg.sender, _quantity);
    }

    function getNumberMinted() external view returns (uint256) {
        return _numberMinted(msg.sender);
    }

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

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

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


    function setTokenUri(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function togglePublicSale() external onlyOwner {
        publicSale = !publicSale;
    }

    function withdraw() external onlyOwner {
        payable(0xB83Fb00DBfE178070b409c0732F04E62211a960a).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"publicSale","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":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","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":"nonpayable","type":"function"}]

6080604052600a805460ff191690553480156200001b57600080fd5b50604080518082018252600f81526e135959595bddc81d9cc813dddddddb608a1b6020808301918252835180850190945260048452634d76734f60e01b9084015281519192916200006f91600291620000ef565b50805162000085906003906020840190620000ef565b5050600080555062000097336200009d565b620001d2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fd9062000195565b90600052602060002090601f0160209004810192826200012157600085556200016c565b82601f106200013c57805160ff19168380011785556200016c565b828001600101855582156200016c579182015b828111156200016c5782518255916020019190600101906200014f565b506200017a9291506200017e565b5090565b5b808211156200017a57600081556001016200017f565b600181811c90821680620001aa57607f821691505b60208210811415620001cc57634e487b7160e01b600052602260045260246000fd5b50919050565b61192680620001e26000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e222c7f911610064578063e222c7f914610479578063e985e9c51461048e578063f0292a03146104d7578063f2fde38b146104ec57600080fd5b8063b88d4fde14610424578063ba7a86b814610444578063c87b56dd1461045957600080fd5b8063901d331d116100c6578063901d331d146103ac57806395d89b41146103dc578063a0712d68146103f1578063a22cb4651461040457600080fd5b806370a0823114610359578063715018a6146103795780638da5cb5b1461038e57600080fd5b806318160ddd1161015957806333bc1c5c1161013357806333bc1c5c146102ea5780633ccfd60b1461030457806342842e0e146103195780636352211e1461033957600080fd5b806318160ddd1461029b57806323b872dd146102b457806332cb6b0c146102d457600080fd5b806301ffc9a7146101a15780630675b7c6146101d657806306fdde03146101f857806307e89ec01461021a578063081812fc14610243578063095ea7b31461027b575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046115d5565b61050c565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101f66101f136600461160f565b61055e565b005b34801561020457600080fd5b5061020d6105a8565b6040516101cd91906117b1565b34801561022657600080fd5b506102356611c37937e0800081565b6040519081526020016101cd565b34801561024f57600080fd5b5061026361025e366004611658565b61063a565b6040516001600160a01b0390911681526020016101cd565b34801561028757600080fd5b506101f66102963660046115ab565b61067e565b3480156102a757600080fd5b5060015460005403610235565b3480156102c057600080fd5b506101f66102cf3660046114b7565b610751565b3480156102e057600080fd5b506102356111f981565b3480156102f657600080fd5b50600a546101c19060ff1681565b34801561031057600080fd5b506101f6610761565b34801561032557600080fd5b506101f66103343660046114b7565b6107ce565b34801561034557600080fd5b50610263610354366004611658565b6107e9565b34801561036557600080fd5b50610235610374366004611469565b6107f4565b34801561038557600080fd5b506101f6610843565b34801561039a57600080fd5b506008546001600160a01b0316610263565b3480156103b857600080fd5b5033600090815260056020526040908190205467ffffffffffffffff911c16610235565b3480156103e857600080fd5b5061020d610879565b6101f66103ff366004611658565b610888565b34801561041057600080fd5b506101f661041f36600461156f565b610adf565b34801561043057600080fd5b506101f661043f3660046114f3565b610b75565b34801561045057600080fd5b506101f6610bbf565b34801561046557600080fd5b5061020d610474366004611658565b610c47565b34801561048557600080fd5b506101f6610d12565b34801561049a57600080fd5b506101c16104a9366004611484565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104e357600080fd5b50610235601481565b3480156104f857600080fd5b506101f6610507366004611469565b610d50565b60006301ffc9a760e01b6001600160e01b03198316148061053d57506380ac58cd60e01b6001600160e01b03198316145b806105585750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105915760405162461bcd60e51b8152600401610588906117c4565b60405180910390fd5b80516105a490600990602084019061133e565b5050565b6060600280546105b790611873565b80601f01602080910402602001604051908101604052809291908181526020018280546105e390611873565b80156106305780601f1061060557610100808354040283529160200191610630565b820191906000526020600020905b81548152906001019060200180831161061357829003601f168201915b5050505050905090565b600061064582610de8565b610662576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061068982610e0f565b9050806001600160a01b0316836001600160a01b031614156106be5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106f5576106d881336104a9565b6106f5576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61075c838383610e77565b505050565b6008546001600160a01b0316331461078b5760405162461bcd60e51b8152600401610588906117c4565b60405173b83fb00dbfe178070b409c0732f04e62211a960a904780156108fc02916000818181858888f193505050501580156107cb573d6000803e3d6000fd5b50565b61075c83838360405180602001604052806000815250610b75565b600061055882610e0f565b60006001600160a01b03821661081d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461086d5760405162461bcd60e51b8152600401610588906117c4565b610877600061101a565b565b6060600380546105b790611873565b600081116108d85760405162461bcd60e51b815260206004820152601960248201527f4d76734f202d204e6f20706f696e74206d696e74696e672030000000000000006044820152606401610588565b600a5460ff1661092a5760405162461bcd60e51b815260206004820152601e60248201527f4d76734f202d205075626c69632053616c65204e6f74204163746976652e00006044820152606401610588565b6111f98161093b6001546000540390565b61094591906117f9565b11156109935760405162461bcd60e51b815260206004820152601a60248201527f4d76734f202d204578636565646564204d617820537570706c790000000000006044820152606401610588565b336000908152600560205260409081902054901c67ffffffffffffffff1660146109bd83836117f9565b1115610a0b5760405162461bcd60e51b815260206004820152601860248201527f4d76734f202d204578636565646564204d6178204d696e7400000000000000006044820152606401610588565b8015610a7057610a22826611c37937e08000611811565b341015610a6b5760405162461bcd60e51b815260206004820152601760248201527609aece69e405a4092dce6eaccccd2c6d2cadce8408aa89604b1b6044820152606401610588565b610ad5565b610a7b600183611830565b610a8c906611c37937e08000611811565b341015610ad55760405162461bcd60e51b815260206004820152601760248201527609aece69e405a4092dce6eaccccd2c6d2cadce8408aa89604b1b6044820152606401610588565b6105a4338361106c565b6001600160a01b038216331415610b095760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b80848484610e77565b6001600160a01b0383163b15610bb957610b9c84848484611086565b610bb9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610be95760405162461bcd60e51b8152600401610588906117c4565b60015460005414610c3c5760405162461bcd60e51b815260206004820152601a60248201527f4d76734f202d205465616d204d696e74656420416c72656164790000000000006044820152606401610588565b61087733606461106c565b6060610c5282610de8565b610cb65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610588565b600060098054610cc590611873565b905011610ce15760405180602001604052806000815250610558565b6009610cec8361117e565b604051602001610cfd9291906116b9565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610d3c5760405162461bcd60e51b8152600401610588906117c4565b600a805460ff19811660ff90911615179055565b6008546001600160a01b03163314610d7a5760405162461bcd60e51b8152600401610588906117c4565b6001600160a01b038116610ddf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610588565b6107cb8161101a565b6000805482108015610558575050600090815260046020526040902054600160e01b161590565b600081600054811015610e5e57600081815260046020526040902054600160e01b8116610e5c575b80610e55575060001901600081815260046020526040902054610e37565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e8282610e0f565b9050836001600160a01b0316816001600160a01b031614610eb55760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ed35750610ed385336104a9565b80610eee575033610ee38461063a565b6001600160a01b0316145b905080610f0e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f3557604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610fd25760018301600081815260046020526040902054610fd0576000548114610fd05760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105a48282604051806020016040528060008152506111cd565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110bb903390899088908890600401611774565b602060405180830381600087803b1580156110d557600080fd5b505af1925050508015611105575060408051601f3d908101601f19168201909252611102918101906115f2565b60015b611160573d808015611133576040519150601f19603f3d011682016040523d82523d6000602084013e611138565b606091505b508051611158576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b80156111bb57600183039250600a81066030018353600a900461119d565b50819003601f19909101908152919050565b6000546001600160a01b0384166111f657604051622e076360e81b815260040160405180910390fd5b826112145760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156112e9575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112b26000878480600101955087611086565b6112cf576040516368d2bf6b60e11b815260040160405180910390fd5b8082106112675782600054146112e457600080fd5b61132e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112ea575b506000908155610bb99085838684565b82805461134a90611873565b90600052602060002090601f01602090048101928261136c57600085556113b2565b82601f1061138557805160ff19168380011785556113b2565b828001600101855582156113b2579182015b828111156113b2578251825591602001919060010190611397565b506113be9291506113c2565b5090565b5b808211156113be57600081556001016113c3565b600067ffffffffffffffff808411156113f2576113f26118c4565b604051601f8501601f19908116603f0116810190828211818310171561141a5761141a6118c4565b8160405280935085815286868601111561143357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461146457600080fd5b919050565b60006020828403121561147b57600080fd5b610e558261144d565b6000806040838503121561149757600080fd5b6114a08361144d565b91506114ae6020840161144d565b90509250929050565b6000806000606084860312156114cc57600080fd5b6114d58461144d565b92506114e36020850161144d565b9150604084013590509250925092565b6000806000806080858703121561150957600080fd5b6115128561144d565b93506115206020860161144d565b925060408501359150606085013567ffffffffffffffff81111561154357600080fd5b8501601f8101871361155457600080fd5b611563878235602084016113d7565b91505092959194509250565b6000806040838503121561158257600080fd5b61158b8361144d565b9150602083013580151581146115a057600080fd5b809150509250929050565b600080604083850312156115be57600080fd5b6115c78361144d565b946020939093013593505050565b6000602082840312156115e757600080fd5b8135610e55816118da565b60006020828403121561160457600080fd5b8151610e55816118da565b60006020828403121561162157600080fd5b813567ffffffffffffffff81111561163857600080fd5b8201601f8101841361164957600080fd5b611176848235602084016113d7565b60006020828403121561166a57600080fd5b5035919050565b60008151808452611689816020860160208601611847565b601f01601f19169290920160200192915050565b600081516116af818560208601611847565b9290920192915050565b600080845481600182811c9150808316806116d557607f831692505b60208084108214156116f557634e487b7160e01b86526022600452602486fd5b818015611709576001811461171a57611747565b60ff19861689528489019650611747565b60008b81526020902060005b8681101561173f5781548b820152908501908301611726565b505084890196505b50505050505061176b61175a828661169d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117a790830184611671565b9695505050505050565b602081526000610e556020830184611671565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561180c5761180c6118ae565b500190565b600081600019048311821515161561182b5761182b6118ae565b500290565b600082821015611842576118426118ae565b500390565b60005b8381101561186257818101518382015260200161184a565b83811115610bb95750506000910152565b600181811c9082168061188757607f821691505b602082108114156118a857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107cb57600080fdfea2646970667358221220e6a08f95ca8d3d4e62281fb3b00c15670a4c3b70399c13f1077f67e67f1515ed64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e222c7f911610064578063e222c7f914610479578063e985e9c51461048e578063f0292a03146104d7578063f2fde38b146104ec57600080fd5b8063b88d4fde14610424578063ba7a86b814610444578063c87b56dd1461045957600080fd5b8063901d331d116100c6578063901d331d146103ac57806395d89b41146103dc578063a0712d68146103f1578063a22cb4651461040457600080fd5b806370a0823114610359578063715018a6146103795780638da5cb5b1461038e57600080fd5b806318160ddd1161015957806333bc1c5c1161013357806333bc1c5c146102ea5780633ccfd60b1461030457806342842e0e146103195780636352211e1461033957600080fd5b806318160ddd1461029b57806323b872dd146102b457806332cb6b0c146102d457600080fd5b806301ffc9a7146101a15780630675b7c6146101d657806306fdde03146101f857806307e89ec01461021a578063081812fc14610243578063095ea7b31461027b575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046115d5565b61050c565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101f66101f136600461160f565b61055e565b005b34801561020457600080fd5b5061020d6105a8565b6040516101cd91906117b1565b34801561022657600080fd5b506102356611c37937e0800081565b6040519081526020016101cd565b34801561024f57600080fd5b5061026361025e366004611658565b61063a565b6040516001600160a01b0390911681526020016101cd565b34801561028757600080fd5b506101f66102963660046115ab565b61067e565b3480156102a757600080fd5b5060015460005403610235565b3480156102c057600080fd5b506101f66102cf3660046114b7565b610751565b3480156102e057600080fd5b506102356111f981565b3480156102f657600080fd5b50600a546101c19060ff1681565b34801561031057600080fd5b506101f6610761565b34801561032557600080fd5b506101f66103343660046114b7565b6107ce565b34801561034557600080fd5b50610263610354366004611658565b6107e9565b34801561036557600080fd5b50610235610374366004611469565b6107f4565b34801561038557600080fd5b506101f6610843565b34801561039a57600080fd5b506008546001600160a01b0316610263565b3480156103b857600080fd5b5033600090815260056020526040908190205467ffffffffffffffff911c16610235565b3480156103e857600080fd5b5061020d610879565b6101f66103ff366004611658565b610888565b34801561041057600080fd5b506101f661041f36600461156f565b610adf565b34801561043057600080fd5b506101f661043f3660046114f3565b610b75565b34801561045057600080fd5b506101f6610bbf565b34801561046557600080fd5b5061020d610474366004611658565b610c47565b34801561048557600080fd5b506101f6610d12565b34801561049a57600080fd5b506101c16104a9366004611484565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104e357600080fd5b50610235601481565b3480156104f857600080fd5b506101f6610507366004611469565b610d50565b60006301ffc9a760e01b6001600160e01b03198316148061053d57506380ac58cd60e01b6001600160e01b03198316145b806105585750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105915760405162461bcd60e51b8152600401610588906117c4565b60405180910390fd5b80516105a490600990602084019061133e565b5050565b6060600280546105b790611873565b80601f01602080910402602001604051908101604052809291908181526020018280546105e390611873565b80156106305780601f1061060557610100808354040283529160200191610630565b820191906000526020600020905b81548152906001019060200180831161061357829003601f168201915b5050505050905090565b600061064582610de8565b610662576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061068982610e0f565b9050806001600160a01b0316836001600160a01b031614156106be5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106f5576106d881336104a9565b6106f5576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61075c838383610e77565b505050565b6008546001600160a01b0316331461078b5760405162461bcd60e51b8152600401610588906117c4565b60405173b83fb00dbfe178070b409c0732f04e62211a960a904780156108fc02916000818181858888f193505050501580156107cb573d6000803e3d6000fd5b50565b61075c83838360405180602001604052806000815250610b75565b600061055882610e0f565b60006001600160a01b03821661081d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461086d5760405162461bcd60e51b8152600401610588906117c4565b610877600061101a565b565b6060600380546105b790611873565b600081116108d85760405162461bcd60e51b815260206004820152601960248201527f4d76734f202d204e6f20706f696e74206d696e74696e672030000000000000006044820152606401610588565b600a5460ff1661092a5760405162461bcd60e51b815260206004820152601e60248201527f4d76734f202d205075626c69632053616c65204e6f74204163746976652e00006044820152606401610588565b6111f98161093b6001546000540390565b61094591906117f9565b11156109935760405162461bcd60e51b815260206004820152601a60248201527f4d76734f202d204578636565646564204d617820537570706c790000000000006044820152606401610588565b336000908152600560205260409081902054901c67ffffffffffffffff1660146109bd83836117f9565b1115610a0b5760405162461bcd60e51b815260206004820152601860248201527f4d76734f202d204578636565646564204d6178204d696e7400000000000000006044820152606401610588565b8015610a7057610a22826611c37937e08000611811565b341015610a6b5760405162461bcd60e51b815260206004820152601760248201527609aece69e405a4092dce6eaccccd2c6d2cadce8408aa89604b1b6044820152606401610588565b610ad5565b610a7b600183611830565b610a8c906611c37937e08000611811565b341015610ad55760405162461bcd60e51b815260206004820152601760248201527609aece69e405a4092dce6eaccccd2c6d2cadce8408aa89604b1b6044820152606401610588565b6105a4338361106c565b6001600160a01b038216331415610b095760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b80848484610e77565b6001600160a01b0383163b15610bb957610b9c84848484611086565b610bb9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610be95760405162461bcd60e51b8152600401610588906117c4565b60015460005414610c3c5760405162461bcd60e51b815260206004820152601a60248201527f4d76734f202d205465616d204d696e74656420416c72656164790000000000006044820152606401610588565b61087733606461106c565b6060610c5282610de8565b610cb65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610588565b600060098054610cc590611873565b905011610ce15760405180602001604052806000815250610558565b6009610cec8361117e565b604051602001610cfd9291906116b9565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610d3c5760405162461bcd60e51b8152600401610588906117c4565b600a805460ff19811660ff90911615179055565b6008546001600160a01b03163314610d7a5760405162461bcd60e51b8152600401610588906117c4565b6001600160a01b038116610ddf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610588565b6107cb8161101a565b6000805482108015610558575050600090815260046020526040902054600160e01b161590565b600081600054811015610e5e57600081815260046020526040902054600160e01b8116610e5c575b80610e55575060001901600081815260046020526040902054610e37565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e8282610e0f565b9050836001600160a01b0316816001600160a01b031614610eb55760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ed35750610ed385336104a9565b80610eee575033610ee38461063a565b6001600160a01b0316145b905080610f0e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f3557604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610fd25760018301600081815260046020526040902054610fd0576000548114610fd05760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105a48282604051806020016040528060008152506111cd565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110bb903390899088908890600401611774565b602060405180830381600087803b1580156110d557600080fd5b505af1925050508015611105575060408051601f3d908101601f19168201909252611102918101906115f2565b60015b611160573d808015611133576040519150601f19603f3d011682016040523d82523d6000602084013e611138565b606091505b508051611158576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b80156111bb57600183039250600a81066030018353600a900461119d565b50819003601f19909101908152919050565b6000546001600160a01b0384166111f657604051622e076360e81b815260040160405180910390fd5b826112145760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156112e9575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112b26000878480600101955087611086565b6112cf576040516368d2bf6b60e11b815260040160405180910390fd5b8082106112675782600054146112e457600080fd5b61132e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112ea575b506000908155610bb99085838684565b82805461134a90611873565b90600052602060002090601f01602090048101928261136c57600085556113b2565b82601f1061138557805160ff19168380011785556113b2565b828001600101855582156113b2579182015b828111156113b2578251825591602001919060010190611397565b506113be9291506113c2565b5090565b5b808211156113be57600081556001016113c3565b600067ffffffffffffffff808411156113f2576113f26118c4565b604051601f8501601f19908116603f0116810190828211818310171561141a5761141a6118c4565b8160405280935085815286868601111561143357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461146457600080fd5b919050565b60006020828403121561147b57600080fd5b610e558261144d565b6000806040838503121561149757600080fd5b6114a08361144d565b91506114ae6020840161144d565b90509250929050565b6000806000606084860312156114cc57600080fd5b6114d58461144d565b92506114e36020850161144d565b9150604084013590509250925092565b6000806000806080858703121561150957600080fd5b6115128561144d565b93506115206020860161144d565b925060408501359150606085013567ffffffffffffffff81111561154357600080fd5b8501601f8101871361155457600080fd5b611563878235602084016113d7565b91505092959194509250565b6000806040838503121561158257600080fd5b61158b8361144d565b9150602083013580151581146115a057600080fd5b809150509250929050565b600080604083850312156115be57600080fd5b6115c78361144d565b946020939093013593505050565b6000602082840312156115e757600080fd5b8135610e55816118da565b60006020828403121561160457600080fd5b8151610e55816118da565b60006020828403121561162157600080fd5b813567ffffffffffffffff81111561163857600080fd5b8201601f8101841361164957600080fd5b611176848235602084016113d7565b60006020828403121561166a57600080fd5b5035919050565b60008151808452611689816020860160208601611847565b601f01601f19169290920160200192915050565b600081516116af818560208601611847565b9290920192915050565b600080845481600182811c9150808316806116d557607f831692505b60208084108214156116f557634e487b7160e01b86526022600452602486fd5b818015611709576001811461171a57611747565b60ff19861689528489019650611747565b60008b81526020902060005b8681101561173f5781548b820152908501908301611726565b505084890196505b50505050505061176b61175a828661169d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117a790830184611671565b9695505050505050565b602081526000610e556020830184611671565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561180c5761180c6118ae565b500190565b600081600019048311821515161561182b5761182b6118ae565b500290565b600082821015611842576118426118ae565b500390565b60005b8381101561186257818101518382015260200161184a565b83811115610bb95750506000910152565b600181811c9082168061188757607f821691505b602082108114156118a857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107cb57600080fdfea2646970667358221220e6a08f95ca8d3d4e62281fb3b00c15670a4c3b70399c13f1077f67e67f1515ed64736f6c63430008070033

Deployed Bytecode Sourcemap

43296:2168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16496:615;;;;;;;;;;-1:-1:-1;16496:615:0;;;;;:::i;:::-;;:::i;:::-;;;6785:14:1;;6778:22;6760:41;;6748:2;6733:18;16496:615:0;;;;;;;;45098:116;;;;;;;;;;-1:-1:-1;45098:116:0;;;;;:::i;:::-;;:::i;:::-;;21509:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43434:54::-;;;;;;;;;;;;43478:10;43434:54;;;;;10494:25:1;;;10482:2;10467:18;43434:54:0;10348:177:1;23577:204:0;;;;;;;;;;-1:-1:-1;23577:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6083:32:1;;;6065:51;;6053:2;6038:18;23577:204:0;5919:203:1;23037:474:0;;;;;;;;;;-1:-1:-1;23037:474:0;;;;;:::i;:::-;;:::i;15550:315::-;;;;;;;;;;-1:-1:-1;15816:12:0;;15603:7;15800:13;:28;15550:315;;24463:170;;;;;;;;;;-1:-1:-1;24463:170:0;;;;;:::i;:::-;;:::i;43342:41::-;;;;;;;;;;;;43379:4;43342:41;;43533:30;;;;;;;;;;-1:-1:-1;43533:30:0;;;;;;;;45320:141;;;;;;;;;;;;;:::i;24704:185::-;;;;;;;;;;-1:-1:-1;24704:185:0;;;;;:::i;:::-;;:::i;21298:144::-;;;;;;;;;;-1:-1:-1;21298:144:0;;;;;:::i;:::-;;:::i;17175:224::-;;;;;;;;;;-1:-1:-1;17175:224:0;;;;;:::i;:::-;;:::i;2606:103::-;;;;;;;;;;;;;:::i;1955:87::-;;;;;;;;;;-1:-1:-1;2028:6:0;;-1:-1:-1;;;;;2028:6:0;1955:87;;44541:110;;;;;;;;;;-1:-1:-1;44632:10:0;44591:7;17570:25;;;:18;:25;;12651:2;17570:25;;;;;12514:13;17570:49;;17569:80;44541:110;;21678:104;;;;;;;;;;;;;:::i;43790:743::-;;;;;;:::i;:::-;;:::i;23853:308::-;;;;;;;;;;-1:-1:-1;23853:308:0;;;;;:::i;:::-;;:::i;24960:396::-;;;;;;;;;;-1:-1:-1;24960:396:0;;;;;:::i;:::-;;:::i;43630:152::-;;;;;;;;;;;;;:::i;44780:308::-;;;;;;;;;;-1:-1:-1;44780:308:0;;;;;:::i;:::-;;:::i;45222:90::-;;;;;;;;;;;;;:::i;24232:164::-;;;;;;;;;;-1:-1:-1;24232:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24353:25:0;;;24329:4;24353:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24232:164;43390:37;;;;;;;;;;;;43425:2;43390:37;;2864:201;;;;;;;;;;-1:-1:-1;2864:201:0;;;;;:::i;:::-;;:::i;16496:615::-;16581:4;-1:-1:-1;;;;;;;;;16881:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16958:25:0;;;16881:102;:179;;;-1:-1:-1;;;;;;;;;;17035:25:0;;;16881:179;16861:199;16496:615;-1:-1:-1;;16496:615:0:o;45098:116::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;;;;;;;;;45178:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45098:116:::0;:::o;21509:100::-;21563:13;21596:5;21589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21509:100;:::o;23577:204::-;23645:7;23670:16;23678:7;23670;:16::i;:::-;23665:64;;23695:34;;-1:-1:-1;;;23695:34:0;;;;;;;;;;;23665:64;-1:-1:-1;23749:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23749:24:0;;23577:204::o;23037:474::-;23110:13;23142:27;23161:7;23142:18;:27::i;:::-;23110:61;;23192:5;-1:-1:-1;;;;;23186:11:0;:2;-1:-1:-1;;;;;23186:11:0;;23182:48;;;23206:24;;-1:-1:-1;;;23206:24:0;;;;;;;;;;;23182:48;759:10;-1:-1:-1;;;;;23247:28:0;;;23243:175;;23295:44;23312:5;759:10;24232:164;:::i;23295:44::-;23290:128;;23367:35;;-1:-1:-1;;;23367:35:0;;;;;;;;;;;23290:128;23430:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23430:29:0;-1:-1:-1;;;;;23430:29:0;;;;;;;;;23475:28;;23430:24;;23475:28;;;;;;;23099:412;23037:474;;:::o;24463:170::-;24597:28;24607:4;24613:2;24617:7;24597:9;:28::i;:::-;24463:170;;;:::o;45320:141::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;45370:83:::1;::::0;45378:42:::1;::::0;45431:21:::1;45370:83:::0;::::1;;;::::0;::::1;::::0;;;45431:21;45378:42;45370:83;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45320:141::o:0;24704:185::-;24842:39;24859:4;24865:2;24869:7;24842:39;;;;;;;;;;;;:16;:39::i;21298:144::-;21362:7;21405:27;21424:7;21405:18;:27::i;17175:224::-;17239:7;-1:-1:-1;;;;;17263:19:0;;17259:60;;17291:28;;-1:-1:-1;;;17291:28:0;;;;;;;;;;;17259:60;-1:-1:-1;;;;;;17337:25:0;;;;;:18;:25;;;;;;12514:13;17337:54;;17175:224::o;2606:103::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;21678:104::-;21734:13;21767:7;21760:14;;;;;:::i;43790:743::-;43871:1;43859:9;:13;43851:51;;;;-1:-1:-1;;;43851:51:0;;7238:2:1;43851:51:0;;;7220:21:1;7277:2;7257:18;;;7250:30;7316:27;7296:18;;;7289:55;7361:18;;43851:51:0;7036:349:1;43851:51:0;43921:10;;;;43913:53;;;;-1:-1:-1;;;43913:53:0;;10191:2:1;43913:53:0;;;10173:21:1;10230:2;10210:18;;;10203:30;10269:32;10249:18;;;10242:60;10319:18;;43913:53:0;9989:354:1;43913:53:0;43379:4;44002:9;43986:13;15816:12;;15603:7;15800:13;:28;;15550:315;43986:13;:25;;;;:::i;:::-;43985:41;;43977:80;;;;-1:-1:-1;;;43977:80:0;;9836:2:1;43977:80:0;;;9818:21:1;9875:2;9855:18;;;9848:30;9914:28;9894:18;;;9887:56;9960:18;;43977:80:0;9634:350:1;43977:80:0;44107:10;44070:20;17570:25;;;:18;:25;;12651:2;17570:25;;;;;:49;;12514:13;17569:80;43425:2;44138:24;44153:9;17569:80;44138:24;:::i;:::-;44137:38;;44129:75;;;;-1:-1:-1;;;44129:75:0;;7999:2:1;44129:75:0;;;7981:21:1;8038:2;8018:18;;;8011:30;8077:26;8057:18;;;8050:54;8121:18;;44129:75:0;7797:348:1;44129:75:0;44229:16;;44225:248;;44284:29;44304:9;43478:10;44284:29;:::i;:::-;44270:9;:44;;44262:80;;;;-1:-1:-1;;;44262:80:0;;8352:2:1;44262:80:0;;;8334:21:1;8391:2;8371:18;;;8364:30;-1:-1:-1;;;8410:18:1;;;8403:53;8473:18;;44262:80:0;8150:347:1;44262:80:0;44225:248;;;44418:13;44430:1;44418:9;:13;:::i;:::-;44397:35;;43478:10;44397:35;:::i;:::-;44383:9;:50;;44375:86;;;;-1:-1:-1;;;44375:86:0;;8352:2:1;44375:86:0;;;8334:21:1;8391:2;8371:18;;;8364:30;-1:-1:-1;;;8410:18:1;;;8403:53;8473:18;;44375:86:0;8150:347:1;44375:86:0;44493:32;44503:10;44515:9;44493;:32::i;23853:308::-;-1:-1:-1;;;;;23952:31:0;;759:10;23952:31;23948:61;;;23992:17;;-1:-1:-1;;;23992:17:0;;;;;;;;;;;23948:61;759:10;24022:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24022:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24022:60:0;;;;;;;;;;24098:55;;6760:41:1;;;24022:49:0;;759:10;24098:55;;6733:18:1;24098:55:0;;;;;;;23853:308;;:::o;24960:396::-;25127:28;25137:4;25143:2;25147:7;25127:9;:28::i;:::-;-1:-1:-1;;;;;25170:14:0;;;:19;25166:183;;25209:56;25240:4;25246:2;25250:7;25259:5;25209:30;:56::i;:::-;25204:145;;25293:40;;-1:-1:-1;;;25293:40:0;;;;;;;;;;;25204:145;24960:396;;;;:::o;43630:152::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;15816:12;;15603:7;15800:13;43688:18;43680:57:::1;;;::::0;-1:-1:-1;;;43680:57:0;;9481:2:1;43680:57:0::1;::::0;::::1;9463:21:1::0;9520:2;9500:18;;;9493:30;9559:28;9539:18;;;9532:56;9605:18;;43680:57:0::1;9279:350:1::0;43680:57:0::1;43748:26;43758:10;43770:3;43748:9;:26::i;44780:308::-:0;44853:13;44887:16;44895:7;44887;:16::i;:::-;44879:76;;;;-1:-1:-1;;;44879:76:0;;9065:2:1;44879:76:0;;;9047:21:1;9104:2;9084:18;;;9077:30;9143:34;9123:18;;;9116:62;-1:-1:-1;;;9194:18:1;;;9187:45;9249:19;;44879:76:0;8863:411:1;44879:76:0;45004:1;44981:12;44975:26;;;;;:::i;:::-;;;:30;:105;;;;;;;;;;;;;;;;;45032:12;45046:18;45056:7;45046:9;:18::i;:::-;45015:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44968:112;44780:308;-1:-1:-1;;44780:308:0:o;45222:90::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;45294:10:::1;::::0;;-1:-1:-1;;45280:24:0;::::1;45294:10;::::0;;::::1;45293:11;45280:24;::::0;;45222:90::o;2864:201::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;7592:2:1;2945:73:0::1;::::0;::::1;7574:21:1::0;7631:2;7611:18;;;7604:30;7670:34;7650:18;;;7643:62;-1:-1:-1;;;7721:18:1;;;7714:36;7767:19;;2945:73:0::1;7390:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;25611:273::-:0;25668:4;25758:13;;25748:7;:23;25705:152;;;;-1:-1:-1;;25809:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25809:43:0;:48;;25611:273::o;18813:1129::-;18880:7;18915;19017:13;;19010:4;:20;19006:869;;;19055:14;19072:23;;;:17;:23;;;;;;-1:-1:-1;;;19161:23:0;;19157:699;;19680:113;19687:11;19680:113;;-1:-1:-1;;;19758:6:0;19740:25;;;;:17;:25;;;;;;19680:113;;;19826:6;18813:1129;-1:-1:-1;;;18813:1129:0:o;19157:699::-;19032:843;19006:869;19903:31;;-1:-1:-1;;;19903:31:0;;;;;;;;;;;30850:2515;30965:27;30995;31014:7;30995:18;:27::i;:::-;30965:57;;31080:4;-1:-1:-1;;;;;31039:45:0;31055:19;-1:-1:-1;;;;;31039:45:0;;31035:86;;31093:28;;-1:-1:-1;;;31093:28:0;;;;;;;;;;;31035:86;31134:22;759:10;-1:-1:-1;;;;;31160:27:0;;;;:87;;-1:-1:-1;31204:43:0;31221:4;759:10;24232:164;:::i;31204:43::-;31160:147;;;-1:-1:-1;759:10:0;31264:20;31276:7;31264:11;:20::i;:::-;-1:-1:-1;;;;;31264:43:0;;31160:147;31134:174;;31326:17;31321:66;;31352:35;;-1:-1:-1;;;31352:35:0;;;;;;;;;;;31321:66;-1:-1:-1;;;;;31402:16:0;;31398:52;;31427:23;;-1:-1:-1;;;31427:23:0;;;;;;;;;;;31398:52;31579:24;;;;:15;:24;;;;;;;;31572:31;;-1:-1:-1;;;;;;31572:31:0;;;-1:-1:-1;;;;;31971:24:0;;;;;:18;:24;;;;;31969:26;;-1:-1:-1;;31969:26:0;;;32040:22;;;;;;;32038:24;;-1:-1:-1;32038:24:0;;;32333:26;;;:17;:26;;;;;-1:-1:-1;;;32421:15:0;13168:3;32421:41;32379:84;;:128;;32333:174;;;32627:46;;32623:626;;32731:1;32721:11;;32699:19;32854:30;;;:17;:30;;;;;;32850:384;;32992:13;;32977:11;:28;32973:242;;33139:30;;;;:17;:30;;;;;:52;;;32973:242;32680:569;32623:626;33296:7;33292:2;-1:-1:-1;;;;;33277:27:0;33286:4;-1:-1:-1;;;;;33277:27:0;;;;;;;;;;;30954:2411;;30850:2515;;;:::o;3225:191::-;3318:6;;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;;3368:40;;3318:6;;;3335:17;3318:6;;3368:40;;3299:16;;3368:40;3288:128;3225:191;:::o;25968:104::-;26037:27;26047:2;26051:8;26037:27;;;;;;;;;;;;:9;:27::i;37062:716::-;37246:88;;-1:-1:-1;;;37246:88:0;;37225:4;;-1:-1:-1;;;;;37246:45:0;;;;;:88;;759:10;;37313:4;;37319:7;;37328:5;;37246:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37246:88:0;;;;;;;;-1:-1:-1;;37246:88:0;;;;;;;;;;;;:::i;:::-;;;37242:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37529:13:0;;37525:235;;37575:40;;-1:-1:-1;;;37575:40:0;;;;;;;;;;;37525:235;37718:6;37712:13;37703:6;37699:2;37695:15;37688:38;37242:529;-1:-1:-1;;;;;;37405:64:0;-1:-1:-1;;;37405:64:0;;-1:-1:-1;37242:529:0;37062:716;;;;;;:::o;39804:1959::-;40275:4;40269:11;;40282:3;40265:21;;40360:17;;;;41057:11;;;40936:5;41189:2;41203;41193:13;;41185:22;41057:11;41172:36;41244:2;41234:13;;40827:682;41263:4;40827:682;;;41438:1;41433:3;41429:11;41422:18;;41489:2;41483:4;41479:13;41475:2;41471:22;41466:3;41458:36;41359:2;41349:13;;40827:682;;;-1:-1:-1;41551:13:0;;;-1:-1:-1;;41666:12:0;;;41726:19;;;41666:12;39804:1959;-1:-1:-1;39804:1959:0:o;26445:2236::-;26568:20;26591:13;-1:-1:-1;;;;;26619:16:0;;26615:48;;26644:19;;-1:-1:-1;;;26644:19:0;;;;;;;;;;;26615:48;26678:13;26674:44;;26700:18;;-1:-1:-1;;;26700:18:0;;;;;;;;;;;26674:44;-1:-1:-1;;;;;27267:22:0;;;;;;:18;:22;;;;12651:2;27267:22;;;:70;;27305:31;27293:44;;27267:70;;;27580:31;;;:17;:31;;;;;27673:15;13168:3;27673:41;27631:84;;-1:-1:-1;27751:13:0;;13431:3;27736:56;27631:162;27580:213;;:31;;27874:23;;;;27918:14;:19;27914:635;;27958:313;27989:38;;28014:12;;-1:-1:-1;;;;;27989:38:0;;;28006:1;;27989:38;;28006:1;;27989:38;28055:69;28094:1;28098:2;28102:14;;;;;;28118:5;28055:30;:69::i;:::-;28050:174;;28160:40;;-1:-1:-1;;;28160:40:0;;;;;;;;;;;28050:174;28266:3;28251:12;:18;27958:313;;28352:12;28335:13;;:29;28331:43;;28366:8;;;28331:43;27914:635;;;28415:119;28446:40;;28471:14;;;;;-1:-1:-1;;;;;28446:40:0;;;28463:1;;28446:40;;28463:1;;28446:40;28529:3;28514:12;:18;28415:119;;27914:635;-1:-1:-1;28563:13:0;:28;;;28613:60;;28646:2;28650:12;28664:8;28613:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;10603:1;10596:14;;;10640:4;10627:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6127:488::-;-1:-1:-1;;;;;6396:15:1;;;6378:34;;6448:15;;6443:2;6428:18;;6421:43;6495:2;6480:18;;6473:34;;;6543:3;6538:2;6523:18;;6516:31;;;6321:4;;6564:45;;6589:19;;6581:6;6564:45;:::i;:::-;6556:53;6127:488;-1:-1:-1;;;;;;6127:488:1:o;6812:219::-;6961:2;6950:9;6943:21;6924:4;6981:44;7021:2;7010:9;7006:18;6998:6;6981:44;:::i;8502:356::-;8704:2;8686:21;;;8723:18;;;8716:30;8782:34;8777:2;8762:18;;8755:62;8849:2;8834:18;;8502:356::o;10656:128::-;10696:3;10727:1;10723:6;10720:1;10717:13;10714:39;;;10733:18;;:::i;:::-;-1:-1:-1;10769:9:1;;10656:128::o;10789:168::-;10829:7;10895:1;10891;10887:6;10883:14;10880:1;10877:21;10872:1;10865:9;10858:17;10854:45;10851:71;;;10902:18;;:::i;:::-;-1:-1:-1;10942:9:1;;10789:168::o;10962:125::-;11002:4;11030:1;11027;11024:8;11021:34;;;11035:18;;:::i;:::-;-1:-1:-1;11072:9:1;;10962:125::o;11092:258::-;11164:1;11174:113;11188:6;11185:1;11182:13;11174:113;;;11264:11;;;11258:18;11245:11;;;11238:39;11210:2;11203:10;11174:113;;;11305:6;11302:1;11299:13;11296:48;;;-1:-1:-1;;11340:1:1;11322:16;;11315:27;11092:258::o;11355:380::-;11434:1;11430:12;;;;11477;;;11498:61;;11552:4;11544:6;11540:17;11530:27;;11498:61;11605:2;11597:6;11594:14;11574:18;11571:38;11568:161;;;11651:10;11646:3;11642:20;11639:1;11632:31;11686:4;11683:1;11676:15;11714:4;11711:1;11704:15;11568:161;;11355:380;;;:::o;11740:127::-;11801:10;11796:3;11792:20;11789:1;11782:31;11832:4;11829:1;11822:15;11856:4;11853:1;11846:15;11872:127;11933:10;11928:3;11924:20;11921:1;11914:31;11964:4;11961:1;11954:15;11988:4;11985:1;11978:15;12004:131;-1:-1:-1;;;;;;12078:32:1;;12068:43;;12058:71;;12125:1;12122;12115:12

Swarm Source

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