ETH Price: $2,540.24 (+0.60%)
Gas: 4.92 Gwei

Token

Death Proof 501 (DP501)
 

Overview

Max Total Supply

501 DP501

Holders

492

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DP501
0x819c156C094785d89993bbD24d948b3e8c95148b
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:
DeathProof501

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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


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



library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}




contract DeathProof501 is IERC721A { 
    using SafeMath for uint256;

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

    bool public saleIsActive = true;

    uint256 public constant MAX_SUPPLY = 501;
    uint256 public constant MAX_TEAM_SUPPLY = 10;
    uint256 public constant MAX_PER_WALLET = 1;
    uint256 public constant COST = 0 ether;

    string private constant _name = "Death Proof 501";
    string private constant _symbol = "DP501";
    string private _contractURI = "QmVcuAzwLeqxAUsBuJhcwRJZi898PaaD1iawcfTcdNrrmg";
    string private _baseURI = "QmPE1C5kr9x1bGmowacKzhkTvAY17cU7sfpsNa1ZmqLQDa";

    constructor() {
        _owner = msg.sender;
    }

    

    function mint() external{
        address _caller = _msgSenderERC721A();
        uint256 amount = 1;

        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_PER_WALLET, "AccLimit");
        nextPrime();

        _mint(_caller, amount);
    }

    function teamMint() external onlyOwner{
        uint256 amount = MAX_TEAM_SUPPLY;
        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_TEAM_SUPPLY, "AccLimit");
        _mint(msg.sender, amount);
    }

    uint256 public lastPrime = 1;
	function nextPrime() public returns (uint256){
		uint runs = 10000;
        for (uint num = (lastPrime/3 + lastPrime/2 + lastPrime/4); num < runs; num++) {
			for( uint j = 2; j * j <= num; j++){
				if((num.mod(j)==0))
				{
					continue;
				}
				else if(num>lastPrime){ 
					lastPrime = num;
					return num;
				}
			}
		}
	}

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

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


}

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":"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":"MAX_TEAM_SUPPLY","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":[{"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":"lastPrime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextPrime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":"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":[],"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"}]

6000805460ff60a01b1916600160a01b17905560e0604052602e6080818152906200163260a03960019062000035908262000135565b506040518060600160405280602e815260200162001660602e91396002906200005f908262000135565b50600160035560006004553480156200007757600080fd5b50600080546001600160a01b0319163317905562000201565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000bb57607f821691505b602082108103620000dc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200013057600081815260208120601f850160051c810160208610156200010b5750805b601f850160051c820191505b818110156200012c5782815560010162000117565b5050505b505050565b81516001600160401b0381111562000151576200015162000090565b6200016981620001628454620000a6565b84620000e2565b602080601f831160018114620001a15760008415620001885750858301515b600019600386901b1c1916600185901b1785556200012c565b600085815260208120601f198616915b82811015620001d257888601518255948401946001909101908401620001b1565b5085821015620001f15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61142180620002116000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063ba9ddfcc11610097578063def0c27511610071578063def0c27514610379578063e8a3d48514610381578063e985e9c514610389578063eb8d24441461039c57600080fd5b8063ba9ddfcc14610355578063bf8fbbd21461035e578063c87b56dd1461036657600080fd5b806395d89b41116100d357806395d89b4114610306578063a22cb46514610327578063b88d4fde1461033a578063ba7a86b81461034d57600080fd5b806370a08231146102d8578063748dc522146102eb578063938e3d7b146102f357600080fd5b806318160ddd1161016657806332cb6b0c1161014057806332cb6b0c1461029657806342842e0e1461029f57806355f804b3146102b25780636352211e146102c557600080fd5b806318160ddd146102685780631d2e5a3a1461027057806323b872dd1461028357600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc1461020a578063095ea7b3146102355780630f2cdd6c1461024a5780631249c58b14610260575b600080fd5b6101c16101bc366004610de7565b6103b0565b60405190151581526020015b60405180910390f35b60408051808201909152600f81526e44656174682050726f6f662035303160881b60208201525b6040516101cd9190610e35565b61021d610218366004610e68565b610402565b6040516001600160a01b0390911681526020016101cd565b610248610243366004610e9d565b610448565b005b610252600181565b6040519081526020016101cd565b610248610506565b600454610252565b61024861027e366004610ed7565b6105d7565b610248610291366004610ef2565b61061f565b6102526101f581565b6102486102ad366004610ef2565b61062f565b6102486102c0366004610fba565b61064a565b61021d6102d3366004610e68565b610680565b6102526102e636600461100b565b61068b565b6102526106d4565b610248610301366004610fba565b61078b565b604080518082019091526005815264445035303160d81b60208201526101fd565b610248610335366004611026565b6107c1565b610248610348366004611059565b610856565b610248610867565b61025260035481565b610252600081565b6101fd610374366004610e68565b610952565b610252600a81565b6101fd610a5b565b6101c16103973660046110d5565b610a83565b6000546101c190600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806103e157506380ac58cd60e01b6001600160e01b03198316145b806103fc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600061040f826004541190565b61042c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061045382610ab1565b9050806001600160a01b0316836001600160a01b03160361047357600080fd5b336001600160a01b038216146104aa5761048d8133610a83565b6104aa576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3360016101f58161051660045490565b6105209190611115565b111561055d5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b3360009081526006602052604090819020546001911c67ffffffffffffffff166105879083611115565b11156105c05760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610554565b6105c86106d4565b506105d38282610b18565b5050565b6000546001600160a01b031633146106015760405162461bcd60e51b815260040161055490611128565b60008054911515600160a01b0260ff60a01b19909216919091179055565b61062a838383610bf3565b505050565b61062a83838360405180602001604052806000815250610856565b6000546001600160a01b031633146106745760405162461bcd60e51b815260040161055490611128565b60026105d382826111c5565b60006103fc82610ab1565b6000816000036106ae576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000806127109050600060046003546106ed919061129b565b60026003546106fc919061129b565b6003805461070a919061129b565b6107149190611115565b61071e9190611115565b90505b818110156107865760025b8161073782806112af565b11610773576107468282610d8c565b15610761576003548211156107615750600381905592915050565b8061076b816112ce565b91505061072c565b508061077e816112ce565b915050610721565b505090565b6000546001600160a01b031633146107b55760405162461bcd60e51b815260040161055490611128565b60016105d382826111c5565b336001600160a01b038316036107ea5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610861848484610bf3565b50505050565b6000546001600160a01b031633146108915760405162461bcd60e51b815260040161055490611128565b600a6101f5816108a060045490565b6108aa9190611115565b11156108e25760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610554565b336000908152600660205260409081902054600a911c67ffffffffffffffff1661090c9083611115565b11156109455760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610554565b61094f3382610b18565b50565b606061095f826004541190565b61097c57604051630a14c4b560e41b815260040160405180910390fd5b60006002805461098b90611145565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790611145565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b505050505090508051600003610a295760405180602001604052806000815250610a54565b80610a3384610d98565b604051602001610a449291906112e7565b6040516020818303038152906040525b9392505050565b60606001604051602001610a6f9190611348565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600081600454811015610aff5760008181526005602052604081205490600160e01b82169003610afd575b80600003610a54575060001901600081815260056020526040902054610adc565b505b604051636f96cda160e11b815260040160405180910390fd5b60045482600003610b3b57604051622e076360e81b815260040160405180910390fd5b81600003610b5c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610ba75750600455505050565b6000610bfe82610ab1565b9050836001600160a01b0316816001600160a01b031614610c315760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260408120546001600160a01b0390811691908616331480610c615750610c618633610a83565b80610c7457506001600160a01b03821633145b905080610c9457604051632ce44b5f60e11b815260040160405180910390fd5b8115610cb757600084815260076020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600660209081526040808320805460001901905592881682528282208054600101905586825260059052908120600160e11b4260a01b8817811790915584169003610d4257600184016000818152600560205260408120549003610d40576004548114610d405760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000610a5482846113d7565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610dd557600183039250600a81066030018353600a9004610db7565b50819003601f19909101908152919050565b600060208284031215610df957600080fd5b81356001600160e01b031981168114610a5457600080fd5b60005b83811015610e2c578181015183820152602001610e14565b50506000910152565b6020815260008251806020840152610e54816040850160208701610e11565b601f01601f19169190910160400192915050565b600060208284031215610e7a57600080fd5b5035919050565b80356001600160a01b0381168114610e9857600080fd5b919050565b60008060408385031215610eb057600080fd5b610eb983610e81565b946020939093013593505050565b80358015158114610e9857600080fd5b600060208284031215610ee957600080fd5b610a5482610ec7565b600080600060608486031215610f0757600080fd5b610f1084610e81565b9250610f1e60208501610e81565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610f5f57610f5f610f2e565b604051601f8501601f19908116603f01168101908282118183101715610f8757610f87610f2e565b81604052809350858152868686011115610fa057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215610fcc57600080fd5b813567ffffffffffffffff811115610fe357600080fd5b8201601f81018413610ff457600080fd5b61100384823560208401610f44565b949350505050565b60006020828403121561101d57600080fd5b610a5482610e81565b6000806040838503121561103957600080fd5b61104283610e81565b915061105060208401610ec7565b90509250929050565b6000806000806080858703121561106f57600080fd5b61107885610e81565b935061108660208601610e81565b925060408501359150606085013567ffffffffffffffff8111156110a957600080fd5b8501601f810187136110ba57600080fd5b6110c987823560208401610f44565b91505092959194509250565b600080604083850312156110e857600080fd5b6110f183610e81565b915061105060208401610e81565b634e487b7160e01b600052601160045260246000fd5b808201808211156103fc576103fc6110ff565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061115957607f821691505b60208210810361117957634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561062a57600081815260208120601f850160051c810160208610156111a65750805b601f850160051c820191505b81811015610d84578281556001016111b2565b815167ffffffffffffffff8111156111df576111df610f2e565b6111f3816111ed8454611145565b8461117f565b602080601f83116001811461122857600084156112105750858301515b600019600386901b1c1916600185901b178555610d84565b600085815260208120601f198616915b8281101561125757888601518255948401946001909101908401611238565b50858210156112755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b6000826112aa576112aa611285565b500490565b60008160001904831182151516156112c9576112c96110ff565b500290565b6000600182016112e0576112e06110ff565b5060010190565b66697066733a2f2f60c81b815260008351611309816007850160208801610e11565b602f60f81b600791840191820152835161132a816008840160208801610e11565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b8152600060076000845461136681611145565b6001828116801561137e5760018114611397576113ca565b60ff1984168887015282151583028801860194506113ca565b8860005260208060002060005b858110156113bf5781548b82018a01529084019082016113a4565b505050858389010194505b5092979650505050505050565b6000826113e6576113e6611285565b50069056fea2646970667358221220a7965fab116dede4afd20c08ea4248aa65bb9f91364a14599c182d8b6fa8081364736f6c63430008100033516d566375417a774c65717841557342754a686377524a5a69383938506161443169617763665463644e72726d67516d50453143356b7239783162476d6f7761634b7a686b547641593137635537736670734e61315a6d714c514461

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063ba9ddfcc11610097578063def0c27511610071578063def0c27514610379578063e8a3d48514610381578063e985e9c514610389578063eb8d24441461039c57600080fd5b8063ba9ddfcc14610355578063bf8fbbd21461035e578063c87b56dd1461036657600080fd5b806395d89b41116100d357806395d89b4114610306578063a22cb46514610327578063b88d4fde1461033a578063ba7a86b81461034d57600080fd5b806370a08231146102d8578063748dc522146102eb578063938e3d7b146102f357600080fd5b806318160ddd1161016657806332cb6b0c1161014057806332cb6b0c1461029657806342842e0e1461029f57806355f804b3146102b25780636352211e146102c557600080fd5b806318160ddd146102685780631d2e5a3a1461027057806323b872dd1461028357600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc1461020a578063095ea7b3146102355780630f2cdd6c1461024a5780631249c58b14610260575b600080fd5b6101c16101bc366004610de7565b6103b0565b60405190151581526020015b60405180910390f35b60408051808201909152600f81526e44656174682050726f6f662035303160881b60208201525b6040516101cd9190610e35565b61021d610218366004610e68565b610402565b6040516001600160a01b0390911681526020016101cd565b610248610243366004610e9d565b610448565b005b610252600181565b6040519081526020016101cd565b610248610506565b600454610252565b61024861027e366004610ed7565b6105d7565b610248610291366004610ef2565b61061f565b6102526101f581565b6102486102ad366004610ef2565b61062f565b6102486102c0366004610fba565b61064a565b61021d6102d3366004610e68565b610680565b6102526102e636600461100b565b61068b565b6102526106d4565b610248610301366004610fba565b61078b565b604080518082019091526005815264445035303160d81b60208201526101fd565b610248610335366004611026565b6107c1565b610248610348366004611059565b610856565b610248610867565b61025260035481565b610252600081565b6101fd610374366004610e68565b610952565b610252600a81565b6101fd610a5b565b6101c16103973660046110d5565b610a83565b6000546101c190600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806103e157506380ac58cd60e01b6001600160e01b03198316145b806103fc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600061040f826004541190565b61042c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061045382610ab1565b9050806001600160a01b0316836001600160a01b03160361047357600080fd5b336001600160a01b038216146104aa5761048d8133610a83565b6104aa576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b3360016101f58161051660045490565b6105209190611115565b111561055d5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b3360009081526006602052604090819020546001911c67ffffffffffffffff166105879083611115565b11156105c05760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610554565b6105c86106d4565b506105d38282610b18565b5050565b6000546001600160a01b031633146106015760405162461bcd60e51b815260040161055490611128565b60008054911515600160a01b0260ff60a01b19909216919091179055565b61062a838383610bf3565b505050565b61062a83838360405180602001604052806000815250610856565b6000546001600160a01b031633146106745760405162461bcd60e51b815260040161055490611128565b60026105d382826111c5565b60006103fc82610ab1565b6000816000036106ae576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000806127109050600060046003546106ed919061129b565b60026003546106fc919061129b565b6003805461070a919061129b565b6107149190611115565b61071e9190611115565b90505b818110156107865760025b8161073782806112af565b11610773576107468282610d8c565b15610761576003548211156107615750600381905592915050565b8061076b816112ce565b91505061072c565b508061077e816112ce565b915050610721565b505090565b6000546001600160a01b031633146107b55760405162461bcd60e51b815260040161055490611128565b60016105d382826111c5565b336001600160a01b038316036107ea5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610861848484610bf3565b50505050565b6000546001600160a01b031633146108915760405162461bcd60e51b815260040161055490611128565b600a6101f5816108a060045490565b6108aa9190611115565b11156108e25760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610554565b336000908152600660205260409081902054600a911c67ffffffffffffffff1661090c9083611115565b11156109455760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610554565b61094f3382610b18565b50565b606061095f826004541190565b61097c57604051630a14c4b560e41b815260040160405180910390fd5b60006002805461098b90611145565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790611145565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b505050505090508051600003610a295760405180602001604052806000815250610a54565b80610a3384610d98565b604051602001610a449291906112e7565b6040516020818303038152906040525b9392505050565b60606001604051602001610a6f9190611348565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600081600454811015610aff5760008181526005602052604081205490600160e01b82169003610afd575b80600003610a54575060001901600081815260056020526040902054610adc565b505b604051636f96cda160e11b815260040160405180910390fd5b60045482600003610b3b57604051622e076360e81b815260040160405180910390fd5b81600003610b5c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610ba75750600455505050565b6000610bfe82610ab1565b9050836001600160a01b0316816001600160a01b031614610c315760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260408120546001600160a01b0390811691908616331480610c615750610c618633610a83565b80610c7457506001600160a01b03821633145b905080610c9457604051632ce44b5f60e11b815260040160405180910390fd5b8115610cb757600084815260076020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600660209081526040808320805460001901905592881682528282208054600101905586825260059052908120600160e11b4260a01b8817811790915584169003610d4257600184016000818152600560205260408120549003610d40576004548114610d405760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000610a5482846113d7565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610dd557600183039250600a81066030018353600a9004610db7565b50819003601f19909101908152919050565b600060208284031215610df957600080fd5b81356001600160e01b031981168114610a5457600080fd5b60005b83811015610e2c578181015183820152602001610e14565b50506000910152565b6020815260008251806020840152610e54816040850160208701610e11565b601f01601f19169190910160400192915050565b600060208284031215610e7a57600080fd5b5035919050565b80356001600160a01b0381168114610e9857600080fd5b919050565b60008060408385031215610eb057600080fd5b610eb983610e81565b946020939093013593505050565b80358015158114610e9857600080fd5b600060208284031215610ee957600080fd5b610a5482610ec7565b600080600060608486031215610f0757600080fd5b610f1084610e81565b9250610f1e60208501610e81565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610f5f57610f5f610f2e565b604051601f8501601f19908116603f01168101908282118183101715610f8757610f87610f2e565b81604052809350858152868686011115610fa057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215610fcc57600080fd5b813567ffffffffffffffff811115610fe357600080fd5b8201601f81018413610ff457600080fd5b61100384823560208401610f44565b949350505050565b60006020828403121561101d57600080fd5b610a5482610e81565b6000806040838503121561103957600080fd5b61104283610e81565b915061105060208401610ec7565b90509250929050565b6000806000806080858703121561106f57600080fd5b61107885610e81565b935061108660208601610e81565b925060408501359150606085013567ffffffffffffffff8111156110a957600080fd5b8501601f810187136110ba57600080fd5b6110c987823560208401610f44565b91505092959194509250565b600080604083850312156110e857600080fd5b6110f183610e81565b915061105060208401610e81565b634e487b7160e01b600052601160045260246000fd5b808201808211156103fc576103fc6110ff565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061115957607f821691505b60208210810361117957634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561062a57600081815260208120601f850160051c810160208610156111a65750805b601f850160051c820191505b81811015610d84578281556001016111b2565b815167ffffffffffffffff8111156111df576111df610f2e565b6111f3816111ed8454611145565b8461117f565b602080601f83116001811461122857600084156112105750858301515b600019600386901b1c1916600185901b178555610d84565b600085815260208120601f198616915b8281101561125757888601518255948401946001909101908401611238565b50858210156112755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b6000826112aa576112aa611285565b500490565b60008160001904831182151516156112c9576112c96110ff565b500290565b6000600182016112e0576112e06110ff565b5060010190565b66697066733a2f2f60c81b815260008351611309816007850160208801610e11565b602f60f81b600791840191820152835161132a816008840160208801610e11565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b8152600060076000845461136681611145565b6001828116801561137e5760018114611397576113ca565b60ff1984168887015282151583028801860194506113ca565b8860005260208060002060005b858110156113bf5781548b82018a01529084019082016113a4565b505050858389010194505b5092979650505050505050565b6000826113e6576113e6611285565b50069056fea2646970667358221220a7965fab116dede4afd20c08ea4248aa65bb9f91364a14599c182d8b6fa8081364736f6c63430008100033

Deployed Bytecode Sourcemap

15614:24827:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21332:615;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;21332:615:0;;;;;;;;26085:100;26172:5;;;;;;;;;;;;-1:-1:-1;;;26172:5:0;;;;26085:100;;;;;;;:::i;27894:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;27894:204:0;1338:203:1;27377:451:0;;;;;;:::i;:::-;;:::i;:::-;;15956:42;;15997:1;15956:42;;;;;2129:25:1;;;2117:2;2102:18;15956:42:0;1983:177:1;16392:319:0;;;:::i;20575:300::-;20825:13;;20575:300;;19645:102;;;;;;:::i;:::-;;:::i;28780:190::-;;;;;;:::i;:::-;;:::i;15858:40::-;;15895:3;15858:40;;29041:205;;;;;;:::i;:::-;;:::i;19755:92::-;;;;;;:::i;:::-;;:::i;25874:144::-;;;;;;:::i;:::-;;:::i;22011:234::-;;;;;;:::i;:::-;;:::i;17036:346::-;;;:::i;19855:100::-;;;;;;:::i;:::-;;:::i;26254:104::-;26343:7;;;;;;;;;;;;-1:-1:-1;;;26343:7:0;;;;26254:104;;28170:308;;;;;;:::i;:::-;;:::i;29317:227::-;;;;;;:::i;:::-;;:::i;16719:277::-;;;:::i;17004:28::-;;;;;;16005:38;;16036:7;16005:38;;26372:339;;;;;;:::i;:::-;;:::i;15905:44::-;;15947:2;15905:44;;26719:134;;;:::i;28549:164::-;;;;;;:::i;:::-;;:::i;15818:31::-;;;;;-1:-1:-1;;;15818:31:0;;;;;;21332:615;21417:4;-1:-1:-1;;;;;;;;;21717:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21794:25:0;;;21717:102;:179;;;-1:-1:-1;;;;;;;;;;21871:25:0;;;21717:179;21697:199;21332:615;-1:-1:-1;;21332:615:0:o;27894:204::-;27962:7;27987:16;27995:7;29946:13;;-1:-1:-1;29936:23:0;29799:168;27987:16;27982:64;;28012:34;;-1:-1:-1;;;28012:34:0;;;;;;;;;;;27982:64;-1:-1:-1;28066:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28066:24:0;;27894:204::o;27377:451::-;27450:13;27482:27;27501:7;27482:18;:27::i;:::-;27450:61;;27532:5;-1:-1:-1;;;;;27526:11:0;:2;-1:-1:-1;;;;;27526:11:0;;27522:25;;27539:8;;;27522:25;38428:10;-1:-1:-1;;;;;27564:28:0;;;27560:175;;27612:44;27629:5;38428:10;28549:164;:::i;27612:44::-;27607:128;;27684:35;;-1:-1:-1;;;27684:35:0;;;;;;;;;;;27607:128;27747:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;27747:29:0;-1:-1:-1;;;;;27747:29:0;;;;;;;;;27792:28;;27747:24;;27792:28;;;;;;;27439:389;27377:451;;:::o;16392:319::-;38428:10;16492:1;15895:3;16492:1;16514:13;20825;;;20575:300;16514:13;:22;;;;:::i;:::-;:36;;16506:56;;;;-1:-1:-1;;;16506:56:0;;5924:2:1;16506:56:0;;;5906:21:1;5963:1;5943:18;;;5936:29;-1:-1:-1;;;5981:18:1;;;5974:37;6028:18;;16506:56:0;;;;;;;;;16604:10;22388:7;22416:25;;;:18;:25;;17630:2;22416:25;;;;;15997:1;;22416:49;17493:13;22415:80;16581:34;;:6;:34;:::i;:::-;:52;;16573:73;;;;-1:-1:-1;;;16573:73:0;;6259:2:1;16573:73:0;;;6241:21:1;6298:1;6278:18;;;6271:29;-1:-1:-1;;;6316:18:1;;;6309:38;6364:18;;16573:73:0;6057:331:1;16573:73:0;16657:11;:9;:11::i;:::-;;16681:22;16687:7;16696:6;16681:5;:22::i;:::-;16416:295;;16392:319::o;19645:102::-;15762:6;;-1:-1:-1;;;;;15762:6:0;15770:10;15762:18;15754:34;;;;-1:-1:-1;;;15754:34:0;;;;;;;:::i;:::-;19711:12:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;19711:28:0::1;-1:-1:-1::0;;;;19711:28:0;;::::1;::::0;;;::::1;::::0;;19645:102::o;28780:190::-;28934:28;28944:4;28950:2;28954:7;28934:9;:28::i;:::-;28780:190;;;:::o;29041:205::-;29199:39;29216:4;29222:2;29226:7;29199:39;;;;;;;;;;;;:16;:39::i;19755:92::-;15762:6;;-1:-1:-1;;;;;15762:6:0;15770:10;15762:18;15754:34;;;;-1:-1:-1;;;15754:34:0;;;;;;;:::i;:::-;19824:8:::1;:15;19835:4:::0;19824:8;:15:::1;:::i;25874:144::-:0;25938:7;25981:27;26000:7;25981:18;:27::i;22011:234::-;22075:7;22117:5;22127:1;22099:29;22095:70;;22137:28;;-1:-1:-1;;;22137:28:0;;;;;;;;;;;22095:70;-1:-1:-1;;;;;;22183:25:0;;;;;:18;:25;;;;;;17493:13;22183:54;;22011:234::o;17036:346::-;17073:7;17086:9;17098:5;17086:17;;17119:8;17169:1;17159:9;;:11;;;;:::i;:::-;17155:1;17145:9;;:11;;;;:::i;:::-;17141:1;17131:9;;:11;;;;:::i;:::-;:25;;;;:::i;:::-;:39;;;;:::i;:::-;17119:52;;17114:264;17179:4;17173:3;:10;17114:264;;;17212:1;17198:175;17224:3;17215:5;17219:1;;17215:5;:::i;:::-;:12;17198:175;;17244:10;:3;17252:1;17244:7;:10::i;:::-;17240:127;17273:8;17240:127;17307:9;;17303:3;:13;17300:67;;;-1:-1:-1;17326:9:0;:15;;;17338:3;17036:346;-1:-1:-1;;17036:346:0:o;17300:67::-;17229:3;;;;:::i;:::-;;;;17198:175;;;-1:-1:-1;17185:5:0;;;;:::i;:::-;;;;17114:264;;;;17081:301;17036:346;:::o;19855:100::-;15762:6;;-1:-1:-1;;;;;15762:6:0;15770:10;15762:18;15754:34;;;;-1:-1:-1;;;15754:34:0;;;;;;;:::i;:::-;19928:12:::1;:19;19943:4:::0;19928:12;:19:::1;:::i;28170:308::-:0;38428:10;-1:-1:-1;;;;;28269:31:0;;;28265:61;;28309:17;;-1:-1:-1;;;28309:17:0;;;;;;;;;;;28265:61;38428:10;28339:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28339:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28339:60:0;;;;;;;;;;28415:55;;445:41:1;;;28339:49:0;;38428:10;28415:55;;418:18:1;28415:55:0;;;;;;;28170:308;;:::o;29317:227::-;29508:28;29518:4;29524:2;29528:7;29508:9;:28::i;:::-;29317:227;;;;:::o;16719:277::-;15762:6;;-1:-1:-1;;;;;15762:6:0;15770:10;15762:18;15754:34;;;;-1:-1:-1;;;15754:34:0;;;;;;;:::i;:::-;15947:2:::1;15895:3;15947:2:::0;16819:13:::1;20825::::0;;;20575:300;16819:13:::1;:22;;;;:::i;:::-;:36;;16811:56;;;::::0;-1:-1:-1;;;16811:56:0;;5924:2:1;16811:56:0::1;::::0;::::1;5906:21:1::0;5963:1;5943:18;;;5936:29;-1:-1:-1;;;5981:18:1;;;5974:37;6028:18;;16811:56:0::1;5722:330:1::0;16811:56:0::1;16909:10;22388:7:::0;22416:25;;;:18;:25;;17630:2;22416:25;;;;;15947:2:::1;::::0;22416:49;17493:13;22415:80;16886:34:::1;::::0;:6;:34:::1;:::i;:::-;:53;;16878:74;;;::::0;-1:-1:-1;;;16878:74:0;;6259:2:1;16878:74:0::1;::::0;::::1;6241:21:1::0;6298:1;6278:18;;;6271:29;-1:-1:-1;;;6316:18:1;;;6309:38;6364:18;;16878:74:0::1;6057:331:1::0;16878:74:0::1;16963:25;16969:10;16981:6;16963:5;:25::i;:::-;16757:239;16719:277::o:0;26372:339::-;26445:13;26476:16;26484:7;29946:13;;-1:-1:-1;29936:23:0;29799:168;26476:16;26471:59;;26501:29;;-1:-1:-1;;;26501:29:0;;;;;;;;;;;26471:59;26541:21;26565:8;26541:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26597:7;26591:21;26616:1;26591:26;:112;;;;;;;;;;;;;;;;;26655:7;26669:18;26679:7;26669:9;:18::i;:::-;26627:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26591:112;26584:119;26372:339;-1:-1:-1;;;26372:339:0:o;26719:134::-;26763:13;26831:12;26803:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;26789:56;;26719:134;:::o;28549:164::-;-1:-1:-1;;;;;28670:25:0;;;28646:4;28670:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28549:164::o;23389:1129::-;23456:7;23491;23593:13;;23586:4;:20;23582:869;;;23631:14;23648:23;;;:17;:23;;;;;;;-1:-1:-1;;;23737:23:0;;:28;;23733:699;;24256:113;24263:6;24273:1;24263:11;24256:113;;-1:-1:-1;;;24334:6:0;24316:25;;;;:17;:25;;;;;;24256:113;;23733:699;23608:843;23582:869;24479:31;;-1:-1:-1;;;24479:31:0;;;;;;;;;;;32819:1594;32907:13;;32953:2;32960:1;32935:26;32931:58;;32970:19;;-1:-1:-1;;;32970:19:0;;;;;;;;;;;32931:58;33004:8;33016:1;33004:13;33000:44;;33026:18;;-1:-1:-1;;;33026:18:0;;;;;;;;;;;33000:44;-1:-1:-1;;;;;33521:22:0;;;;;;:18;:22;;;;17630:2;33521:22;;;:70;;33559:31;33547:44;;33521:70;;;33834:31;;;:17;:31;;;;;33927:15;18147:3;33927:41;33885:84;;-1:-1:-1;34005:13:0;;18406:3;33990:56;33885:162;33834:213;;:31;34128:23;;;34168:111;34195:40;;34220:14;;;;;-1:-1:-1;;;;;34195:40:0;;;34212:1;;34195:40;;34212:1;;34195:40;34274:3;34259:12;:18;34168:111;;-1:-1:-1;34295:13:0;:28;28780:190;;;:::o;34667:2636::-;34804:27;34834;34853:7;34834:18;:27::i;:::-;34804:57;;34919:4;-1:-1:-1;;;;;34878:45:0;34894:19;-1:-1:-1;;;;;34878:45:0;;34874:86;;34932:28;;-1:-1:-1;;;34932:28:0;;;;;;;;;;;34874:86;34973:23;34999:24;;;:15;:24;;;;;;-1:-1:-1;;;;;34999:24:0;;;;34973:23;35062:27;;38428:10;35062:27;;:91;;-1:-1:-1;35110:43:0;35127:4;38428:10;28549:164;:::i;35110:43::-;35062:150;;;-1:-1:-1;;;;;;35174:38:0;;38428:10;35174:38;35062:150;35036:177;;35231:17;35226:66;;35257:35;;-1:-1:-1;;;35257:35:0;;;;;;;;;;;35226:66;35461:15;35443:39;35439:103;;35506:24;;;;:15;:24;;;;;35499:31;;-1:-1:-1;;;;;;35499:31:0;;;35439:103;-1:-1:-1;;;;;35909:24:0;;;;;;;:18;:24;;;;;;;;35907:26;;-1:-1:-1;;35907:26:0;;;35978:22;;;;;;;;35976:24;;-1:-1:-1;35976:24:0;;;36271:26;;;:17;:26;;;;;-1:-1:-1;;;36359:15:0;18147:3;36359:41;36317:84;;:128;;36271:174;;;36565:46;;:51;;36561:626;;36669:1;36659:11;;36637:19;36792:30;;;:17;:30;;;;;;:35;;36788:384;;36930:13;;36915:11;:28;36911:242;;37077:30;;;;:17;:30;;;;;:52;;;36911:242;36618:569;36561:626;37234:7;37230:2;-1:-1:-1;;;;;37215:27:0;37224:4;-1:-1:-1;;;;;37215:27:0;;;;;;;;;;;37253:42;34791:2512;;;34667:2636;;;:::o;13145:98::-;13203:7;13230:5;13234:1;13230;:5;:::i;38552:1882::-;39023:4;39017:11;;39030:3;39013:21;;39104:17;;;;39776:11;;;39653:5;39910:2;39924;39914:13;;39906:22;39776:11;39893:36;39966:2;39956:13;;39550:661;39982:4;39550:661;;;40150:1;40145:3;40141:11;40134:18;;40194:2;40188:4;40184:13;40180:2;40176:22;40171:3;40163:36;40067:2;40057:13;;39550:661;;;-1:-1:-1;40234:13:0;;;-1:-1:-1;;40343:12:0;;;40397:19;;;40343:12;38552:1882;-1:-1:-1;38552:1882:0:o;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:127::-;5521:10;5516:3;5512:20;5509:1;5502:31;5552:4;5549:1;5542:15;5576:4;5573:1;5566:15;5592:125;5657:9;;;5678:10;;;5675:36;;;5691:18;;:::i;6393:326::-;6595:2;6577:21;;;6634:1;6614:18;;;6607:29;-1:-1:-1;;;6667:2:1;6652:18;;6645:33;6710:2;6695:18;;6393:326::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;9313:127::-;9374:10;9369:3;9365:20;9362:1;9355:31;9405:4;9402:1;9395:15;9429:4;9426:1;9419:15;9445:120;9485:1;9511;9501:35;;9516:18;;:::i;:::-;-1:-1:-1;9550:9:1;;9445:120::o;9570:168::-;9610:7;9676:1;9672;9668:6;9664:14;9661:1;9658:21;9653:1;9646:9;9639:17;9635:45;9632:71;;;9683:18;;:::i;:::-;-1:-1:-1;9723:9:1;;9570:168::o;9743:135::-;9782:3;9803:17;;;9800:43;;9823:18;;:::i;:::-;-1:-1:-1;9870:1:1;9859:13;;9743:135::o;9883:935::-;-1:-1:-1;;;10390:3:1;10383:22;10365:3;10434:6;10428:13;10450:74;10517:6;10513:1;10508:3;10504:11;10497:4;10489:6;10485:17;10450:74;:::i;:::-;-1:-1:-1;;;10583:1:1;10543:16;;;10575:10;;;10568:23;10616:13;;10638:75;10616:13;10700:1;10692:10;;10685:4;10673:17;;10638:75;:::i;:::-;-1:-1:-1;;;10773:1:1;10732:17;;;;10765:10;;;10758:27;10809:2;10801:11;;9883:935;-1:-1:-1;;;;9883:935:1:o;10823:1030::-;-1:-1:-1;;;11077:3:1;11070:22;11052:3;11111:1;11132;11165:6;11159:13;11195:36;11221:9;11195:36;:::i;:::-;11250:1;11267:18;;;11294:151;;;;11459:1;11454:374;;;;11260:568;;11294:151;-1:-1:-1;;11336:24:1;;11322:12;;;11315:46;11413:14;;11406:22;11394:35;;11385:45;;11381:54;;;-1:-1:-1;11294:151:1;;11454:374;11485:6;11482:1;11475:17;11515:4;11560:2;11557:1;11547:16;11585:1;11599:174;11613:6;11610:1;11607:13;11599:174;;;11700:14;;11682:11;;;11678:20;;11671:44;11743:16;;;;11628:10;;11599:174;;;11603:3;;;11815:2;11806:6;11801:3;11797:16;11793:25;11786:32;;11260:568;-1:-1:-1;11844:3:1;;10823:1030;-1:-1:-1;;;;;;;10823:1030:1:o;11858:112::-;11890:1;11916;11906:35;;11921:18;;:::i;:::-;-1:-1:-1;11955:9:1;;11858:112::o

Swarm Source

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