ETH Price: $3,501.81 (+3.88%)
Gas: 4 Gwei

Token

Ape Art Yacht Club (AAYC)
 

Overview

Max Total Supply

10,000 AAYC

Holders

3,148

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 AAYC
0x3e1513073bd3ca738bc0d8b795c69de1665c2e20
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:
AAYC

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;

/*
    Yepee
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

contract AAYC is IERC721A { 

    address private _owner;
    modifier onlyOwner() { 
        require(_owner==msg.sender, "No!"); 
        _; 
    }

    bool public saleIsActive = false;
    uint256 public constant RESERVE = 100;
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public MAX_PER_WALLET = 10;
    uint256 public MAX_FREE_PER_WALLET = 2;
    uint256 public EARLY_MINTER_BONUS = 0;
    uint256 public COST = 0.004 ether;

    string private constant _name = "Ape Art Yacht Club";
    string private constant _symbol = "AAYC";
    string private _contractURI = "";
    string private _baseURI = "";

    constructor() {
        _owner = msg.sender;
    }

    function teamMint(uint256 _amount) external{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + _amount <= MAX_SUPPLY, "SoldOut");
        require(_amount + _numberMinted(msg.sender) <= RESERVE, "AccLimit");
        
        _safeMint(_caller, _amount);
    }

    function freeMint() external{
        uint256 amount = MAX_FREE_PER_WALLET;
        address _caller = _msgSenderERC721A();

        if(totalSupply()<5000){
            amount += EARLY_MINTER_BONUS;
        }

        require(saleIsActive, "NotActive");
        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_FREE_PER_WALLET+EARLY_MINTER_BONUS, "AccLimit");

        _safeMint(_caller, amount);
    }

    function mint(uint256 _amount) external payable{
        address _caller = _msgSenderERC721A();

        require(saleIsActive, "NotActive");
        require(totalSupply() + _amount <= MAX_SUPPLY, "SoldOut");
        require(_amount + _numberMinted(msg.sender) <= MAX_PER_WALLET + MAX_FREE_PER_WALLET, "AccLimit");
        require(msg.value >= _amount*COST, "More");
        
        _safeMint(_caller, _amount);
    }




    // 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 = 0;

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


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


    function setSale(bool _saleIsActive) external onlyOwner{
        saleIsActive = _saleIsActive;
    }

    function setBaseURI(string memory _new) external onlyOwner{
        _baseURI = _new;
    }

    function setContractURI(string memory _new) external onlyOwner{
        _contractURI = _new;
    }
   
    function setMaxFreePerWallet(uint256 _new) external onlyOwner{
        MAX_FREE_PER_WALLET = _new;
    }

    function setMaxPerWallet(uint256 _new) external onlyOwner{
        MAX_PER_WALLET = _new;
    }

    function setEarlyMinterBonus(uint256 _new) external onlyOwner{
        EARLY_MINTER_BONUS = _new;
    }

    function setPrice(uint256 _new) external onlyOwner{
        COST = _new;
    }



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

    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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked("ipfs://", _contractURI));
    }

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

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

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

    /**
     * @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 (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();


        // 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);
                } 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 (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();


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

        address approvedAddress = _tokenApprovals[tokenId];

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress();


        // 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] =
                _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 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)
        }
    }    

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EARLY_MINTER_BONUS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","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":"RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_new","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_new","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new","type":"uint256"}],"name":"setEarlyMinterBonus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleIsActive","type":"bool"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805460ff60a01b19168155600a600155600280556003819055660e35fa931a000060045560a060405260809081526005906200003e90826200012e565b506040805160208101909152600081526006906200005d90826200012e565b5060006007553480156200007057600080fd5b50600080546001600160a01b03191633179055620001fa565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000b457607f821691505b602082108103620000d557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200012957600081815260208120601f850160051c81016020861015620001045750805b601f850160051c820191505b81811015620001255782815560010162000110565b5050505b505050565b81516001600160401b038111156200014a576200014a62000089565b62000162816200015b84546200009f565b84620000db565b602080601f8311600181146200019a5760008415620001815750858301515b600019600386901b1c1916600185901b17855562000125565b600085815260208120601f198616915b82811015620001cb57888601518255948401946001909101908401620001aa565b5085821015620001ea5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6117d4806200020a6000396000f3fe6080604052600436106101ee5760003560e01c80636d7c4a4b1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd14610576578063e268e4d314610596578063e8a3d485146105b6578063e985e9c5146105cb578063eb8d2444146105eb57600080fd5b8063a0712d681461050d578063a22cb46514610520578063b88d4fde14610540578063bf8fbbd21461056057600080fd5b806395d89b41116100dc57806395d89b411461049557806398710d1e146104c257806398f65c1e146104d85780639d2cc436146104f857600080fd5b80636d7c4a4b1461041557806370a082311461043557806391b7f5ed14610455578063938e3d7b1461047557600080fd5b80632fbba1151161018557806347013c7f1161015457806347013c7f146103aa57806355f804b3146103c05780635b70ea9f146103e05780636352211e146103f557600080fd5b80632fbba1151461033f57806332cb6b0c1461035f5780633ccfd60b1461037557806342842e0e1461038a57600080fd5b80630f2cdd6c116101c15780630f2cdd6c146102c657806318160ddd146102ea5780631d2e5a3a146102ff57806323b872dd1461031f57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461026c578063095ea7b3146102a4575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046111d0565b61060c565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5060408051808201909152601281527120b8329020b93a102cb0b1b43a1021b63ab160711b60208201525b60405161021f919061121e565b34801561027857600080fd5b5061028c610287366004611251565b61065e565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102c46102bf366004611286565b6106a4565b005b3480156102d257600080fd5b506102dc60015481565b60405190815260200161021f565b3480156102f657600080fd5b506007546102dc565b34801561030b57600080fd5b506102c461031a3660046112c0565b610762565b34801561032b57600080fd5b506102c461033a3660046112db565b6107b3565b34801561034b57600080fd5b506102c461035a366004611251565b6107c3565b34801561036b57600080fd5b506102dc61271081565b34801561038157600080fd5b506102c4610855565b34801561039657600080fd5b506102c46103a53660046112db565b6108ae565b3480156103b657600080fd5b506102dc60035481565b3480156103cc57600080fd5b506102c46103db3660046113a3565b6108c9565b3480156103ec57600080fd5b506102c46108ff565b34801561040157600080fd5b5061028c610410366004611251565b6109b8565b34801561042157600080fd5b506102c4610430366004611251565b6109c3565b34801561044157600080fd5b506102dc6104503660046113f4565b6109f2565b34801561046157600080fd5b506102c4610470366004611251565b610a3b565b34801561048157600080fd5b506102c46104903660046113a3565b610a6a565b3480156104a157600080fd5b506040805180820190915260048152634141594360e01b602082015261025f565b3480156104ce57600080fd5b506102dc60025481565b3480156104e457600080fd5b506102c46104f3366004611251565b610aa0565b34801561050457600080fd5b506102dc606481565b6102c461051b366004611251565b610acf565b34801561052c57600080fd5b506102c461053b36600461140f565b610bec565b34801561054c57600080fd5b506102c461055b366004611442565b610c81565b34801561056c57600080fd5b506102dc60045481565b34801561058257600080fd5b5061025f610591366004611251565b610c92565b3480156105a257600080fd5b506102c46105b1366004611251565b610d9b565b3480156105c257600080fd5b5061025f610dca565b3480156105d757600080fd5b506102136105e63660046114be565b610df2565b3480156105f757600080fd5b5060005461021390600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061063d57506380ac58cd60e01b6001600160e01b03198316145b806106585750635b5e139f60e01b6001600160e01b03198316145b92915050565b600061066b826007541190565b610688576040516333d1c03960e21b815260040160405180910390fd5b506000908152600a60205260409020546001600160a01b031690565b60006106af82610e20565b9050806001600160a01b0316836001600160a01b0316036106cf57600080fd5b336001600160a01b03821614610706576106e98133610df2565b610706576040516367d9dca160e11b815260040160405180910390fd5b6000828152600a602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146107955760405162461bcd60e51b815260040161078c906114e8565b60405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b6107be838383610e87565b505050565b33612710826107d160075490565b6107db919061151b565b11156107f95760405162461bcd60e51b815260040161078c9061152e565b606461080433611020565b61080e908461151b565b11156108475760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161078c565b6108518183611049565b5050565b6000546001600160a01b0316331461087f5760405162461bcd60e51b815260040161078c906114e8565b6040514790339082156108fc029083906000818181858888f19350505050158015610851573d6000803e3d6000fd5b6107be83838360405180602001604052806000815250610c81565b6000546001600160a01b031633146108f35760405162461bcd60e51b815260040161078c906114e8565b600661085182826115cf565b6002543361138861090f60075490565b101561092557600354610922908361151b565b91505b600054600160a01b900460ff1661096a5760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b604482015260640161078c565b6127108261097760075490565b610981919061151b565b111561099f5760405162461bcd60e51b815260040161078c9061152e565b6003546002546109af919061151b565b61080433611020565b600061065882610e20565b6000546001600160a01b031633146109ed5760405162461bcd60e51b815260040161078c906114e8565b600255565b600081600003610a15576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526009602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a655760405162461bcd60e51b815260040161078c906114e8565b600455565b6000546001600160a01b03163314610a945760405162461bcd60e51b815260040161078c906114e8565b600561085182826115cf565b6000546001600160a01b03163314610aca5760405162461bcd60e51b815260040161078c906114e8565b600355565b6000543390600160a01b900460ff16610b165760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b604482015260640161078c565b61271082610b2360075490565b610b2d919061151b565b1115610b4b5760405162461bcd60e51b815260040161078c9061152e565b600254600154610b5b919061151b565b610b6433611020565b610b6e908461151b565b1115610ba75760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161078c565b600454610bb4908361168f565b3410156108475760405162461bcd60e51b815260040161078c906020808252600490820152634d6f726560e01b604082015260600190565b336001600160a01b03831603610c155760405163b06307db60e01b815260040160405180910390fd5b336000818152600b602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c8c848484610e87565b50505050565b6060610c9f826007541190565b610cbc57604051630a14c4b560e41b815260040160405180910390fd5b600060068054610ccb9061154f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf79061154f565b8015610d445780601f10610d1957610100808354040283529160200191610d44565b820191906000526020600020905b815481529060010190602001808311610d2757829003601f168201915b505050505090508051600003610d695760405180602001604052806000815250610d94565b80610d7384611063565b604051602001610d849291906116ae565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610dc55760405162461bcd60e51b815260040161078c906114e8565b600155565b60606005604051602001610dde919061170f565b604051602081830303815290604052905090565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205460ff1690565b600081600754811015610e6e5760008181526008602052604081205490600160e01b82169003610e6c575b80600003610d94575060001901600081815260086020526040902054610e4b565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e9282610e20565b9050836001600160a01b0316816001600160a01b031614610ec55760405162a1148160e81b815260040160405180910390fd5b6000828152600a60205260408120546001600160a01b0390811691908616331480610ef55750610ef58633610df2565b80610f0857506001600160a01b03821633145b905080610f2857604051632ce44b5f60e11b815260040160405180910390fd5b8115610f4b576000848152600a6020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600960209081526040808320805460001901905592881682528282208054600101905586825260089052908120600160e11b4260a01b8817811790915584169003610fd657600184016000818152600860205260408120549003610fd4576007548114610fd45760008181526008602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6001600160a01b03166000908152600960205260409081902054901c67ffffffffffffffff1690565b6108518282604051806020016040528060008152506110b2565b604080516080810191829052607f0190826030600a8206018353600a90045b80156110a057600183039250600a81066030018353600a9004611082565b50819003601f19909101908152919050565b60075460008390036110d75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526009602090815260408083208054680100000000000000018902019055848352600890915290204260a01b86176001861460e11b1790558190818501903b1561117c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061112a57826007541461117757600080fd5b6111c1565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061117d575b50600755610c8c600085838684565b6000602082840312156111e257600080fd5b81356001600160e01b031981168114610d9457600080fd5b60005b838110156112155781810151838201526020016111fd565b50506000910152565b602081526000825180602084015261123d8160408501602087016111fa565b601f01601f19169190910160400192915050565b60006020828403121561126357600080fd5b5035919050565b80356001600160a01b038116811461128157600080fd5b919050565b6000806040838503121561129957600080fd5b6112a28361126a565b946020939093013593505050565b8035801515811461128157600080fd5b6000602082840312156112d257600080fd5b610d94826112b0565b6000806000606084860312156112f057600080fd5b6112f98461126a565b92506113076020850161126a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561134857611348611317565b604051601f8501601f19908116603f0116810190828211818310171561137057611370611317565b8160405280935085815286868601111561138957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156113b557600080fd5b813567ffffffffffffffff8111156113cc57600080fd5b8201601f810184136113dd57600080fd5b6113ec8482356020840161132d565b949350505050565b60006020828403121561140657600080fd5b610d948261126a565b6000806040838503121561142257600080fd5b61142b8361126a565b9150611439602084016112b0565b90509250929050565b6000806000806080858703121561145857600080fd5b6114618561126a565b935061146f6020860161126a565b925060408501359150606085013567ffffffffffffffff81111561149257600080fd5b8501601f810187136114a357600080fd5b6114b28782356020840161132d565b91505092959194509250565b600080604083850312156114d157600080fd5b6114da8361126a565b91506114396020840161126a565b6020808252600390820152624e6f2160e81b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065857610658611505565b60208082526007908201526614dbdb1913dd5d60ca1b604082015260600190565b600181811c9082168061156357607f821691505b60208210810361158357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107be57600081815260208120601f850160051c810160208610156115b05750805b601f850160051c820191505b81811015611018578281556001016115bc565b815167ffffffffffffffff8111156115e9576115e9611317565b6115fd816115f7845461154f565b84611589565b602080601f831160018114611632576000841561161a5750858301515b600019600386901b1c1916600185901b178555611018565b600085815260208120601f198616915b8281101561166157888601518255948401946001909101908401611642565b508582101561167f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008160001904831182151516156116a9576116a9611505565b500290565b66697066733a2f2f60c81b8152600083516116d08160078501602088016111fa565b602f60f81b60079184019182015283516116f18160088401602088016111fa565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b8152600060076000845461172d8161154f565b60018281168015611745576001811461175e57611791565b60ff198416888701528215158302880186019450611791565b8860005260208060002060005b858110156117865781548b82018a015290840190820161176b565b505050858389010194505b509297965050505050505056fea26469706673582212205af626b5250823c70bf94d59b77841ec11325d9196b580b548caf11305be707e64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636d7c4a4b1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd14610576578063e268e4d314610596578063e8a3d485146105b6578063e985e9c5146105cb578063eb8d2444146105eb57600080fd5b8063a0712d681461050d578063a22cb46514610520578063b88d4fde14610540578063bf8fbbd21461056057600080fd5b806395d89b41116100dc57806395d89b411461049557806398710d1e146104c257806398f65c1e146104d85780639d2cc436146104f857600080fd5b80636d7c4a4b1461041557806370a082311461043557806391b7f5ed14610455578063938e3d7b1461047557600080fd5b80632fbba1151161018557806347013c7f1161015457806347013c7f146103aa57806355f804b3146103c05780635b70ea9f146103e05780636352211e146103f557600080fd5b80632fbba1151461033f57806332cb6b0c1461035f5780633ccfd60b1461037557806342842e0e1461038a57600080fd5b80630f2cdd6c116101c15780630f2cdd6c146102c657806318160ddd146102ea5780631d2e5a3a146102ff57806323b872dd1461031f57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461026c578063095ea7b3146102a4575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046111d0565b61060c565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5060408051808201909152601281527120b8329020b93a102cb0b1b43a1021b63ab160711b60208201525b60405161021f919061121e565b34801561027857600080fd5b5061028c610287366004611251565b61065e565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102c46102bf366004611286565b6106a4565b005b3480156102d257600080fd5b506102dc60015481565b60405190815260200161021f565b3480156102f657600080fd5b506007546102dc565b34801561030b57600080fd5b506102c461031a3660046112c0565b610762565b34801561032b57600080fd5b506102c461033a3660046112db565b6107b3565b34801561034b57600080fd5b506102c461035a366004611251565b6107c3565b34801561036b57600080fd5b506102dc61271081565b34801561038157600080fd5b506102c4610855565b34801561039657600080fd5b506102c46103a53660046112db565b6108ae565b3480156103b657600080fd5b506102dc60035481565b3480156103cc57600080fd5b506102c46103db3660046113a3565b6108c9565b3480156103ec57600080fd5b506102c46108ff565b34801561040157600080fd5b5061028c610410366004611251565b6109b8565b34801561042157600080fd5b506102c4610430366004611251565b6109c3565b34801561044157600080fd5b506102dc6104503660046113f4565b6109f2565b34801561046157600080fd5b506102c4610470366004611251565b610a3b565b34801561048157600080fd5b506102c46104903660046113a3565b610a6a565b3480156104a157600080fd5b506040805180820190915260048152634141594360e01b602082015261025f565b3480156104ce57600080fd5b506102dc60025481565b3480156104e457600080fd5b506102c46104f3366004611251565b610aa0565b34801561050457600080fd5b506102dc606481565b6102c461051b366004611251565b610acf565b34801561052c57600080fd5b506102c461053b36600461140f565b610bec565b34801561054c57600080fd5b506102c461055b366004611442565b610c81565b34801561056c57600080fd5b506102dc60045481565b34801561058257600080fd5b5061025f610591366004611251565b610c92565b3480156105a257600080fd5b506102c46105b1366004611251565b610d9b565b3480156105c257600080fd5b5061025f610dca565b3480156105d757600080fd5b506102136105e63660046114be565b610df2565b3480156105f757600080fd5b5060005461021390600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061063d57506380ac58cd60e01b6001600160e01b03198316145b806106585750635b5e139f60e01b6001600160e01b03198316145b92915050565b600061066b826007541190565b610688576040516333d1c03960e21b815260040160405180910390fd5b506000908152600a60205260409020546001600160a01b031690565b60006106af82610e20565b9050806001600160a01b0316836001600160a01b0316036106cf57600080fd5b336001600160a01b03821614610706576106e98133610df2565b610706576040516367d9dca160e11b815260040160405180910390fd5b6000828152600a602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146107955760405162461bcd60e51b815260040161078c906114e8565b60405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b6107be838383610e87565b505050565b33612710826107d160075490565b6107db919061151b565b11156107f95760405162461bcd60e51b815260040161078c9061152e565b606461080433611020565b61080e908461151b565b11156108475760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161078c565b6108518183611049565b5050565b6000546001600160a01b0316331461087f5760405162461bcd60e51b815260040161078c906114e8565b6040514790339082156108fc029083906000818181858888f19350505050158015610851573d6000803e3d6000fd5b6107be83838360405180602001604052806000815250610c81565b6000546001600160a01b031633146108f35760405162461bcd60e51b815260040161078c906114e8565b600661085182826115cf565b6002543361138861090f60075490565b101561092557600354610922908361151b565b91505b600054600160a01b900460ff1661096a5760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b604482015260640161078c565b6127108261097760075490565b610981919061151b565b111561099f5760405162461bcd60e51b815260040161078c9061152e565b6003546002546109af919061151b565b61080433611020565b600061065882610e20565b6000546001600160a01b031633146109ed5760405162461bcd60e51b815260040161078c906114e8565b600255565b600081600003610a15576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526009602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a655760405162461bcd60e51b815260040161078c906114e8565b600455565b6000546001600160a01b03163314610a945760405162461bcd60e51b815260040161078c906114e8565b600561085182826115cf565b6000546001600160a01b03163314610aca5760405162461bcd60e51b815260040161078c906114e8565b600355565b6000543390600160a01b900460ff16610b165760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b604482015260640161078c565b61271082610b2360075490565b610b2d919061151b565b1115610b4b5760405162461bcd60e51b815260040161078c9061152e565b600254600154610b5b919061151b565b610b6433611020565b610b6e908461151b565b1115610ba75760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161078c565b600454610bb4908361168f565b3410156108475760405162461bcd60e51b815260040161078c906020808252600490820152634d6f726560e01b604082015260600190565b336001600160a01b03831603610c155760405163b06307db60e01b815260040160405180910390fd5b336000818152600b602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c8c848484610e87565b50505050565b6060610c9f826007541190565b610cbc57604051630a14c4b560e41b815260040160405180910390fd5b600060068054610ccb9061154f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf79061154f565b8015610d445780601f10610d1957610100808354040283529160200191610d44565b820191906000526020600020905b815481529060010190602001808311610d2757829003601f168201915b505050505090508051600003610d695760405180602001604052806000815250610d94565b80610d7384611063565b604051602001610d849291906116ae565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610dc55760405162461bcd60e51b815260040161078c906114e8565b600155565b60606005604051602001610dde919061170f565b604051602081830303815290604052905090565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205460ff1690565b600081600754811015610e6e5760008181526008602052604081205490600160e01b82169003610e6c575b80600003610d94575060001901600081815260086020526040902054610e4b565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e9282610e20565b9050836001600160a01b0316816001600160a01b031614610ec55760405162a1148160e81b815260040160405180910390fd5b6000828152600a60205260408120546001600160a01b0390811691908616331480610ef55750610ef58633610df2565b80610f0857506001600160a01b03821633145b905080610f2857604051632ce44b5f60e11b815260040160405180910390fd5b8115610f4b576000848152600a6020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600960209081526040808320805460001901905592881682528282208054600101905586825260089052908120600160e11b4260a01b8817811790915584169003610fd657600184016000818152600860205260408120549003610fd4576007548114610fd45760008181526008602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6001600160a01b03166000908152600960205260409081902054901c67ffffffffffffffff1690565b6108518282604051806020016040528060008152506110b2565b604080516080810191829052607f0190826030600a8206018353600a90045b80156110a057600183039250600a81066030018353600a9004611082565b50819003601f19909101908152919050565b60075460008390036110d75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526009602090815260408083208054680100000000000000018902019055848352600890915290204260a01b86176001861460e11b1790558190818501903b1561117c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061112a57826007541461117757600080fd5b6111c1565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061117d575b50600755610c8c600085838684565b6000602082840312156111e257600080fd5b81356001600160e01b031981168114610d9457600080fd5b60005b838110156112155781810151838201526020016111fd565b50506000910152565b602081526000825180602084015261123d8160408501602087016111fa565b601f01601f19169190910160400192915050565b60006020828403121561126357600080fd5b5035919050565b80356001600160a01b038116811461128157600080fd5b919050565b6000806040838503121561129957600080fd5b6112a28361126a565b946020939093013593505050565b8035801515811461128157600080fd5b6000602082840312156112d257600080fd5b610d94826112b0565b6000806000606084860312156112f057600080fd5b6112f98461126a565b92506113076020850161126a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561134857611348611317565b604051601f8501601f19908116603f0116810190828211818310171561137057611370611317565b8160405280935085815286868601111561138957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156113b557600080fd5b813567ffffffffffffffff8111156113cc57600080fd5b8201601f810184136113dd57600080fd5b6113ec8482356020840161132d565b949350505050565b60006020828403121561140657600080fd5b610d948261126a565b6000806040838503121561142257600080fd5b61142b8361126a565b9150611439602084016112b0565b90509250929050565b6000806000806080858703121561145857600080fd5b6114618561126a565b935061146f6020860161126a565b925060408501359150606085013567ffffffffffffffff81111561149257600080fd5b8501601f810187136114a357600080fd5b6114b28782356020840161132d565b91505092959194509250565b600080604083850312156114d157600080fd5b6114da8361126a565b91506114396020840161126a565b6020808252600390820152624e6f2160e81b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065857610658611505565b60208082526007908201526614dbdb1913dd5d60ca1b604082015260600190565b600181811c9082168061156357607f821691505b60208210810361158357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107be57600081815260208120601f850160051c810160208610156115b05750805b601f850160051c820191505b81811015611018578281556001016115bc565b815167ffffffffffffffff8111156115e9576115e9611317565b6115fd816115f7845461154f565b84611589565b602080601f831160018114611632576000841561161a5750858301515b600019600386901b1c1916600185901b178555611018565b600085815260208120601f198616915b8281101561166157888601518255948401946001909101908401611642565b508582101561167f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008160001904831182151516156116a9576116a9611505565b500290565b66697066733a2f2f60c81b8152600083516116d08160078501602088016111fa565b602f60f81b60079184019182015283516116f18160088401602088016111fa565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b8152600060076000845461172d8161154f565b60018281168015611745576001811461175e57611791565b60ff198416888701528215158302880186019450611791565b8860005260208060002060005b858110156117865781548b82018a015290840190820161176b565b505050858389010194505b509297965050505050505056fea26469706673582212205af626b5250823c70bf94d59b77841ec11325d9196b580b548caf11305be707e64736f6c63430008100033

Deployed Bytecode Sourcemap

9037:25480:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15343:615;;;;;;;;;;-1:-1:-1;15343:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;15343:615:0;;;;;;;;20084:100;;;;;;;;;;-1:-1:-1;20171:5:0;;;;;;;;;;;;-1:-1:-1;;;20171:5:0;;;;20084:100;;;;;;;:::i;21863:204::-;;;;;;;;;;-1:-1:-1;21863:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;21863:204:0;1338:203:1;21346:451:0;;;;;;;;;;-1:-1:-1;21346:451:0;;;;;:::i;:::-;;:::i;:::-;;9331:34;;;;;;;;;;;;;;;;;;;2129:25:1;;;2117:2;2102:18;9331:34:0;1983:177:1;14586:300:0;;;;;;;;;;-1:-1:-1;14836:13:0;;14586:300;;13229:102;;;;;;;;;;-1:-1:-1;13229:102:0;;;;;:::i;:::-;;:::i;22749:190::-;;;;;;;;;;-1:-1:-1;22749:190:0;;;;;:::i;:::-;;:::i;9745:295::-;;;;;;;;;;-1:-1:-1;9745:295:0;;;;;:::i;:::-;;:::i;9282:42::-;;;;;;;;;;;;9319:5;9282:42;;34369:145;;;;;;;;;;;;;:::i;23010:205::-;;;;;;;;;;-1:-1:-1;23010:205:0;;;;;:::i;:::-;;:::i;9417:37::-;;;;;;;;;;;;;;;;13339:92;;;;;;;;;;-1:-1:-1;13339:92:0;;;;;:::i;:::-;;:::i;10048:481::-;;;;;;;;;;;;;:::i;19873:144::-;;;;;;;;;;-1:-1:-1;19873:144:0;;;;;:::i;:::-;;:::i;13550:106::-;;;;;;;;;;-1:-1:-1;13550:106:0;;;;;:::i;:::-;;:::i;16022:234::-;;;;;;;;;;-1:-1:-1;16022:234:0;;;;;:::i;:::-;;:::i;13882:80::-;;;;;;;;;;-1:-1:-1;13882:80:0;;;;;:::i;:::-;;:::i;13439:100::-;;;;;;;;;;-1:-1:-1;13439:100:0;;;;;:::i;:::-;;:::i;20253:104::-;;;;;;;;;;-1:-1:-1;20342:7:0;;;;;;;;;;;;-1:-1:-1;;;20342:7:0;;;;20253:104;;9372:38;;;;;;;;;;;;;;;;13769:105;;;;;;;;;;-1:-1:-1;13769:105:0;;;;;:::i;:::-;;:::i;9238:37::-;;;;;;;;;;;;9272:3;9238:37;;10537:426;;;;;;:::i;:::-;;:::i;22139:308::-;;;;;;;;;;-1:-1:-1;22139:308:0;;;;;:::i;:::-;;:::i;23286:227::-;;;;;;;;;;-1:-1:-1;23286:227:0;;;;;:::i;:::-;;:::i;9461:33::-;;;;;;;;;;;;;;;;20365:339;;;;;;;;;;-1:-1:-1;20365:339:0;;;;;:::i;:::-;;:::i;13664:97::-;;;;;;;;;;-1:-1:-1;13664:97:0;;;;;:::i;:::-;;:::i;20712:134::-;;;;;;;;;;;;;:::i;22518:164::-;;;;;;;;;;-1:-1:-1;22518:164:0;;;;;:::i;:::-;;:::i;9199:32::-;;;;;;;;;;-1:-1:-1;9199:32:0;;;;-1:-1:-1;;;9199:32:0;;;;;;15343:615;15428:4;-1:-1:-1;;;;;;;;;15728:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15805:25:0;;;15728:102;:179;;;-1:-1:-1;;;;;;;;;;15882:25:0;;;15728:179;15708:199;15343:615;-1:-1:-1;;15343:615:0:o;21863:204::-;21931:7;21956:16;21964:7;23915:13;;-1:-1:-1;23905:23:0;23768:168;21956:16;21951:64;;21981:34;;-1:-1:-1;;;21981:34:0;;;;;;;;;;;21951:64;-1:-1:-1;22035:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22035:24:0;;21863:204::o;21346:451::-;21419:13;21451:27;21470:7;21451:18;:27::i;:::-;21419:61;;21501:5;-1:-1:-1;;;;;21495:11:0;:2;-1:-1:-1;;;;;21495:11:0;;21491:25;;21508:8;;;21491:25;32363:10;-1:-1:-1;;;;;21533:28:0;;;21529:175;;21581:44;21598:5;32363:10;22518:164;:::i;21581:44::-;21576:128;;21653:35;;-1:-1:-1;;;21653:35:0;;;;;;;;;;;21576:128;21716:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21716:29:0;-1:-1:-1;;;;;21716:29:0;;;;;;;;;21761:28;;21716:24;;21761:28;;;;;;;21408:389;21346:451;;:::o;13229:102::-;9143:6;;-1:-1:-1;;;;;9143:6:0;9151:10;9143:18;9135:34;;;;-1:-1:-1;;;9135:34:0;;;;;;;:::i;:::-;;;;;;;;;13295:12:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;13295:28:0::1;-1:-1:-1::0;;;;13295:28:0;;::::1;::::0;;;::::1;::::0;;13229:102::o;22749:190::-;22903:28;22913:4;22919:2;22923:7;22903:9;:28::i;:::-;22749:190;;;:::o;9745:295::-;32363:10;9319:5;9873:7;9857:13;14836;;;14586:300;9857:13;:23;;;;:::i;:::-;:37;;9849:57;;;;-1:-1:-1;;;9849:57:0;;;;;;;:::i;:::-;9272:3;9935:25;9949:10;9935:13;:25::i;:::-;9925:35;;:7;:35;:::i;:::-;:46;;9917:67;;;;-1:-1:-1;;;9917:67:0;;6590:2:1;9917:67:0;;;6572:21:1;6629:1;6609:18;;;6602:29;-1:-1:-1;;;6647:18:1;;;6640:38;6695:18;;9917:67:0;6388:331:1;9917:67:0;10005:27;10015:7;10024;10005:9;:27::i;:::-;9788:252;9745:295;:::o;34369:145::-;9143:6;;-1:-1:-1;;;;;9143:6:0;9151:10;9143:18;9135:34;;;;-1:-1:-1;;;9135:34:0;;;;;;;:::i;:::-;34469:37:::1;::::0;34437:21:::1;::::0;34477:10:::1;::::0;34469:37;::::1;;;::::0;34437:21;;34419:15:::1;34469:37:::0;34419:15;34469:37;34437:21;34477:10;34469:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;23010:205:::0;23168:39;23185:4;23191:2;23195:7;23168:39;;;;;;;;;;;;:16;:39::i;13339:92::-;9143:6;;-1:-1:-1;;;;;9143:6:0;9151:10;9143:18;9135:34;;;;-1:-1:-1;;;9135:34:0;;;;;;;:::i;:::-;13408:8:::1;:15;13419:4:::0;13408:8;:15:::1;:::i;10048:481::-:0;10104:19;;32363:10;10201:4;10187:13;14836;;;14586:300;10187:13;:18;10184:77;;;10231:18;;10221:28;;;;:::i;:::-;;;10184:77;10281:12;;-1:-1:-1;;;10281:12:0;;;;10273:34;;;;-1:-1:-1;;;10273:34:0;;9515:2:1;10273:34:0;;;9497:21:1;9554:1;9534:18;;;9527:29;-1:-1:-1;;;9572:18:1;;;9565:39;9621:18;;10273:34:0;9313:332:1;10273:34:0;9319:5;10342:6;10326:13;14836;;;14586:300;10326:13;:22;;;;:::i;:::-;:36;;10318:56;;;;-1:-1:-1;;;10318:56:0;;;;;;;:::i;:::-;10451:18;;10431:19;;:38;;;;:::i;:::-;10402:25;10416:10;10402:13;:25::i;19873:144::-;19937:7;19980:27;19999:7;19980:18;:27::i;13550:106::-;9143:6;;-1:-1:-1;;;;;9143:6:0;9151:10;9143:18;9135:34;;;;-1:-1:-1;;;9135:34:0;;;;;;;:::i;:::-;13622:19:::1;:26:::0;13550:106::o;16022:234::-;16086:7;16128:5;16138:1;16110:29;16106:70;;16148:28;;-1:-1:-1;;;16148:28:0;;;;;;;;;;;16106:70;-1:-1:-1;;;;;;16194:25:0;;;;;:18;:25;;;;;;11080:13;16194:54;;16022:234::o;13882:80::-;9143:6;;-1:-1:-1;;;;;9143:6:0;9151:10;9143:18;9135:34;;;;-1:-1:-1;;;9135:34:0;;;;;;;:::i;:::-;13943:4:::1;:11:::0;13882:80::o;13439:100::-;9143:6;;-1:-1:-1;;;;;9143:6:0;9151:10;9143:18;9135:34;;;;-1:-1:-1;;;9135:34:0;;;;;;;:::i;:::-;13512:12:::1;:19;13527:4:::0;13512:12;:19:::1;:::i;13769:105::-:0;9143:6;;-1:-1:-1;;;;;9143:6:0;9151:10;9143:18;9135:34;;;;-1:-1:-1;;;9135:34:0;;;;;;;:::i;:::-;13841:18:::1;:25:::0;13769:105::o;10537:426::-;10595:15;10653:12;32363:10;;-1:-1:-1;;;10653:12:0;;;;10645:34;;;;-1:-1:-1;;;10645:34:0;;9515:2:1;10645:34:0;;;9497:21:1;9554:1;9534:18;;;9527:29;-1:-1:-1;;;9572:18:1;;;9565:39;9621:18;;10645:34:0;9313:332:1;10645:34:0;9319:5;10714:7;10698:13;14836;;;14586:300;10698:13;:23;;;;:::i;:::-;:37;;10690:57;;;;-1:-1:-1;;;10690:57:0;;;;;;;:::i;:::-;10822:19;;10805:14;;:36;;;;:::i;:::-;10776:25;10790:10;10776:13;:25::i;:::-;10766:35;;:7;:35;:::i;:::-;:75;;10758:96;;;;-1:-1:-1;;;10758:96:0;;6590:2:1;10758:96:0;;;6572:21:1;6629:1;6609:18;;;6602:29;-1:-1:-1;;;6647:18:1;;;6640:38;6695:18;;10758:96:0;6388:331:1;10758:96:0;10894:4;;10886:12;;:7;:12;:::i;:::-;10873:9;:25;;10865:42;;;;-1:-1:-1;;;10865:42:0;;;;;;10025:2:1;10007:21;;;10064:1;10044:18;;;10037:29;-1:-1:-1;;;10097:2:1;10082:18;;10075:34;10141:2;10126:18;;9823:327;22139:308:0;32363:10;-1:-1:-1;;;;;22238:31:0;;;22234:61;;22278:17;;-1:-1:-1;;;22278:17:0;;;;;;;;;;;22234:61;32363:10;22308:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22308:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22308:60:0;;;;;;;;;;22384:55;;445:41:1;;;22308:49:0;;32363:10;22384:55;;418:18:1;22384:55:0;;;;;;;22139:308;;:::o;23286:227::-;23477:28;23487:4;23493:2;23497:7;23477:9;:28::i;:::-;23286:227;;;;:::o;20365:339::-;20438:13;20469:16;20477:7;23915:13;;-1:-1:-1;23905:23:0;23768:168;20469:16;20464:59;;20494:29;;-1:-1:-1;;;20494:29:0;;;;;;;;;;;20464:59;20534:21;20558:8;20534:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20590:7;20584:21;20609:1;20584:26;:112;;;;;;;;;;;;;;;;;20648:7;20662:18;20672:7;20662:9;:18::i;:::-;20620:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20584:112;20577:119;20365:339;-1:-1:-1;;;20365:339:0:o;13664:97::-;9143:6;;-1:-1:-1;;;;;9143:6:0;9151:10;9143:18;9135:34;;;;-1:-1:-1;;;9135:34:0;;;;;;;:::i;:::-;13732:14:::1;:21:::0;13664:97::o;20712:134::-;20756:13;20824:12;20796:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;20782:56;;20712:134;:::o;22518:164::-;-1:-1:-1;;;;;22639:25:0;;;22615:4;22639:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22518:164::o;17388:1129::-;17455:7;17490;17592:13;;17585:4;:20;17581:869;;;17630:14;17647:23;;;:17;:23;;;;;;;-1:-1:-1;;;17736:23:0;;:28;;17732:699;;18255:113;18262:6;18272:1;18262:11;18255:113;;-1:-1:-1;;;18333:6:0;18315:25;;;;:17;:25;;;;;;18255:113;;17732:699;17607:843;17581:869;18478:31;;-1:-1:-1;;;18478:31:0;;;;;;;;;;;28602:2636;28739:27;28769;28788:7;28769:18;:27::i;:::-;28739:57;;28854:4;-1:-1:-1;;;;;28813:45:0;28829:19;-1:-1:-1;;;;;28813:45:0;;28809:86;;28867:28;;-1:-1:-1;;;28867:28:0;;;;;;;;;;;28809:86;28908:23;28934:24;;;:15;:24;;;;;;-1:-1:-1;;;;;28934:24:0;;;;28908:23;28997:27;;32363:10;28997:27;;:91;;-1:-1:-1;29045:43:0;29062:4;32363:10;22518:164;:::i;29045:43::-;28997:150;;;-1:-1:-1;;;;;;29109:38:0;;32363:10;29109:38;28997:150;28971:177;;29166:17;29161:66;;29192:35;;-1:-1:-1;;;29192:35:0;;;;;;;;;;;29161:66;29396:15;29378:39;29374:103;;29441:24;;;;:15;:24;;;;;29434:31;;-1:-1:-1;;;;;;29434:31:0;;;29374:103;-1:-1:-1;;;;;29844:24:0;;;;;;;:18;:24;;;;;;;;29842:26;;-1:-1:-1;;29842:26:0;;;29913:22;;;;;;;;29911:24;;-1:-1:-1;29911:24:0;;;30206:26;;;:17;:26;;;;;-1:-1:-1;;;30294:15:0;11734:3;30294:41;30252:84;;:128;;30206:174;;;30500:46;;:51;;30496:626;;30604:1;30594:11;;30572:19;30727:30;;;:17;:30;;;;;;:35;;30723:384;;30865:13;;30850:11;:28;30846:242;;31012:30;;;;:17;:30;;;;;:52;;;30846:242;30553:569;30496:626;31169:7;31165:2;-1:-1:-1;;;;;31150:27:0;31159:4;-1:-1:-1;;;;;31150:27:0;;;;;;;;;;;31188:42;28726:2512;;;28602:2636;;;:::o;16338:176::-;-1:-1:-1;;;;;16427:25:0;16399:7;16427:25;;;:18;:25;;11217:2;16427:25;;;;;:49;;11080:13;16426:80;;16338:176::o;24020:104::-;24089:27;24099:2;24103:8;24089:27;;;;;;;;;;;;:9;:27::i;32487:1870::-;32946:4;32940:11;;32953:3;32936:21;;33027:17;;;;33699:11;;;33576:5;33833:2;33847;33837:13;;33829:22;33699:11;33816:36;33889:2;33879:13;;33473:661;33905:4;33473:661;;;34073:1;34068:3;34064:11;34057:18;;34117:2;34111:4;34107:13;34103:2;34099:22;34094:3;34086:36;33990:2;33980:13;;33473:661;;;-1:-1:-1;34157:13:0;;;-1:-1:-1;;34266:12:0;;;34320:19;;;34266:12;32487:1870;-1:-1:-1;32487:1870:0:o;24495:2000::-;24661:13;;24638:20;24760:13;;;24756:44;;24782:18;;-1:-1:-1;;;24782:18:0;;;;;;;;;;;24756:44;-1:-1:-1;;;;;25277:22:0;;;;;;:18;:22;;;;11217:2;25277:22;;;:70;;25315:31;25303:44;;25277:70;;;25590:31;;;:17;:31;;;;;25683:15;11734:3;25683:41;25641:84;;-1:-1:-1;25761:13:0;;11993:3;25746:56;25641:162;25590:213;;:31;;25884:23;;;;25928:14;:19;25924:439;;25968:117;25999:38;;26024:12;;-1:-1:-1;;;;;25999:38:0;;;26016:1;;25999:38;;26016:1;;25999:38;26080:3;26065:12;:18;25968:117;;26166:12;26149:13;;:29;26145:43;;26180:8;;;26145:43;25924:439;;;26229:119;26260:40;;26285:14;;;;;-1:-1:-1;;;;;26260:40:0;;;26277:1;;26260:40;;26277:1;;26260:40;26343:3;26328:12;:18;26229:119;;25924:439;-1:-1:-1;26377:13:0;:28;26427:60;26456:1;26460:2;26464:12;26478:8;26427:60;:::i;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:160::-;2230:20;;2286:13;;2279:21;2269:32;;2259:60;;2315:1;2312;2305:12;2330:180;2386:6;2439:2;2427:9;2418:7;2414:23;2410:32;2407:52;;;2455:1;2452;2445:12;2407:52;2478:26;2494:9;2478:26;:::i;2515:328::-;2592:6;2600;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;:::-;2690:39;;2748:38;2782:2;2771:9;2767:18;2748:38;:::i;:::-;2738:48;;2833:2;2822:9;2818:18;2805:32;2795:42;;2515:328;;;;;:::o;2848:127::-;2909:10;2904:3;2900:20;2897:1;2890:31;2940:4;2937:1;2930:15;2964:4;2961:1;2954:15;2980:632;3045:5;3075:18;3116:2;3108:6;3105:14;3102:40;;;3122:18;;:::i;:::-;3197:2;3191:9;3165:2;3251:15;;-1:-1:-1;;3247:24:1;;;3273:2;3243:33;3239:42;3227:55;;;3297:18;;;3317:22;;;3294:46;3291:72;;;3343:18;;:::i;:::-;3383:10;3379:2;3372:22;3412:6;3403:15;;3442:6;3434;3427:22;3482:3;3473:6;3468:3;3464:16;3461:25;3458:45;;;3499:1;3496;3489:12;3458:45;3549:6;3544:3;3537:4;3529:6;3525:17;3512:44;3604:1;3597:4;3588:6;3580;3576:19;3572:30;3565:41;;;;2980:632;;;;;:::o;3617:451::-;3686:6;3739:2;3727:9;3718:7;3714:23;3710:32;3707:52;;;3755:1;3752;3745:12;3707:52;3795:9;3782:23;3828:18;3820:6;3817:30;3814:50;;;3860:1;3857;3850:12;3814:50;3883:22;;3936:4;3928:13;;3924:27;-1:-1:-1;3914:55:1;;3965:1;3962;3955:12;3914:55;3988:74;4054:7;4049:2;4036:16;4031:2;4027;4023:11;3988:74;:::i;:::-;3978:84;3617:451;-1:-1:-1;;;;3617:451:1:o;4073:186::-;4132:6;4185:2;4173:9;4164:7;4160:23;4156:32;4153:52;;;4201:1;4198;4191:12;4153:52;4224:29;4243:9;4224:29;:::i;4264:254::-;4329:6;4337;4390:2;4378:9;4369:7;4365:23;4361:32;4358:52;;;4406:1;4403;4396:12;4358:52;4429:29;4448:9;4429:29;:::i;:::-;4419:39;;4477:35;4508:2;4497:9;4493:18;4477:35;:::i;:::-;4467:45;;4264:254;;;;;:::o;4523:667::-;4618:6;4626;4634;4642;4695:3;4683:9;4674:7;4670:23;4666:33;4663:53;;;4712:1;4709;4702:12;4663:53;4735:29;4754:9;4735:29;:::i;:::-;4725:39;;4783:38;4817:2;4806:9;4802:18;4783:38;:::i;:::-;4773:48;;4868:2;4857:9;4853:18;4840:32;4830:42;;4923:2;4912:9;4908:18;4895:32;4950:18;4942:6;4939:30;4936:50;;;4982:1;4979;4972:12;4936:50;5005:22;;5058:4;5050:13;;5046:27;-1:-1:-1;5036:55:1;;5087:1;5084;5077:12;5036:55;5110:74;5176:7;5171:2;5158:16;5153:2;5149;5145:11;5110:74;:::i;:::-;5100:84;;;4523:667;;;;;;;:::o;5195:260::-;5263:6;5271;5324:2;5312:9;5303:7;5299:23;5295:32;5292:52;;;5340:1;5337;5330:12;5292:52;5363:29;5382:9;5363:29;:::i;:::-;5353:39;;5411:38;5445:2;5434:9;5430:18;5411:38;:::i;5460:326::-;5662:2;5644:21;;;5701:1;5681:18;;;5674:29;-1:-1:-1;;;5734:2:1;5719:18;;5712:33;5777:2;5762:18;;5460:326::o;5791:127::-;5852:10;5847:3;5843:20;5840:1;5833:31;5883:4;5880:1;5873:15;5907:4;5904:1;5897:15;5923:125;5988:9;;;6009:10;;;6006:36;;;6022:18;;:::i;6053:330::-;6255:2;6237:21;;;6294:1;6274:18;;;6267:29;-1:-1:-1;;;6327:2:1;6312:18;;6305:37;6374:2;6359:18;;6053:330::o;6724:380::-;6803:1;6799:12;;;;6846;;;6867:61;;6921:4;6913:6;6909:17;6899:27;;6867:61;6974:2;6966:6;6963:14;6943:18;6940:38;6937:161;;7020:10;7015:3;7011:20;7008:1;7001:31;7055:4;7052:1;7045:15;7083:4;7080:1;7073:15;6937:161;;6724:380;;;:::o;7235:545::-;7337:2;7332:3;7329:11;7326:448;;;7373:1;7398:5;7394:2;7387:17;7443:4;7439:2;7429:19;7513:2;7501:10;7497:19;7494:1;7490:27;7484:4;7480:38;7549:4;7537:10;7534:20;7531:47;;;-1:-1:-1;7572:4:1;7531:47;7627:2;7622:3;7618:12;7615:1;7611:20;7605:4;7601:31;7591:41;;7682:82;7700:2;7693:5;7690:13;7682:82;;;7745:17;;;7726:1;7715:13;7682:82;;7956:1352;8082:3;8076:10;8109:18;8101:6;8098:30;8095:56;;;8131:18;;:::i;:::-;8160:97;8250:6;8210:38;8242:4;8236:11;8210:38;:::i;:::-;8204:4;8160:97;:::i;:::-;8312:4;;8376:2;8365:14;;8393:1;8388:663;;;;9095:1;9112:6;9109:89;;;-1:-1:-1;9164:19:1;;;9158:26;9109:89;-1:-1:-1;;7913:1:1;7909:11;;;7905:24;7901:29;7891:40;7937:1;7933:11;;;7888:57;9211:81;;8358:944;;8388:663;7182:1;7175:14;;;7219:4;7206:18;;-1:-1:-1;;8424:20:1;;;8542:236;8556:7;8553:1;8550:14;8542:236;;;8645:19;;;8639:26;8624:42;;8737:27;;;;8705:1;8693:14;;;;8572:19;;8542:236;;;8546:3;8806:6;8797:7;8794:19;8791:201;;;8867:19;;;8861:26;-1:-1:-1;;8950:1:1;8946:14;;;8962:3;8942:24;8938:37;8934:42;8919:58;8904:74;;8791:201;-1:-1:-1;;;;;9038:1:1;9022:14;;;9018:22;9005:36;;-1:-1:-1;7956:1352:1:o;9650:168::-;9690:7;9756:1;9752;9748:6;9744:14;9741:1;9738:21;9733:1;9726:9;9719:17;9715:45;9712:71;;;9763:18;;:::i;:::-;-1:-1:-1;9803:9:1;;9650:168::o;10155:935::-;-1:-1:-1;;;10662:3:1;10655:22;10637:3;10706:6;10700:13;10722:74;10789:6;10785:1;10780:3;10776:11;10769:4;10761:6;10757:17;10722:74;:::i;:::-;-1:-1:-1;;;10855:1:1;10815:16;;;10847:10;;;10840:23;10888:13;;10910:75;10888:13;10972:1;10964:10;;10957:4;10945:17;;10910:75;:::i;:::-;-1:-1:-1;;;11045:1:1;11004:17;;;;11037:10;;;11030:27;11081:2;11073:11;;10155:935;-1:-1:-1;;;;10155:935:1:o;11095:1030::-;-1:-1:-1;;;11349:3:1;11342:22;11324:3;11383:1;11404;11437:6;11431:13;11467:36;11493:9;11467:36;:::i;:::-;11522:1;11539:18;;;11566:151;;;;11731:1;11726:374;;;;11532:568;;11566:151;-1:-1:-1;;11608:24:1;;11594:12;;;11587:46;11685:14;;11678:22;11666:35;;11657:45;;11653:54;;;-1:-1:-1;11566:151:1;;11726:374;11757:6;11754:1;11747:17;11787:4;11832:2;11829:1;11819:16;11857:1;11871:174;11885:6;11882:1;11879:13;11871:174;;;11972:14;;11954:11;;;11950:20;;11943:44;12015:16;;;;11900:10;;11871:174;;;11875:3;;;12087:2;12078:6;12073:3;12069:16;12065:25;12058:32;;11532:568;-1:-1:-1;12116:3:1;;11095:1030;-1:-1:-1;;;;;;;11095:1030:1:o

Swarm Source

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