ETH Price: $3,252.49 (-3.70%)

BOTSNFT (BOTS)
 

Overview

TokenID

4

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
bots

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : bots.sol
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.9;

//import "./dependencies/ERC721A.sol";
import './dependencies/Payout.sol';
import './dependencies/ERC721A.sol';
import "@openzeppelin/contracts/access/Ownable.sol";

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract bots is ERC721A, Ownable {

    uint public maxSupply = 100;
    uint public price = 0.1337 ether;

    address payable payout;
    address proxyRegistryAddress;
    constructor() ERC721A("BOTSNFT", "BOTS") 
    {
        proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
        Payout payout_ = new Payout();
        payout = payable(address(payout_));        
    }

    function mint() external payable {
        require(msg.value / price > 0, "Zero-mint");
        uint256 quantity = msg.value / price;
        require(
            _totalMinted() + quantity <= maxSupply,
            "Not enough supply"
        );
        _mint(msg.sender, quantity);
        (bool success, ) = payout.call{value: msg.value}("");
        require(success, "Payout failed");
    }

    function isApprovedForAll(address _owner, address _operator)
        public
        view
        override
        returns (bool isOperator)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == _operator) return true;

        return super.isApprovedForAll(_owner, _operator);
    }

    function setProxyRegistry(address proxyRegistryAddress_)
        external
        onlyOwner
    {
        proxyRegistryAddress = proxyRegistryAddress_;
    }

    function _baseURI() internal pure override returns (string memory) {
        return 'https://botsnft.art/json/';
    }    
    
    function contractURI() pure external returns(string memory) {
        return string(abi.encodePacked(_baseURI(), 'opensea.json'));
    }  

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

File 2 of 6 : Payout.sol
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.9;
import '@openzeppelin/contracts/access/Ownable.sol';

contract Payout is Ownable {
    uint256 public totalWeight;
    bool entered;

    modifier nonReentrant() {
        require(!entered);
        entered = true;
        _;
        entered = false;
    }

    mapping(address => uint256) public weight;
    address payable[] public recipients;

    constructor() {
        addRecipient(
            payable(0xa5c8622C6569383c318F750F343a5e40E3Ea26EB),
            6000
        );
        addRecipient(
            payable(0x134cA981eC91fAb7481c7ea8933A917BE86Db64b),
            1000
        );
        addRecipient(
            payable(0x87900Da3fa50c9F5E64B4820183037e34A8C2AfF),
            1000
        );
        addRecipient(
            payable(0x7886802747d02ce929C631B25eEd6D5d04F41E75),
            1000
        );                
        addRecipient(
            payable(0x5926502f96f05c6b28Bb9DFFCf4f4Cf86A5Edae8),
            500
        );
        addRecipient(
            payable(0x188a9e36a0e559F36E0cc132d7eC3e89cB2397b3),
            500
        );        
    }

    function addRecipient(address payable recipient_, uint256 weight_)
        internal
    {
        if (weight[recipient_] == 0) {
            recipients.push(recipient_);
        }
        totalWeight = totalWeight - weight[recipient_] + weight_;
        weight[recipient_] = weight_;
        return;
    }

    receive() external payable nonReentrant {
        uint256 _amount = address(this).balance;
        for (uint8 i = 0; i < recipients.length; i++) {
            recipients[i].transfer(payout(recipients[i], _amount));
        }
    }

    function payout(address payable recipient_, uint256 amount_)
        public
        view
        returns (uint256)
    {
        return (amount_ * weight[recipient_]) / totalWeight;
    }
}

File 3 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

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

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

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

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

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

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

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

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

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

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 4 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 6 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyRegistryAddress_","type":"address"}],"name":"setProxyRegistry","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260646009556701daff710e784000600a553480156200002257600080fd5b506040518060400160405280600781526020017f424f54534e4654000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f5453000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000a79291906200029d565b508060039080519060200190620000c09291906200029d565b50620000d1620001c660201b60201c565b6000819055505050620000f9620000ed620001cf60201b60201c565b620001d760201b60201c565b73a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006040516200015e906200032e565b604051809103906000f0801580156200017b573d6000803e3d6000fd5b50905080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620003c0565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ab906200038a565b90600052602060002090601f016020900481019282620002cf57600085556200031b565b82601f10620002ea57805160ff19168380011785556200031b565b828001600101855582156200031b579182015b828111156200031a578251825591602001919060010190620002fd565b5b5090506200032a91906200033c565b5090565b610e958062002aa583390190565b5b80821115620003575760008160009055506001016200033d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003a357607f821691505b60208210811415620003ba57620003b96200035b565b5b50919050565b6126d580620003d06000396000f3fe6080604052600436106101355760003560e01c80638da5cb5b116100ab578063b88d4fde1161006f578063b88d4fde146103f3578063c87b56dd1461041c578063d5abeb0114610459578063e8a3d48514610484578063e985e9c5146104af578063f2fde38b146104ec57610135565b80638da5cb5b1461032057806395d89b411461034b578063a035b1fe14610376578063a22cb465146103a1578063adfdeef9146103ca57610135565b806318160ddd116100fd57806318160ddd1461021257806323b872dd1461023d57806342842e0e146102665780636352211e1461028f57806370a08231146102cc578063715018a61461030957610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df5780631249c58b14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611b5e565b610515565b60405161016e9190611ba6565b60405180910390f35b34801561018357600080fd5b5061018c6105a7565b6040516101999190611c5a565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611cb2565b610639565b6040516101d69190611d20565b60405180910390f35b3480156101eb57600080fd5b5061020660048036038101906102019190611d67565b6106b5565b005b6102106107f6565b005b34801561021e57600080fd5b5061022761098b565b6040516102349190611db6565b60405180910390f35b34801561024957600080fd5b50610264600480360381019061025f9190611dd1565b6109a2565b005b34801561027257600080fd5b5061028d60048036038101906102889190611dd1565b610cc7565b005b34801561029b57600080fd5b506102b660048036038101906102b19190611cb2565b610ce7565b6040516102c39190611d20565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190611e24565b610cf9565b6040516103009190611db6565b60405180910390f35b34801561031557600080fd5b5061031e610db2565b005b34801561032c57600080fd5b50610335610dc6565b6040516103429190611d20565b60405180910390f35b34801561035757600080fd5b50610360610df0565b60405161036d9190611c5a565b60405180910390f35b34801561038257600080fd5b5061038b610e82565b6040516103989190611db6565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190611e7d565b610e88565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190611e24565b611000565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190611ff2565b61104c565b005b34801561042857600080fd5b50610443600480360381019061043e9190611cb2565b6110bf565b6040516104509190611c5a565b60405180910390f35b34801561046557600080fd5b5061046e61115e565b60405161047b9190611db6565b60405180910390f35b34801561049057600080fd5b50610499611164565b6040516104a69190611c5a565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612075565b611192565b6040516104e39190611ba6565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190611e24565b611294565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105b6906120e4565b80601f01602080910402602001604051908101604052809291908181526020018280546105e2906120e4565b801561062f5780601f106106045761010080835404028352916020019161062f565b820191906000526020600020905b81548152906001019060200180831161061257829003601f168201915b5050505050905090565b600061064482611318565b61067a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c082610ce7565b90508073ffffffffffffffffffffffffffffffffffffffff166106e1611377565b73ffffffffffffffffffffffffffffffffffffffff16146107445761070d81610708611377565b611192565b610743576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600a54346108069190612174565b11610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d906121f1565b60405180910390fd5b6000600a54346108569190612174565b90506009548161086461137f565b61086e9190612211565b11156108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a6906122b3565b60405180910390fd5b6108b93382611392565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405161090190612304565b60006040518083038185875af1925050503d806000811461093e576040519150601f19603f3d011682016040523d82523d6000602084013e610943565b606091505b5050905080610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e90612365565b60405180910390fd5b5050565b6000610995611566565b6001546000540303905090565b60006109ad8261156f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a14576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a208461163d565b91509150610a368187610a31611377565b61165f565b610a8257610a4b86610a46611377565b611192565b610a81576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ae9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af686868660016116a3565b8015610b0157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bcf85610bab8888876116a9565b7c0200000000000000000000000000000000000000000000000000000000176116d1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c57576000600185019050600060046000838152602001908152602001600020541415610c55576000548114610c54578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cbf86868660016116fc565b505050505050565b610ce28383836040518060200160405280600081525061104c565b505050565b6000610cf28261156f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d61576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610dba611702565b610dc46000611780565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dff906120e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2b906120e4565b8015610e785780601f10610e4d57610100808354040283529160200191610e78565b820191906000526020600020905b815481529060010190602001808311610e5b57829003601f168201915b5050505050905090565b600a5481565b610e90611377565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f02611377565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610faf611377565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff49190611ba6565b60405180910390a35050565b611008611702565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110578484846109a2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110b95761108284848484611846565b6110b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110ca82611318565b611100576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061110a6119a6565b905060008151141561112b5760405180602001604052806000815250611156565b80611135846119e3565b6040516020016111469291906123c1565b6040516020818303038152906040525b915050919050565b60095481565b606061116e6119a6565b60405160200161117e9190612431565b604051602081830303815290604052905090565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161120a9190611d20565b60206040518083038186803b15801561122257600080fd5b505afa158015611236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125a9190612491565b73ffffffffffffffffffffffffffffffffffffffff16141561128057600191505061128e565b61128a8484611a3d565b9150505b92915050565b61129c611702565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390612530565b60405180910390fd5b61131581611780565b50565b600081611323611566565b11158015611332575060005482105b8015611370575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000611389611566565b60005403905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ff576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561143a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144760008483856116a3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506114be836114af60008660006116a9565b6114b885611ad1565b176116d1565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106114e25780600081905550505061156160008483856116fc565b505050565b60006001905090565b6000808290508061157e611566565b11611606576000548110156116055760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611603575b60008114156115f95760046000836001900393508381526020019081526020016000205490506115ce565b8092505050611638565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116c0868684611ae1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61170a611aea565b73ffffffffffffffffffffffffffffffffffffffff16611728610dc6565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117759061259c565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261186c611377565b8786866040518563ffffffff1660e01b815260040161188e9493929190612611565b602060405180830381600087803b1580156118a857600080fd5b505af19250505080156118d957506040513d601f19601f820116820180604052508101906118d69190612672565b60015b611953573d8060008114611909576040519150601f19603f3d011682016040523d82523d6000602084013e61190e565b606091505b5060008151141561194b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606040518060400160405280601981526020017f68747470733a2f2f626f74736e66742e6172742f6a736f6e2f00000000000000815250905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a2957600183039250600a81066030018353600a81049050611a09565b508181036020830392508083525050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006001821460e11b9050919050565b60009392505050565b600033905090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b3b81611b06565b8114611b4657600080fd5b50565b600081359050611b5881611b32565b92915050565b600060208284031215611b7457611b73611afc565b5b6000611b8284828501611b49565b91505092915050565b60008115159050919050565b611ba081611b8b565b82525050565b6000602082019050611bbb6000830184611b97565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bfb578082015181840152602081019050611be0565b83811115611c0a576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c2c82611bc1565b611c368185611bcc565b9350611c46818560208601611bdd565b611c4f81611c10565b840191505092915050565b60006020820190508181036000830152611c748184611c21565b905092915050565b6000819050919050565b611c8f81611c7c565b8114611c9a57600080fd5b50565b600081359050611cac81611c86565b92915050565b600060208284031215611cc857611cc7611afc565b5b6000611cd684828501611c9d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d0a82611cdf565b9050919050565b611d1a81611cff565b82525050565b6000602082019050611d356000830184611d11565b92915050565b611d4481611cff565b8114611d4f57600080fd5b50565b600081359050611d6181611d3b565b92915050565b60008060408385031215611d7e57611d7d611afc565b5b6000611d8c85828601611d52565b9250506020611d9d85828601611c9d565b9150509250929050565b611db081611c7c565b82525050565b6000602082019050611dcb6000830184611da7565b92915050565b600080600060608486031215611dea57611de9611afc565b5b6000611df886828701611d52565b9350506020611e0986828701611d52565b9250506040611e1a86828701611c9d565b9150509250925092565b600060208284031215611e3a57611e39611afc565b5b6000611e4884828501611d52565b91505092915050565b611e5a81611b8b565b8114611e6557600080fd5b50565b600081359050611e7781611e51565b92915050565b60008060408385031215611e9457611e93611afc565b5b6000611ea285828601611d52565b9250506020611eb385828601611e68565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611eff82611c10565b810181811067ffffffffffffffff82111715611f1e57611f1d611ec7565b5b80604052505050565b6000611f31611af2565b9050611f3d8282611ef6565b919050565b600067ffffffffffffffff821115611f5d57611f5c611ec7565b5b611f6682611c10565b9050602081019050919050565b82818337600083830152505050565b6000611f95611f9084611f42565b611f27565b905082815260208101848484011115611fb157611fb0611ec2565b5b611fbc848285611f73565b509392505050565b600082601f830112611fd957611fd8611ebd565b5b8135611fe9848260208601611f82565b91505092915050565b6000806000806080858703121561200c5761200b611afc565b5b600061201a87828801611d52565b945050602061202b87828801611d52565b935050604061203c87828801611c9d565b925050606085013567ffffffffffffffff81111561205d5761205c611b01565b5b61206987828801611fc4565b91505092959194509250565b6000806040838503121561208c5761208b611afc565b5b600061209a85828601611d52565b92505060206120ab85828601611d52565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806120fc57607f821691505b602082108114156121105761210f6120b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061217f82611c7c565b915061218a83611c7c565b92508261219a57612199612116565b5b828204905092915050565b7f5a65726f2d6d696e740000000000000000000000000000000000000000000000600082015250565b60006121db600983611bcc565b91506121e6826121a5565b602082019050919050565b6000602082019050818103600083015261220a816121ce565b9050919050565b600061221c82611c7c565b915061222783611c7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561225c5761225b612145565b5b828201905092915050565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b600061229d601183611bcc565b91506122a882612267565b602082019050919050565b600060208201905081810360008301526122cc81612290565b9050919050565b600081905092915050565b50565b60006122ee6000836122d3565b91506122f9826122de565b600082019050919050565b600061230f826122e1565b9150819050919050565b7f5061796f7574206661696c656400000000000000000000000000000000000000600082015250565b600061234f600d83611bcc565b915061235a82612319565b602082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b600081905092915050565b600061239b82611bc1565b6123a58185612385565b93506123b5818560208601611bdd565b80840191505092915050565b60006123cd8285612390565b91506123d98284612390565b91508190509392505050565b7f6f70656e7365612e6a736f6e0000000000000000000000000000000000000000600082015250565b600061241b600c83612385565b9150612426826123e5565b600c82019050919050565b600061243d8284612390565b91506124488261240e565b915081905092915050565b600061245e82611cff565b9050919050565b61246e81612453565b811461247957600080fd5b50565b60008151905061248b81612465565b92915050565b6000602082840312156124a7576124a6611afc565b5b60006124b58482850161247c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061251a602683611bcc565b9150612525826124be565b604082019050919050565b600060208201905081810360008301526125498161250d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612586602083611bcc565b915061259182612550565b602082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006125e3826125bc565b6125ed81856125c7565b93506125fd818560208601611bdd565b61260681611c10565b840191505092915050565b60006080820190506126266000830187611d11565b6126336020830186611d11565b6126406040830185611da7565b818103606083015261265281846125d8565b905095945050505050565b60008151905061266c81611b32565b92915050565b60006020828403121561268857612687611afc565b5b60006126968482850161265d565b9150509291505056fea264697066735822122078335fd2ba898f6dd3b5e056cbc5560e7b06a979e91b3bfadd342b3dfdec269e64736f6c6343000809003360806040523480156200001157600080fd5b5062000032620000266200012860201b60201c565b6200013060201b60201c565b6200005a73a5c8622c6569383c318f750f343a5e40e3ea26eb611770620001f460201b60201c565b6200008273134ca981ec91fab7481c7ea8933a917be86db64b6103e8620001f460201b60201c565b620000aa7387900da3fa50c9f5e64b4820183037e34a8c2aff6103e8620001f460201b60201c565b620000d2737886802747d02ce929c631b25eed6d5d04f41e756103e8620001f460201b60201c565b620000fa735926502f96f05c6b28bb9dffcf4f4cf86a5edae86101f4620001f460201b60201c565b6200012273188a9e36a0e559f36e0cc132d7ec3e89cb2397b36101f4620001f460201b60201c565b6200041c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415620002a1576004829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600154620002f1919062000384565b620002fd9190620003bf565b60018190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000391826200034b565b91506200039e836200034b565b925082821015620003b457620003b362000355565b5b828203905092915050565b6000620003cc826200034b565b9150620003d9836200034b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000411576200041062000355565b5b828201905092915050565b610a69806200042c6000396000f3fe6080604052600436106100745760003560e01c806396c82e571161004e57806396c82e571461024e578063d1bc76a114610279578063f2fde38b146102b6578063f4396e2a146102df576101ca565b8063117de2fd146101cf578063715018a61461020c5780638da5cb5b14610223576101ca565b366101ca57600260009054906101000a900460ff161561009357600080fd5b6001600260006101000a81548160ff021916908315150217905550600047905060005b6004805490508160ff1610156101ab5760048160ff16815481106100dd576100dc6105e6565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61016c60048460ff168154811061013b5761013a6105e6565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561031c565b9081150290604051600060405180830381858888f19350505050158015610197573d6000803e3d6000fd5b5080806101a390610651565b9150506100b6565b50506000600260006101000a81548160ff021916908315150217905550005b600080fd5b3480156101db57600080fd5b506101f660048036038101906101f19190610714565b61031c565b6040516102039190610763565b60405180910390f35b34801561021857600080fd5b5061022161037e565b005b34801561022f57600080fd5b50610238610392565b604051610245919061079f565b60405180910390f35b34801561025a57600080fd5b506102636103bb565b6040516102709190610763565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b91906107ba565b6103c1565b6040516102ad91906107f6565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d8919061083d565b610400565b005b3480156102eb57600080fd5b506103066004803603810190610301919061083d565b610484565b6040516103139190610763565b60405180910390f35b6000600154600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361036c919061086a565b61037691906108f3565b905092915050565b61038661049c565b610390600061051a565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60015481565b600481815481106103d157600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61040861049c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046f906109a7565b60405180910390fd5b6104818161051a565b50565b60036020528060005260406000206000915090505481565b6104a46105de565b73ffffffffffffffffffffffffffffffffffffffff166104c2610392565b73ffffffffffffffffffffffffffffffffffffffff1614610518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050f90610a13565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b600061065c82610644565b915060ff8214156106705761066f610615565b5b600182019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006106ab82610680565b9050919050565b6106bb816106a0565b81146106c657600080fd5b50565b6000813590506106d8816106b2565b92915050565b6000819050919050565b6106f1816106de565b81146106fc57600080fd5b50565b60008135905061070e816106e8565b92915050565b6000806040838503121561072b5761072a61067b565b5b6000610739858286016106c9565b925050602061074a858286016106ff565b9150509250929050565b61075d816106de565b82525050565b60006020820190506107786000830184610754565b92915050565b600061078982610680565b9050919050565b6107998161077e565b82525050565b60006020820190506107b46000830184610790565b92915050565b6000602082840312156107d0576107cf61067b565b5b60006107de848285016106ff565b91505092915050565b6107f0816106a0565b82525050565b600060208201905061080b60008301846107e7565b92915050565b61081a8161077e565b811461082557600080fd5b50565b60008135905061083781610811565b92915050565b6000602082840312156108535761085261067b565b5b600061086184828501610828565b91505092915050565b6000610875826106de565b9150610880836106de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156108b9576108b8610615565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006108fe826106de565b9150610909836106de565b925082610919576109186108c4565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610991602683610924565b915061099c82610935565b604082019050919050565b600060208201905081810360008301526109c081610984565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006109fd602083610924565b9150610a08826109c7565b602082019050919050565b60006020820190508181036000830152610a2c816109f0565b905091905056fea2646970667358221220332426d6a0f748f76db95e7ea8a25908d7bce398876ec080c2dbe75bd95db72564736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101355760003560e01c80638da5cb5b116100ab578063b88d4fde1161006f578063b88d4fde146103f3578063c87b56dd1461041c578063d5abeb0114610459578063e8a3d48514610484578063e985e9c5146104af578063f2fde38b146104ec57610135565b80638da5cb5b1461032057806395d89b411461034b578063a035b1fe14610376578063a22cb465146103a1578063adfdeef9146103ca57610135565b806318160ddd116100fd57806318160ddd1461021257806323b872dd1461023d57806342842e0e146102665780636352211e1461028f57806370a08231146102cc578063715018a61461030957610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df5780631249c58b14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611b5e565b610515565b60405161016e9190611ba6565b60405180910390f35b34801561018357600080fd5b5061018c6105a7565b6040516101999190611c5a565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611cb2565b610639565b6040516101d69190611d20565b60405180910390f35b3480156101eb57600080fd5b5061020660048036038101906102019190611d67565b6106b5565b005b6102106107f6565b005b34801561021e57600080fd5b5061022761098b565b6040516102349190611db6565b60405180910390f35b34801561024957600080fd5b50610264600480360381019061025f9190611dd1565b6109a2565b005b34801561027257600080fd5b5061028d60048036038101906102889190611dd1565b610cc7565b005b34801561029b57600080fd5b506102b660048036038101906102b19190611cb2565b610ce7565b6040516102c39190611d20565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190611e24565b610cf9565b6040516103009190611db6565b60405180910390f35b34801561031557600080fd5b5061031e610db2565b005b34801561032c57600080fd5b50610335610dc6565b6040516103429190611d20565b60405180910390f35b34801561035757600080fd5b50610360610df0565b60405161036d9190611c5a565b60405180910390f35b34801561038257600080fd5b5061038b610e82565b6040516103989190611db6565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190611e7d565b610e88565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190611e24565b611000565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190611ff2565b61104c565b005b34801561042857600080fd5b50610443600480360381019061043e9190611cb2565b6110bf565b6040516104509190611c5a565b60405180910390f35b34801561046557600080fd5b5061046e61115e565b60405161047b9190611db6565b60405180910390f35b34801561049057600080fd5b50610499611164565b6040516104a69190611c5a565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612075565b611192565b6040516104e39190611ba6565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190611e24565b611294565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105b6906120e4565b80601f01602080910402602001604051908101604052809291908181526020018280546105e2906120e4565b801561062f5780601f106106045761010080835404028352916020019161062f565b820191906000526020600020905b81548152906001019060200180831161061257829003601f168201915b5050505050905090565b600061064482611318565b61067a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c082610ce7565b90508073ffffffffffffffffffffffffffffffffffffffff166106e1611377565b73ffffffffffffffffffffffffffffffffffffffff16146107445761070d81610708611377565b611192565b610743576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600a54346108069190612174565b11610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d906121f1565b60405180910390fd5b6000600a54346108569190612174565b90506009548161086461137f565b61086e9190612211565b11156108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a6906122b3565b60405180910390fd5b6108b93382611392565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405161090190612304565b60006040518083038185875af1925050503d806000811461093e576040519150601f19603f3d011682016040523d82523d6000602084013e610943565b606091505b5050905080610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e90612365565b60405180910390fd5b5050565b6000610995611566565b6001546000540303905090565b60006109ad8261156f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a14576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a208461163d565b91509150610a368187610a31611377565b61165f565b610a8257610a4b86610a46611377565b611192565b610a81576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ae9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af686868660016116a3565b8015610b0157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bcf85610bab8888876116a9565b7c0200000000000000000000000000000000000000000000000000000000176116d1565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c57576000600185019050600060046000838152602001908152602001600020541415610c55576000548114610c54578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cbf86868660016116fc565b505050505050565b610ce28383836040518060200160405280600081525061104c565b505050565b6000610cf28261156f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d61576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610dba611702565b610dc46000611780565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dff906120e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2b906120e4565b8015610e785780601f10610e4d57610100808354040283529160200191610e78565b820191906000526020600020905b815481529060010190602001808311610e5b57829003601f168201915b5050505050905090565b600a5481565b610e90611377565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f02611377565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610faf611377565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff49190611ba6565b60405180910390a35050565b611008611702565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110578484846109a2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110b95761108284848484611846565b6110b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110ca82611318565b611100576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061110a6119a6565b905060008151141561112b5760405180602001604052806000815250611156565b80611135846119e3565b6040516020016111469291906123c1565b6040516020818303038152906040525b915050919050565b60095481565b606061116e6119a6565b60405160200161117e9190612431565b604051602081830303815290604052905090565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161120a9190611d20565b60206040518083038186803b15801561122257600080fd5b505afa158015611236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125a9190612491565b73ffffffffffffffffffffffffffffffffffffffff16141561128057600191505061128e565b61128a8484611a3d565b9150505b92915050565b61129c611702565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390612530565b60405180910390fd5b61131581611780565b50565b600081611323611566565b11158015611332575060005482105b8015611370575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000611389611566565b60005403905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ff576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561143a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144760008483856116a3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506114be836114af60008660006116a9565b6114b885611ad1565b176116d1565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106114e25780600081905550505061156160008483856116fc565b505050565b60006001905090565b6000808290508061157e611566565b11611606576000548110156116055760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611603575b60008114156115f95760046000836001900393508381526020019081526020016000205490506115ce565b8092505050611638565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116c0868684611ae1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61170a611aea565b73ffffffffffffffffffffffffffffffffffffffff16611728610dc6565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117759061259c565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261186c611377565b8786866040518563ffffffff1660e01b815260040161188e9493929190612611565b602060405180830381600087803b1580156118a857600080fd5b505af19250505080156118d957506040513d601f19601f820116820180604052508101906118d69190612672565b60015b611953573d8060008114611909576040519150601f19603f3d011682016040523d82523d6000602084013e61190e565b606091505b5060008151141561194b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606040518060400160405280601981526020017f68747470733a2f2f626f74736e66742e6172742f6a736f6e2f00000000000000815250905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a2957600183039250600a81066030018353600a81049050611a09565b508181036020830392508083525050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006001821460e11b9050919050565b60009392505050565b600033905090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b3b81611b06565b8114611b4657600080fd5b50565b600081359050611b5881611b32565b92915050565b600060208284031215611b7457611b73611afc565b5b6000611b8284828501611b49565b91505092915050565b60008115159050919050565b611ba081611b8b565b82525050565b6000602082019050611bbb6000830184611b97565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bfb578082015181840152602081019050611be0565b83811115611c0a576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c2c82611bc1565b611c368185611bcc565b9350611c46818560208601611bdd565b611c4f81611c10565b840191505092915050565b60006020820190508181036000830152611c748184611c21565b905092915050565b6000819050919050565b611c8f81611c7c565b8114611c9a57600080fd5b50565b600081359050611cac81611c86565b92915050565b600060208284031215611cc857611cc7611afc565b5b6000611cd684828501611c9d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d0a82611cdf565b9050919050565b611d1a81611cff565b82525050565b6000602082019050611d356000830184611d11565b92915050565b611d4481611cff565b8114611d4f57600080fd5b50565b600081359050611d6181611d3b565b92915050565b60008060408385031215611d7e57611d7d611afc565b5b6000611d8c85828601611d52565b9250506020611d9d85828601611c9d565b9150509250929050565b611db081611c7c565b82525050565b6000602082019050611dcb6000830184611da7565b92915050565b600080600060608486031215611dea57611de9611afc565b5b6000611df886828701611d52565b9350506020611e0986828701611d52565b9250506040611e1a86828701611c9d565b9150509250925092565b600060208284031215611e3a57611e39611afc565b5b6000611e4884828501611d52565b91505092915050565b611e5a81611b8b565b8114611e6557600080fd5b50565b600081359050611e7781611e51565b92915050565b60008060408385031215611e9457611e93611afc565b5b6000611ea285828601611d52565b9250506020611eb385828601611e68565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611eff82611c10565b810181811067ffffffffffffffff82111715611f1e57611f1d611ec7565b5b80604052505050565b6000611f31611af2565b9050611f3d8282611ef6565b919050565b600067ffffffffffffffff821115611f5d57611f5c611ec7565b5b611f6682611c10565b9050602081019050919050565b82818337600083830152505050565b6000611f95611f9084611f42565b611f27565b905082815260208101848484011115611fb157611fb0611ec2565b5b611fbc848285611f73565b509392505050565b600082601f830112611fd957611fd8611ebd565b5b8135611fe9848260208601611f82565b91505092915050565b6000806000806080858703121561200c5761200b611afc565b5b600061201a87828801611d52565b945050602061202b87828801611d52565b935050604061203c87828801611c9d565b925050606085013567ffffffffffffffff81111561205d5761205c611b01565b5b61206987828801611fc4565b91505092959194509250565b6000806040838503121561208c5761208b611afc565b5b600061209a85828601611d52565b92505060206120ab85828601611d52565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806120fc57607f821691505b602082108114156121105761210f6120b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061217f82611c7c565b915061218a83611c7c565b92508261219a57612199612116565b5b828204905092915050565b7f5a65726f2d6d696e740000000000000000000000000000000000000000000000600082015250565b60006121db600983611bcc565b91506121e6826121a5565b602082019050919050565b6000602082019050818103600083015261220a816121ce565b9050919050565b600061221c82611c7c565b915061222783611c7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561225c5761225b612145565b5b828201905092915050565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b600061229d601183611bcc565b91506122a882612267565b602082019050919050565b600060208201905081810360008301526122cc81612290565b9050919050565b600081905092915050565b50565b60006122ee6000836122d3565b91506122f9826122de565b600082019050919050565b600061230f826122e1565b9150819050919050565b7f5061796f7574206661696c656400000000000000000000000000000000000000600082015250565b600061234f600d83611bcc565b915061235a82612319565b602082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b600081905092915050565b600061239b82611bc1565b6123a58185612385565b93506123b5818560208601611bdd565b80840191505092915050565b60006123cd8285612390565b91506123d98284612390565b91508190509392505050565b7f6f70656e7365612e6a736f6e0000000000000000000000000000000000000000600082015250565b600061241b600c83612385565b9150612426826123e5565b600c82019050919050565b600061243d8284612390565b91506124488261240e565b915081905092915050565b600061245e82611cff565b9050919050565b61246e81612453565b811461247957600080fd5b50565b60008151905061248b81612465565b92915050565b6000602082840312156124a7576124a6611afc565b5b60006124b58482850161247c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061251a602683611bcc565b9150612525826124be565b604082019050919050565b600060208201905081810360008301526125498161250d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612586602083611bcc565b915061259182612550565b602082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006125e3826125bc565b6125ed81856125c7565b93506125fd818560208601611bdd565b61260681611c10565b840191505092915050565b60006080820190506126266000830187611d11565b6126336020830186611d11565b6126406040830185611da7565b818103606083015261265281846125d8565b905095945050505050565b60008151905061266c81611b32565b92915050565b60006020828403121561268857612687611afc565b5b60006126968482850161265d565b9150509291505056fea264697066735822122078335fd2ba898f6dd3b5e056cbc5560e7b06a979e91b3bfadd342b3dfdec269e64736f6c63430008090033

Loading...
Loading
Loading...
Loading
[ 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.