ETH Price: $2,505.97 (-0.41%)
Gas: 2 Gwei

Token

Evil Rise (EVILRISE)
 

Overview

Max Total Supply

666 EVILRISE

Holders

641

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
GoblinHorses: Deployer
Balance
1 EVILRISE
0x5f14e67ffbd78fa2544724b5fd6b0a99288e742c
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:
EvilRise

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-23
*/

/**
 *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 EvilRise 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 = 666;
    uint256 public constant MAX_FREE_PER_WALLET = 1;
    uint256 public constant MAX_PER_WALLET = 10;
    uint256 public constant COST = 0.00333 ether;

    string private constant _name = "Evil Rise";
    string private constant _symbol = "EVILRISE";
    string private _contractURI = "";
    string private _baseURI = "";

    constructor() {
        _owner = msg.sender;
    }

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

        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_FREE_PER_WALLET, "AccLimit");
        if(totalSupply()>300){
            evil();
        }
        _mint(_caller, amount);
    }

    function mint(uint256 amount) external payable{
        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_PER_WALLET+MAX_FREE_PER_WALLET, "AccLimit");
        require(amount*COST <= msg.value, "Value to low");
        _mint(msg.sender, amount);
    }

    uint256 public lastEvil = 1;
	function evil() public returns (uint256){
		uint runs = 10000;
        for (uint num = (lastEvil/3 + lastEvil/2); num < runs; num++) {
			for( uint j = 2; j * j <= num; j++){
				if((num.mod(j)==0))
				{
					continue;
				}
				else if(num>lastEvil){ 
					lastEvil = 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)
        }
    }

    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":"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":[{"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":"evil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[],"name":"lastEvil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"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"}]

6000805460ff60a01b1916600160a01b17815560a060405260809081526001906200002b908262000120565b506040805160208101909152600081526002906200004a908262000120565b50600160035560006004553480156200006257600080fd5b50600080546001600160a01b03191633179055620001ec565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000a657607f821691505b602082108103620000c757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200011b57600081815260208120601f850160051c81016020861015620000f65750805b601f850160051c820191505b81811015620001175782815560010162000102565b5050505b505050565b81516001600160401b038111156200013c576200013c6200007b565b62000154816200014d845462000091565b84620000cd565b602080601f8311600181146200018c5760008415620001735750858301515b600019600386901b1c1916600185901b17855562000117565b600085815260208120601f198616915b82811015620001bd578886015182559484019460019091019084016200019c565b5085821015620001dc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61162780620001fc6000396000f3fe6080604052600436106101b75760003560e01c806367b98108116100ec578063b88d4fde1161008a578063db606d8011610064578063db606d80146104c8578063e8a3d485146104dd578063e985e9c5146104f2578063eb8d24441461051257600080fd5b8063b88d4fde1461046d578063bf8fbbd21461048d578063c87b56dd146104a857600080fd5b806395d89b41116100c657806395d89b41146103f457806398710d1e14610425578063a0712d681461043a578063a22cb4651461044d57600080fd5b806367b981081461039e57806370a08231146103b4578063938e3d7b146103d457600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e1461032957806355f804b3146103495780635b70ea9f146103695780636352211e1461037e57600080fd5b806323b872dd146102de57806332cb6b0c146102fe5780633ccfd60b1461031457600080fd5b8063095ea7b311610195578063095ea7b3146102645780630f2cdd6c1461028657806318160ddd146102a95780631d2e5a3a146102be57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc1461022c575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004610fed565b610533565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506040805180820190915260098152684576696c205269736560b81b60208201525b6040516101e8919061103b565b34801561023857600080fd5b5061024c61024736600461106e565b610585565b6040516001600160a01b0390911681526020016101e8565b34801561027057600080fd5b5061028461027f3660046110a3565b6105cb565b005b34801561029257600080fd5b5061029b600a81565b6040519081526020016101e8565b3480156102b557600080fd5b5060045461029b565b3480156102ca57600080fd5b506102846102d93660046110dd565b610689565b3480156102ea57600080fd5b506102846102f93660046110f8565b6106da565b34801561030a57600080fd5b5061029b61029a81565b34801561032057600080fd5b506102846106ea565b34801561033557600080fd5b506102846103443660046110f8565b610747565b34801561035557600080fd5b506102846103643660046111c0565b610762565b34801561037557600080fd5b50610284610798565b34801561038a57600080fd5b5061024c61039936600461106e565b610873565b3480156103aa57600080fd5b5061029b60035481565b3480156103c057600080fd5b5061029b6103cf366004611211565b61087e565b3480156103e057600080fd5b506102846103ef3660046111c0565b6108c7565b34801561040057600080fd5b506040805180820190915260088152674556494c5249534560c01b602082015261021f565b34801561043157600080fd5b5061029b600181565b61028461044836600461106e565b6108fd565b34801561045957600080fd5b5061028461046836600461122c565b610a14565b34801561047957600080fd5b5061028461048836600461125f565b610aa9565b34801561049957600080fd5b5061029b660bd49e0b1a200081565b3480156104b457600080fd5b5061021f6104c336600461106e565b610aba565b3480156104d457600080fd5b5061029b610bc3565b3480156104e957600080fd5b5061021f610c61565b3480156104fe57600080fd5b506101dc61050d3660046112db565b610c89565b34801561051e57600080fd5b506000546101dc90600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061056457506380ac58cd60e01b6001600160e01b03198316145b8061057f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610592826004541190565b6105af576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006105d682610cb7565b9050806001600160a01b0316836001600160a01b0316036105f657600080fd5b336001600160a01b0382161461062d576106108133610c89565b61062d576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146106bc5760405162461bcd60e51b81526004016106b390611305565b60405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b6106e5838383610d1e565b505050565b6000546001600160a01b031633146107145760405162461bcd60e51b81526004016106b390611305565b6040514790339082156108fc029083906000818181858888f19350505050158015610743573d6000803e3d6000fd5b5050565b6106e583838360405180602001604052806000815250610aa9565b6000546001600160a01b0316331461078c5760405162461bcd60e51b81526004016106b390611305565b600261074382826113a2565b33600161029a816107a860045490565b6107b29190611478565b11156107ea5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016106b3565b3360009081526006602052604090819020546001911c67ffffffffffffffff166108149083611478565b111561084d5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016106b3565b61012c61085960045490565b111561086957610867610bc3565b505b6107438282610eb7565b600061057f82610cb7565b6000816000036108a1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146108f15760405162461bcd60e51b81526004016106b390611305565b600161074382826113a2565b61029a8161090a60045490565b6109149190611478565b111561094c5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016106b3565b6109586001600a611478565b33600090815260066020526040908190205461097f911c67ffffffffffffffff1683611478565b11156109b85760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016106b3565b346109ca660bd49e0b1a20008361148b565b1115610a075760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f206c6f7760a01b60448201526064016106b3565b610a113382610eb7565b50565b336001600160a01b03831603610a3d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ab4848484610d1e565b50505050565b6060610ac7826004541190565b610ae457604051630a14c4b560e41b815260040160405180910390fd5b600060028054610af390611322565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f90611322565b8015610b6c5780601f10610b4157610100808354040283529160200191610b6c565b820191906000526020600020905b815481529060010190602001808311610b4f57829003601f168201915b505050505090508051600003610b915760405180602001604052806000815250610bbc565b80610b9b84610f92565b604051602001610bac9291906114aa565b6040516020818303038152906040525b9392505050565b600080612710905060006002600354610bdc9190611521565b60038054610bea9190611521565b610bf49190611478565b90505b81811015610c5c5760025b81610c0d828061148b565b11610c4957610c1c8282610fe1565b15610c3757600354821115610c375750600381905592915050565b80610c4181611535565b915050610c02565b5080610c5481611535565b915050610bf7565b505090565b60606001604051602001610c75919061154e565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600081600454811015610d055760008181526005602052604081205490600160e01b82169003610d03575b80600003610bbc575060001901600081815260056020526040902054610ce2565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610d2982610cb7565b9050836001600160a01b0316816001600160a01b031614610d5c5760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260408120546001600160a01b0390811691908616331480610d8c5750610d8c8633610c89565b80610d9f57506001600160a01b03821633145b905080610dbf57604051632ce44b5f60e11b815260040160405180910390fd5b8115610de257600084815260076020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600660209081526040808320805460001901905592881682528282208054600101905586825260059052908120600160e11b4260a01b8817811790915584169003610e6d57600184016000818152600560205260408120549003610e6b576004548114610e6b5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60045482600003610eda57604051622e076360e81b815260040160405180910390fd5b81600003610efb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610f465750600455505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610fcf57600183039250600a81066030018353600a9004610fb1565b50819003601f19909101908152919050565b6000610bbc82846115dd565b600060208284031215610fff57600080fd5b81356001600160e01b031981168114610bbc57600080fd5b60005b8381101561103257818101518382015260200161101a565b50506000910152565b602081526000825180602084015261105a816040850160208701611017565b601f01601f19169190910160400192915050565b60006020828403121561108057600080fd5b5035919050565b80356001600160a01b038116811461109e57600080fd5b919050565b600080604083850312156110b657600080fd5b6110bf83611087565b946020939093013593505050565b8035801515811461109e57600080fd5b6000602082840312156110ef57600080fd5b610bbc826110cd565b60008060006060848603121561110d57600080fd5b61111684611087565b925061112460208501611087565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561116557611165611134565b604051601f8501601f19908116603f0116810190828211818310171561118d5761118d611134565b816040528093508581528686860111156111a657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156111d257600080fd5b813567ffffffffffffffff8111156111e957600080fd5b8201601f810184136111fa57600080fd5b6112098482356020840161114a565b949350505050565b60006020828403121561122357600080fd5b610bbc82611087565b6000806040838503121561123f57600080fd5b61124883611087565b9150611256602084016110cd565b90509250929050565b6000806000806080858703121561127557600080fd5b61127e85611087565b935061128c60208601611087565b925060408501359150606085013567ffffffffffffffff8111156112af57600080fd5b8501601f810187136112c057600080fd5b6112cf8782356020840161114a565b91505092959194509250565b600080604083850312156112ee57600080fd5b6112f783611087565b915061125660208401611087565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061133657607f821691505b60208210810361135657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106e557600081815260208120601f850160051c810160208610156113835750805b601f850160051c820191505b81811015610eaf5782815560010161138f565b815167ffffffffffffffff8111156113bc576113bc611134565b6113d0816113ca8454611322565b8461135c565b602080601f83116001811461140557600084156113ed5750858301515b600019600386901b1c1916600185901b178555610eaf565b600085815260208120601f198616915b8281101561143457888601518255948401946001909101908401611415565b50858210156114525787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561057f5761057f611462565b60008160001904831182151516156114a5576114a5611462565b500290565b66697066733a2f2f60c81b8152600083516114cc816007850160208801611017565b602f60f81b60079184019182015283516114ed816008840160208801611017565b64173539b7b760d91b60089290910191820152600d01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826115305761153061150b565b500490565b60006001820161154757611547611462565b5060010190565b66697066733a2f2f60c81b8152600060076000845461156c81611322565b60018281168015611584576001811461159d576115d0565b60ff1984168887015282151583028801860194506115d0565b8860005260208060002060005b858110156115c55781548b82018a01529084019082016115aa565b505050858389010194505b5092979650505050505050565b6000826115ec576115ec61150b565b50069056fea2646970667358221220b1ee7e2d71aba65ad060e617745d64cb8d3d82df3d8207c9e144411bb54bedae64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806367b98108116100ec578063b88d4fde1161008a578063db606d8011610064578063db606d80146104c8578063e8a3d485146104dd578063e985e9c5146104f2578063eb8d24441461051257600080fd5b8063b88d4fde1461046d578063bf8fbbd21461048d578063c87b56dd146104a857600080fd5b806395d89b41116100c657806395d89b41146103f457806398710d1e14610425578063a0712d681461043a578063a22cb4651461044d57600080fd5b806367b981081461039e57806370a08231146103b4578063938e3d7b146103d457600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e1461032957806355f804b3146103495780635b70ea9f146103695780636352211e1461037e57600080fd5b806323b872dd146102de57806332cb6b0c146102fe5780633ccfd60b1461031457600080fd5b8063095ea7b311610195578063095ea7b3146102645780630f2cdd6c1461028657806318160ddd146102a95780631d2e5a3a146102be57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc1461022c575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004610fed565b610533565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506040805180820190915260098152684576696c205269736560b81b60208201525b6040516101e8919061103b565b34801561023857600080fd5b5061024c61024736600461106e565b610585565b6040516001600160a01b0390911681526020016101e8565b34801561027057600080fd5b5061028461027f3660046110a3565b6105cb565b005b34801561029257600080fd5b5061029b600a81565b6040519081526020016101e8565b3480156102b557600080fd5b5060045461029b565b3480156102ca57600080fd5b506102846102d93660046110dd565b610689565b3480156102ea57600080fd5b506102846102f93660046110f8565b6106da565b34801561030a57600080fd5b5061029b61029a81565b34801561032057600080fd5b506102846106ea565b34801561033557600080fd5b506102846103443660046110f8565b610747565b34801561035557600080fd5b506102846103643660046111c0565b610762565b34801561037557600080fd5b50610284610798565b34801561038a57600080fd5b5061024c61039936600461106e565b610873565b3480156103aa57600080fd5b5061029b60035481565b3480156103c057600080fd5b5061029b6103cf366004611211565b61087e565b3480156103e057600080fd5b506102846103ef3660046111c0565b6108c7565b34801561040057600080fd5b506040805180820190915260088152674556494c5249534560c01b602082015261021f565b34801561043157600080fd5b5061029b600181565b61028461044836600461106e565b6108fd565b34801561045957600080fd5b5061028461046836600461122c565b610a14565b34801561047957600080fd5b5061028461048836600461125f565b610aa9565b34801561049957600080fd5b5061029b660bd49e0b1a200081565b3480156104b457600080fd5b5061021f6104c336600461106e565b610aba565b3480156104d457600080fd5b5061029b610bc3565b3480156104e957600080fd5b5061021f610c61565b3480156104fe57600080fd5b506101dc61050d3660046112db565b610c89565b34801561051e57600080fd5b506000546101dc90600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061056457506380ac58cd60e01b6001600160e01b03198316145b8061057f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610592826004541190565b6105af576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006105d682610cb7565b9050806001600160a01b0316836001600160a01b0316036105f657600080fd5b336001600160a01b0382161461062d576106108133610c89565b61062d576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146106bc5760405162461bcd60e51b81526004016106b390611305565b60405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b6106e5838383610d1e565b505050565b6000546001600160a01b031633146107145760405162461bcd60e51b81526004016106b390611305565b6040514790339082156108fc029083906000818181858888f19350505050158015610743573d6000803e3d6000fd5b5050565b6106e583838360405180602001604052806000815250610aa9565b6000546001600160a01b0316331461078c5760405162461bcd60e51b81526004016106b390611305565b600261074382826113a2565b33600161029a816107a860045490565b6107b29190611478565b11156107ea5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016106b3565b3360009081526006602052604090819020546001911c67ffffffffffffffff166108149083611478565b111561084d5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016106b3565b61012c61085960045490565b111561086957610867610bc3565b505b6107438282610eb7565b600061057f82610cb7565b6000816000036108a1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146108f15760405162461bcd60e51b81526004016106b390611305565b600161074382826113a2565b61029a8161090a60045490565b6109149190611478565b111561094c5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016106b3565b6109586001600a611478565b33600090815260066020526040908190205461097f911c67ffffffffffffffff1683611478565b11156109b85760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016106b3565b346109ca660bd49e0b1a20008361148b565b1115610a075760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f206c6f7760a01b60448201526064016106b3565b610a113382610eb7565b50565b336001600160a01b03831603610a3d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ab4848484610d1e565b50505050565b6060610ac7826004541190565b610ae457604051630a14c4b560e41b815260040160405180910390fd5b600060028054610af390611322565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f90611322565b8015610b6c5780601f10610b4157610100808354040283529160200191610b6c565b820191906000526020600020905b815481529060010190602001808311610b4f57829003601f168201915b505050505090508051600003610b915760405180602001604052806000815250610bbc565b80610b9b84610f92565b604051602001610bac9291906114aa565b6040516020818303038152906040525b9392505050565b600080612710905060006002600354610bdc9190611521565b60038054610bea9190611521565b610bf49190611478565b90505b81811015610c5c5760025b81610c0d828061148b565b11610c4957610c1c8282610fe1565b15610c3757600354821115610c375750600381905592915050565b80610c4181611535565b915050610c02565b5080610c5481611535565b915050610bf7565b505090565b60606001604051602001610c75919061154e565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600081600454811015610d055760008181526005602052604081205490600160e01b82169003610d03575b80600003610bbc575060001901600081815260056020526040902054610ce2565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610d2982610cb7565b9050836001600160a01b0316816001600160a01b031614610d5c5760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260408120546001600160a01b0390811691908616331480610d8c5750610d8c8633610c89565b80610d9f57506001600160a01b03821633145b905080610dbf57604051632ce44b5f60e11b815260040160405180910390fd5b8115610de257600084815260076020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600660209081526040808320805460001901905592881682528282208054600101905586825260059052908120600160e11b4260a01b8817811790915584169003610e6d57600184016000818152600560205260408120549003610e6b576004548114610e6b5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60045482600003610eda57604051622e076360e81b815260040160405180910390fd5b81600003610efb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610f465750600455505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610fcf57600183039250600a81066030018353600a9004610fb1565b50819003601f19909101908152919050565b6000610bbc82846115dd565b600060208284031215610fff57600080fd5b81356001600160e01b031981168114610bbc57600080fd5b60005b8381101561103257818101518382015260200161101a565b50506000910152565b602081526000825180602084015261105a816040850160208701611017565b601f01601f19169190910160400192915050565b60006020828403121561108057600080fd5b5035919050565b80356001600160a01b038116811461109e57600080fd5b919050565b600080604083850312156110b657600080fd5b6110bf83611087565b946020939093013593505050565b8035801515811461109e57600080fd5b6000602082840312156110ef57600080fd5b610bbc826110cd565b60008060006060848603121561110d57600080fd5b61111684611087565b925061112460208501611087565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561116557611165611134565b604051601f8501601f19908116603f0116810190828211818310171561118d5761118d611134565b816040528093508581528686860111156111a657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156111d257600080fd5b813567ffffffffffffffff8111156111e957600080fd5b8201601f810184136111fa57600080fd5b6112098482356020840161114a565b949350505050565b60006020828403121561122357600080fd5b610bbc82611087565b6000806040838503121561123f57600080fd5b61124883611087565b9150611256602084016110cd565b90509250929050565b6000806000806080858703121561127557600080fd5b61127e85611087565b935061128c60208601611087565b925060408501359150606085013567ffffffffffffffff8111156112af57600080fd5b8501601f810187136112c057600080fd5b6112cf8782356020840161114a565b91505092959194509250565b600080604083850312156112ee57600080fd5b6112f783611087565b915061125660208401611087565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061133657607f821691505b60208210810361135657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106e557600081815260208120601f850160051c810160208610156113835750805b601f850160051c820191505b81811015610eaf5782815560010161138f565b815167ffffffffffffffff8111156113bc576113bc611134565b6113d0816113ca8454611322565b8461135c565b602080601f83116001811461140557600084156113ed5750858301515b600019600386901b1c1916600185901b178555610eaf565b600085815260208120601f198616915b8281101561143457888601518255948401946001909101908401611415565b50858210156114525787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561057f5761057f611462565b60008160001904831182151516156114a5576114a5611462565b500290565b66697066733a2f2f60c81b8152600083516114cc816007850160208801611017565b602f60f81b60079184019182015283516114ed816008840160208801611017565b64173539b7b760d91b60089290910191820152600d01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826115305761153061150b565b500490565b60006001820161154757611547611462565b5060010190565b66697066733a2f2f60c81b8152600060076000845461156c81611322565b60018281168015611584576001811461159d576115d0565b60ff1984168887015282151583028801860194506115d0565b8860005260208060002060005b858110156115c55781548b82018a01529084019082016115aa565b505050858389010194505b5092979650505050505050565b6000826115ec576115ec61150b565b50069056fea2646970667358221220b1ee7e2d71aba65ad060e617745d64cb8d3d82df3d8207c9e144411bb54bedae64736f6c63430008100033

Deployed Bytecode Sourcemap

15614:24945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21301:615;;;;;;;;;;-1:-1:-1;21301:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;21301:615:0;;;;;;;;26054:100;;;;;;;;;;-1:-1:-1;26141:5:0;;;;;;;;;;;;-1:-1:-1;;;26141:5:0;;;;26054:100;;;;;;;:::i;27863:204::-;;;;;;;;;;-1:-1:-1;27863:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;27863:204:0;1338:203:1;27346:451:0;;;;;;;;;;-1:-1:-1;27346:451:0;;;;;:::i;:::-;;:::i;:::-;;15952:43;;;;;;;;;;;;15993:2;15952:43;;;;;2129:25:1;;;2117:2;2102:18;15952:43:0;1983:177:1;20544:300:0;;;;;;;;;;-1:-1:-1;20794:13:0;;20544:300;;19614:102;;;;;;;;;;-1:-1:-1;19614:102:0;;;;;:::i;:::-;;:::i;28749:190::-;;;;;;;;;;-1:-1:-1;28749:190:0;;;;;:::i;:::-;;:::i;15851:40::-;;;;;;;;;;;;15888:3;15851:40;;40411:145;;;;;;;;;;;;;:::i;29010:205::-;;;;;;;;;;-1:-1:-1;29010:205:0;;;;;:::i;:::-;;:::i;19724:92::-;;;;;;;;;;-1:-1:-1;19724:92:0;;;;;:::i;:::-;;:::i;16292:368::-;;;;;;;;;;;;;:::i;25843:144::-;;;;;;;;;;-1:-1:-1;25843:144:0;;;;;:::i;:::-;;:::i;16997:27::-;;;;;;;;;;;;;;;;21980:234;;;;;;;;;;-1:-1:-1;21980:234:0;;;;;:::i;:::-;;:::i;19824:100::-;;;;;;;;;;-1:-1:-1;19824:100:0;;;;;:::i;:::-;;:::i;26223:104::-;;;;;;;;;;-1:-1:-1;26312:7:0;;;;;;;;;;;;-1:-1:-1;;;26312:7:0;;;;26223:104;;15898:47;;;;;;;;;;;;15944:1;15898:47;;16668:321;;;;;;:::i;:::-;;:::i;28139:308::-;;;;;;;;;;-1:-1:-1;28139:308:0;;;;;:::i;:::-;;:::i;29286:227::-;;;;;;;;;;-1:-1:-1;29286:227:0;;;;;:::i;:::-;;:::i;16002:44::-;;;;;;;;;;;;16033:13;16002:44;;26341:339;;;;;;;;;;-1:-1:-1;26341:339:0;;;;;:::i;:::-;;:::i;17028:323::-;;;;;;;;;;;;;:::i;26688:134::-;;;;;;;;;;;;;:::i;28518:164::-;;;;;;;;;;-1:-1:-1;28518:164:0;;;;;:::i;:::-;;:::i;15813:31::-;;;;;;;;;;-1:-1:-1;15813:31:0;;;;-1:-1:-1;;;15813:31:0;;;;;;21301:615;21386:4;-1:-1:-1;;;;;;;;;21686:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21763:25:0;;;21686:102;:179;;;-1:-1:-1;;;;;;;;;;21840:25:0;;;21686:179;21666:199;21301:615;-1:-1:-1;;21301:615:0:o;27863:204::-;27931:7;27956:16;27964:7;29915:13;;-1:-1:-1;29905:23:0;29768:168;27956:16;27951:64;;27981:34;;-1:-1:-1;;;27981:34:0;;;;;;;;;;;27951:64;-1:-1:-1;28035:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28035:24:0;;27863:204::o;27346:451::-;27419:13;27451:27;27470:7;27451:18;:27::i;:::-;27419:61;;27501:5;-1:-1:-1;;;;;27495:11:0;:2;-1:-1:-1;;;;;27495:11:0;;27491:25;;27508:8;;;27491:25;38397:10;-1:-1:-1;;;;;27533:28:0;;;27529:175;;27581:44;27598:5;38397:10;28518:164;:::i;27581:44::-;27576:128;;27653:35;;-1:-1:-1;;;27653:35:0;;;;;;;;;;;27576:128;27716:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;27716:29:0;-1:-1:-1;;;;;27716:29:0;;;;;;;;;27761:28;;27716:24;;27761:28;;;;;;;27408:389;27346:451;;:::o;19614:102::-;15757:6;;-1:-1:-1;;;;;15757:6:0;15765:10;15757:18;15749:34;;;;-1:-1:-1;;;15749:34:0;;;;;;;:::i;:::-;;;;;;;;;19680:12:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;19680:28:0::1;-1:-1:-1::0;;;;19680:28:0;;::::1;::::0;;;::::1;::::0;;19614:102::o;28749:190::-;28903:28;28913:4;28919:2;28923:7;28903:9;:28::i;:::-;28749:190;;;:::o;40411:145::-;15757:6;;-1:-1:-1;;;;;15757:6:0;15765:10;15757:18;15749:34;;;;-1:-1:-1;;;15749:34:0;;;;;;;:::i;:::-;40511:37:::1;::::0;40479:21:::1;::::0;40519:10:::1;::::0;40511:37;::::1;;;::::0;40479:21;;40461:15:::1;40511:37:::0;40461:15;40511:37;40479:21;40519:10;40511:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40450:106;40411:145::o:0;29010:205::-;29168:39;29185:4;29191:2;29195:7;29168:39;;;;;;;;;;;;:16;:39::i;19724:92::-;15757:6;;-1:-1:-1;;;;;15757:6:0;15765:10;15757:18;15749:34;;;;-1:-1:-1;;;15749:34:0;;;;;;;:::i;:::-;19793:8:::1;:15;19804:4:::0;19793:8;:15:::1;:::i;16292:368::-:0;38397:10;16396:1;15888:3;16396:1;16418:13;20794;;;20544:300;16418:13;:22;;;;:::i;:::-;:36;;16410:56;;;;-1:-1:-1;;;16410:56:0;;8844:2:1;16410:56:0;;;8826:21:1;8883:1;8863:18;;;8856:29;-1:-1:-1;;;8901:18:1;;;8894:37;8948:18;;16410:56:0;8642:330:1;16410:56:0;16508:10;22357:7;22385:25;;;:18;:25;;17599:2;22385:25;;;;;15944:1;;22385:49;17462:13;22384:80;16485:34;;:6;:34;:::i;:::-;:57;;16477:78;;;;-1:-1:-1;;;16477:78:0;;9179:2:1;16477:78:0;;;9161:21:1;9218:1;9198:18;;;9191:29;-1:-1:-1;;;9236:18:1;;;9229:38;9284:18;;16477:78:0;8977:331:1;16477:78:0;16583:3;16569:13;20794;;;20544:300;16569:13;:17;16566:54;;;16602:6;:4;:6::i;:::-;;16566:54;16630:22;16636:7;16645:6;16630:5;:22::i;25843:144::-;25907:7;25950:27;25969:7;25950:18;:27::i;21980:234::-;22044:7;22086:5;22096:1;22068:29;22064:70;;22106:28;;-1:-1:-1;;;22106:28:0;;;;;;;;;;;22064:70;-1:-1:-1;;;;;;22152:25:0;;;;;:18;:25;;;;;;17462:13;22152:54;;21980:234::o;19824:100::-;15757:6;;-1:-1:-1;;;;;15757:6:0;15765:10;15757:18;15749:34;;;;-1:-1:-1;;;15749:34:0;;;;;;;:::i;:::-;19897:12:::1;:19;19912:4:::0;19897:12;:19:::1;:::i;16668:321::-:0;15888:3;16749:6;16733:13;20794;;;20544:300;16733:13;:22;;;;:::i;:::-;:36;;16725:56;;;;-1:-1:-1;;;16725:56:0;;8844:2:1;16725:56:0;;;8826:21:1;8883:1;8863:18;;;8856:29;-1:-1:-1;;;8901:18:1;;;8894:37;8948:18;;16725:56:0;8642:330:1;16725:56:0;16838:34;15944:1;15993:2;16838:34;:::i;:::-;16823:10;22357:7;22385:25;;;:18;:25;;17599:2;22385:25;;;;;16800:34;;22385:49;17462:13;22384:80;16800:6;:34;:::i;:::-;:72;;16792:93;;;;-1:-1:-1;;;16792:93:0;;9179:2:1;16792:93:0;;;9161:21:1;9218:1;9198:18;;;9191:29;-1:-1:-1;;;9236:18:1;;;9229:38;9284:18;;16792:93:0;8977:331:1;16792:93:0;16919:9;16904:11;16033:13;16904:6;:11;:::i;:::-;:24;;16896:49;;;;-1:-1:-1;;;16896:49:0;;9688:2:1;16896:49:0;;;9670:21:1;9727:2;9707:18;;;9700:30;-1:-1:-1;;;9746:18:1;;;9739:42;9798:18;;16896:49:0;9486:336:1;16896:49:0;16956:25;16962:10;16974:6;16956:5;:25::i;:::-;16668:321;:::o;28139:308::-;38397:10;-1:-1:-1;;;;;28238:31:0;;;28234:61;;28278:17;;-1:-1:-1;;;28278:17:0;;;;;;;;;;;28234:61;38397:10;28308:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28308:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28308:60:0;;;;;;;;;;28384:55;;445:41:1;;;28308:49:0;;38397:10;28384:55;;418:18:1;28384:55:0;;;;;;;28139:308;;:::o;29286:227::-;29477:28;29487:4;29493:2;29497:7;29477:9;:28::i;:::-;29286:227;;;;:::o;26341:339::-;26414:13;26445:16;26453:7;29915:13;;-1:-1:-1;29905:23:0;29768:168;26445:16;26440:59;;26470:29;;-1:-1:-1;;;26470:29:0;;;;;;;;;;;26440:59;26510:21;26534:8;26510:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26566:7;26560:21;26585:1;26560:26;:112;;;;;;;;;;;;;;;;;26624:7;26638:18;26648:7;26638:9;:18::i;:::-;26596:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26560:112;26553:119;26341:339;-1:-1:-1;;;26341:339:0:o;17028:323::-;17060:7;17073:9;17085:5;17073:17;;17106:8;17140:1;17131:8;;:10;;;;:::i;:::-;17127:1;17118:8;;:10;;;;:::i;:::-;:23;;;;:::i;:::-;17106:36;;17101:246;17150:4;17144:3;:10;17101:246;;;17183:1;17169:173;17195:3;17186:5;17190:1;;17186:5;:::i;:::-;:12;17169:173;;17215:10;:3;17223:1;17215:7;:10::i;:::-;17211:125;17244:8;17211:125;17278:8;;17274:3;:12;17271:65;;;-1:-1:-1;17296:8:0;:14;;;17307:3;17028:323;-1:-1:-1;;17028:323:0:o;17271:65::-;17200:3;;;;:::i;:::-;;;;17169:173;;;-1:-1:-1;17156:5:0;;;;:::i;:::-;;;;17101:246;;;;17068:283;17028:323;:::o;26688:134::-;26732:13;26800:12;26772:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;26758:56;;26688:134;:::o;28518:164::-;-1:-1:-1;;;;;28639:25:0;;;28615:4;28639:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28518:164::o;23358:1129::-;23425:7;23460;23562:13;;23555:4;:20;23551:869;;;23600:14;23617:23;;;:17;:23;;;;;;;-1:-1:-1;;;23706:23:0;;:28;;23702:699;;24225:113;24232:6;24242:1;24232:11;24225:113;;-1:-1:-1;;;24303:6:0;24285:25;;;;:17;:25;;;;;;24225:113;;23702:699;23577:843;23551:869;24448:31;;-1:-1:-1;;;24448:31:0;;;;;;;;;;;34636:2636;34773:27;34803;34822:7;34803:18;:27::i;:::-;34773:57;;34888:4;-1:-1:-1;;;;;34847:45:0;34863:19;-1:-1:-1;;;;;34847:45:0;;34843:86;;34901:28;;-1:-1:-1;;;34901:28:0;;;;;;;;;;;34843:86;34942:23;34968:24;;;:15;:24;;;;;;-1:-1:-1;;;;;34968:24:0;;;;34942:23;35031:27;;38397:10;35031:27;;:91;;-1:-1:-1;35079:43:0;35096:4;38397:10;28518:164;:::i;35079:43::-;35031:150;;;-1:-1:-1;;;;;;35143:38:0;;38397:10;35143:38;35031:150;35005:177;;35200:17;35195:66;;35226:35;;-1:-1:-1;;;35226:35:0;;;;;;;;;;;35195:66;35430:15;35412:39;35408:103;;35475:24;;;;:15;:24;;;;;35468:31;;-1:-1:-1;;;;;;35468:31:0;;;35408:103;-1:-1:-1;;;;;35878:24:0;;;;;;;:18;:24;;;;;;;;35876:26;;-1:-1:-1;;35876:26:0;;;35947:22;;;;;;;;35945:24;;-1:-1:-1;35945:24:0;;;36240:26;;;:17;:26;;;;;-1:-1:-1;;;36328:15:0;18116:3;36328:41;36286:84;;:128;;36240:174;;;36534:46;;:51;;36530:626;;36638:1;36628:11;;36606:19;36761:30;;;:17;:30;;;;;;:35;;36757:384;;36899:13;;36884:11;:28;36880:242;;37046:30;;;;:17;:30;;;;;:52;;;36880:242;36587:569;36530:626;37203:7;37199:2;-1:-1:-1;;;;;37184:27:0;37193:4;-1:-1:-1;;;;;37184:27:0;;;;;;;;;;;37222:42;34760:2512;;;34636:2636;;;:::o;32788:1594::-;32876:13;;32922:2;32929:1;32904:26;32900:58;;32939:19;;-1:-1:-1;;;32939:19:0;;;;;;;;;;;32900:58;32973:8;32985:1;32973:13;32969:44;;32995:18;;-1:-1:-1;;;32995:18:0;;;;;;;;;;;32969:44;-1:-1:-1;;;;;33490:22:0;;;;;;:18;:22;;;;17599:2;33490:22;;;:70;;33528:31;33516:44;;33490:70;;;33803:31;;;:17;:31;;;;;33896:15;18116:3;33896:41;33854:84;;-1:-1:-1;33974:13:0;;18375:3;33959:56;33854:162;33803:213;;:31;34097:23;;;34137:111;34164:40;;34189:14;;;;;-1:-1:-1;;;;;34164:40:0;;;34181:1;;34164:40;;34181:1;;34164:40;34243:3;34228:12;:18;34137:111;;-1:-1:-1;34264:13:0;:28;28749:190;;;:::o;38521:1882::-;38992:4;38986:11;;38999:3;38982:21;;39073:17;;;;39745:11;;;39622:5;39879:2;39893;39883:13;;39875:22;39745:11;39862:36;39935:2;39925:13;;39519:661;39951:4;39519:661;;;40119:1;40114:3;40110:11;40103:18;;40163:2;40157:4;40153:13;40149:2;40145:22;40140:3;40132:36;40036:2;40026:13;;39519:661;;;-1:-1:-1;40203:13:0;;;-1:-1:-1;;40312:12:0;;;40366:19;;;40312:12;38521:1882;-1:-1:-1;38521:1882:0:o;13145:98::-;13203:7;13230:5;13234:1;13230;:5;:::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:380::-;5870:1;5866:12;;;;5913;;;5934:61;;5988:4;5980:6;5976:17;5966:27;;5934:61;6041:2;6033:6;6030:14;6010:18;6007:38;6004:161;;6087:10;6082:3;6078:20;6075:1;6068:31;6122:4;6119:1;6112:15;6150:4;6147:1;6140:15;6004:161;;5791:380;;;:::o;6302:545::-;6404:2;6399:3;6396:11;6393:448;;;6440:1;6465:5;6461:2;6454:17;6510:4;6506:2;6496:19;6580:2;6568:10;6564:19;6561:1;6557:27;6551:4;6547:38;6616:4;6604:10;6601:20;6598:47;;;-1:-1:-1;6639:4:1;6598:47;6694:2;6689:3;6685:12;6682:1;6678:20;6672:4;6668:31;6658:41;;6749:82;6767:2;6760:5;6757:13;6749:82;;;6812:17;;;6793:1;6782:13;6749:82;;7023:1352;7149:3;7143:10;7176:18;7168:6;7165:30;7162:56;;;7198:18;;:::i;:::-;7227:97;7317:6;7277:38;7309:4;7303:11;7277:38;:::i;:::-;7271:4;7227:97;:::i;:::-;7379:4;;7443:2;7432:14;;7460:1;7455:663;;;;8162:1;8179:6;8176:89;;;-1:-1:-1;8231:19:1;;;8225:26;8176:89;-1:-1:-1;;6980:1:1;6976:11;;;6972:24;6968:29;6958:40;7004:1;7000:11;;;6955:57;8278:81;;7425:944;;7455:663;6249:1;6242:14;;;6286:4;6273:18;;-1:-1:-1;;7491:20:1;;;7609:236;7623:7;7620:1;7617:14;7609:236;;;7712:19;;;7706:26;7691:42;;7804:27;;;;7772:1;7760:14;;;;7639:19;;7609:236;;;7613:3;7873:6;7864:7;7861:19;7858:201;;;7934:19;;;7928:26;-1:-1:-1;;8017:1:1;8013:14;;;8029:3;8009:24;8005:37;8001:42;7986:58;7971:74;;7858:201;-1:-1:-1;;;;;8105:1:1;8089:14;;;8085:22;8072:36;;-1:-1:-1;7023:1352:1:o;8380:127::-;8441:10;8436:3;8432:20;8429:1;8422:31;8472:4;8469:1;8462:15;8496:4;8493:1;8486:15;8512:125;8577:9;;;8598:10;;;8595:36;;;8611:18;;:::i;9313:168::-;9353:7;9419:1;9415;9411:6;9407:14;9404:1;9401:21;9396:1;9389:9;9382:17;9378:45;9375:71;;;9426:18;;:::i;:::-;-1:-1:-1;9466:9:1;;9313:168::o;9827:935::-;-1:-1:-1;;;10334:3:1;10327:22;10309:3;10378:6;10372:13;10394:74;10461:6;10457:1;10452:3;10448:11;10441:4;10433:6;10429:17;10394:74;:::i;:::-;-1:-1:-1;;;10527:1:1;10487:16;;;10519:10;;;10512:23;10560:13;;10582:75;10560:13;10644:1;10636:10;;10629:4;10617:17;;10582:75;:::i;:::-;-1:-1:-1;;;10717:1:1;10676:17;;;;10709:10;;;10702:27;10753:2;10745:11;;9827:935;-1:-1:-1;;;;9827:935:1:o;10767:127::-;10828:10;10823:3;10819:20;10816:1;10809:31;10859:4;10856:1;10849:15;10883:4;10880:1;10873:15;10899:120;10939:1;10965;10955:35;;10970:18;;:::i;:::-;-1:-1:-1;11004:9:1;;10899:120::o;11024:135::-;11063:3;11084:17;;;11081:43;;11104:18;;:::i;:::-;-1:-1:-1;11151:1:1;11140:13;;11024:135::o;11164:1030::-;-1:-1:-1;;;11418:3:1;11411:22;11393:3;11452:1;11473;11506:6;11500:13;11536:36;11562:9;11536:36;:::i;:::-;11591:1;11608:18;;;11635:151;;;;11800:1;11795:374;;;;11601:568;;11635:151;-1:-1:-1;;11677:24:1;;11663:12;;;11656:46;11754:14;;11747:22;11735:35;;11726:45;;11722:54;;;-1:-1:-1;11635:151:1;;11795:374;11826:6;11823:1;11816:17;11856:4;11901:2;11898:1;11888:16;11926:1;11940:174;11954:6;11951:1;11948:13;11940:174;;;12041:14;;12023:11;;;12019:20;;12012:44;12084:16;;;;11969:10;;11940:174;;;11944:3;;;12156:2;12147:6;12142:3;12138:16;12134:25;12127:32;;11601:568;-1:-1:-1;12185:3:1;;11164:1030;-1:-1:-1;;;;;;;11164:1030:1:o;12199:112::-;12231:1;12257;12247:35;;12262:18;;:::i;:::-;-1:-1:-1;12296:9:1;;12199:112::o

Swarm Source

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