ETH Price: $3,441.91 (+1.27%)

Token

Boring pepe club (Boring pepe club)
 

Overview

Max Total Supply

349 Boring pepe club

Holders

172

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
name007.eth
Balance
2 Boring pepe club
0x22ef12d66cebc246dd403130020db0ae1b05cf8d
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:
NFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-29
*/

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

/*
 * @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 NFT is IERC721A { 

    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }

    modifier onlyOwner() { 
        require(_owner==msg.sender);
        _; 
    }

    uint256 public constant MAX_SUPPLY = 6969;
    uint256 public MAX_FREE = 6969;
    uint256 public MAX_FREE_PER_WALLET = 2;
    uint256 public COST = 0.002 ether;

    string private constant _name = "Boring pepe club";
    string private constant _symbol = "Boring pepe club";
    string private _baseURI = "QmXJSZs5ThaX1xKemGpdoN6RiiVAEWBJ9hGDKG6mBsfVF7";

    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");
        require(amount <= 20, "max 20 per TX");

        _mint(_caller, amount);
    }

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

        require(totalSupply() + amount <= MAX_FREE, "Freemint SoldOut");
        require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "Max per Wallet");

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

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


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

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

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

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


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

    function setConfig(uint256 _MAX_FREE_PER_WALLET, uint256 _COST, uint256 _MAX_FREE) external onlyOwner{
        MAX_FREE_PER_WALLET = _MAX_FREE_PER_WALLET;
        COST = _COST;
        MAX_FREE = _MAX_FREE;
    }

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

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

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


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

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

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

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

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




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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_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":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_MAX_FREE_PER_WALLET","type":"uint256"},{"internalType":"uint256","name":"_COST","type":"uint256"},{"internalType":"uint256","name":"_MAX_FREE","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"}]

6080604052611b396001556002805566071afd498d00006003556040518060600160405280602e815260200162002904602e91396004908162000043919062000317565b5060006005553480156200005657600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003fe565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200011f57607f821691505b602082108103620001355762000134620000d7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200019f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000160565b620001ab868362000160565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001f8620001f2620001ec84620001c3565b620001cd565b620001c3565b9050919050565b6000819050919050565b6200021483620001d7565b6200022c6200022382620001ff565b8484546200016d565b825550505050565b600090565b6200024362000234565b6200025081848462000209565b505050565b5b8181101562000278576200026c60008262000239565b60018101905062000256565b5050565b601f821115620002c75762000291816200013b565b6200029c8462000150565b81016020851015620002ac578190505b620002c4620002bb8562000150565b83018262000255565b50505b505050565b600082821c905092915050565b6000620002ec60001984600802620002cc565b1980831691505092915050565b6000620003078383620002d9565b9150826002028217905092915050565b62000322826200009d565b67ffffffffffffffff8111156200033e576200033d620000a8565b5b6200034a825462000106565b620003578282856200027c565b600060209050601f8311600181146200038f57600084156200037a578287015190505b620003868582620002f9565b865550620003f6565b601f1984166200039f866200013b565b60005b82811015620003c957848901518255600182019150602085019450602081019050620003a2565b86831015620003e95784890151620003e5601f891682620002d9565b8355505b6001600288020188555050505b505050505050565b6124f6806200040e6000396000f3fe60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806323b872dd1161010857806323b872dd1461027257806332cb6b0c1461029b5780633ccfd60b146102c657806342842e0e146102dd57806347064d6a146103065780635b70ea9f1461032f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f5578063129ee21a1461021e57806318160ddd14610247575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611788565b61057f565b60405161018491906117d0565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af919061187b565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906118d3565b61064e565b6040516101ec9190611941565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611988565b6106ca565b005b34801561022a57600080fd5b50610245600480360381019061024091906119c8565b610843565b005b34801561025357600080fd5b5061025c6108b5565b6040516102699190611a2a565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190611a45565b6108c8565b005b3480156102a757600080fd5b506102b06108d8565b6040516102bd9190611a2a565b60405180910390f35b3480156102d257600080fd5b506102db6108de565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190611a45565b610985565b005b34801561031257600080fd5b5061032d60048036038101906103289190611bcd565b6109a5565b005b34801561033b57600080fd5b50610344610a10565b005b34801561035257600080fd5b5061036d600480360381019061036891906118d3565b610adf565b60405161037a9190611941565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611c16565b610af1565b6040516103b79190611a2a565b60405180910390f35b3480156103cc57600080fd5b506103d5610b85565b6040516103e29190611941565b60405180910390f35b3480156103f757600080fd5b50610400610bae565b60405161040d919061187b565b60405180910390f35b34801561042257600080fd5b5061042b610beb565b6040516104389190611a2a565b60405180910390f35b61045b600480360381019061045691906118d3565b610bf1565b005b34801561046957600080fd5b50610484600480360381019061047f9190611c6f565b610cf6565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611d50565b610e6d565b005b3480156104bb57600080fd5b506104c4610e7e565b6040516104d19190611a2a565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906118d3565b610e84565b60405161050e919061187b565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611dd3565b610fa5565b60405161054b91906117d0565b60405180910390f35b34801561056057600080fd5b50610569611039565b6040516105769190611a2a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280601081526020017f426f72696e67207065706520636c756200000000000000000000000000000000815250905090565b60006106598261103f565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d582611060565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e61112c565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a8161075561112c565b610fa5565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461089b57600080fd5b826002819055508160038190555080600181905550505050565b60006108bf611134565b60055403905090565b6108d3838383611139565b505050565b611b3981565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461093657600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610981573d6000803e3d6000fd5b5050565b6109a083838360405180602001604052806000815250610e6d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109fd57600080fd5b8060049081610a0c919061201f565b5050565b6000610a1a61112c565b905060006002905060015481610a2e6108b5565b610a389190612120565b1115610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a70906121a0565b60405180910390fd5b600254610a85836114af565b82610a909190612120565b1115610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac89061220c565b60405180910390fd5b610adb8282611506565b5050565b6000610aea82611060565b9050919050565b600080610afd836116a8565b03610b34576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280601081526020017f426f72696e67207065706520636c756200000000000000000000000000000000815250905090565b60025481565b6000610bfb61112c565b9050611b3982610c096108b5565b610c139190612120565b1115610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612278565b60405180910390fd5b3460035483610c639190612298565b1115610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90612326565b60405180910390fd5b6014821115610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612392565b60405180910390fd5b610cf28183611506565b5050565b610cfe61112c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d62576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610d6f61112c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e1c61112c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e6191906117d0565b60405180910390a35050565b610e78848484611139565b50505050565b60035481565b6060610e8f8261103f565b610ec5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060048054610ed490611e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0090611e42565b8015610f4d5780601f10610f2257610100808354040283529160200191610f4d565b820191906000526020600020905b815481529060010190602001808311610f3057829003601f168201915b505050505090506000815103610f725760405180602001604052806000815250610f9d565b80610f7c846116b2565b604051602001610f8d929190612486565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60015481565b60008161104a611134565b11158015611059575060055482105b9050919050565b6000808290508061106f611134565b116110f5576005548110156110f45760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036110f2575b600081036110e85760066000836001900393508381526020019081526020016000205490506110be565b8092505050611127565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061114482611060565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111ab576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661120461112c565b73ffffffffffffffffffffffffffffffffffffffff16148061123357506112328661122d61112c565b610fa5565b5b80611270575061124161112c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806112a9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112b4836116a8565b146112f0576008600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6113b7876116a8565b1717600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361143f576000600185019050600060066000838152602001908152602001600020540361143d57600554811461143c578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114a7868686600161170c565b505050505050565b600067ffffffffffffffff6040600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600060055490506000611518846116a8565b0361154f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611589576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16115ee60018414611712565b901b60a042901b6115fe856116a8565b171760066000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611624578160058190555050506116a3600084838561170c565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156116f857600183039250600a81066030018353600a810490506116d8565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61176581611730565b811461177057600080fd5b50565b6000813590506117828161175c565b92915050565b60006020828403121561179e5761179d611726565b5b60006117ac84828501611773565b91505092915050565b60008115159050919050565b6117ca816117b5565b82525050565b60006020820190506117e560008301846117c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561182557808201518184015260208101905061180a565b60008484015250505050565b6000601f19601f8301169050919050565b600061184d826117eb565b61185781856117f6565b9350611867818560208601611807565b61187081611831565b840191505092915050565b600060208201905081810360008301526118958184611842565b905092915050565b6000819050919050565b6118b08161189d565b81146118bb57600080fd5b50565b6000813590506118cd816118a7565b92915050565b6000602082840312156118e9576118e8611726565b5b60006118f7848285016118be565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061192b82611900565b9050919050565b61193b81611920565b82525050565b60006020820190506119566000830184611932565b92915050565b61196581611920565b811461197057600080fd5b50565b6000813590506119828161195c565b92915050565b6000806040838503121561199f5761199e611726565b5b60006119ad85828601611973565b92505060206119be858286016118be565b9150509250929050565b6000806000606084860312156119e1576119e0611726565b5b60006119ef868287016118be565b9350506020611a00868287016118be565b9250506040611a11868287016118be565b9150509250925092565b611a248161189d565b82525050565b6000602082019050611a3f6000830184611a1b565b92915050565b600080600060608486031215611a5e57611a5d611726565b5b6000611a6c86828701611973565b9350506020611a7d86828701611973565b9250506040611a8e868287016118be565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ada82611831565b810181811067ffffffffffffffff82111715611af957611af8611aa2565b5b80604052505050565b6000611b0c61171c565b9050611b188282611ad1565b919050565b600067ffffffffffffffff821115611b3857611b37611aa2565b5b611b4182611831565b9050602081019050919050565b82818337600083830152505050565b6000611b70611b6b84611b1d565b611b02565b905082815260208101848484011115611b8c57611b8b611a9d565b5b611b97848285611b4e565b509392505050565b600082601f830112611bb457611bb3611a98565b5b8135611bc4848260208601611b5d565b91505092915050565b600060208284031215611be357611be2611726565b5b600082013567ffffffffffffffff811115611c0157611c0061172b565b5b611c0d84828501611b9f565b91505092915050565b600060208284031215611c2c57611c2b611726565b5b6000611c3a84828501611973565b91505092915050565b611c4c816117b5565b8114611c5757600080fd5b50565b600081359050611c6981611c43565b92915050565b60008060408385031215611c8657611c85611726565b5b6000611c9485828601611973565b9250506020611ca585828601611c5a565b9150509250929050565b600067ffffffffffffffff821115611cca57611cc9611aa2565b5b611cd382611831565b9050602081019050919050565b6000611cf3611cee84611caf565b611b02565b905082815260208101848484011115611d0f57611d0e611a9d565b5b611d1a848285611b4e565b509392505050565b600082601f830112611d3757611d36611a98565b5b8135611d47848260208601611ce0565b91505092915050565b60008060008060808587031215611d6a57611d69611726565b5b6000611d7887828801611973565b9450506020611d8987828801611973565b9350506040611d9a878288016118be565b925050606085013567ffffffffffffffff811115611dbb57611dba61172b565b5b611dc787828801611d22565b91505092959194509250565b60008060408385031215611dea57611de9611726565b5b6000611df885828601611973565b9250506020611e0985828601611973565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e5a57607f821691505b602082108103611e6d57611e6c611e13565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611ed57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611e98565b611edf8683611e98565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611f1c611f17611f128461189d565b611ef7565b61189d565b9050919050565b6000819050919050565b611f3683611f01565b611f4a611f4282611f23565b848454611ea5565b825550505050565b600090565b611f5f611f52565b611f6a818484611f2d565b505050565b5b81811015611f8e57611f83600082611f57565b600181019050611f70565b5050565b601f821115611fd357611fa481611e73565b611fad84611e88565b81016020851015611fbc578190505b611fd0611fc885611e88565b830182611f6f565b50505b505050565b600082821c905092915050565b6000611ff660001984600802611fd8565b1980831691505092915050565b600061200f8383611fe5565b9150826002028217905092915050565b612028826117eb565b67ffffffffffffffff81111561204157612040611aa2565b5b61204b8254611e42565b612056828285611f92565b600060209050601f8311600181146120895760008415612077578287015190505b6120818582612003565b8655506120e9565b601f19841661209786611e73565b60005b828110156120bf5784890151825560018201915060208501945060208101905061209a565b868310156120dc57848901516120d8601f891682611fe5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061212b8261189d565b91506121368361189d565b925082820190508082111561214e5761214d6120f1565b5b92915050565b7f467265656d696e7420536f6c644f757400000000000000000000000000000000600082015250565b600061218a6010836117f6565b915061219582612154565b602082019050919050565b600060208201905081810360008301526121b98161217d565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b60006121f6600e836117f6565b9150612201826121c0565b602082019050919050565b60006020820190508181036000830152612225816121e9565b9050919050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b60006122626007836117f6565b915061226d8261222c565b602082019050919050565b6000602082019050818103600083015261229181612255565b9050919050565b60006122a38261189d565b91506122ae8361189d565b92508282026122bc8161189d565b915082820484148315176122d3576122d26120f1565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b6000612310600c836117f6565b915061231b826122da565b602082019050919050565b6000602082019050818103600083015261233f81612303565b9050919050565b7f6d61782032302070657220545800000000000000000000000000000000000000600082015250565b600061237c600d836117f6565b915061238782612346565b602082019050919050565b600060208201905081810360008301526123ab8161236f565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b60006123f36007836123b2565b91506123fe826123bd565b600782019050919050565b6000612414826117eb565b61241e81856123b2565b935061242e818560208601611807565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006124706001836123b2565b915061247b8261243a565b600182019050919050565b6000612491826123e6565b915061249d8285612409565b91506124a882612463565b91506124b48284612409565b9150819050939250505056fea264697066735822122066cc51f6c62164dfbb1014fd61e230d680253b6d5d2921d6fbaa581ce71313d564736f6c63430008110033516d584a535a73355468615831784b656d4770646f4e3652696956414557424a396847444b47366d427366564637

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806323b872dd1161010857806323b872dd1461027257806332cb6b0c1461029b5780633ccfd60b146102c657806342842e0e146102dd57806347064d6a146103065780635b70ea9f1461032f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f5578063129ee21a1461021e57806318160ddd14610247575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611788565b61057f565b60405161018491906117d0565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af919061187b565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906118d3565b61064e565b6040516101ec9190611941565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611988565b6106ca565b005b34801561022a57600080fd5b50610245600480360381019061024091906119c8565b610843565b005b34801561025357600080fd5b5061025c6108b5565b6040516102699190611a2a565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190611a45565b6108c8565b005b3480156102a757600080fd5b506102b06108d8565b6040516102bd9190611a2a565b60405180910390f35b3480156102d257600080fd5b506102db6108de565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190611a45565b610985565b005b34801561031257600080fd5b5061032d60048036038101906103289190611bcd565b6109a5565b005b34801561033b57600080fd5b50610344610a10565b005b34801561035257600080fd5b5061036d600480360381019061036891906118d3565b610adf565b60405161037a9190611941565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611c16565b610af1565b6040516103b79190611a2a565b60405180910390f35b3480156103cc57600080fd5b506103d5610b85565b6040516103e29190611941565b60405180910390f35b3480156103f757600080fd5b50610400610bae565b60405161040d919061187b565b60405180910390f35b34801561042257600080fd5b5061042b610beb565b6040516104389190611a2a565b60405180910390f35b61045b600480360381019061045691906118d3565b610bf1565b005b34801561046957600080fd5b50610484600480360381019061047f9190611c6f565b610cf6565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611d50565b610e6d565b005b3480156104bb57600080fd5b506104c4610e7e565b6040516104d19190611a2a565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906118d3565b610e84565b60405161050e919061187b565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611dd3565b610fa5565b60405161054b91906117d0565b60405180910390f35b34801561056057600080fd5b50610569611039565b6040516105769190611a2a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280601081526020017f426f72696e67207065706520636c756200000000000000000000000000000000815250905090565b60006106598261103f565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d582611060565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e61112c565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a8161075561112c565b610fa5565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461089b57600080fd5b826002819055508160038190555080600181905550505050565b60006108bf611134565b60055403905090565b6108d3838383611139565b505050565b611b3981565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461093657600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610981573d6000803e3d6000fd5b5050565b6109a083838360405180602001604052806000815250610e6d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109fd57600080fd5b8060049081610a0c919061201f565b5050565b6000610a1a61112c565b905060006002905060015481610a2e6108b5565b610a389190612120565b1115610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a70906121a0565b60405180910390fd5b600254610a85836114af565b82610a909190612120565b1115610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac89061220c565b60405180910390fd5b610adb8282611506565b5050565b6000610aea82611060565b9050919050565b600080610afd836116a8565b03610b34576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280601081526020017f426f72696e67207065706520636c756200000000000000000000000000000000815250905090565b60025481565b6000610bfb61112c565b9050611b3982610c096108b5565b610c139190612120565b1115610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612278565b60405180910390fd5b3460035483610c639190612298565b1115610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90612326565b60405180910390fd5b6014821115610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612392565b60405180910390fd5b610cf28183611506565b5050565b610cfe61112c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d62576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610d6f61112c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e1c61112c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e6191906117d0565b60405180910390a35050565b610e78848484611139565b50505050565b60035481565b6060610e8f8261103f565b610ec5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060048054610ed490611e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0090611e42565b8015610f4d5780601f10610f2257610100808354040283529160200191610f4d565b820191906000526020600020905b815481529060010190602001808311610f3057829003601f168201915b505050505090506000815103610f725760405180602001604052806000815250610f9d565b80610f7c846116b2565b604051602001610f8d929190612486565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60015481565b60008161104a611134565b11158015611059575060055482105b9050919050565b6000808290508061106f611134565b116110f5576005548110156110f45760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036110f2575b600081036110e85760066000836001900393508381526020019081526020016000205490506110be565b8092505050611127565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061114482611060565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111ab576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661120461112c565b73ffffffffffffffffffffffffffffffffffffffff16148061123357506112328661122d61112c565b610fa5565b5b80611270575061124161112c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806112a9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112b4836116a8565b146112f0576008600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6113b7876116a8565b1717600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361143f576000600185019050600060066000838152602001908152602001600020540361143d57600554811461143c578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114a7868686600161170c565b505050505050565b600067ffffffffffffffff6040600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600060055490506000611518846116a8565b0361154f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611589576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16115ee60018414611712565b901b60a042901b6115fe856116a8565b171760066000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611624578160058190555050506116a3600084838561170c565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156116f857600183039250600a81066030018353600a810490506116d8565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61176581611730565b811461177057600080fd5b50565b6000813590506117828161175c565b92915050565b60006020828403121561179e5761179d611726565b5b60006117ac84828501611773565b91505092915050565b60008115159050919050565b6117ca816117b5565b82525050565b60006020820190506117e560008301846117c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561182557808201518184015260208101905061180a565b60008484015250505050565b6000601f19601f8301169050919050565b600061184d826117eb565b61185781856117f6565b9350611867818560208601611807565b61187081611831565b840191505092915050565b600060208201905081810360008301526118958184611842565b905092915050565b6000819050919050565b6118b08161189d565b81146118bb57600080fd5b50565b6000813590506118cd816118a7565b92915050565b6000602082840312156118e9576118e8611726565b5b60006118f7848285016118be565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061192b82611900565b9050919050565b61193b81611920565b82525050565b60006020820190506119566000830184611932565b92915050565b61196581611920565b811461197057600080fd5b50565b6000813590506119828161195c565b92915050565b6000806040838503121561199f5761199e611726565b5b60006119ad85828601611973565b92505060206119be858286016118be565b9150509250929050565b6000806000606084860312156119e1576119e0611726565b5b60006119ef868287016118be565b9350506020611a00868287016118be565b9250506040611a11868287016118be565b9150509250925092565b611a248161189d565b82525050565b6000602082019050611a3f6000830184611a1b565b92915050565b600080600060608486031215611a5e57611a5d611726565b5b6000611a6c86828701611973565b9350506020611a7d86828701611973565b9250506040611a8e868287016118be565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ada82611831565b810181811067ffffffffffffffff82111715611af957611af8611aa2565b5b80604052505050565b6000611b0c61171c565b9050611b188282611ad1565b919050565b600067ffffffffffffffff821115611b3857611b37611aa2565b5b611b4182611831565b9050602081019050919050565b82818337600083830152505050565b6000611b70611b6b84611b1d565b611b02565b905082815260208101848484011115611b8c57611b8b611a9d565b5b611b97848285611b4e565b509392505050565b600082601f830112611bb457611bb3611a98565b5b8135611bc4848260208601611b5d565b91505092915050565b600060208284031215611be357611be2611726565b5b600082013567ffffffffffffffff811115611c0157611c0061172b565b5b611c0d84828501611b9f565b91505092915050565b600060208284031215611c2c57611c2b611726565b5b6000611c3a84828501611973565b91505092915050565b611c4c816117b5565b8114611c5757600080fd5b50565b600081359050611c6981611c43565b92915050565b60008060408385031215611c8657611c85611726565b5b6000611c9485828601611973565b9250506020611ca585828601611c5a565b9150509250929050565b600067ffffffffffffffff821115611cca57611cc9611aa2565b5b611cd382611831565b9050602081019050919050565b6000611cf3611cee84611caf565b611b02565b905082815260208101848484011115611d0f57611d0e611a9d565b5b611d1a848285611b4e565b509392505050565b600082601f830112611d3757611d36611a98565b5b8135611d47848260208601611ce0565b91505092915050565b60008060008060808587031215611d6a57611d69611726565b5b6000611d7887828801611973565b9450506020611d8987828801611973565b9350506040611d9a878288016118be565b925050606085013567ffffffffffffffff811115611dbb57611dba61172b565b5b611dc787828801611d22565b91505092959194509250565b60008060408385031215611dea57611de9611726565b5b6000611df885828601611973565b9250506020611e0985828601611973565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e5a57607f821691505b602082108103611e6d57611e6c611e13565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611ed57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611e98565b611edf8683611e98565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611f1c611f17611f128461189d565b611ef7565b61189d565b9050919050565b6000819050919050565b611f3683611f01565b611f4a611f4282611f23565b848454611ea5565b825550505050565b600090565b611f5f611f52565b611f6a818484611f2d565b505050565b5b81811015611f8e57611f83600082611f57565b600181019050611f70565b5050565b601f821115611fd357611fa481611e73565b611fad84611e88565b81016020851015611fbc578190505b611fd0611fc885611e88565b830182611f6f565b50505b505050565b600082821c905092915050565b6000611ff660001984600802611fd8565b1980831691505092915050565b600061200f8383611fe5565b9150826002028217905092915050565b612028826117eb565b67ffffffffffffffff81111561204157612040611aa2565b5b61204b8254611e42565b612056828285611f92565b600060209050601f8311600181146120895760008415612077578287015190505b6120818582612003565b8655506120e9565b601f19841661209786611e73565b60005b828110156120bf5784890151825560018201915060208501945060208101905061209a565b868310156120dc57848901516120d8601f891682611fe5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061212b8261189d565b91506121368361189d565b925082820190508082111561214e5761214d6120f1565b5b92915050565b7f467265656d696e7420536f6c644f757400000000000000000000000000000000600082015250565b600061218a6010836117f6565b915061219582612154565b602082019050919050565b600060208201905081810360008301526121b98161217d565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b60006121f6600e836117f6565b9150612201826121c0565b602082019050919050565b60006020820190508181036000830152612225816121e9565b9050919050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b60006122626007836117f6565b915061226d8261222c565b602082019050919050565b6000602082019050818103600083015261229181612255565b9050919050565b60006122a38261189d565b91506122ae8361189d565b92508282026122bc8161189d565b915082820484148315176122d3576122d26120f1565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b6000612310600c836117f6565b915061231b826122da565b602082019050919050565b6000602082019050818103600083015261233f81612303565b9050919050565b7f6d61782032302070657220545800000000000000000000000000000000000000600082015250565b600061237c600d836117f6565b915061238782612346565b602082019050919050565b600060208201905081810360008301526123ab8161236f565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b60006123f36007836123b2565b91506123fe826123bd565b600782019050919050565b6000612414826117eb565b61241e81856123b2565b935061242e818560208601611807565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006124706001836123b2565b915061247b8261243a565b600182019050919050565b6000612491826123e6565b915061249d8285612409565b91506124a882612463565b91506124b48284612409565b9150819050939250505056fea264697066735822122066cc51f6c62164dfbb1014fd61e230d680253b6d5d2921d6fbaa581ce71313d564736f6c63430008110033

Deployed Bytecode Sourcemap

9017:21155:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14277:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18484:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20142:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19625:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12684:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13520:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21028:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9255:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30024:145;;;;;;;;;;;;;:::i;:::-;;21289:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12585:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10009:316;;;;;;;;;;;;;:::i;:::-;;18273:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14956:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9081:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18653:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9340:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9686:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20418:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21565:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9385:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18771:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20797:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9303:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14277:615;14362:4;14677:10;14662:25;;:11;:25;;;;:102;;;;14754:10;14739:25;;:11;:25;;;;14662:102;:179;;;;14831:10;14816:25;;:11;:25;;;;14662:179;14642:199;;14277:615;;;:::o;18484:100::-;18538:13;18571:5;;;;;;;;;;;;;;;;;18564:12;;18484:100;:::o;20142:204::-;20210:7;20235:16;20243:7;20235;:16::i;:::-;20230:64;;20260:34;;;;;;;;;;;;;;20230:64;20314:15;:24;20330:7;20314:24;;;;;;;;;;;;;;;;;;;;;20307:31;;20142:204;;;:::o;19625:451::-;19698:13;19730:27;19749:7;19730:18;:27::i;:::-;19698:61;;19780:5;19774:11;;:2;:11;;;19770:25;;19787:8;;;19770:25;19835:5;19812:28;;:19;:17;:19::i;:::-;:28;;;19808:175;;19860:44;19877:5;19884:19;:17;:19::i;:::-;19860:16;:44::i;:::-;19855:128;;19932:35;;;;;;;;;;;;;;19855:128;19808:175;20022:2;19995:15;:24;20011:7;19995:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20060:7;20056:2;20040:28;;20049:5;20040:28;;;;;;;;;;;;19687:389;19625:451;;:::o;12684:216::-;9215:10;9207:18;;:6;;;;;;;;;;:18;;;9199:27;;;;;;12818:20:::1;12796:19;:42;;;;12856:5;12849:4;:12;;;;12883:9;12872:8;:20;;;;12684:216:::0;;;:::o;13520:300::-;13573:7;13786:15;:13;:15::i;:::-;13770:13;;:31;13763:38;;13520:300;:::o;21028:190::-;21182:28;21192:4;21198:2;21202:7;21182:9;:28::i;:::-;21028:190;;;:::o;9255:41::-;9292:4;9255:41;:::o;30024:145::-;9215:10;9207:18;;:6;;;;;;;;;;:18;;;9199:27;;;;;;30074:15:::1;30092:21;30074:39;;30132:10;30124:28;;:37;30153:7;30124:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;30063:106;30024:145::o:0;21289:205::-;21447:39;21464:4;21470:2;21474:7;21447:39;;;;;;;;;;;;:16;:39::i;:::-;21289:205;;;:::o;12585:91::-;9215:10;9207:18;;:6;;;;;;;;;;:18;;;9199:27;;;;;;12663:5:::1;12652:8;:16;;;;;;:::i;:::-;;12585:91:::0;:::o;10009:316::-;10048:15;10066:19;:17;:19::i;:::-;10048:37;;10096:14;10113:1;10096:18;;10161:8;;10151:6;10135:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;10127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10244:19;;10218:22;10232:7;10218:13;:22::i;:::-;10209:6;:31;;;;:::i;:::-;:54;;10201:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10295:22;10301:7;10310:6;10295:5;:22::i;:::-;10037:288;;10009:316::o;18273:144::-;18337:7;18380:27;18399:7;18380:18;:27::i;:::-;18357:52;;18273:144;;;:::o;14956:234::-;15020:7;15072:1;15044:24;15062:5;15044:17;:24::i;:::-;:29;15040:70;;15082:28;;;;;;;;;;;;;;15040:70;10436:13;15128:18;:25;15147:5;15128:25;;;;;;;;;;;;;;;;:54;15121:61;;14956:234;;;:::o;9081:77::-;9118:7;9144:6;;;;;;;;;;;9137:13;;9081:77;:::o;18653:104::-;18709:13;18742:7;;;;;;;;;;;;;;;;;18735:14;;18653:104;:::o;9340:38::-;;;;:::o;9686:315::-;9743:15;9761:19;:17;:19::i;:::-;9743:37;;9292:4;9817:6;9801:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;9793:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;9883:9;9875:4;;9868:6;:11;;;;:::i;:::-;:24;;9860:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;9938:2;9928:6;:12;;9920:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;9971:22;9977:7;9986:6;9971:5;:22::i;:::-;9732:269;9686:315;:::o;20418:308::-;20529:19;:17;:19::i;:::-;20517:31;;:8;:31;;;20513:61;;20557:17;;;;;;;;;;;;;;20513:61;20639:8;20587:18;:39;20606:19;:17;:19::i;:::-;20587:39;;;;;;;;;;;;;;;:49;20627:8;20587:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20699:8;20663:55;;20678:19;:17;:19::i;:::-;20663:55;;;20709:8;20663:55;;;;;;:::i;:::-;;;;;;;;20418:308;;:::o;21565:227::-;21756:28;21766:4;21772:2;21776:7;21756:9;:28::i;:::-;21565:227;;;;:::o;9385:33::-;;;;:::o;18771:330::-;18844:13;18875:16;18883:7;18875;:16::i;:::-;18870:59;;18900:29;;;;;;;;;;;;;;18870:59;18940:21;18964:8;18940:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19015:1;18996:7;18990:21;:26;:103;;;;;;;;;;;;;;;;;19054:7;19068:18;19078:7;19068:9;:18::i;:::-;19026:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18990:103;18983:110;;;18771:330;;;:::o;20797:164::-;20894:4;20918:18;:25;20937:5;20918:25;;;;;;;;;;;;;;;:35;20944:8;20918:35;;;;;;;;;;;;;;;;;;;;;;;;;20911:42;;20797:164;;;;:::o;9303:30::-;;;;:::o;22047:168::-;22104:4;22160:7;22141:15;:13;:15::i;:::-;:26;;:66;;;;;22194:13;;22184:7;:23;22141:66;22121:86;;22047:168;;;:::o;15788:1129::-;15855:7;15875:12;15890:7;15875:22;;15958:4;15939:15;:13;:15::i;:::-;:23;15935:915;;15992:13;;15985:4;:20;15981:869;;;16030:14;16047:17;:23;16065:4;16047:23;;;;;;;;;;;;16030:40;;16163:1;11206:8;16136:6;:23;:28;16132:699;;16655:113;16672:1;16662:6;:11;16655:113;;16715:17;:25;16733:6;;;;;;;16715:25;;;;;;;;;;;;16706:34;;16655:113;;;16801:6;16794:13;;;;;;16132:699;16007:843;15981:869;15935:915;16878:31;;;;;;;;;;;;;;15788:1129;;;;:::o;27923:105::-;27983:7;28010:10;28003:17;;27923:105;:::o;13043:92::-;13099:7;13043:92;:::o;24328:2557::-;24465:27;24495;24514:7;24495:18;:27::i;:::-;24465:57;;24580:4;24539:45;;24555:19;24539:45;;;24535:86;;24593:28;;;;;;;;;;;;;;24535:86;24634:23;24660:15;:24;24676:7;24660:24;;;;;;;;;;;;;;;;;;;;;24634:50;;24697:22;24746:4;24723:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;24771:43;24788:4;24794:19;:17;:19::i;:::-;24771:16;:43::i;:::-;24723:91;:150;;;;24854:19;:17;:19::i;:::-;24835:38;;:15;:38;;;24723:150;24697:177;;24892:17;24887:66;;24918:35;;;;;;;;;;;;;;24887:66;25063:1;25025:34;25043:15;25025:17;:34::i;:::-;:39;25021:103;;25088:15;:24;25104:7;25088:24;;;;;;;;;;;;25081:31;;;;;;;;;;;25021:103;25491:18;:24;25510:4;25491:24;;;;;;;;;;;;;;;;25489:26;;;;;;;;;;;;25560:18;:22;25579:2;25560:22;;;;;;;;;;;;;;;;25558:24;;;;;;;;;;;11484:8;11090:3;25941:15;:41;;25899:21;25917:2;25899:17;:21::i;:::-;:84;:128;25853:17;:26;25871:7;25853:26;;;;;;;;;;;:174;;;;26197:1;11484:8;26147:19;:46;:51;26143:626;;26219:19;26251:1;26241:7;:11;26219:33;;26408:1;26374:17;:30;26392:11;26374:30;;;;;;;;;;;;:35;26370:384;;26512:13;;26497:11;:28;26493:242;;26692:19;26659:17;:30;26677:11;26659:30;;;;;;;;;;;:52;;;;26493:242;26370:384;26200:569;26143:626;26816:7;26812:2;26797:27;;26806:4;26797:27;;;;;;;;;;;;26835:42;26856:4;26862:2;26866:7;26875:1;26835:20;:42::i;:::-;24452:2433;;;24328:2557;;;:::o;15272:176::-;15333:7;10436:13;10573:2;15361:18;:25;15380:5;15361:25;;;;;;;;;;;;;;;;:49;;15360:80;15353:87;;15272:176;;;:::o;22480:1594::-;22545:20;22568:13;;22545:36;;22621:1;22596:21;22614:2;22596:17;:21::i;:::-;:26;22592:58;;22631:19;;;;;;;;;;;;;;22592:58;22677:1;22665:8;:13;22661:44;;22687:18;;;;;;;;;;;;;;22661:44;23250:1;10573:2;23221:1;:25;;23220:31;23208:8;:44;23182:18;:22;23201:2;23182:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;11349:3;23651:29;23678:1;23666:8;:13;23651:14;:29::i;:::-;:56;;11090:3;23588:15;:41;;23546:21;23564:2;23546:17;:21::i;:::-;:84;:162;23495:17;:31;23513:12;23495:31;;;;;;;;;;;:213;;;;23725:20;23748:12;23725:35;;23775:11;23804:8;23789:12;:23;23775:37;;23829:111;23881:14;;;;;;23877:2;23856:40;;23873:1;23856:40;;;;;;;;;;;;23935:3;23920:12;:18;23829:111;;23972:12;23956:13;:28;;;;22959:1037;;24006:60;24035:1;24039:2;24043:12;24057:8;24006:20;:60::i;:::-;22534:1540;22480:1594;;:::o;19186:148::-;19250:14;19311:5;19301:15;;19186:148;;;:::o;28134:1882::-;28191:17;28612:3;28605:4;28599:11;28595:21;28588:28;;28699:3;28693:4;28686:17;28799:3;29235:5;29367:1;29362:3;29358:11;29351:18;;29506:2;29500:4;29496:13;29492:2;29488:22;29483:3;29475:36;29548:2;29542:4;29538:13;29530:21;;29132:661;29564:4;29132:661;;;29732:1;29727:3;29723:11;29716:18;;29776:2;29770:4;29766:13;29762:2;29758:22;29753:3;29745:36;29649:2;29643:4;29639:13;29631:21;;29132:661;;;29136:427;29825:3;29820;29816:13;29934:2;29929:3;29925:12;29918:19;;29991:6;29986:3;29979:19;28230:1779;;28134:1882;;;:::o;27550:182::-;;;;;:::o;19421:142::-;19479:14;19540:5;19530:15;;19421: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:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:118::-;5602:24;5620:5;5602:24;:::i;:::-;5597:3;5590:37;5515:118;;:::o;5639:222::-;5732:4;5770:2;5759:9;5755:18;5747:26;;5783:71;5851:1;5840:9;5836:17;5827:6;5783:71;:::i;:::-;5639:222;;;;:::o;5867:619::-;5944:6;5952;5960;6009:2;5997:9;5988:7;5984:23;5980:32;5977:119;;;6015:79;;:::i;:::-;5977:119;6135:1;6160:53;6205:7;6196:6;6185:9;6181:22;6160:53;:::i;:::-;6150:63;;6106:117;6262:2;6288:53;6333:7;6324:6;6313:9;6309:22;6288:53;:::i;:::-;6278:63;;6233:118;6390:2;6416:53;6461:7;6452:6;6441:9;6437:22;6416:53;:::i;:::-;6406:63;;6361:118;5867:619;;;;;:::o;6492:117::-;6601:1;6598;6591:12;6615:117;6724:1;6721;6714:12;6738:180;6786:77;6783:1;6776:88;6883:4;6880:1;6873:15;6907:4;6904:1;6897:15;6924:281;7007:27;7029:4;7007:27;:::i;:::-;6999:6;6995:40;7137:6;7125:10;7122:22;7101:18;7089:10;7086:34;7083:62;7080:88;;;7148:18;;:::i;:::-;7080:88;7188:10;7184:2;7177:22;6967:238;6924:281;;:::o;7211:129::-;7245:6;7272:20;;:::i;:::-;7262:30;;7301:33;7329:4;7321:6;7301:33;:::i;:::-;7211:129;;;:::o;7346:308::-;7408:4;7498:18;7490:6;7487:30;7484:56;;;7520:18;;:::i;:::-;7484:56;7558:29;7580:6;7558:29;:::i;:::-;7550:37;;7642:4;7636;7632:15;7624:23;;7346:308;;;:::o;7660:146::-;7757:6;7752:3;7747;7734:30;7798:1;7789:6;7784:3;7780:16;7773:27;7660:146;;;:::o;7812:425::-;7890:5;7915:66;7931:49;7973:6;7931:49;:::i;:::-;7915:66;:::i;:::-;7906:75;;8004:6;7997:5;7990:21;8042:4;8035:5;8031:16;8080:3;8071:6;8066:3;8062:16;8059:25;8056:112;;;8087:79;;:::i;:::-;8056:112;8177:54;8224:6;8219:3;8214;8177:54;:::i;:::-;7896:341;7812:425;;;;;:::o;8257:340::-;8313:5;8362:3;8355:4;8347:6;8343:17;8339:27;8329:122;;8370:79;;:::i;:::-;8329:122;8487:6;8474:20;8512:79;8587:3;8579:6;8572:4;8564:6;8560:17;8512:79;:::i;:::-;8503:88;;8319:278;8257:340;;;;:::o;8603:509::-;8672:6;8721:2;8709:9;8700:7;8696:23;8692:32;8689:119;;;8727:79;;:::i;:::-;8689:119;8875:1;8864:9;8860:17;8847:31;8905:18;8897:6;8894:30;8891:117;;;8927:79;;:::i;:::-;8891:117;9032:63;9087:7;9078:6;9067:9;9063:22;9032:63;:::i;:::-;9022:73;;8818:287;8603:509;;;;:::o;9118:329::-;9177:6;9226:2;9214:9;9205:7;9201:23;9197:32;9194:119;;;9232:79;;:::i;:::-;9194:119;9352:1;9377:53;9422:7;9413:6;9402:9;9398:22;9377:53;:::i;:::-;9367:63;;9323:117;9118:329;;;;:::o;9453:116::-;9523:21;9538:5;9523:21;:::i;:::-;9516:5;9513:32;9503:60;;9559:1;9556;9549:12;9503:60;9453:116;:::o;9575:133::-;9618:5;9656:6;9643:20;9634:29;;9672:30;9696:5;9672:30;:::i;:::-;9575:133;;;;:::o;9714:468::-;9779:6;9787;9836:2;9824:9;9815:7;9811:23;9807:32;9804:119;;;9842:79;;:::i;:::-;9804:119;9962:1;9987:53;10032:7;10023:6;10012:9;10008:22;9987:53;:::i;:::-;9977:63;;9933:117;10089:2;10115:50;10157:7;10148:6;10137:9;10133:22;10115:50;:::i;:::-;10105:60;;10060:115;9714:468;;;;;:::o;10188:307::-;10249:4;10339:18;10331:6;10328:30;10325:56;;;10361:18;;:::i;:::-;10325:56;10399:29;10421:6;10399:29;:::i;:::-;10391:37;;10483:4;10477;10473:15;10465:23;;10188:307;;;:::o;10501:423::-;10578:5;10603:65;10619:48;10660:6;10619:48;:::i;:::-;10603:65;:::i;:::-;10594:74;;10691:6;10684:5;10677:21;10729:4;10722:5;10718:16;10767:3;10758:6;10753:3;10749:16;10746:25;10743:112;;;10774:79;;:::i;:::-;10743:112;10864:54;10911:6;10906:3;10901;10864:54;:::i;:::-;10584:340;10501:423;;;;;:::o;10943:338::-;10998:5;11047:3;11040:4;11032:6;11028:17;11024:27;11014:122;;11055:79;;:::i;:::-;11014:122;11172:6;11159:20;11197:78;11271:3;11263:6;11256:4;11248:6;11244:17;11197:78;:::i;:::-;11188:87;;11004:277;10943:338;;;;:::o;11287:943::-;11382:6;11390;11398;11406;11455:3;11443:9;11434:7;11430:23;11426:33;11423:120;;;11462:79;;:::i;:::-;11423:120;11582:1;11607:53;11652:7;11643:6;11632:9;11628:22;11607:53;:::i;:::-;11597:63;;11553:117;11709:2;11735:53;11780:7;11771:6;11760:9;11756:22;11735:53;:::i;:::-;11725:63;;11680:118;11837:2;11863:53;11908:7;11899:6;11888:9;11884:22;11863:53;:::i;:::-;11853:63;;11808:118;11993:2;11982:9;11978:18;11965:32;12024:18;12016:6;12013:30;12010:117;;;12046:79;;:::i;:::-;12010:117;12151:62;12205:7;12196:6;12185:9;12181:22;12151:62;:::i;:::-;12141:72;;11936:287;11287:943;;;;;;;:::o;12236:474::-;12304:6;12312;12361:2;12349:9;12340:7;12336:23;12332:32;12329:119;;;12367:79;;:::i;:::-;12329:119;12487:1;12512:53;12557:7;12548:6;12537:9;12533:22;12512:53;:::i;:::-;12502:63;;12458:117;12614:2;12640:53;12685:7;12676:6;12665:9;12661:22;12640:53;:::i;:::-;12630:63;;12585:118;12236:474;;;;;:::o;12716:180::-;12764:77;12761:1;12754:88;12861:4;12858:1;12851:15;12885:4;12882:1;12875:15;12902:320;12946:6;12983:1;12977:4;12973:12;12963:22;;13030:1;13024:4;13020:12;13051:18;13041:81;;13107:4;13099:6;13095:17;13085:27;;13041:81;13169:2;13161:6;13158:14;13138:18;13135:38;13132:84;;13188:18;;:::i;:::-;13132:84;12953:269;12902:320;;;:::o;13228:141::-;13277:4;13300:3;13292:11;;13323:3;13320:1;13313:14;13357:4;13354:1;13344:18;13336:26;;13228:141;;;:::o;13375:93::-;13412:6;13459:2;13454;13447:5;13443:14;13439:23;13429:33;;13375:93;;;:::o;13474:107::-;13518:8;13568:5;13562:4;13558:16;13537:37;;13474:107;;;;:::o;13587:393::-;13656:6;13706:1;13694:10;13690:18;13729:97;13759:66;13748:9;13729:97;:::i;:::-;13847:39;13877:8;13866:9;13847:39;:::i;:::-;13835:51;;13919:4;13915:9;13908:5;13904:21;13895:30;;13968:4;13958:8;13954:19;13947:5;13944:30;13934:40;;13663:317;;13587:393;;;;;:::o;13986:60::-;14014:3;14035:5;14028:12;;13986:60;;;:::o;14052:142::-;14102:9;14135:53;14153:34;14162:24;14180:5;14162:24;:::i;:::-;14153:34;:::i;:::-;14135:53;:::i;:::-;14122:66;;14052:142;;;:::o;14200:75::-;14243:3;14264:5;14257:12;;14200:75;;;:::o;14281:269::-;14391:39;14422:7;14391:39;:::i;:::-;14452:91;14501:41;14525:16;14501:41;:::i;:::-;14493:6;14486:4;14480:11;14452:91;:::i;:::-;14446:4;14439:105;14357:193;14281:269;;;:::o;14556:73::-;14601:3;14556:73;:::o;14635:189::-;14712:32;;:::i;:::-;14753:65;14811:6;14803;14797:4;14753:65;:::i;:::-;14688:136;14635:189;;:::o;14830:186::-;14890:120;14907:3;14900:5;14897:14;14890:120;;;14961:39;14998:1;14991:5;14961:39;:::i;:::-;14934:1;14927:5;14923:13;14914:22;;14890:120;;;14830:186;;:::o;15022:543::-;15123:2;15118:3;15115:11;15112:446;;;15157:38;15189:5;15157:38;:::i;:::-;15241:29;15259:10;15241:29;:::i;:::-;15231:8;15227:44;15424:2;15412:10;15409:18;15406:49;;;15445:8;15430:23;;15406:49;15468:80;15524:22;15542:3;15524:22;:::i;:::-;15514:8;15510:37;15497:11;15468:80;:::i;:::-;15127:431;;15112:446;15022:543;;;:::o;15571:117::-;15625:8;15675:5;15669:4;15665:16;15644:37;;15571:117;;;;:::o;15694:169::-;15738:6;15771:51;15819:1;15815:6;15807:5;15804:1;15800:13;15771:51;:::i;:::-;15767:56;15852:4;15846;15842:15;15832:25;;15745:118;15694:169;;;;:::o;15868:295::-;15944:4;16090:29;16115:3;16109:4;16090:29;:::i;:::-;16082:37;;16152:3;16149:1;16145:11;16139:4;16136:21;16128:29;;15868:295;;;;:::o;16168:1395::-;16285:37;16318:3;16285:37;:::i;:::-;16387:18;16379:6;16376:30;16373:56;;;16409:18;;:::i;:::-;16373:56;16453:38;16485:4;16479:11;16453:38;:::i;:::-;16538:67;16598:6;16590;16584:4;16538:67;:::i;:::-;16632:1;16656:4;16643:17;;16688:2;16680:6;16677:14;16705:1;16700:618;;;;17362:1;17379:6;17376:77;;;17428:9;17423:3;17419:19;17413:26;17404:35;;17376:77;17479:67;17539:6;17532:5;17479:67;:::i;:::-;17473:4;17466:81;17335:222;16670:887;;16700:618;16752:4;16748:9;16740:6;16736:22;16786:37;16818:4;16786:37;:::i;:::-;16845:1;16859:208;16873:7;16870:1;16867:14;16859:208;;;16952:9;16947:3;16943:19;16937:26;16929:6;16922:42;17003:1;16995:6;16991:14;16981:24;;17050:2;17039:9;17035:18;17022:31;;16896:4;16893:1;16889:12;16884:17;;16859:208;;;17095:6;17086:7;17083:19;17080:179;;;17153:9;17148:3;17144:19;17138:26;17196:48;17238:4;17230:6;17226:17;17215:9;17196:48;:::i;:::-;17188:6;17181:64;17103:156;17080:179;17305:1;17301;17293:6;17289:14;17285:22;17279:4;17272:36;16707:611;;;16670:887;;16260:1303;;;16168:1395;;:::o;17569:180::-;17617:77;17614:1;17607:88;17714:4;17711:1;17704:15;17738:4;17735:1;17728:15;17755:191;17795:3;17814:20;17832:1;17814:20;:::i;:::-;17809:25;;17848:20;17866:1;17848:20;:::i;:::-;17843:25;;17891:1;17888;17884:9;17877:16;;17912:3;17909:1;17906:10;17903:36;;;17919:18;;:::i;:::-;17903:36;17755:191;;;;:::o;17952:166::-;18092:18;18088:1;18080:6;18076:14;18069:42;17952:166;:::o;18124:366::-;18266:3;18287:67;18351:2;18346:3;18287:67;:::i;:::-;18280:74;;18363:93;18452:3;18363:93;:::i;:::-;18481:2;18476:3;18472:12;18465:19;;18124:366;;;:::o;18496:419::-;18662:4;18700:2;18689:9;18685:18;18677:26;;18749:9;18743:4;18739:20;18735:1;18724:9;18720:17;18713:47;18777:131;18903:4;18777:131;:::i;:::-;18769:139;;18496:419;;;:::o;18921:164::-;19061:16;19057:1;19049:6;19045:14;19038:40;18921:164;:::o;19091:366::-;19233:3;19254:67;19318:2;19313:3;19254:67;:::i;:::-;19247:74;;19330:93;19419:3;19330:93;:::i;:::-;19448:2;19443:3;19439:12;19432:19;;19091:366;;;:::o;19463:419::-;19629:4;19667:2;19656:9;19652:18;19644:26;;19716:9;19710:4;19706:20;19702:1;19691:9;19687:17;19680:47;19744:131;19870:4;19744:131;:::i;:::-;19736:139;;19463:419;;;:::o;19888:157::-;20028:9;20024:1;20016:6;20012:14;20005:33;19888:157;:::o;20051:365::-;20193:3;20214:66;20278:1;20273:3;20214:66;:::i;:::-;20207:73;;20289:93;20378:3;20289:93;:::i;:::-;20407:2;20402:3;20398:12;20391:19;;20051:365;;;:::o;20422:419::-;20588:4;20626:2;20615:9;20611:18;20603:26;;20675:9;20669:4;20665:20;20661:1;20650:9;20646:17;20639:47;20703:131;20829:4;20703:131;:::i;:::-;20695:139;;20422:419;;;:::o;20847:410::-;20887:7;20910:20;20928:1;20910:20;:::i;:::-;20905:25;;20944:20;20962:1;20944:20;:::i;:::-;20939:25;;20999:1;20996;20992:9;21021:30;21039:11;21021:30;:::i;:::-;21010:41;;21200:1;21191:7;21187:15;21184:1;21181:22;21161:1;21154:9;21134:83;21111:139;;21230:18;;:::i;:::-;21111:139;20895:362;20847:410;;;;:::o;21263:162::-;21403:14;21399:1;21391:6;21387:14;21380:38;21263:162;:::o;21431:366::-;21573:3;21594:67;21658:2;21653:3;21594:67;:::i;:::-;21587:74;;21670:93;21759:3;21670:93;:::i;:::-;21788:2;21783:3;21779:12;21772:19;;21431:366;;;:::o;21803:419::-;21969:4;22007:2;21996:9;21992:18;21984:26;;22056:9;22050:4;22046:20;22042:1;22031:9;22027:17;22020:47;22084:131;22210:4;22084:131;:::i;:::-;22076:139;;21803:419;;;:::o;22228:163::-;22368:15;22364:1;22356:6;22352:14;22345:39;22228:163;:::o;22397:366::-;22539:3;22560:67;22624:2;22619:3;22560:67;:::i;:::-;22553:74;;22636:93;22725:3;22636:93;:::i;:::-;22754:2;22749:3;22745:12;22738:19;;22397:366;;;:::o;22769:419::-;22935:4;22973:2;22962:9;22958:18;22950:26;;23022:9;23016:4;23012:20;23008:1;22997:9;22993:17;22986:47;23050:131;23176:4;23050:131;:::i;:::-;23042:139;;22769:419;;;:::o;23194:148::-;23296:11;23333:3;23318:18;;23194:148;;;;:::o;23348:161::-;23488:9;23484:1;23476:6;23472:14;23465:33;23348:161;:::o;23519:416::-;23679:3;23704:84;23786:1;23781:3;23704:84;:::i;:::-;23697:91;;23801:93;23890:3;23801:93;:::i;:::-;23923:1;23918:3;23914:11;23907:18;;23519:416;;;:::o;23945:410::-;24051:3;24083:39;24116:5;24083:39;:::i;:::-;24142:89;24224:6;24219:3;24142:89;:::i;:::-;24135:96;;24244:65;24302:6;24297:3;24290:4;24283:5;24279:16;24244:65;:::i;:::-;24338:6;24333:3;24329:16;24322:23;;24055:300;23945:410;;;;:::o;24365:159::-;24509:3;24505:1;24497:6;24493:14;24486:27;24365:159;:::o;24534:416::-;24694:3;24719:84;24801:1;24796:3;24719:84;:::i;:::-;24712:91;;24816:93;24905:3;24816:93;:::i;:::-;24938:1;24933:3;24929:11;24922:18;;24534:416;;;:::o;24960:991::-;25342:3;25368:148;25512:3;25368:148;:::i;:::-;25361:155;;25537:95;25628:3;25619:6;25537:95;:::i;:::-;25530:102;;25653:148;25797:3;25653:148;:::i;:::-;25646:155;;25822:95;25913:3;25904:6;25822:95;:::i;:::-;25815:102;;25938:3;25931:10;;24960:991;;;;;:::o

Swarm Source

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