ETH Price: $3,097.23 (-0.45%)
Gas: 2 Gwei

Token

Poonicorn DAO (POOU)
 

Overview

Max Total Supply

1,000 POOU

Holders

904

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 POOU
0xc93c5fffec1a5c518ddfb3e395a23819fb17ce7b
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:
Poonicorns

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: contracts/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: contracts/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: 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();

    /**
     * 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: 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 (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

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

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 value) {
        assembly {
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            value := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

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

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

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

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

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

    /**
     * @dev 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 = ownerOf(tokenId);

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(from, 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/Poonicorns.sol


pragma solidity ^0.8.14;



contract Poonicorns is ERC721A, Ownable { 
    uint public constant maxPublicSupply = 1000;

    bool private mintOpen = false;
    bool private daoClaimed = false;

    string internal baseTokenURI = "ipfs://QmazszK41a41Edp4wKN7teGGRppZnfR1vzNFv3y8z748QQ/";
    
    constructor() ERC721A("Poonicorn DAO", "POOU") {}

    function toggleMint() external onlyOwner {
        mintOpen = !mintOpen;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

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

    //All 100% free (1000 supply available for public, 1 per wallet) 100% secondary to community DAO control
    function mint() external {
        require(mintOpen, "NotOpen");
        require(_totalMinted() < maxPublicSupply, "MaxSupply");
        require(_numberMinted(msg.sender) < 1, "AlreadyMinted");
        _mint(msg.sender, 1);
    }

    //Used for DAO community wallet
    function mintForDao() external onlyOwner {
        require(!daoClaimed, "AlreadyClaimed");
        daoClaimed = true;
        _mint(msg.sender, 111);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintForDao","outputs":[],"stateMutability":"nonpayable","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":"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":"_uri","type":"string"}],"name":"setBaseTokenURI","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":"toggleMint","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"}]

6008805461ffff60a01b1916905560e060405260366080818152906200174b60a039600990620000309082620001b2565b503480156200003e57600080fd5b506040518060400160405280600d81526020016c506f6f6e69636f726e2044414f60981b81525060405180604001604052806004815260200163504f4f5560e01b8152508160029081620000939190620001b2565b506003620000a28282620001b2565b5050600160005550620000b533620000bb565b6200027e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013857607f821691505b6020821081036200015957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ad57600081815260208120601f850160051c81016020861015620001885750805b601f850160051c820191505b81811015620001a95782815560010162000194565b5050505b505050565b81516001600160401b03811115620001ce57620001ce6200010d565b620001e681620001df845462000123565b846200015f565b602080601f8311600181146200021e5760008415620002055750858301515b600019600386901b1c1916600185901b178555620001a9565b600085815260208120601f198616915b828110156200024f578886015182559484019460019091019084016200022e565b50858210156200026e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6114bd806200028e6000396000f3fe608060405234801561001057600080fd5b50600436106101625760003560e01c806370a08231116100c8578063b88d4fde1161008c578063d3dd5fe011610066578063d3dd5fe0146102d0578063e985e9c5146102d8578063f2fde38b1461031457600080fd5b8063b88d4fde146102a2578063c87b56dd146102b5578063d1e548b4146102c857600080fd5b806370a082311461025b578063715018a61461026e5780638da5cb5b1461027657806395d89b4114610287578063a22cb4651461028f57600080fd5b806318160ddd1161012a57806330176e131161010457806330176e131461022257806342842e0e146102355780636352211e1461024857600080fd5b806318160ddd146101ec57806323b872dd1461020657806326a74d8e1461021957600080fd5b806301ffc9a71461016757806306fdde031461018f578063081812fc146101a4578063095ea7b3146101cf5780631249c58b146101e4575b600080fd5b61017a610175366004610fad565b610327565b60405190151581526020015b60405180910390f35b610197610379565b6040516101869190611022565b6101b76101b2366004611035565b61040b565b6040516001600160a01b039091168152602001610186565b6101e26101dd36600461106a565b61044f565b005b6101e26104ef565b60015460005403600019015b604051908152602001610186565b6101e2610214366004611094565b6105ea565b6101f86103e881565b6101e26102303660046110d0565b6105fa565b6101e2610243366004611094565b610661565b6101b7610256366004611035565b61067c565b6101f8610269366004611142565b610687565b6101e26106d0565b6008546001600160a01b03166101b7565b610197610734565b6101e261029d36600461115d565b610743565b6101e26102b03660046111af565b6107d8565b6101976102c3366004611035565b610822565b6101e26108a6565b6101e2610978565b61017a6102e636600461128b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101e2610322366004611142565b6109f3565b60006301ffc9a760e01b6001600160e01b03198316148061035857506380ac58cd60e01b6001600160e01b03198316145b806103735750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610388906112be565b80601f01602080910402602001604051908101604052809291908181526020018280546103b4906112be565b80156104015780601f106103d657610100808354040283529160200191610401565b820191906000526020600020905b8154815290600101906020018083116103e457829003601f168201915b5050505050905090565b600061041682610abe565b610433576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061045a8261067c565b9050336001600160a01b038216146104935761047681336102e6565b610493576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600854600160a01b900460ff166105375760405162461bcd60e51b81526020600482015260076024820152662737ba27b832b760c91b60448201526064015b60405180910390fd5b6103e86105476000546000190190565b106105805760405162461bcd60e51b81526020600482015260096024820152684d6178537570706c7960b81b604482015260640161052e565b3360009081526005602052604090819020546001911c67ffffffffffffffff16106105dd5760405162461bcd60e51b815260206004820152600d60248201526c105b1c9958591e535a5b9d1959609a1b604482015260640161052e565b6105e8336001610af3565b565b6105f5838383610bce565b505050565b6008546001600160a01b031633146106545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b60096105f582848361133e565b6105f5838383604051806020016040528060008152506107d8565b600061037382610d8d565b6000816000036106aa576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461072a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b6105e86000610dfc565b606060038054610388906112be565b336001600160a01b0383160361076c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6107e3848484610bce565b6001600160a01b0383163b1561081c576107ff84848484610e4e565b61081c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061082d82610abe565b61084a57604051630a14c4b560e41b815260040160405180910390fd5b6000610854610f39565b90508051600003610874576040518060200160405280600081525061089f565b8061087e84610f48565b60405160200161088f9291906113ff565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146109005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b600854600160a81b900460ff161561095a5760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479436c61696d6564000000000000000000000000000000000000604482015260640161052e565b6008805460ff60a81b1916600160a81b1790556105e833606f610af3565b6008546001600160a01b031633146109d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6008546001600160a01b03163314610a4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b6001600160a01b038116610ab25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052e565b610abb81610dfc565b50565b600081600111158015610ad2575060005482105b8015610373575050600090815260046020526040902054600160e01b161590565b60005482600003610b1657604051622e076360e81b815260040160405180910390fd5b81600003610b375760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040902080546801000000000000000184020190554260a01b6001831460e11b178317600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610b825750500160005550565b6000610bd982610d8d565b9050836001600160a01b0316816001600160a01b031614610c0c5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610c3c5750610c3c86336102e6565b80610c4f57506001600160a01b03821633145b905080610c6f57604051632ce44b5f60e11b815260040160405180910390fd5b84600003610c9057604051633a954ecd60e21b815260040160405180910390fd5b8115610cb357600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560205260408082208054600019019055918716815220805460010190554260a01b8517600160e11b17600085815260046020526040812091909155600160e11b84169003610d4357600184016000818152600460205260408120549003610d41576000548114610d415760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008180600111610de357600054811015610de35760008181526004602052604081205490600160e01b82169003610de1575b8060000361089f575060001901600081815260046020526040902054610dc0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e8390339089908890889060040161142e565b6020604051808303816000875af1925050508015610ebe575060408051601f3d908101601f19168201909252610ebb9181019061146a565b60015b610f1c573d808015610eec576040519150601f19603f3d011682016040523d82523d6000602084013e610ef1565b606091505b508051600003610f14576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060098054610388906112be565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610f8557600183039250600a81066030018353600a9004610f67565b50819003601f19909101908152919050565b6001600160e01b031981168114610abb57600080fd5b600060208284031215610fbf57600080fd5b813561089f81610f97565b60005b83811015610fe5578181015183820152602001610fcd565b8381111561081c5750506000910152565b6000815180845261100e816020860160208601610fca565b601f01601f19169290920160200192915050565b60208152600061089f6020830184610ff6565b60006020828403121561104757600080fd5b5035919050565b80356001600160a01b038116811461106557600080fd5b919050565b6000806040838503121561107d57600080fd5b6110868361104e565b946020939093013593505050565b6000806000606084860312156110a957600080fd5b6110b28461104e565b92506110c06020850161104e565b9150604084013590509250925092565b600080602083850312156110e357600080fd5b823567ffffffffffffffff808211156110fb57600080fd5b818501915085601f83011261110f57600080fd5b81358181111561111e57600080fd5b86602082850101111561113057600080fd5b60209290920196919550909350505050565b60006020828403121561115457600080fd5b61089f8261104e565b6000806040838503121561117057600080fd5b6111798361104e565b91506020830135801515811461118e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156111c557600080fd5b6111ce8561104e565b93506111dc6020860161104e565b925060408501359150606085013567ffffffffffffffff8082111561120057600080fd5b818701915087601f83011261121457600080fd5b81358181111561122657611226611199565b604051601f8201601f19908116603f0116810190838211818310171561124e5761124e611199565b816040528281528a602084870101111561126757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561129e57600080fd5b6112a78361104e565b91506112b56020840161104e565b90509250929050565b600181811c908216806112d257607f821691505b6020821081036112f257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105f557600081815260208120601f850160051c8101602086101561131f5750805b601f850160051c820191505b81811015610d855782815560010161132b565b67ffffffffffffffff83111561135657611356611199565b61136a8361136483546112be565b836112f8565b6000601f84116001811461139e57600085156113865750838201355b600019600387901b1c1916600186901b1783556113f8565b600083815260209020601f19861690835b828110156113cf57868501358255602094850194600190920191016113af565b50868210156113ec5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008351611411818460208801610fca565b835190830190611425818360208801610fca565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526114606080830184610ff6565b9695505050505050565b60006020828403121561147c57600080fd5b815161089f81610f9756fea2646970667358221220ba7be116f9962f0eb7031bb3e03ef43793355b59e671f676d5044af5abc9c5b964736f6c634300080f0033697066733a2f2f516d617a737a4b343161343145647034774b4e37746547475270705a6e665231767a4e46763379387a37343851512f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101625760003560e01c806370a08231116100c8578063b88d4fde1161008c578063d3dd5fe011610066578063d3dd5fe0146102d0578063e985e9c5146102d8578063f2fde38b1461031457600080fd5b8063b88d4fde146102a2578063c87b56dd146102b5578063d1e548b4146102c857600080fd5b806370a082311461025b578063715018a61461026e5780638da5cb5b1461027657806395d89b4114610287578063a22cb4651461028f57600080fd5b806318160ddd1161012a57806330176e131161010457806330176e131461022257806342842e0e146102355780636352211e1461024857600080fd5b806318160ddd146101ec57806323b872dd1461020657806326a74d8e1461021957600080fd5b806301ffc9a71461016757806306fdde031461018f578063081812fc146101a4578063095ea7b3146101cf5780631249c58b146101e4575b600080fd5b61017a610175366004610fad565b610327565b60405190151581526020015b60405180910390f35b610197610379565b6040516101869190611022565b6101b76101b2366004611035565b61040b565b6040516001600160a01b039091168152602001610186565b6101e26101dd36600461106a565b61044f565b005b6101e26104ef565b60015460005403600019015b604051908152602001610186565b6101e2610214366004611094565b6105ea565b6101f86103e881565b6101e26102303660046110d0565b6105fa565b6101e2610243366004611094565b610661565b6101b7610256366004611035565b61067c565b6101f8610269366004611142565b610687565b6101e26106d0565b6008546001600160a01b03166101b7565b610197610734565b6101e261029d36600461115d565b610743565b6101e26102b03660046111af565b6107d8565b6101976102c3366004611035565b610822565b6101e26108a6565b6101e2610978565b61017a6102e636600461128b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101e2610322366004611142565b6109f3565b60006301ffc9a760e01b6001600160e01b03198316148061035857506380ac58cd60e01b6001600160e01b03198316145b806103735750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610388906112be565b80601f01602080910402602001604051908101604052809291908181526020018280546103b4906112be565b80156104015780601f106103d657610100808354040283529160200191610401565b820191906000526020600020905b8154815290600101906020018083116103e457829003601f168201915b5050505050905090565b600061041682610abe565b610433576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061045a8261067c565b9050336001600160a01b038216146104935761047681336102e6565b610493576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600854600160a01b900460ff166105375760405162461bcd60e51b81526020600482015260076024820152662737ba27b832b760c91b60448201526064015b60405180910390fd5b6103e86105476000546000190190565b106105805760405162461bcd60e51b81526020600482015260096024820152684d6178537570706c7960b81b604482015260640161052e565b3360009081526005602052604090819020546001911c67ffffffffffffffff16106105dd5760405162461bcd60e51b815260206004820152600d60248201526c105b1c9958591e535a5b9d1959609a1b604482015260640161052e565b6105e8336001610af3565b565b6105f5838383610bce565b505050565b6008546001600160a01b031633146106545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b60096105f582848361133e565b6105f5838383604051806020016040528060008152506107d8565b600061037382610d8d565b6000816000036106aa576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461072a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b6105e86000610dfc565b606060038054610388906112be565b336001600160a01b0383160361076c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6107e3848484610bce565b6001600160a01b0383163b1561081c576107ff84848484610e4e565b61081c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061082d82610abe565b61084a57604051630a14c4b560e41b815260040160405180910390fd5b6000610854610f39565b90508051600003610874576040518060200160405280600081525061089f565b8061087e84610f48565b60405160200161088f9291906113ff565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146109005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b600854600160a81b900460ff161561095a5760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479436c61696d6564000000000000000000000000000000000000604482015260640161052e565b6008805460ff60a81b1916600160a81b1790556105e833606f610af3565b6008546001600160a01b031633146109d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6008546001600160a01b03163314610a4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052e565b6001600160a01b038116610ab25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052e565b610abb81610dfc565b50565b600081600111158015610ad2575060005482105b8015610373575050600090815260046020526040902054600160e01b161590565b60005482600003610b1657604051622e076360e81b815260040160405180910390fd5b81600003610b375760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600090815260056020526040902080546801000000000000000184020190554260a01b6001831460e11b178317600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610b825750500160005550565b6000610bd982610d8d565b9050836001600160a01b0316816001600160a01b031614610c0c5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610c3c5750610c3c86336102e6565b80610c4f57506001600160a01b03821633145b905080610c6f57604051632ce44b5f60e11b815260040160405180910390fd5b84600003610c9057604051633a954ecd60e21b815260040160405180910390fd5b8115610cb357600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560205260408082208054600019019055918716815220805460010190554260a01b8517600160e11b17600085815260046020526040812091909155600160e11b84169003610d4357600184016000818152600460205260408120549003610d41576000548114610d415760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008180600111610de357600054811015610de35760008181526004602052604081205490600160e01b82169003610de1575b8060000361089f575060001901600081815260046020526040902054610dc0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e8390339089908890889060040161142e565b6020604051808303816000875af1925050508015610ebe575060408051601f3d908101601f19168201909252610ebb9181019061146a565b60015b610f1c573d808015610eec576040519150601f19603f3d011682016040523d82523d6000602084013e610ef1565b606091505b508051600003610f14576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060098054610388906112be565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610f8557600183039250600a81066030018353600a9004610f67565b50819003601f19909101908152919050565b6001600160e01b031981168114610abb57600080fd5b600060208284031215610fbf57600080fd5b813561089f81610f97565b60005b83811015610fe5578181015183820152602001610fcd565b8381111561081c5750506000910152565b6000815180845261100e816020860160208601610fca565b601f01601f19169290920160200192915050565b60208152600061089f6020830184610ff6565b60006020828403121561104757600080fd5b5035919050565b80356001600160a01b038116811461106557600080fd5b919050565b6000806040838503121561107d57600080fd5b6110868361104e565b946020939093013593505050565b6000806000606084860312156110a957600080fd5b6110b28461104e565b92506110c06020850161104e565b9150604084013590509250925092565b600080602083850312156110e357600080fd5b823567ffffffffffffffff808211156110fb57600080fd5b818501915085601f83011261110f57600080fd5b81358181111561111e57600080fd5b86602082850101111561113057600080fd5b60209290920196919550909350505050565b60006020828403121561115457600080fd5b61089f8261104e565b6000806040838503121561117057600080fd5b6111798361104e565b91506020830135801515811461118e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156111c557600080fd5b6111ce8561104e565b93506111dc6020860161104e565b925060408501359150606085013567ffffffffffffffff8082111561120057600080fd5b818701915087601f83011261121457600080fd5b81358181111561122657611226611199565b604051601f8201601f19908116603f0116810190838211818310171561124e5761124e611199565b816040528281528a602084870101111561126757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561129e57600080fd5b6112a78361104e565b91506112b56020840161104e565b90509250929050565b600181811c908216806112d257607f821691505b6020821081036112f257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105f557600081815260208120601f850160051c8101602086101561131f5750805b601f850160051c820191505b81811015610d855782815560010161132b565b67ffffffffffffffff83111561135657611356611199565b61136a8361136483546112be565b836112f8565b6000601f84116001811461139e57600085156113865750838201355b600019600387901b1c1916600186901b1783556113f8565b600083815260209020601f19861690835b828110156113cf57868501358255602094850194600190920191016113af565b50868210156113ec5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008351611411818460208801610fca565b835190830190611425818360208801610fca565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526114606080830184610ff6565b9695505050505050565b60006020828403121561147c57600080fd5b815161089f81610f9756fea2646970667358221220ba7be116f9962f0eb7031bb3e03ef43793355b59e671f676d5044af5abc9c5b964736f6c634300080f0033

Deployed Bytecode Sourcemap

40491:1310:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16349:615;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16349:615:0;;;;;;;;21766:100;;;:::i;:::-;;;;;;;:::i;23750:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:55:1;;;1674:74;;1662:2;1647:18;23750:204:0;1528:226:1;23298:386:0;;;;;;:::i;:::-;;:::i;:::-;;41251:234;;;:::i;15403:315::-;41789:1;15669:12;15456:7;15653:13;:28;-1:-1:-1;;15653:46:0;15403:315;;;2365:25:1;;;2353:2;2338:18;15403:315:0;2219:177:1;24636:170:0;;;;;;:::i;:::-;;:::i;40539:43::-;;40578:4;40539:43;;40916:104;;;;;;:::i;:::-;;:::i;24877:185::-;;;;;;:::i;:::-;;:::i;21555:144::-;;;;;;:::i;:::-;;:::i;17028:234::-;;;;;;:::i;:::-;;:::i;2598:103::-;;;:::i;1947:87::-;2020:6;;-1:-1:-1;;;;;2020:6:0;1947:87;;21935:104;;;:::i;24026:308::-;;;;;;:::i;:::-;;:::i;25133:396::-;;;;;;:::i;:::-;;:::i;22110:318::-;;;;;;:::i;:::-;;:::i;41530:159::-;;;:::i;40824:80::-;;;:::i;24405:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24526:25:0;;;24502:4;24526:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24405:164;2856:201;;;;;;:::i;:::-;;:::i;16349:615::-;16434:4;-1:-1:-1;;;;;;;;;16734:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16811:25:0;;;16734:102;:179;;;-1:-1:-1;;;;;;;;;;16888:25:0;;;16734:179;16714:199;16349:615;-1:-1:-1;;16349:615:0:o;21766:100::-;21820:13;21853:5;21846:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21766:100;:::o;23750:204::-;23818:7;23843:16;23851:7;23843;:16::i;:::-;23838:64;;23868:34;;-1:-1:-1;;;23868:34:0;;;;;;;;;;;23838:64;-1:-1:-1;23922:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23922:24:0;;23750:204::o;23298:386::-;23371:13;23387:16;23395:7;23387;:16::i;:::-;23371:32;-1:-1:-1;38331:10:0;-1:-1:-1;;;;;23420:28:0;;;23416:175;;23468:44;23485:5;38331:10;24405:164;:::i;23468:44::-;23463:128;;23540:35;;-1:-1:-1;;;23540:35:0;;;;;;;;;;;23463:128;23603:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23603:29:0;-1:-1:-1;;;;;23603:29:0;;;;;;;;;23648:28;;23603:24;;23648:28;;;;;;;23360:324;23298:386;;:::o;41251:234::-;41295:8;;-1:-1:-1;;;41295:8:0;;;;41287:28;;;;-1:-1:-1;;;41287:28:0;;6001:2:1;41287:28:0;;;5983:21:1;6040:1;6020:18;;;6013:29;-1:-1:-1;;;6058:18:1;;;6051:37;6105:18;;41287:28:0;;;;;;;;;40578:4;41334:14;15863:7;16051:13;-1:-1:-1;;16051:31:0;;15816:285;41334:14;:32;41326:54;;;;-1:-1:-1;;;41326:54:0;;6336:2:1;41326:54:0;;;6318:21:1;6375:1;6355:18;;;6348:29;-1:-1:-1;;;6393:18:1;;;6386:39;6442:18;;41326:54:0;6134:332:1;41326:54:0;41413:10;17405:7;17433:25;;;:18;:25;;12510:2;17433:25;;;;;41427:1;;17433:49;12373:13;17432:80;41399:29;41391:55;;;;-1:-1:-1;;;41391:55:0;;6673:2:1;41391:55:0;;;6655:21:1;6712:2;6692:18;;;6685:30;-1:-1:-1;;;6731:18:1;;;6724:43;6784:18;;41391:55:0;6471:337:1;41391:55:0;41457:20;41463:10;41475:1;41457:5;:20::i;:::-;41251:234::o;24636:170::-;24770:28;24780:4;24786:2;24790:7;24770:9;:28::i;:::-;24636:170;;;:::o;40916:104::-;2020:6;;-1:-1:-1;;;;;2020:6:0;38331:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;7015:2:1;2159:68:0;;;6997:21:1;;;7034:18;;;7027:30;7093:34;7073:18;;;7066:62;7145:18;;2159:68:0;6813:356:1;2159:68:0;40993:12:::1;:19;41008:4:::0;;40993:12;:19:::1;:::i;24877:185::-:0;25015:39;25032:4;25038:2;25042:7;25015:39;;;;;;;;;;;;:16;:39::i;21555:144::-;21619:7;21662:27;21681:7;21662:18;:27::i;17028:234::-;17092:7;17134:5;17144:1;17116:29;17112:70;;17154:28;;-1:-1:-1;;;17154:28:0;;;;;;;;;;;17112:70;-1:-1:-1;;;;;;17200:25:0;;;;;:18;:25;;;;;;12373:13;17200:54;;17028:234::o;2598:103::-;2020:6;;-1:-1:-1;;;;;2020:6:0;38331:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;7015:2:1;2159:68:0;;;6997:21:1;;;7034:18;;;7027:30;7093:34;7073:18;;;7066:62;7145:18;;2159:68:0;6813:356:1;2159:68:0;2663:30:::1;2690:1;2663:18;:30::i;21935:104::-:0;21991:13;22024:7;22017:14;;;;;:::i;24026:308::-;38331:10;-1:-1:-1;;;;;24125:31:0;;;24121:61;;24165:17;;-1:-1:-1;;;24165:17:0;;;;;;;;;;;24121:61;38331:10;24195:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24195:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24195:60:0;;;;;;;;;;24271:55;;540:41:1;;;24195:49:0;;38331:10;24271:55;;513:18:1;24271:55:0;;;;;;;24026:308;;:::o;25133:396::-;25300:28;25310:4;25316:2;25320:7;25300:9;:28::i;:::-;-1:-1:-1;;;;;25343:14:0;;;:19;25339:183;;25382:56;25413:4;25419:2;25423:7;25432:5;25382:30;:56::i;:::-;25377:145;;25466:40;;-1:-1:-1;;;25466:40:0;;;;;;;;;;;25377:145;25133:396;;;;:::o;22110:318::-;22183:13;22214:16;22222:7;22214;:16::i;:::-;22209:59;;22239:29;;-1:-1:-1;;;22239:29:0;;;;;;;;;;;22209:59;22281:21;22305:10;:8;:10::i;:::-;22281:34;;22339:7;22333:21;22358:1;22333:26;:87;;;;;;;;;;;;;;;;;22386:7;22395:18;22405:7;22395:9;:18::i;:::-;22369:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22333:87;22326:94;22110:318;-1:-1:-1;;;22110:318:0:o;41530:159::-;2020:6;;-1:-1:-1;;;;;2020:6:0;38331:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;7015:2:1;2159:68:0;;;6997:21:1;;;7034:18;;;7027:30;7093:34;7073:18;;;7066:62;7145:18;;2159:68:0;6813:356:1;2159:68:0;41591:10:::1;::::0;-1:-1:-1;;;41591:10:0;::::1;;;41590:11;41582:38;;;::::0;-1:-1:-1;;;41582:38:0;;9909:2:1;41582:38:0::1;::::0;::::1;9891:21:1::0;9948:2;9928:18;;;9921:30;9987:16;9967:18;;;9960:44;10021:18;;41582:38:0::1;9707:338:1::0;41582:38:0::1;41631:10;:17:::0;;-1:-1:-1;;;;41631:17:0::1;-1:-1:-1::0;;;41631:17:0::1;::::0;;41659:22:::1;41665:10;41677:3;41659:5;:22::i;40824:80::-:0;2020:6;;-1:-1:-1;;;;;2020:6:0;38331:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;7015:2:1;2159:68:0;;;6997:21:1;;;7034:18;;;7027:30;7093:34;7073:18;;;7066:62;7145:18;;2159:68:0;6813:356:1;2159:68:0;40888:8:::1;::::0;;-1:-1:-1;;;;40876:20:0;::::1;-1:-1:-1::0;;;40888:8:0;;;::::1;;;40887:9;40876:20:::0;;::::1;;::::0;;40824:80::o;2856:201::-;2020:6;;-1:-1:-1;;;;;2020:6:0;38331:10;2167:23;2159:68;;;;-1:-1:-1;;;2159:68:0;;7015:2:1;2159:68:0;;;6997:21:1;;;7034:18;;;7027:30;7093:34;7073:18;;;7066:62;7145:18;;2159:68:0;6813:356:1;2159:68:0;-1:-1:-1;;;;;2945:22:0;::::1;2937:73;;;::::0;-1:-1:-1;;;2937:73:0;;10252:2:1;2937:73:0::1;::::0;::::1;10234:21:1::0;10291:2;10271:18;;;10264:30;10330:34;10310:18;;;10303:62;-1:-1:-1;;;10381:18:1;;;10374:36;10427:19;;2937:73:0::1;10050:402:1::0;2937:73:0::1;3021:28;3040:8;3021:18;:28::i;:::-;2856:201:::0;:::o;25784:273::-;25841:4;25897:7;41789:1;25878:26;;:66;;;;;25931:13;;25921:7;:23;25878:66;:152;;;;-1:-1:-1;;25982:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25982:43:0;:48;;25784:273::o;27586:1607::-;27651:20;27674:13;27720:2;27727:1;27702:26;27698:58;;27737:19;;-1:-1:-1;;;27737:19:0;;;;;;;;;;;27698:58;27771:8;27783:1;27771:13;27767:44;;27793:18;;-1:-1:-1;;;27793:18:0;;;;;;;;;;;27767:44;-1:-1:-1;;;;;28360:22:0;;;;;;:18;:22;;12510:2;28360:22;;:70;;28398:31;28386:44;;28360:70;;;21454:11;21430:22;21426:40;-1:-1:-1;28780:13:0;;13286:3;28765:56;21423:51;21413:62;;28673:31;;;;:17;:31;;;;;:163;28691:12;28911:23;;;28949:99;28976:34;;29001:8;;;;;-1:-1:-1;;;;;28976:34:0;;;28993:1;;28976:34;;28993:1;;28976:34;29043:3;29034:6;:12;28949:99;;-1:-1:-1;;29080:23:0;29064:13;:39;-1:-1:-1;24636:170:0:o;29447:2557::-;29562:27;29592;29611:7;29592:18;:27::i;:::-;29562:57;;29677:4;-1:-1:-1;;;;;29636:45:0;29652:19;-1:-1:-1;;;;;29636:45:0;;29632:86;;29690:28;;-1:-1:-1;;;29690:28:0;;;;;;;;;;;29632:86;29731:23;29757:24;;;:15;:24;;;;;;-1:-1:-1;;;;;29757:24:0;;;;29731:23;29820:27;;38331:10;29820:27;;:87;;-1:-1:-1;29864:43:0;29881:4;38331:10;24405:164;:::i;29864:43::-;29820:142;;;-1:-1:-1;;;;;;29924:38:0;;38331:10;29924:38;29820:142;29794:169;;29981:17;29976:66;;30007:35;;-1:-1:-1;;;30007:35:0;;;;;;;;;;;29976:66;30075:2;30082:1;30057:26;30053:62;;30092:23;;-1:-1:-1;;;30092:23:0;;;;;;;;;;;30053:62;30259:15;30241:39;30237:103;;30304:24;;;;:15;:24;;;;;30297:31;;-1:-1:-1;;;;;;30297:31:0;;;30237:103;-1:-1:-1;;;;;30707:24:0;;;;;;;:18;:24;;;;;;30705:26;;-1:-1:-1;;30705:26:0;;;30776:22;;;;;;30774:24;;-1:-1:-1;30774:24:0;;;21454:11;21430:22;21426:40;21413:62;;-1:-1:-1;;;21413:62:0;31069:26;;;;:17;:26;;;;;:77;;;;-1:-1:-1;;;31266:46:0;;:51;;31262:626;;31370:1;31360:11;;31338:19;31493:30;;;:17;:30;;;;;;:35;;31489:384;;31631:13;;31616:11;:28;31612:242;;31778:30;;;;:17;:30;;;;;:52;;;31612:242;31319:569;31262:626;31935:7;31931:2;-1:-1:-1;;;;;31916:27:0;31925:4;-1:-1:-1;;;;;31916:27:0;;;;;;;;;;;31954:42;29551:2453;;;29447:2557;;;:::o;18689:1129::-;18756:7;18791;;41789:1;18840:23;18836:915;;18893:13;;18886:4;:20;18882:869;;;18931:14;18948:23;;;:17;:23;;;;;;;-1:-1:-1;;;19037:23:0;;:28;;19033:699;;19556:113;19563:6;19573:1;19563:11;19556:113;;-1:-1:-1;;;19634:6:0;19616:25;;;;:17;:25;;;;;;19556:113;;19033:699;18908:843;18882:869;19779:31;;-1:-1:-1;;;19779:31:0;;;;;;;;;;;3217:191;3310:6;;;-1:-1:-1;;;;;3327:17:0;;;-1:-1:-1;;;;;;3327:17:0;;;;;;;3360:40;;3310:6;;;3327:17;3310:6;;3360:40;;3291:16;;3360:40;3280:128;3217:191;:::o;35713:716::-;35897:88;;-1:-1:-1;;;35897:88:0;;35876:4;;-1:-1:-1;;;;;35897:45:0;;;;;:88;;38331:10;;35964:4;;35970:7;;35979:5;;35897:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35897:88:0;;;;;;;;-1:-1:-1;;35897:88:0;;;;;;;;;;;;:::i;:::-;;;35893:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36180:6;:13;36197:1;36180:18;36176:235;;36226:40;;-1:-1:-1;;;36226:40:0;;;;;;;;;;;36176:235;36369:6;36363:13;36354:6;36350:2;36346:15;36339:38;35893:529;-1:-1:-1;;;;;;36056:64:0;-1:-1:-1;;;36056:64:0;;-1:-1:-1;35713:716:0;;;;;;:::o;41028:105::-;41080:13;41113:12;41106:19;;;;;:::i;38455:1960::-;38924:4;38918:11;;38931:3;38914:21;;39009:17;;;;39705:11;;;39584:5;39837:2;39851;39841:13;;39833:22;39705:11;39820:36;39892:2;39882:13;;39476:697;39911:4;39476:697;;;40102:1;40097:3;40093:11;40086:18;;40153:2;40147:4;40143:13;40139:2;40135:22;40130:3;40122:36;40006:2;39996:13;;39476:697;;;-1:-1:-1;40203:13:0;;;-1:-1:-1;;40318:12:0;;;40378:19;;;40318:12;38455:1960;-1:-1:-1;38455:1960:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1759:196::-;1827:20;;-1:-1:-1;;;;;1876:54:1;;1866:65;;1856:93;;1945:1;1942;1935:12;1856:93;1759:196;;;:::o;1960:254::-;2028:6;2036;2089:2;2077:9;2068:7;2064:23;2060:32;2057:52;;;2105:1;2102;2095:12;2057:52;2128:29;2147:9;2128:29;:::i;:::-;2118:39;2204:2;2189:18;;;;2176:32;;-1:-1:-1;;;1960:254:1:o;2401:328::-;2478:6;2486;2494;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2586:29;2605:9;2586:29;:::i;:::-;2576:39;;2634:38;2668:2;2657:9;2653:18;2634:38;:::i;:::-;2624:48;;2719:2;2708:9;2704:18;2691:32;2681:42;;2401:328;;;;;:::o;2734:592::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2922:9;2909:23;2951:18;2992:2;2984:6;2981:14;2978:34;;;3008:1;3005;2998:12;2978:34;3046:6;3035:9;3031:22;3021:32;;3091:7;3084:4;3080:2;3076:13;3072:27;3062:55;;3113:1;3110;3103:12;3062:55;3153:2;3140:16;3179:2;3171:6;3168:14;3165:34;;;3195:1;3192;3185:12;3165:34;3240:7;3235:2;3226:6;3222:2;3218:15;3214:24;3211:37;3208:57;;;3261:1;3258;3251:12;3208:57;3292:2;3284:11;;;;;3314:6;;-1:-1:-1;2734:592:1;;-1:-1:-1;;;;2734:592:1:o;3331:186::-;3390:6;3443:2;3431:9;3422:7;3418:23;3414:32;3411:52;;;3459:1;3456;3449:12;3411:52;3482:29;3501:9;3482:29;:::i;3522:347::-;3587:6;3595;3648:2;3636:9;3627:7;3623:23;3619:32;3616:52;;;3664:1;3661;3654:12;3616:52;3687:29;3706:9;3687:29;:::i;:::-;3677:39;;3766:2;3755:9;3751:18;3738:32;3813:5;3806:13;3799:21;3792:5;3789:32;3779:60;;3835:1;3832;3825:12;3779:60;3858:5;3848:15;;;3522:347;;;;;:::o;3874:127::-;3935:10;3930:3;3926:20;3923:1;3916:31;3966:4;3963:1;3956:15;3990:4;3987:1;3980:15;4006:1138;4101:6;4109;4117;4125;4178:3;4166:9;4157:7;4153:23;4149:33;4146:53;;;4195:1;4192;4185:12;4146:53;4218:29;4237:9;4218:29;:::i;:::-;4208:39;;4266:38;4300:2;4289:9;4285:18;4266:38;:::i;:::-;4256:48;;4351:2;4340:9;4336:18;4323:32;4313:42;;4406:2;4395:9;4391:18;4378:32;4429:18;4470:2;4462:6;4459:14;4456:34;;;4486:1;4483;4476:12;4456:34;4524:6;4513:9;4509:22;4499:32;;4569:7;4562:4;4558:2;4554:13;4550:27;4540:55;;4591:1;4588;4581:12;4540:55;4627:2;4614:16;4649:2;4645;4642:10;4639:36;;;4655:18;;:::i;:::-;4730:2;4724:9;4698:2;4784:13;;-1:-1:-1;;4780:22:1;;;4804:2;4776:31;4772:40;4760:53;;;4828:18;;;4848:22;;;4825:46;4822:72;;;4874:18;;:::i;:::-;4914:10;4910:2;4903:22;4949:2;4941:6;4934:18;4989:7;4984:2;4979;4975;4971:11;4967:20;4964:33;4961:53;;;5010:1;5007;5000:12;4961:53;5066:2;5061;5057;5053:11;5048:2;5040:6;5036:15;5023:46;5111:1;5106:2;5101;5093:6;5089:15;5085:24;5078:35;5132:6;5122:16;;;;;;;4006:1138;;;;;;;:::o;5149:260::-;5217:6;5225;5278:2;5266:9;5257:7;5253:23;5249:32;5246:52;;;5294:1;5291;5284:12;5246:52;5317:29;5336:9;5317:29;:::i;:::-;5307:39;;5365:38;5399:2;5388:9;5384:18;5365:38;:::i;:::-;5355:48;;5149:260;;;;;:::o;5414:380::-;5493:1;5489:12;;;;5536;;;5557:61;;5611:4;5603:6;5599:17;5589:27;;5557:61;5664:2;5656:6;5653:14;5633:18;5630:38;5627:161;;5710:10;5705:3;5701:20;5698:1;5691:31;5745:4;5742:1;5735:15;5773:4;5770:1;5763:15;5627:161;;5414:380;;;:::o;7300:545::-;7402:2;7397:3;7394:11;7391:448;;;7438:1;7463:5;7459:2;7452:17;7508:4;7504:2;7494:19;7578:2;7566:10;7562:19;7559:1;7555:27;7549:4;7545:38;7614:4;7602:10;7599:20;7596:47;;;-1:-1:-1;7637:4:1;7596:47;7692:2;7687:3;7683:12;7680:1;7676:20;7670:4;7666:31;7656:41;;7747:82;7765:2;7758:5;7755:13;7747:82;;;7810:17;;;7791:1;7780:13;7747:82;;8021:1206;8145:18;8140:3;8137:27;8134:53;;;8167:18;;:::i;:::-;8196:94;8286:3;8246:38;8278:4;8272:11;8246:38;:::i;:::-;8240:4;8196:94;:::i;:::-;8316:1;8341:2;8336:3;8333:11;8358:1;8353:616;;;;9013:1;9030:3;9027:93;;;-1:-1:-1;9086:19:1;;;9073:33;9027:93;-1:-1:-1;;7978:1:1;7974:11;;;7970:24;7966:29;7956:40;8002:1;7998:11;;;7953:57;9133:78;;8326:895;;8353:616;7247:1;7240:14;;;7284:4;7271:18;;-1:-1:-1;;8389:17:1;;;8490:9;8512:229;8526:7;8523:1;8520:14;8512:229;;;8615:19;;;8602:33;8587:49;;8722:4;8707:20;;;;8675:1;8663:14;;;;8542:12;8512:229;;;8516:3;8769;8760:7;8757:16;8754:159;;;8893:1;8889:6;8883:3;8877;8874:1;8870:11;8866:21;8862:34;8858:39;8845:9;8840:3;8836:19;8823:33;8819:79;8811:6;8804:95;8754:159;;;8956:1;8950:3;8947:1;8943:11;8939:19;8933:4;8926:33;8326:895;;;8021:1206;;;:::o;9232:470::-;9411:3;9449:6;9443:13;9465:53;9511:6;9506:3;9499:4;9491:6;9487:17;9465:53;:::i;:::-;9581:13;;9540:16;;;;9603:57;9581:13;9540:16;9637:4;9625:17;;9603:57;:::i;:::-;9676:20;;9232:470;-1:-1:-1;;;;9232:470:1:o;10457:512::-;10651:4;-1:-1:-1;;;;;10761:2:1;10753:6;10749:15;10738:9;10731:34;10813:2;10805:6;10801:15;10796:2;10785:9;10781:18;10774:43;;10853:6;10848:2;10837:9;10833:18;10826:34;10896:3;10891:2;10880:9;10876:18;10869:31;10917:46;10958:3;10947:9;10943:19;10935:6;10917:46;:::i;:::-;10909:54;10457:512;-1:-1:-1;;;;;;10457:512:1:o;10974:249::-;11043:6;11096:2;11084:9;11075:7;11071:23;11067:32;11064:52;;;11112:1;11109;11102:12;11064:52;11144:9;11138:16;11163:30;11187:5;11163:30;:::i

Swarm Source

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