ETH Price: $2,303.21 (+0.92%)

Token

OpepenPunks (OpepenPunk)
 

Overview

Max Total Supply

4,400 OpepenPunk

Holders

383

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 OpepenPunk
0x6c4aec5ea9e714a7be23fb9e60baedee093b5c47
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:
OpepenPunks

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-25
*/

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


// ██████  ██████  ███████ ██████  ███████ ███    ██ ██████  ██    ██ ███    ██ ██   ██ ███████     
//██    ██ ██   ██ ██      ██   ██ ██      ████   ██ ██   ██ ██    ██ ████   ██ ██  ██  ██          
//██    ██ ██████  █████   ██████  █████   ██ ██  ██ ██████  ██    ██ ██ ██  ██ █████   ███████     
//██    ██ ██      ██      ██      ██      ██  ██ ██ ██      ██    ██ ██  ██ ██ ██  ██       ██     
// ██████  ██      ███████ ██      ███████ ██   ████ ██       ██████  ██   ████ ██   ██ ███████    




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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract OpepenPunks is IERC721A { 
    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }
    modifier onlyOwner() { 
        require(_owner==msg.sender);
        _; 
    }

    uint256 public constant MAX_SUPPLY = 4400;
    uint256 public COST = 0.0025 ether;

    string private constant _name = "OpepenPunks";
    string private constant _symbol = "OpepenPunk";
    string public constant contractURI = "ipfs://QmWFGkfVZsWE1Nyg6LeWw2x7Heh8RUqWhKykNABNNJdveE";
    string private _baseURI = "QmWFGkfVZsWE1Nyg6LeWw2x7Heh8RUqWhKykNABNNJdveE";

    constructor() {
        _owner = msg.sender;
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();
        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount*COST <= msg.value, "Value to Low");
        _mint(_caller, amount);
    }


    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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


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

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

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

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


    function setData(string memory _base) external onlyOwner{
        _baseURI = _base;
    }

    function setConfig( uint256 _COST) external onlyOwner{
        COST = _COST;
    }

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

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

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

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


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

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

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



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

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

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

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

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

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

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

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

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

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

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

    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        string memory baseURI = _baseURI;
        return bytes(baseURI).length != 0 ? string(abi.encodePacked("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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


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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }
    */

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


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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

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


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

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

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

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

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




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

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

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

         // Update the free memory pointer to allocate.
         mstore(0x40, ptr)

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"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":"uint256","name":"_COST","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526608e1bc9bf040006001556040518060600160405280602e81526020016200262d602e9139600290816200003991906200030d565b5060016003553480156200004c57600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003f4565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200011557607f821691505b6020821081036200012b576200012a620000cd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000156565b620001a1868362000156565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001ee620001e8620001e284620001b9565b620001c3565b620001b9565b9050919050565b6000819050919050565b6200020a83620001cd565b620002226200021982620001f5565b84845462000163565b825550505050565b600090565b620002396200022a565b62000246818484620001ff565b505050565b5b818110156200026e57620002626000826200022f565b6001810190506200024c565b5050565b601f821115620002bd57620002878162000131565b620002928462000146565b81016020851015620002a2578190505b620002ba620002b18562000146565b8301826200024b565b50505b505050565b600082821c905092915050565b6000620002e260001984600802620002c2565b1980831691505092915050565b6000620002fd8383620002cf565b9150826002028217905092915050565b620003188262000093565b67ffffffffffffffff8111156200033457620003336200009e565b5b620003408254620000fc565b6200034d82828562000272565b600060209050601f83116001811462000385576000841562000370578287015190505b6200037c8582620002ef565b865550620003ec565b601f198416620003958662000131565b60005b82811015620003bf5784890151825560018201915060208501945060208101905062000398565b86831015620003df5784890151620003db601f891682620002cf565b8355505b6001600288020188555050505b505050505050565b61222980620004046000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610405578063b88d4fde1461042e578063bf8fbbd214610457578063c87b56dd14610482578063e8a3d485146104bf578063e985e9c5146104ea57610135565b806370a082311461032d578063893bcfbe1461036a5780638da5cb5b1461039357806395d89b41146103be578063a0712d68146103e957610135565b806323b872dd116100fd57806323b872dd1461023357806332cb6b0c1461025c5780633ccfd60b1461028757806342842e0e1461029e57806347064d6a146102c75780636352211e146102f057610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c91906115c6565b610527565b60405161016e919061160e565b60405180910390f35b34801561018357600080fd5b5061018c6105b9565b60405161019991906116b9565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611711565b6105f6565b6040516101d6919061177f565b60405180910390f35b3480156101eb57600080fd5b50610206600480360381019061020191906117c6565b610672565b005b34801561021457600080fd5b5061021d6107eb565b60405161022a9190611815565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611830565b6107fe565b005b34801561026857600080fd5b5061027161080e565b60405161027e9190611815565b60405180910390f35b34801561029357600080fd5b5061029c610814565b005b3480156102aa57600080fd5b506102c560048036038101906102c09190611830565b6108bb565b005b3480156102d357600080fd5b506102ee60048036038101906102e991906119b8565b6108db565b005b3480156102fc57600080fd5b5061031760048036038101906103129190611711565b610946565b604051610324919061177f565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190611a01565b610958565b6040516103619190611815565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190611711565b6109ec565b005b34801561039f57600080fd5b506103a8610a4e565b6040516103b5919061177f565b60405180910390f35b3480156103ca57600080fd5b506103d3610a77565b6040516103e091906116b9565b60405180910390f35b61040360048036038101906103fe9190611711565b610ab4565b005b34801561041157600080fd5b5061042c60048036038101906104279190611a5a565b610b75565b005b34801561043a57600080fd5b5061045560048036038101906104509190611b3b565b610cec565b005b34801561046357600080fd5b5061046c610cfd565b6040516104799190611815565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190611711565b610d03565b6040516104b691906116b9565b60405180910390f35b3480156104cb57600080fd5b506104d4610e24565b6040516104e191906116b9565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190611bbe565b610e40565b60405161051e919061160e565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600b81526020017f4f706570656e50756e6b73000000000000000000000000000000000000000000815250905090565b600061060182610ed4565b610637576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061067d82610ef5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106b757600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166106d6610fc1565b73ffffffffffffffffffffffffffffffffffffffff161461073957610702816106fd610fc1565b610e40565b610738576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006107f5610fc9565b60035403905090565b610809838383610fce565b505050565b61113081565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461086c57600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156108b7573d6000803e3d6000fd5b5050565b6108d683838360405180602001604052806000815250610cec565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461093357600080fd5b80600290816109429190611e0a565b5050565b600061095182610ef5565b9050919050565b60008061096483611344565b0361099b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4457600080fd5b8060018190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600a81526020017f4f706570656e50756e6b00000000000000000000000000000000000000000000815250905090565b6000610abe610fc1565b905061113082610acc6107eb565b610ad69190611f0b565b1115610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90611f8b565b60405180910390fd5b3460015483610b269190611fab565b1115610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90612039565b60405180910390fd5b610b71818361134e565b5050565b610b7d610fc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610bee610fc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610c9b610fc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ce0919061160e565b60405180910390a35050565b610cf7848484610fce565b50505050565b60015481565b6060610d0e82610ed4565b610d44576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060028054610d5390611c2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7f90611c2d565b8015610dcc5780601f10610da157610100808354040283529160200191610dcc565b820191906000526020600020905b815481529060010190602001808311610daf57829003601f168201915b505050505090506000815103610df15760405180602001604052806000815250610e1c565b80610dfb846114f0565b604051602001610e0c929190612179565b6040516020818303038152906040525b915050919050565b6040518060600160405280603581526020016121bf6035913981565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081610edf610fc9565b11158015610eee575060035482105b9050919050565b60008082905080610f04610fc9565b11610f8a57600354811015610f895760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603610f87575b60008103610f7d576004600083600190039350838152602001908152602001600020549050610f53565b8092505050610fbc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000610fd982610ef5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611040576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611099610fc1565b73ffffffffffffffffffffffffffffffffffffffff1614806110c857506110c7866110c2610fc1565b610e40565b5b8061110557506110d6610fc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061113e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061114983611344565b14611185576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61124c87611344565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112d457600060018501905060006004600083815260200190815260200160002054036112d25760035481146112d1578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461133c868686600161154a565b505050505050565b6000819050919050565b60006003549050600061136084611344565b03611397576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036113d1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161143660018414611550565b901b60a042901b61144685611344565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061146c578160038190555050506114eb600084838561154a565b505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561153657600183039250600a81066030018353600a81049050611516565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6115a38161156e565b81146115ae57600080fd5b50565b6000813590506115c08161159a565b92915050565b6000602082840312156115dc576115db611564565b5b60006115ea848285016115b1565b91505092915050565b60008115159050919050565b611608816115f3565b82525050565b600060208201905061162360008301846115ff565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611663578082015181840152602081019050611648565b60008484015250505050565b6000601f19601f8301169050919050565b600061168b82611629565b6116958185611634565b93506116a5818560208601611645565b6116ae8161166f565b840191505092915050565b600060208201905081810360008301526116d38184611680565b905092915050565b6000819050919050565b6116ee816116db565b81146116f957600080fd5b50565b60008135905061170b816116e5565b92915050565b60006020828403121561172757611726611564565b5b6000611735848285016116fc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117698261173e565b9050919050565b6117798161175e565b82525050565b60006020820190506117946000830184611770565b92915050565b6117a38161175e565b81146117ae57600080fd5b50565b6000813590506117c08161179a565b92915050565b600080604083850312156117dd576117dc611564565b5b60006117eb858286016117b1565b92505060206117fc858286016116fc565b9150509250929050565b61180f816116db565b82525050565b600060208201905061182a6000830184611806565b92915050565b60008060006060848603121561184957611848611564565b5b6000611857868287016117b1565b9350506020611868868287016117b1565b9250506040611879868287016116fc565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6118c58261166f565b810181811067ffffffffffffffff821117156118e4576118e361188d565b5b80604052505050565b60006118f761155a565b905061190382826118bc565b919050565b600067ffffffffffffffff8211156119235761192261188d565b5b61192c8261166f565b9050602081019050919050565b82818337600083830152505050565b600061195b61195684611908565b6118ed565b90508281526020810184848401111561197757611976611888565b5b611982848285611939565b509392505050565b600082601f83011261199f5761199e611883565b5b81356119af848260208601611948565b91505092915050565b6000602082840312156119ce576119cd611564565b5b600082013567ffffffffffffffff8111156119ec576119eb611569565b5b6119f88482850161198a565b91505092915050565b600060208284031215611a1757611a16611564565b5b6000611a25848285016117b1565b91505092915050565b611a37816115f3565b8114611a4257600080fd5b50565b600081359050611a5481611a2e565b92915050565b60008060408385031215611a7157611a70611564565b5b6000611a7f858286016117b1565b9250506020611a9085828601611a45565b9150509250929050565b600067ffffffffffffffff821115611ab557611ab461188d565b5b611abe8261166f565b9050602081019050919050565b6000611ade611ad984611a9a565b6118ed565b905082815260208101848484011115611afa57611af9611888565b5b611b05848285611939565b509392505050565b600082601f830112611b2257611b21611883565b5b8135611b32848260208601611acb565b91505092915050565b60008060008060808587031215611b5557611b54611564565b5b6000611b63878288016117b1565b9450506020611b74878288016117b1565b9350506040611b85878288016116fc565b925050606085013567ffffffffffffffff811115611ba657611ba5611569565b5b611bb287828801611b0d565b91505092959194509250565b60008060408385031215611bd557611bd4611564565b5b6000611be3858286016117b1565b9250506020611bf4858286016117b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c4557607f821691505b602082108103611c5857611c57611bfe565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611cc07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611c83565b611cca8683611c83565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611d07611d02611cfd846116db565b611ce2565b6116db565b9050919050565b6000819050919050565b611d2183611cec565b611d35611d2d82611d0e565b848454611c90565b825550505050565b600090565b611d4a611d3d565b611d55818484611d18565b505050565b5b81811015611d7957611d6e600082611d42565b600181019050611d5b565b5050565b601f821115611dbe57611d8f81611c5e565b611d9884611c73565b81016020851015611da7578190505b611dbb611db385611c73565b830182611d5a565b50505b505050565b600082821c905092915050565b6000611de160001984600802611dc3565b1980831691505092915050565b6000611dfa8383611dd0565b9150826002028217905092915050565b611e1382611629565b67ffffffffffffffff811115611e2c57611e2b61188d565b5b611e368254611c2d565b611e41828285611d7d565b600060209050601f831160018114611e745760008415611e62578287015190505b611e6c8582611dee565b865550611ed4565b601f198416611e8286611c5e565b60005b82811015611eaa57848901518255600182019150602085019450602081019050611e85565b86831015611ec75784890151611ec3601f891682611dd0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f16826116db565b9150611f21836116db565b9250828201905080821115611f3957611f38611edc565b5b92915050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000611f75600783611634565b9150611f8082611f3f565b602082019050919050565b60006020820190508181036000830152611fa481611f68565b9050919050565b6000611fb6826116db565b9150611fc1836116db565b9250828202611fcf816116db565b91508282048414831517611fe657611fe5611edc565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b6000612023600c83611634565b915061202e82611fed565b602082019050919050565b6000602082019050818103600083015261205281612016565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b600061209a600783612059565b91506120a582612064565b600782019050919050565b60006120bb82611629565b6120c58185612059565b93506120d5818560208601611645565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612117600183612059565b9150612122826120e1565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612163600583612059565b915061216e8261212d565b600582019050919050565b60006121848261208d565b915061219082856120b0565b915061219b8261210a565b91506121a782846120b0565b91506121b282612156565b9150819050939250505056fe697066733a2f2f516d5746476b66565a735745314e7967364c6557773278374865683852557157684b796b4e41424e4e4a64766545a2646970667358221220f0339dc2a2bd6d1373eaed9b6b0b6e2035e3532b918ca1c9f041935f4182b37464736f6c63430008130033516d5746476b66565a735745314e7967364c6557773278374865683852557157684b796b4e41424e4e4a64766545

Deployed Bytecode

0x6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610405578063b88d4fde1461042e578063bf8fbbd214610457578063c87b56dd14610482578063e8a3d485146104bf578063e985e9c5146104ea57610135565b806370a082311461032d578063893bcfbe1461036a5780638da5cb5b1461039357806395d89b41146103be578063a0712d68146103e957610135565b806323b872dd116100fd57806323b872dd1461023357806332cb6b0c1461025c5780633ccfd60b1461028757806342842e0e1461029e57806347064d6a146102c75780636352211e146102f057610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c91906115c6565b610527565b60405161016e919061160e565b60405180910390f35b34801561018357600080fd5b5061018c6105b9565b60405161019991906116b9565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611711565b6105f6565b6040516101d6919061177f565b60405180910390f35b3480156101eb57600080fd5b50610206600480360381019061020191906117c6565b610672565b005b34801561021457600080fd5b5061021d6107eb565b60405161022a9190611815565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611830565b6107fe565b005b34801561026857600080fd5b5061027161080e565b60405161027e9190611815565b60405180910390f35b34801561029357600080fd5b5061029c610814565b005b3480156102aa57600080fd5b506102c560048036038101906102c09190611830565b6108bb565b005b3480156102d357600080fd5b506102ee60048036038101906102e991906119b8565b6108db565b005b3480156102fc57600080fd5b5061031760048036038101906103129190611711565b610946565b604051610324919061177f565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190611a01565b610958565b6040516103619190611815565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190611711565b6109ec565b005b34801561039f57600080fd5b506103a8610a4e565b6040516103b5919061177f565b60405180910390f35b3480156103ca57600080fd5b506103d3610a77565b6040516103e091906116b9565b60405180910390f35b61040360048036038101906103fe9190611711565b610ab4565b005b34801561041157600080fd5b5061042c60048036038101906104279190611a5a565b610b75565b005b34801561043a57600080fd5b5061045560048036038101906104509190611b3b565b610cec565b005b34801561046357600080fd5b5061046c610cfd565b6040516104799190611815565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190611711565b610d03565b6040516104b691906116b9565b60405180910390f35b3480156104cb57600080fd5b506104d4610e24565b6040516104e191906116b9565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190611bbe565b610e40565b60405161051e919061160e565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105b25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600b81526020017f4f706570656e50756e6b73000000000000000000000000000000000000000000815250905090565b600061060182610ed4565b610637576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061067d82610ef5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106b757600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166106d6610fc1565b73ffffffffffffffffffffffffffffffffffffffff161461073957610702816106fd610fc1565b610e40565b610738576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006107f5610fc9565b60035403905090565b610809838383610fce565b505050565b61113081565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461086c57600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156108b7573d6000803e3d6000fd5b5050565b6108d683838360405180602001604052806000815250610cec565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461093357600080fd5b80600290816109429190611e0a565b5050565b600061095182610ef5565b9050919050565b60008061096483611344565b0361099b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4457600080fd5b8060018190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600a81526020017f4f706570656e50756e6b00000000000000000000000000000000000000000000815250905090565b6000610abe610fc1565b905061113082610acc6107eb565b610ad69190611f0b565b1115610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90611f8b565b60405180910390fd5b3460015483610b269190611fab565b1115610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90612039565b60405180910390fd5b610b71818361134e565b5050565b610b7d610fc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610bee610fc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610c9b610fc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ce0919061160e565b60405180910390a35050565b610cf7848484610fce565b50505050565b60015481565b6060610d0e82610ed4565b610d44576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060028054610d5390611c2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7f90611c2d565b8015610dcc5780601f10610da157610100808354040283529160200191610dcc565b820191906000526020600020905b815481529060010190602001808311610daf57829003601f168201915b505050505090506000815103610df15760405180602001604052806000815250610e1c565b80610dfb846114f0565b604051602001610e0c929190612179565b6040516020818303038152906040525b915050919050565b6040518060600160405280603581526020016121bf6035913981565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081610edf610fc9565b11158015610eee575060035482105b9050919050565b60008082905080610f04610fc9565b11610f8a57600354811015610f895760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603610f87575b60008103610f7d576004600083600190039350838152602001908152602001600020549050610f53565b8092505050610fbc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000610fd982610ef5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611040576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611099610fc1565b73ffffffffffffffffffffffffffffffffffffffff1614806110c857506110c7866110c2610fc1565b610e40565b5b8061110557506110d6610fc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061113e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061114983611344565b14611185576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61124c87611344565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112d457600060018501905060006004600083815260200190815260200160002054036112d25760035481146112d1578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461133c868686600161154a565b505050505050565b6000819050919050565b60006003549050600061136084611344565b03611397576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036113d1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161143660018414611550565b901b60a042901b61144685611344565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061146c578160038190555050506114eb600084838561154a565b505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561153657600183039250600a81066030018353600a81049050611516565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6115a38161156e565b81146115ae57600080fd5b50565b6000813590506115c08161159a565b92915050565b6000602082840312156115dc576115db611564565b5b60006115ea848285016115b1565b91505092915050565b60008115159050919050565b611608816115f3565b82525050565b600060208201905061162360008301846115ff565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611663578082015181840152602081019050611648565b60008484015250505050565b6000601f19601f8301169050919050565b600061168b82611629565b6116958185611634565b93506116a5818560208601611645565b6116ae8161166f565b840191505092915050565b600060208201905081810360008301526116d38184611680565b905092915050565b6000819050919050565b6116ee816116db565b81146116f957600080fd5b50565b60008135905061170b816116e5565b92915050565b60006020828403121561172757611726611564565b5b6000611735848285016116fc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117698261173e565b9050919050565b6117798161175e565b82525050565b60006020820190506117946000830184611770565b92915050565b6117a38161175e565b81146117ae57600080fd5b50565b6000813590506117c08161179a565b92915050565b600080604083850312156117dd576117dc611564565b5b60006117eb858286016117b1565b92505060206117fc858286016116fc565b9150509250929050565b61180f816116db565b82525050565b600060208201905061182a6000830184611806565b92915050565b60008060006060848603121561184957611848611564565b5b6000611857868287016117b1565b9350506020611868868287016117b1565b9250506040611879868287016116fc565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6118c58261166f565b810181811067ffffffffffffffff821117156118e4576118e361188d565b5b80604052505050565b60006118f761155a565b905061190382826118bc565b919050565b600067ffffffffffffffff8211156119235761192261188d565b5b61192c8261166f565b9050602081019050919050565b82818337600083830152505050565b600061195b61195684611908565b6118ed565b90508281526020810184848401111561197757611976611888565b5b611982848285611939565b509392505050565b600082601f83011261199f5761199e611883565b5b81356119af848260208601611948565b91505092915050565b6000602082840312156119ce576119cd611564565b5b600082013567ffffffffffffffff8111156119ec576119eb611569565b5b6119f88482850161198a565b91505092915050565b600060208284031215611a1757611a16611564565b5b6000611a25848285016117b1565b91505092915050565b611a37816115f3565b8114611a4257600080fd5b50565b600081359050611a5481611a2e565b92915050565b60008060408385031215611a7157611a70611564565b5b6000611a7f858286016117b1565b9250506020611a9085828601611a45565b9150509250929050565b600067ffffffffffffffff821115611ab557611ab461188d565b5b611abe8261166f565b9050602081019050919050565b6000611ade611ad984611a9a565b6118ed565b905082815260208101848484011115611afa57611af9611888565b5b611b05848285611939565b509392505050565b600082601f830112611b2257611b21611883565b5b8135611b32848260208601611acb565b91505092915050565b60008060008060808587031215611b5557611b54611564565b5b6000611b63878288016117b1565b9450506020611b74878288016117b1565b9350506040611b85878288016116fc565b925050606085013567ffffffffffffffff811115611ba657611ba5611569565b5b611bb287828801611b0d565b91505092959194509250565b60008060408385031215611bd557611bd4611564565b5b6000611be3858286016117b1565b9250506020611bf4858286016117b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c4557607f821691505b602082108103611c5857611c57611bfe565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611cc07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611c83565b611cca8683611c83565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611d07611d02611cfd846116db565b611ce2565b6116db565b9050919050565b6000819050919050565b611d2183611cec565b611d35611d2d82611d0e565b848454611c90565b825550505050565b600090565b611d4a611d3d565b611d55818484611d18565b505050565b5b81811015611d7957611d6e600082611d42565b600181019050611d5b565b5050565b601f821115611dbe57611d8f81611c5e565b611d9884611c73565b81016020851015611da7578190505b611dbb611db385611c73565b830182611d5a565b50505b505050565b600082821c905092915050565b6000611de160001984600802611dc3565b1980831691505092915050565b6000611dfa8383611dd0565b9150826002028217905092915050565b611e1382611629565b67ffffffffffffffff811115611e2c57611e2b61188d565b5b611e368254611c2d565b611e41828285611d7d565b600060209050601f831160018114611e745760008415611e62578287015190505b611e6c8582611dee565b865550611ed4565b601f198416611e8286611c5e565b60005b82811015611eaa57848901518255600182019150602085019450602081019050611e85565b86831015611ec75784890151611ec3601f891682611dd0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f16826116db565b9150611f21836116db565b9250828201905080821115611f3957611f38611edc565b5b92915050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000611f75600783611634565b9150611f8082611f3f565b602082019050919050565b60006020820190508181036000830152611fa481611f68565b9050919050565b6000611fb6826116db565b9150611fc1836116db565b9250828202611fcf816116db565b91508282048414831517611fe657611fe5611edc565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b6000612023600c83611634565b915061202e82611fed565b602082019050919050565b6000602082019050818103600083015261205281612016565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b600061209a600783612059565b91506120a582612064565b600782019050919050565b60006120bb82611629565b6120c58185612059565b93506120d5818560208601611645565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612117600183612059565b9150612122826120e1565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612163600583612059565b915061216e8261212d565b600582019050919050565b60006121848261208d565b915061219082856120b0565b915061219b8261210a565b91506121a782846120b0565b91506121b282612156565b9150819050939250505056fe697066733a2f2f516d5746476b66565a735745314e7967364c6557773278374865683852557157684b796b4e41424e4e4a64766545a2646970667358221220f0339dc2a2bd6d1373eaed9b6b0b6e2035e3532b918ca1c9f041935f4182b37464736f6c63430008130033

Deployed Bytecode Sourcemap

10049:24038:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14813:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19566:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21391:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20874:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14056:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22277:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10291:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33939:145;;;;;;;;;;;;;:::i;:::-;;22538:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13253:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19355:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15492:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13352:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10119:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19735:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10729:262;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21667:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22814:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10339:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19853:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10487:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22046:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14813:615;14898:4;15213:10;15198:25;;:11;:25;;;;:102;;;;15290:10;15275:25;;:11;:25;;;;15198:102;:179;;;;15367:10;15352:25;;:11;:25;;;;15198:179;15178:199;;14813:615;;;:::o;19566:100::-;19620:13;19653:5;;;;;;;;;;;;;;;;;19646:12;;19566:100;:::o;21391:204::-;21459:7;21484:16;21492:7;21484;:16::i;:::-;21479:64;;21509:34;;;;;;;;;;;;;;21479:64;21563:15;:24;21579:7;21563:24;;;;;;;;;;;;;;;;;;;;;21556:31;;21391:204;;;:::o;20874:451::-;20947:13;20979:27;20998:7;20979:18;:27::i;:::-;20947:61;;21029:5;21023:11;;:2;:11;;;21019:25;;21036:8;;;21019:25;21084:5;21061:28;;:19;:17;:19::i;:::-;:28;;;21057:175;;21109:44;21126:5;21133:19;:17;:19::i;:::-;21109:16;:44::i;:::-;21104:128;;21181:35;;;;;;;;;;;;;;21104:128;21057:175;21271:2;21244:15;:24;21260:7;21244:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;21309:7;21305:2;21289:28;;21298:5;21289:28;;;;;;;;;;;;20936:389;20874:451;;:::o;14056:300::-;14109:7;14322:15;:13;:15::i;:::-;14306:13;;:31;14299:38;;14056:300;:::o;22277:190::-;22431:28;22441:4;22447:2;22451:7;22431:9;:28::i;:::-;22277:190;;;:::o;10291:41::-;10328:4;10291:41;:::o;33939:145::-;10251:10;10243:18;;:6;;;;;;;;;;:18;;;10235:27;;;;;;33989:15:::1;34007:21;33989:39;;34047:10;34039:28;;:37;34068:7;34039:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;33978:106;33939:145::o:0;22538:205::-;22696:39;22713:4;22719:2;22723:7;22696:39;;;;;;;;;;;;:16;:39::i;:::-;22538:205;;;:::o;13253:91::-;10251:10;10243:18;;:6;;;;;;;;;;:18;;;10235:27;;;;;;13331:5:::1;13320:8;:16;;;;;;:::i;:::-;;13253:91:::0;:::o;19355:144::-;19419:7;19462:27;19481:7;19462:18;:27::i;:::-;19439:52;;19355:144;;;:::o;15492:234::-;15556:7;15608:1;15580:24;15598:5;15580:17;:24::i;:::-;:29;15576:70;;15618:28;;;;;;;;;;;;;;15576:70;11104:13;15664:18;:25;15683:5;15664:25;;;;;;;;;;;;;;;;:54;15657:61;;15492:234;;;:::o;13352:84::-;10251:10;10243:18;;:6;;;;;;;;;;:18;;;10235:27;;;;;;13423:5:::1;13416:4;:12;;;;13352:84:::0;:::o;10119:77::-;10156:7;10182:6;;;;;;;;;;;10175:13;;10119:77;:::o;19735:104::-;19791:13;19824:7;;;;;;;;;;;;;;;;;19817:14;;19735:104;:::o;10729:262::-;10786:15;10804:19;:17;:19::i;:::-;10786:37;;10328:4;10858:6;10842:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;10834:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;10924:9;10916:4;;10909:6;:11;;;;:::i;:::-;:24;;10901:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;10961:22;10967:7;10976:6;10961:5;:22::i;:::-;10775:216;10729:262;:::o;21667:308::-;21778:19;:17;:19::i;:::-;21766:31;;:8;:31;;;21762:61;;21806:17;;;;;;;;;;;;;;21762:61;21888:8;21836:18;:39;21855:19;:17;:19::i;:::-;21836:39;;;;;;;;;;;;;;;:49;21876:8;21836:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;21948:8;21912:55;;21927:19;:17;:19::i;:::-;21912:55;;;21958:8;21912:55;;;;;;:::i;:::-;;;;;;;;21667:308;;:::o;22814:227::-;23005:28;23015:4;23021:2;23025:7;23005:9;:28::i;:::-;22814:227;;;;:::o;10339:34::-;;;;:::o;19853:339::-;19926:13;19957:16;19965:7;19957;:16::i;:::-;19952:59;;19982:29;;;;;;;;;;;;;;19952:59;20022:21;20046:8;20022:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20097:1;20078:7;20072:21;:26;:112;;;;;;;;;;;;;;;;;20136:7;20150:18;20160:7;20150:9;:18::i;:::-;20108:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20072:112;20065:119;;;19853:339;;;:::o;10487:92::-;;;;;;;;;;;;;;;;;;;:::o;22046:164::-;22143:4;22167:18;:25;22186:5;22167:25;;;;;;;;;;;;;;;:35;22193:8;22167:35;;;;;;;;;;;;;;;;;;;;;;;;;22160:42;;22046:164;;;;:::o;23296:168::-;23353:4;23409:7;23390:15;:13;:15::i;:::-;:26;;:66;;;;;23443:13;;23433:7;:23;23390:66;23370:86;;23296:168;;;:::o;16870:1129::-;16937:7;16957:12;16972:7;16957:22;;17040:4;17021:15;:13;:15::i;:::-;:23;17017:915;;17074:13;;17067:4;:20;17063:869;;;17112:14;17129:17;:23;17147:4;17129:23;;;;;;;;;;;;17112:40;;17245:1;11874:8;17218:6;:23;:28;17214:699;;17737:113;17754:1;17744:6;:11;17737:113;;17797:17;:25;17815:6;;;;;;;17797:25;;;;;;;;;;;;17788:34;;17737:113;;;17883:6;17876:13;;;;;;17214:699;17089:843;17063:869;17017:915;17960:31;;;;;;;;;;;;;;16870:1129;;;;:::o;31838:105::-;31898:7;31925:10;31918:17;;31838:105;:::o;13579:92::-;13635:7;13579:92;:::o;28164:2636::-;28301:27;28331;28350:7;28331:18;:27::i;:::-;28301:57;;28416:4;28375:45;;28391:19;28375:45;;;28371:86;;28429:28;;;;;;;;;;;;;;28371:86;28470:23;28496:15;:24;28512:7;28496:24;;;;;;;;;;;;;;;;;;;;;28470:50;;28533:22;28582:4;28559:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;28607:43;28624:4;28630:19;:17;:19::i;:::-;28607:16;:43::i;:::-;28559:91;:150;;;;28690:19;:17;:19::i;:::-;28671:38;;:15;:38;;;28559:150;28533:177;;28728:17;28723:66;;28754:35;;;;;;;;;;;;;;28723:66;28978:1;28940:34;28958:15;28940:17;:34::i;:::-;:39;28936:103;;29003:15;:24;29019:7;29003:24;;;;;;;;;;;;28996:31;;;;;;;;;;;28936:103;29406:18;:24;29425:4;29406:24;;;;;;;;;;;;;;;;29404:26;;;;;;;;;;;;29475:18;:22;29494:2;29475:22;;;;;;;;;;;;;;;;29473:24;;;;;;;;;;;12152:8;11758:3;29856:15;:41;;29814:21;29832:2;29814:17;:21::i;:::-;:84;:128;29768:17;:26;29786:7;29768:26;;;;;;;;;;;:174;;;;30112:1;12152:8;30062:19;:46;:51;30058:626;;30134:19;30166:1;30156:7;:11;30134:33;;30323:1;30289:17;:30;30307:11;30289:30;;;;;;;;;;;;:35;30285:384;;30427:13;;30412:11;:28;30408:242;;30607:19;30574:17;:30;30592:11;30574:30;;;;;;;;;;;:52;;;;30408:242;30285:384;30115:569;30058:626;30731:7;30727:2;30712:27;;30721:4;30712:27;;;;;;;;;;;;30750:42;30771:4;30777:2;30781:7;30790:1;30750:20;:42::i;:::-;28288:2512;;;28164:2636;;;:::o;20435:148::-;20499:14;20560:5;20550:15;;20435:148;;;:::o;26316:1594::-;26381:20;26404:13;;26381:36;;26457:1;26432:21;26450:2;26432:17;:21::i;:::-;:26;26428:58;;26467:19;;;;;;;;;;;;;;26428:58;26513:1;26501:8;:13;26497:44;;26523:18;;;;;;;;;;;;;;26497:44;27086:1;11241:2;27057:1;:25;;27056:31;27044:8;:44;27018:18;:22;27037:2;27018:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;12017:3;27487:29;27514:1;27502:8;:13;27487:14;:29::i;:::-;:56;;11758:3;27424:15;:41;;27382:21;27400:2;27382:17;:21::i;:::-;:84;:162;27331:17;:31;27349:12;27331:31;;;;;;;;;;;:213;;;;27561:20;27584:12;27561:35;;27611:11;27640:8;27625:12;:23;27611:37;;27665:111;27717:14;;;;;;27713:2;27692:40;;27709:1;27692:40;;;;;;;;;;;;27771:3;27756:12;:18;27665:111;;27808:12;27792:13;:28;;;;26795:1037;;27842:60;27871:1;27875:2;27879:12;27893:8;27842:20;:60::i;:::-;26370:1540;26316:1594;;:::o;32049:1882::-;32106:17;32527:3;32520:4;32514:11;32510:21;32503:28;;32614:3;32608:4;32601:17;32714:3;33150:5;33282:1;33277:3;33273:11;33266:18;;33421:2;33415:4;33411:13;33407:2;33403:22;33398:3;33390:36;33463:2;33457:4;33453:13;33445:21;;33047:661;33479:4;33047:661;;;33647:1;33642:3;33638:11;33631:18;;33691:2;33685:4;33681:13;33677:2;33673:22;33668:3;33660:36;33564:2;33558:4;33554:13;33546:21;;33047:661;;;33051:427;33740:3;33735;33731:13;33849:2;33844:3;33840:12;33833:19;;33906:6;33901:3;33894:19;32145:1779;;32049:1882;;;:::o;31465:182::-;;;;;:::o;20670:142::-;20728:14;20789:5;20779:15;;20670:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:141::-;12652:4;12675:3;12667:11;;12698:3;12695:1;12688:14;12732:4;12729:1;12719:18;12711:26;;12603:141;;;:::o;12750:93::-;12787:6;12834:2;12829;12822:5;12818:14;12814:23;12804:33;;12750:93;;;:::o;12849:107::-;12893:8;12943:5;12937:4;12933:16;12912:37;;12849:107;;;;:::o;12962:393::-;13031:6;13081:1;13069:10;13065:18;13104:97;13134:66;13123:9;13104:97;:::i;:::-;13222:39;13252:8;13241:9;13222:39;:::i;:::-;13210:51;;13294:4;13290:9;13283:5;13279:21;13270:30;;13343:4;13333:8;13329:19;13322:5;13319:30;13309:40;;13038:317;;12962:393;;;;;:::o;13361:60::-;13389:3;13410:5;13403:12;;13361:60;;;:::o;13427:142::-;13477:9;13510:53;13528:34;13537:24;13555:5;13537:24;:::i;:::-;13528:34;:::i;:::-;13510:53;:::i;:::-;13497:66;;13427:142;;;:::o;13575:75::-;13618:3;13639:5;13632:12;;13575:75;;;:::o;13656:269::-;13766:39;13797:7;13766:39;:::i;:::-;13827:91;13876:41;13900:16;13876:41;:::i;:::-;13868:6;13861:4;13855:11;13827:91;:::i;:::-;13821:4;13814:105;13732:193;13656:269;;;:::o;13931:73::-;13976:3;13931:73;:::o;14010:189::-;14087:32;;:::i;:::-;14128:65;14186:6;14178;14172:4;14128:65;:::i;:::-;14063:136;14010:189;;:::o;14205:186::-;14265:120;14282:3;14275:5;14272:14;14265:120;;;14336:39;14373:1;14366:5;14336:39;:::i;:::-;14309:1;14302:5;14298:13;14289:22;;14265:120;;;14205:186;;:::o;14397:543::-;14498:2;14493:3;14490:11;14487:446;;;14532:38;14564:5;14532:38;:::i;:::-;14616:29;14634:10;14616:29;:::i;:::-;14606:8;14602:44;14799:2;14787:10;14784:18;14781:49;;;14820:8;14805:23;;14781:49;14843:80;14899:22;14917:3;14899:22;:::i;:::-;14889:8;14885:37;14872:11;14843:80;:::i;:::-;14502:431;;14487:446;14397:543;;;:::o;14946:117::-;15000:8;15050:5;15044:4;15040:16;15019:37;;14946:117;;;;:::o;15069:169::-;15113:6;15146:51;15194:1;15190:6;15182:5;15179:1;15175:13;15146:51;:::i;:::-;15142:56;15227:4;15221;15217:15;15207:25;;15120:118;15069:169;;;;:::o;15243:295::-;15319:4;15465:29;15490:3;15484:4;15465:29;:::i;:::-;15457:37;;15527:3;15524:1;15520:11;15514:4;15511:21;15503:29;;15243:295;;;;:::o;15543:1395::-;15660:37;15693:3;15660:37;:::i;:::-;15762:18;15754:6;15751:30;15748:56;;;15784:18;;:::i;:::-;15748:56;15828:38;15860:4;15854:11;15828:38;:::i;:::-;15913:67;15973:6;15965;15959:4;15913:67;:::i;:::-;16007:1;16031:4;16018:17;;16063:2;16055:6;16052:14;16080:1;16075:618;;;;16737:1;16754:6;16751:77;;;16803:9;16798:3;16794:19;16788:26;16779:35;;16751:77;16854:67;16914:6;16907:5;16854:67;:::i;:::-;16848:4;16841:81;16710:222;16045:887;;16075:618;16127:4;16123:9;16115:6;16111:22;16161:37;16193:4;16161:37;:::i;:::-;16220:1;16234:208;16248:7;16245:1;16242:14;16234:208;;;16327:9;16322:3;16318:19;16312:26;16304:6;16297:42;16378:1;16370:6;16366:14;16356:24;;16425:2;16414:9;16410:18;16397:31;;16271:4;16268:1;16264:12;16259:17;;16234:208;;;16470:6;16461:7;16458:19;16455:179;;;16528:9;16523:3;16519:19;16513:26;16571:48;16613:4;16605:6;16601:17;16590:9;16571:48;:::i;:::-;16563:6;16556:64;16478:156;16455:179;16680:1;16676;16668:6;16664:14;16660:22;16654:4;16647:36;16082:611;;;16045:887;;15635:1303;;;15543:1395;;:::o;16944:180::-;16992:77;16989:1;16982:88;17089:4;17086:1;17079:15;17113:4;17110:1;17103:15;17130:191;17170:3;17189:20;17207:1;17189:20;:::i;:::-;17184:25;;17223:20;17241:1;17223:20;:::i;:::-;17218:25;;17266:1;17263;17259:9;17252:16;;17287:3;17284:1;17281:10;17278:36;;;17294:18;;:::i;:::-;17278:36;17130:191;;;;:::o;17327:157::-;17467:9;17463:1;17455:6;17451:14;17444:33;17327:157;:::o;17490:365::-;17632:3;17653:66;17717:1;17712:3;17653:66;:::i;:::-;17646:73;;17728:93;17817:3;17728:93;:::i;:::-;17846:2;17841:3;17837:12;17830:19;;17490:365;;;:::o;17861:419::-;18027:4;18065:2;18054:9;18050:18;18042:26;;18114:9;18108:4;18104:20;18100:1;18089:9;18085:17;18078:47;18142:131;18268:4;18142:131;:::i;:::-;18134:139;;17861:419;;;:::o;18286:410::-;18326:7;18349:20;18367:1;18349:20;:::i;:::-;18344:25;;18383:20;18401:1;18383:20;:::i;:::-;18378:25;;18438:1;18435;18431:9;18460:30;18478:11;18460:30;:::i;:::-;18449:41;;18639:1;18630:7;18626:15;18623:1;18620:22;18600:1;18593:9;18573:83;18550:139;;18669:18;;:::i;:::-;18550:139;18334:362;18286:410;;;;:::o;18702:162::-;18842:14;18838:1;18830:6;18826:14;18819:38;18702:162;:::o;18870:366::-;19012:3;19033:67;19097:2;19092:3;19033:67;:::i;:::-;19026:74;;19109:93;19198:3;19109:93;:::i;:::-;19227:2;19222:3;19218:12;19211:19;;18870:366;;;:::o;19242:419::-;19408:4;19446:2;19435:9;19431:18;19423:26;;19495:9;19489:4;19485:20;19481:1;19470:9;19466:17;19459:47;19523:131;19649:4;19523:131;:::i;:::-;19515:139;;19242:419;;;:::o;19667:148::-;19769:11;19806:3;19791:18;;19667:148;;;;:::o;19821:161::-;19961:9;19957:1;19949:6;19945:14;19938:33;19821:161;:::o;19992:416::-;20152:3;20177:84;20259:1;20254:3;20177:84;:::i;:::-;20170:91;;20274:93;20363:3;20274:93;:::i;:::-;20396:1;20391:3;20387:11;20380:18;;19992:416;;;:::o;20418:410::-;20524:3;20556:39;20589:5;20556:39;:::i;:::-;20615:89;20697:6;20692:3;20615:89;:::i;:::-;20608:96;;20717:65;20775:6;20770:3;20763:4;20756:5;20752:16;20717:65;:::i;:::-;20811:6;20806:3;20802:16;20795:23;;20528:300;20418:410;;;;:::o;20838:159::-;20982:3;20978:1;20970:6;20966:14;20959:27;20838:159;:::o;21007:416::-;21167:3;21192:84;21274:1;21269:3;21192:84;:::i;:::-;21185:91;;21289:93;21378:3;21289:93;:::i;:::-;21411:1;21406:3;21402:11;21395:18;;21007:416;;;:::o;21433:163::-;21577:7;21573:1;21565:6;21561:14;21554:31;21433:163;:::o;21606:416::-;21766:3;21791:84;21873:1;21868:3;21791:84;:::i;:::-;21784:91;;21888:93;21977:3;21888:93;:::i;:::-;22010:1;22005:3;22001:11;21994:18;;21606:416;;;:::o;22032:1261::-;22515:3;22541:148;22685:3;22541:148;:::i;:::-;22534:155;;22710:95;22801:3;22792:6;22710:95;:::i;:::-;22703:102;;22826:148;22970:3;22826:148;:::i;:::-;22819:155;;22995:95;23086:3;23077:6;22995:95;:::i;:::-;22988:102;;23111:148;23255:3;23111:148;:::i;:::-;23104:155;;23280:3;23273:10;;22032:1261;;;;;:::o

Swarm Source

ipfs://f0339dc2a2bd6d1373eaed9b6b0b6e2035e3532b918ca1c9f041935f4182b374
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.