ETH Price: $3,419.54 (-1.63%)
Gas: 7 Gwei

Token

BLACKPEEPS (BP)
 

Overview

Max Total Supply

678 BP

Holders

378

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
stompsy.eth
Balance
1 BP
0x62f65fd686b65ed36953347779f8168ba83ce2d3
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:
BLACKPEEPS

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 2023-01-13
*/

// 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 BLACKPEEPS is IERC721A { 

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

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

    uint256 public constant MAX_SUPPLY = 999;
    uint256 public MAX_FREE = 666;
    uint256 public MAX_FREE_PER_WALLET = 1;
    uint256 public COST = 0.002 ether;

    string private constant _name = "BLACKPEEPS";
    string private constant _symbol = "BP";
    string private _baseURI = "bafybeidgzacjklw5mucyjbfp2b6aq6dalejjill4ihhpfnfpiklgyng3ry";

    constructor() {
        _owner = msg.sender;
    }

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

        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount*COST <= msg.value, "Value to Low");

        _mint(_caller, amount);
    }

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

        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), ".json")) : "";
    }

    /**
     * @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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","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"}]

608060405261029a600155600160025566071afd498d00006003556040518060600160405280603b8152602001620028ac603b91396004908162000044919062000318565b5060006005553480156200005757600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ff565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200012057607f821691505b602082108103620001365762000135620000d8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000161565b620001ac868362000161565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001f9620001f3620001ed84620001c4565b620001ce565b620001c4565b9050919050565b6000819050919050565b6200021583620001d8565b6200022d620002248262000200565b8484546200016e565b825550505050565b600090565b6200024462000235565b620002518184846200020a565b505050565b5b8181101562000279576200026d6000826200023a565b60018101905062000257565b5050565b601f821115620002c85762000292816200013c565b6200029d8462000151565b81016020851015620002ad578190505b620002c5620002bc8562000151565b83018262000256565b50505b505050565b600082821c905092915050565b6000620002ed60001984600802620002cd565b1980831691505092915050565b6000620003088383620002da565b9150826002028217905092915050565b62000323826200009e565b67ffffffffffffffff8111156200033f576200033e620000a9565b5b6200034b825462000107565b620003588282856200027d565b600060209050601f8311600181146200039057600084156200037b578287015190505b620003878582620002fa565b865550620003f7565b601f198416620003a0866200013c565b60005b82811015620003ca57848901518255600182019150602085019450602081019050620003a3565b86831015620003ea5784890151620003e6601f891682620002da565b8355505b6001600288020188555050505b505050505050565b61249d806200040f6000396000f3fe60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806318160ddd1161010857806318160ddd1461025e57806323b872dd1461028957806332cb6b0c146102b25780633ccfd60b146102dd57806342842e0e146102f457806347064d6a1461031d5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f55780631249c58b1461021e578063129ee21a14610235575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611744565b61057f565b604051610184919061178c565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af9190611837565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061188f565b61064e565b6040516101ec91906118fd565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611944565b6106ca565b005b34801561022a57600080fd5b50610233610843565b005b34801561024157600080fd5b5061025c60048036038101906102579190611984565b610912565b005b34801561026a57600080fd5b50610273610984565b60405161028091906119e6565b60405180910390f35b34801561029557600080fd5b506102b060048036038101906102ab9190611a01565b610997565b005b3480156102be57600080fd5b506102c76109a7565b6040516102d491906119e6565b60405180910390f35b3480156102e957600080fd5b506102f26109ad565b005b34801561030057600080fd5b5061031b60048036038101906103169190611a01565b610a54565b005b34801561032957600080fd5b50610344600480360381019061033f9190611b89565b610a74565b005b34801561035257600080fd5b5061036d6004803603810190610368919061188f565b610adf565b60405161037a91906118fd565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611bd2565b610af1565b6040516103b791906119e6565b60405180910390f35b3480156103cc57600080fd5b506103d5610b85565b6040516103e291906118fd565b60405180910390f35b3480156103f757600080fd5b50610400610bae565b60405161040d9190611837565b60405180910390f35b34801561042257600080fd5b5061042b610beb565b60405161043891906119e6565b60405180910390f35b61045b6004803603810190610456919061188f565b610bf1565b005b34801561046957600080fd5b50610484600480360381019061047f9190611c2b565b610cb2565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611d0c565b610e29565b005b3480156104bb57600080fd5b506104c4610e3a565b6040516104d191906119e6565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc919061188f565b610e40565b60405161050e9190611837565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611d8f565b610f61565b60405161054b919061178c565b60405180910390f35b34801561056057600080fd5b50610569610ff5565b60405161057691906119e6565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600a81526020017f424c41434b504545505300000000000000000000000000000000000000000000815250905090565b600061065982610ffb565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d58261101c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6110e8565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a816107556110e8565b610f61565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061084d6110e8565b905060006001905060015481610861610984565b61086b9190611dfe565b11156108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390611e7e565b60405180910390fd5b6002546108b8836110f0565b826108c39190611dfe565b1115610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90611eea565b60405180910390fd5b61090e8282611147565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461096a57600080fd5b826002819055508160038190555080600181905550505050565b600061098e6112e9565b60055403905090565b6109a28383836112ee565b505050565b6103e781565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a0557600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a50573d6000803e3d6000fd5b5050565b610a6f83838360405180602001604052806000815250610e29565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610acc57600080fd5b8060049081610adb9190612116565b5050565b6000610aea8261101c565b9050919050565b600080610afd83611664565b03610b34576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600281526020017f4250000000000000000000000000000000000000000000000000000000000000815250905090565b60025481565b6000610bfb6110e8565b90506103e782610c09610984565b610c139190611dfe565b1115610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612234565b60405180910390fd5b3460035483610c639190612254565b1115610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906122e2565b60405180910390fd5b610cae8183611147565b5050565b610cba6110e8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610d2b6110e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dd86110e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e1d919061178c565b60405180910390a35050565b610e348484846112ee565b50505050565b60035481565b6060610e4b82610ffb565b610e81576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060048054610e9090611f39565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90611f39565b8015610f095780601f10610ede57610100808354040283529160200191610f09565b820191906000526020600020905b815481529060010190602001808311610eec57829003601f168201915b505050505090506000815103610f2e5760405180602001604052806000815250610f59565b80610f388461166e565b604051602001610f49929190612422565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60015481565b6000816110066112e9565b11158015611015575060055482105b9050919050565b6000808290508061102b6112e9565b116110b1576005548110156110b05760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036110ae575b600081036110a457600660008360019003935083815260200190815260200160002054905061107a565b80925050506110e3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600067ffffffffffffffff6040600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60006005549050600061115984611664565b03611190576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036111ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161122f600184146116c8565b901b60a042901b61123f85611664565b171760066000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611265578160058190555050506112e460008483856116d2565b505050565b600090565b60006112f98261101c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611360576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166113b96110e8565b73ffffffffffffffffffffffffffffffffffffffff1614806113e857506113e7866113e26110e8565b610f61565b5b8061142557506113f66110e8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061145e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061146983611664565b146114a5576008600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61156c87611664565b1717600660008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036115f457600060018501905060006006600083815260200190815260200160002054036115f25760055481146115f1578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461165c86868660016116d2565b505050505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156116b457600183039250600a81066030018353600a81049050611694565b508181036020830392508083525050919050565b6000819050919050565b50505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611721816116ec565b811461172c57600080fd5b50565b60008135905061173e81611718565b92915050565b60006020828403121561175a576117596116e2565b5b60006117688482850161172f565b91505092915050565b60008115159050919050565b61178681611771565b82525050565b60006020820190506117a1600083018461177d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117e15780820151818401526020810190506117c6565b60008484015250505050565b6000601f19601f8301169050919050565b6000611809826117a7565b61181381856117b2565b93506118238185602086016117c3565b61182c816117ed565b840191505092915050565b6000602082019050818103600083015261185181846117fe565b905092915050565b6000819050919050565b61186c81611859565b811461187757600080fd5b50565b60008135905061188981611863565b92915050565b6000602082840312156118a5576118a46116e2565b5b60006118b38482850161187a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118e7826118bc565b9050919050565b6118f7816118dc565b82525050565b600060208201905061191260008301846118ee565b92915050565b611921816118dc565b811461192c57600080fd5b50565b60008135905061193e81611918565b92915050565b6000806040838503121561195b5761195a6116e2565b5b60006119698582860161192f565b925050602061197a8582860161187a565b9150509250929050565b60008060006060848603121561199d5761199c6116e2565b5b60006119ab8682870161187a565b93505060206119bc8682870161187a565b92505060406119cd8682870161187a565b9150509250925092565b6119e081611859565b82525050565b60006020820190506119fb60008301846119d7565b92915050565b600080600060608486031215611a1a57611a196116e2565b5b6000611a288682870161192f565b9350506020611a398682870161192f565b9250506040611a4a8682870161187a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611a96826117ed565b810181811067ffffffffffffffff82111715611ab557611ab4611a5e565b5b80604052505050565b6000611ac86116d8565b9050611ad48282611a8d565b919050565b600067ffffffffffffffff821115611af457611af3611a5e565b5b611afd826117ed565b9050602081019050919050565b82818337600083830152505050565b6000611b2c611b2784611ad9565b611abe565b905082815260208101848484011115611b4857611b47611a59565b5b611b53848285611b0a565b509392505050565b600082601f830112611b7057611b6f611a54565b5b8135611b80848260208601611b19565b91505092915050565b600060208284031215611b9f57611b9e6116e2565b5b600082013567ffffffffffffffff811115611bbd57611bbc6116e7565b5b611bc984828501611b5b565b91505092915050565b600060208284031215611be857611be76116e2565b5b6000611bf68482850161192f565b91505092915050565b611c0881611771565b8114611c1357600080fd5b50565b600081359050611c2581611bff565b92915050565b60008060408385031215611c4257611c416116e2565b5b6000611c508582860161192f565b9250506020611c6185828601611c16565b9150509250929050565b600067ffffffffffffffff821115611c8657611c85611a5e565b5b611c8f826117ed565b9050602081019050919050565b6000611caf611caa84611c6b565b611abe565b905082815260208101848484011115611ccb57611cca611a59565b5b611cd6848285611b0a565b509392505050565b600082601f830112611cf357611cf2611a54565b5b8135611d03848260208601611c9c565b91505092915050565b60008060008060808587031215611d2657611d256116e2565b5b6000611d348782880161192f565b9450506020611d458782880161192f565b9350506040611d568782880161187a565b925050606085013567ffffffffffffffff811115611d7757611d766116e7565b5b611d8387828801611cde565b91505092959194509250565b60008060408385031215611da657611da56116e2565b5b6000611db48582860161192f565b9250506020611dc58582860161192f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e0982611859565b9150611e1483611859565b9250828201905080821115611e2c57611e2b611dcf565b5b92915050565b7f467265656d696e7420536f6c644f757400000000000000000000000000000000600082015250565b6000611e686010836117b2565b9150611e7382611e32565b602082019050919050565b60006020820190508181036000830152611e9781611e5b565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b6000611ed4600e836117b2565b9150611edf82611e9e565b602082019050919050565b60006020820190508181036000830152611f0381611ec7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f5157607f821691505b602082108103611f6457611f63611f0a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611fcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611f8f565b611fd68683611f8f565b95508019841693508086168417925050509392505050565b6000819050919050565b600061201361200e61200984611859565b611fee565b611859565b9050919050565b6000819050919050565b61202d83611ff8565b6120416120398261201a565b848454611f9c565b825550505050565b600090565b612056612049565b612061818484612024565b505050565b5b818110156120855761207a60008261204e565b600181019050612067565b5050565b601f8211156120ca5761209b81611f6a565b6120a484611f7f565b810160208510156120b3578190505b6120c76120bf85611f7f565b830182612066565b50505b505050565b600082821c905092915050565b60006120ed600019846008026120cf565b1980831691505092915050565b600061210683836120dc565b9150826002028217905092915050565b61211f826117a7565b67ffffffffffffffff81111561213857612137611a5e565b5b6121428254611f39565b61214d828285612089565b600060209050601f831160018114612180576000841561216e578287015190505b61217885826120fa565b8655506121e0565b601f19841661218e86611f6a565b60005b828110156121b657848901518255600182019150602085019450602081019050612191565b868310156121d357848901516121cf601f8916826120dc565b8355505b6001600288020188555050505b505050505050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b600061221e6007836117b2565b9150612229826121e8565b602082019050919050565b6000602082019050818103600083015261224d81612211565b9050919050565b600061225f82611859565b915061226a83611859565b925082820261227881611859565b9150828204841483151761228f5761228e611dcf565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b60006122cc600c836117b2565b91506122d782612296565b602082019050919050565b600060208201905081810360008301526122fb816122bf565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b6000612343600783612302565b915061234e8261230d565b600782019050919050565b6000612364826117a7565b61236e8185612302565b935061237e8185602086016117c3565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006123c0600183612302565b91506123cb8261238a565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061240c600583612302565b9150612417826123d6565b600582019050919050565b600061242d82612336565b91506124398285612359565b9150612444826123b3565b91506124508284612359565b915061245b826123ff565b9150819050939250505056fea2646970667358221220e1153c77d8b2e4603054b1be54eb2fcd094d915e09e6011925926cc6d953b3a964736f6c634300081100336261667962656964677a61636a6b6c77356d7563796a62667032623661713664616c656a6a696c6c3469686870666e6670696b6c67796e67337279

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806318160ddd1161010857806318160ddd1461025e57806323b872dd1461028957806332cb6b0c146102b25780633ccfd60b146102dd57806342842e0e146102f457806347064d6a1461031d5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f55780631249c58b1461021e578063129ee21a14610235575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611744565b61057f565b604051610184919061178c565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af9190611837565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061188f565b61064e565b6040516101ec91906118fd565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611944565b6106ca565b005b34801561022a57600080fd5b50610233610843565b005b34801561024157600080fd5b5061025c60048036038101906102579190611984565b610912565b005b34801561026a57600080fd5b50610273610984565b60405161028091906119e6565b60405180910390f35b34801561029557600080fd5b506102b060048036038101906102ab9190611a01565b610997565b005b3480156102be57600080fd5b506102c76109a7565b6040516102d491906119e6565b60405180910390f35b3480156102e957600080fd5b506102f26109ad565b005b34801561030057600080fd5b5061031b60048036038101906103169190611a01565b610a54565b005b34801561032957600080fd5b50610344600480360381019061033f9190611b89565b610a74565b005b34801561035257600080fd5b5061036d6004803603810190610368919061188f565b610adf565b60405161037a91906118fd565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611bd2565b610af1565b6040516103b791906119e6565b60405180910390f35b3480156103cc57600080fd5b506103d5610b85565b6040516103e291906118fd565b60405180910390f35b3480156103f757600080fd5b50610400610bae565b60405161040d9190611837565b60405180910390f35b34801561042257600080fd5b5061042b610beb565b60405161043891906119e6565b60405180910390f35b61045b6004803603810190610456919061188f565b610bf1565b005b34801561046957600080fd5b50610484600480360381019061047f9190611c2b565b610cb2565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611d0c565b610e29565b005b3480156104bb57600080fd5b506104c4610e3a565b6040516104d191906119e6565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc919061188f565b610e40565b60405161050e9190611837565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611d8f565b610f61565b60405161054b919061178c565b60405180910390f35b34801561056057600080fd5b50610569610ff5565b60405161057691906119e6565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600a81526020017f424c41434b504545505300000000000000000000000000000000000000000000815250905090565b600061065982610ffb565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d58261101c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6110e8565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a816107556110e8565b610f61565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061084d6110e8565b905060006001905060015481610861610984565b61086b9190611dfe565b11156108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390611e7e565b60405180910390fd5b6002546108b8836110f0565b826108c39190611dfe565b1115610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90611eea565b60405180910390fd5b61090e8282611147565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461096a57600080fd5b826002819055508160038190555080600181905550505050565b600061098e6112e9565b60055403905090565b6109a28383836112ee565b505050565b6103e781565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a0557600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a50573d6000803e3d6000fd5b5050565b610a6f83838360405180602001604052806000815250610e29565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610acc57600080fd5b8060049081610adb9190612116565b5050565b6000610aea8261101c565b9050919050565b600080610afd83611664565b03610b34576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600281526020017f4250000000000000000000000000000000000000000000000000000000000000815250905090565b60025481565b6000610bfb6110e8565b90506103e782610c09610984565b610c139190611dfe565b1115610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612234565b60405180910390fd5b3460035483610c639190612254565b1115610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906122e2565b60405180910390fd5b610cae8183611147565b5050565b610cba6110e8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610d2b6110e8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dd86110e8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e1d919061178c565b60405180910390a35050565b610e348484846112ee565b50505050565b60035481565b6060610e4b82610ffb565b610e81576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060048054610e9090611f39565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90611f39565b8015610f095780601f10610ede57610100808354040283529160200191610f09565b820191906000526020600020905b815481529060010190602001808311610eec57829003601f168201915b505050505090506000815103610f2e5760405180602001604052806000815250610f59565b80610f388461166e565b604051602001610f49929190612422565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60015481565b6000816110066112e9565b11158015611015575060055482105b9050919050565b6000808290508061102b6112e9565b116110b1576005548110156110b05760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036110ae575b600081036110a457600660008360019003935083815260200190815260200160002054905061107a565b80925050506110e3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600067ffffffffffffffff6040600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60006005549050600061115984611664565b03611190576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036111ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161122f600184146116c8565b901b60a042901b61123f85611664565b171760066000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611265578160058190555050506112e460008483856116d2565b505050565b600090565b60006112f98261101c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611360576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166113b96110e8565b73ffffffffffffffffffffffffffffffffffffffff1614806113e857506113e7866113e26110e8565b610f61565b5b8061142557506113f66110e8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061145e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061146983611664565b146114a5576008600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61156c87611664565b1717600660008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036115f457600060018501905060006006600083815260200190815260200160002054036115f25760055481146115f1578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461165c86868660016116d2565b505050505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156116b457600183039250600a81066030018353600a81049050611694565b508181036020830392508083525050919050565b6000819050919050565b50505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611721816116ec565b811461172c57600080fd5b50565b60008135905061173e81611718565b92915050565b60006020828403121561175a576117596116e2565b5b60006117688482850161172f565b91505092915050565b60008115159050919050565b61178681611771565b82525050565b60006020820190506117a1600083018461177d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117e15780820151818401526020810190506117c6565b60008484015250505050565b6000601f19601f8301169050919050565b6000611809826117a7565b61181381856117b2565b93506118238185602086016117c3565b61182c816117ed565b840191505092915050565b6000602082019050818103600083015261185181846117fe565b905092915050565b6000819050919050565b61186c81611859565b811461187757600080fd5b50565b60008135905061188981611863565b92915050565b6000602082840312156118a5576118a46116e2565b5b60006118b38482850161187a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118e7826118bc565b9050919050565b6118f7816118dc565b82525050565b600060208201905061191260008301846118ee565b92915050565b611921816118dc565b811461192c57600080fd5b50565b60008135905061193e81611918565b92915050565b6000806040838503121561195b5761195a6116e2565b5b60006119698582860161192f565b925050602061197a8582860161187a565b9150509250929050565b60008060006060848603121561199d5761199c6116e2565b5b60006119ab8682870161187a565b93505060206119bc8682870161187a565b92505060406119cd8682870161187a565b9150509250925092565b6119e081611859565b82525050565b60006020820190506119fb60008301846119d7565b92915050565b600080600060608486031215611a1a57611a196116e2565b5b6000611a288682870161192f565b9350506020611a398682870161192f565b9250506040611a4a8682870161187a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611a96826117ed565b810181811067ffffffffffffffff82111715611ab557611ab4611a5e565b5b80604052505050565b6000611ac86116d8565b9050611ad48282611a8d565b919050565b600067ffffffffffffffff821115611af457611af3611a5e565b5b611afd826117ed565b9050602081019050919050565b82818337600083830152505050565b6000611b2c611b2784611ad9565b611abe565b905082815260208101848484011115611b4857611b47611a59565b5b611b53848285611b0a565b509392505050565b600082601f830112611b7057611b6f611a54565b5b8135611b80848260208601611b19565b91505092915050565b600060208284031215611b9f57611b9e6116e2565b5b600082013567ffffffffffffffff811115611bbd57611bbc6116e7565b5b611bc984828501611b5b565b91505092915050565b600060208284031215611be857611be76116e2565b5b6000611bf68482850161192f565b91505092915050565b611c0881611771565b8114611c1357600080fd5b50565b600081359050611c2581611bff565b92915050565b60008060408385031215611c4257611c416116e2565b5b6000611c508582860161192f565b9250506020611c6185828601611c16565b9150509250929050565b600067ffffffffffffffff821115611c8657611c85611a5e565b5b611c8f826117ed565b9050602081019050919050565b6000611caf611caa84611c6b565b611abe565b905082815260208101848484011115611ccb57611cca611a59565b5b611cd6848285611b0a565b509392505050565b600082601f830112611cf357611cf2611a54565b5b8135611d03848260208601611c9c565b91505092915050565b60008060008060808587031215611d2657611d256116e2565b5b6000611d348782880161192f565b9450506020611d458782880161192f565b9350506040611d568782880161187a565b925050606085013567ffffffffffffffff811115611d7757611d766116e7565b5b611d8387828801611cde565b91505092959194509250565b60008060408385031215611da657611da56116e2565b5b6000611db48582860161192f565b9250506020611dc58582860161192f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e0982611859565b9150611e1483611859565b9250828201905080821115611e2c57611e2b611dcf565b5b92915050565b7f467265656d696e7420536f6c644f757400000000000000000000000000000000600082015250565b6000611e686010836117b2565b9150611e7382611e32565b602082019050919050565b60006020820190508181036000830152611e9781611e5b565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b6000611ed4600e836117b2565b9150611edf82611e9e565b602082019050919050565b60006020820190508181036000830152611f0381611ec7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f5157607f821691505b602082108103611f6457611f63611f0a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611fcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611f8f565b611fd68683611f8f565b95508019841693508086168417925050509392505050565b6000819050919050565b600061201361200e61200984611859565b611fee565b611859565b9050919050565b6000819050919050565b61202d83611ff8565b6120416120398261201a565b848454611f9c565b825550505050565b600090565b612056612049565b612061818484612024565b505050565b5b818110156120855761207a60008261204e565b600181019050612067565b5050565b601f8211156120ca5761209b81611f6a565b6120a484611f7f565b810160208510156120b3578190505b6120c76120bf85611f7f565b830182612066565b50505b505050565b600082821c905092915050565b60006120ed600019846008026120cf565b1980831691505092915050565b600061210683836120dc565b9150826002028217905092915050565b61211f826117a7565b67ffffffffffffffff81111561213857612137611a5e565b5b6121428254611f39565b61214d828285612089565b600060209050601f831160018114612180576000841561216e578287015190505b61217885826120fa565b8655506121e0565b601f19841661218e86611f6a565b60005b828110156121b657848901518255600182019150602085019450602081019050612191565b868310156121d357848901516121cf601f8916826120dc565b8355505b6001600288020188555050505b505050505050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b600061221e6007836117b2565b9150612229826121e8565b602082019050919050565b6000602082019050818103600083015261224d81612211565b9050919050565b600061225f82611859565b915061226a83611859565b925082820261227881611859565b9150828204841483151761228f5761228e611dcf565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b60006122cc600c836117b2565b91506122d782612296565b602082019050919050565b600060208201905081810360008301526122fb816122bf565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b6000612343600783612302565b915061234e8261230d565b600782019050919050565b6000612364826117a7565b61236e8185612302565b935061237e8185602086016117c3565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006123c0600183612302565b91506123cb8261238a565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061240c600583612302565b9150612417826123d6565b600582019050919050565b600061242d82612336565b91506124398285612359565b9150612444826123b3565b91506124508284612359565b915061245b826123ff565b9150819050939250505056fea2646970667358221220e1153c77d8b2e4603054b1be54eb2fcd094d915e09e6011925926cc6d953b3a964736f6c63430008110033

Deployed Bytecode Sourcemap

9018:21109:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14223:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18430:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20097:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19580:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9959:312;;;;;;;;;;;;;:::i;:::-;;12630:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13466:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20983:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9263:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29979:145;;;;;;;;;;;;;:::i;:::-;;21244:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12531:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18219:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14902:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9089:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18599:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9346:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9685:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20373:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21520:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9391:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18717:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20752:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9310:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14223:615;14308:4;14623:10;14608:25;;:11;:25;;;;:102;;;;14700:10;14685:25;;:11;:25;;;;14608:102;:179;;;;14777:10;14762:25;;:11;:25;;;;14608:179;14588:199;;14223:615;;;:::o;18430:100::-;18484:13;18517:5;;;;;;;;;;;;;;;;;18510:12;;18430:100;:::o;20097:204::-;20165:7;20190:16;20198:7;20190;:16::i;:::-;20185:64;;20215:34;;;;;;;;;;;;;;20185:64;20269:15;:24;20285:7;20269:24;;;;;;;;;;;;;;;;;;;;;20262:31;;20097:204;;;:::o;19580:451::-;19653:13;19685:27;19704:7;19685:18;:27::i;:::-;19653:61;;19735:5;19729:11;;:2;:11;;;19725:25;;19742:8;;;19725:25;19790:5;19767:28;;:19;:17;:19::i;:::-;:28;;;19763:175;;19815:44;19832:5;19839:19;:17;:19::i;:::-;19815:16;:44::i;:::-;19810:128;;19887:35;;;;;;;;;;;;;;19810:128;19763:175;19977:2;19950:15;:24;19966:7;19950:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20015:7;20011:2;19995:28;;20004:5;19995:28;;;;;;;;;;;;19642:389;19580:451;;:::o;9959:312::-;9994:15;10012:19;:17;:19::i;:::-;9994:37;;10042:14;10059:1;10042:18;;10107:8;;10097:6;10081:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;10073:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10190:19;;10164:22;10178:7;10164:13;:22::i;:::-;10155:6;:31;;;;:::i;:::-;:54;;10147:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10241:22;10247:7;10256:6;10241:5;:22::i;:::-;9983:288;;9959:312::o;12630:216::-;9223:10;9215:18;;:6;;;;;;;;;;:18;;;9207:27;;;;;;12764:20:::1;12742:19;:42;;;;12802:5;12795:4;:12;;;;12829:9;12818:8;:20;;;;12630:216:::0;;;:::o;13466:300::-;13519:7;13732:15;:13;:15::i;:::-;13716:13;;:31;13709:38;;13466:300;:::o;20983:190::-;21137:28;21147:4;21153:2;21157:7;21137:9;:28::i;:::-;20983:190;;;:::o;9263:40::-;9300:3;9263:40;:::o;29979:145::-;9223:10;9215:18;;:6;;;;;;;;;;:18;;;9207:27;;;;;;30029:15:::1;30047:21;30029:39;;30087:10;30079:28;;:37;30108:7;30079:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;30018:106;29979:145::o:0;21244:205::-;21402:39;21419:4;21425:2;21429:7;21402:39;;;;;;;;;;;;:16;:39::i;:::-;21244:205;;;:::o;12531:91::-;9223:10;9215:18;;:6;;;;;;;;;;:18;;;9207:27;;;;;;12609:5:::1;12598:8;:16;;;;;;:::i;:::-;;12531:91:::0;:::o;18219:144::-;18283:7;18326:27;18345:7;18326:18;:27::i;:::-;18303:52;;18219:144;;;:::o;14902:234::-;14966:7;15018:1;14990:24;15008:5;14990:17;:24::i;:::-;:29;14986:70;;15028:28;;;;;;;;;;;;;;14986:70;10382:13;15074:18;:25;15093:5;15074:25;;;;;;;;;;;;;;;;:54;15067:61;;14902:234;;;:::o;9089:77::-;9126:7;9152:6;;;;;;;;;;;9145:13;;9089:77;:::o;18599:104::-;18655:13;18688:7;;;;;;;;;;;;;;;;;18681:14;;18599:104;:::o;9346:38::-;;;;:::o;9685:266::-;9742:15;9760:19;:17;:19::i;:::-;9742:37;;9300:3;9816:6;9800:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;9792:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;9882:9;9874:4;;9867:6;:11;;;;:::i;:::-;:24;;9859:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;9921:22;9927:7;9936:6;9921:5;:22::i;:::-;9731:220;9685:266;:::o;20373:308::-;20484:19;:17;:19::i;:::-;20472:31;;:8;:31;;;20468:61;;20512:17;;;;;;;;;;;;;;20468:61;20594:8;20542:18;:39;20561:19;:17;:19::i;:::-;20542:39;;;;;;;;;;;;;;;:49;20582:8;20542:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20654:8;20618:55;;20633:19;:17;:19::i;:::-;20618:55;;;20664:8;20618:55;;;;;;:::i;:::-;;;;;;;;20373:308;;:::o;21520:227::-;21711:28;21721:4;21727:2;21731:7;21711:9;:28::i;:::-;21520:227;;;;:::o;9391:33::-;;;;:::o;18717:339::-;18790:13;18821:16;18829:7;18821;:16::i;:::-;18816:59;;18846:29;;;;;;;;;;;;;;18816:59;18886:21;18910:8;18886:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18961:1;18942:7;18936:21;:26;:112;;;;;;;;;;;;;;;;;19000:7;19014:18;19024:7;19014:9;:18::i;:::-;18972:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18936:112;18929:119;;;18717:339;;;:::o;20752:164::-;20849:4;20873:18;:25;20892:5;20873:25;;;;;;;;;;;;;;;:35;20899:8;20873:35;;;;;;;;;;;;;;;;;;;;;;;;;20866:42;;20752:164;;;;:::o;9310:29::-;;;;:::o;22002:168::-;22059:4;22115:7;22096:15;:13;:15::i;:::-;:26;;:66;;;;;22149:13;;22139:7;:23;22096:66;22076:86;;22002:168;;;:::o;15734:1129::-;15801:7;15821:12;15836:7;15821:22;;15904:4;15885:15;:13;:15::i;:::-;:23;15881:915;;15938:13;;15931:4;:20;15927:869;;;15976:14;15993:17;:23;16011:4;15993:23;;;;;;;;;;;;15976:40;;16109:1;11152:8;16082:6;:23;:28;16078:699;;16601:113;16618:1;16608:6;:11;16601:113;;16661:17;:25;16679:6;;;;;;;16661:25;;;;;;;;;;;;16652:34;;16601:113;;;16747:6;16740:13;;;;;;16078:699;15953:843;15927:869;15881:915;16824:31;;;;;;;;;;;;;;15734:1129;;;;:::o;27878:105::-;27938:7;27965:10;27958:17;;27878:105;:::o;15218:176::-;15279:7;10382:13;10519:2;15307:18;:25;15326:5;15307:25;;;;;;;;;;;;;;;;:49;;15306:80;15299:87;;15218:176;;;:::o;22435:1594::-;22500:20;22523:13;;22500:36;;22576:1;22551:21;22569:2;22551:17;:21::i;:::-;:26;22547:58;;22586:19;;;;;;;;;;;;;;22547:58;22632:1;22620:8;:13;22616:44;;22642:18;;;;;;;;;;;;;;22616:44;23205:1;10519:2;23176:1;:25;;23175:31;23163:8;:44;23137:18;:22;23156:2;23137:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;11295:3;23606:29;23633:1;23621:8;:13;23606:14;:29::i;:::-;:56;;11036:3;23543:15;:41;;23501:21;23519:2;23501:17;:21::i;:::-;:84;:162;23450:17;:31;23468:12;23450:31;;;;;;;;;;;:213;;;;23680:20;23703:12;23680:35;;23730:11;23759:8;23744:12;:23;23730:37;;23784:111;23836:14;;;;;;23832:2;23811:40;;23828:1;23811:40;;;;;;;;;;;;23890:3;23875:12;:18;23784:111;;23927:12;23911:13;:28;;;;22914:1037;;23961:60;23990:1;23994:2;23998:12;24012:8;23961:20;:60::i;:::-;22489:1540;22435:1594;;:::o;12989:92::-;13045:7;12989:92;:::o;24283:2557::-;24420:27;24450;24469:7;24450:18;:27::i;:::-;24420:57;;24535:4;24494:45;;24510:19;24494:45;;;24490:86;;24548:28;;;;;;;;;;;;;;24490:86;24589:23;24615:15;:24;24631:7;24615:24;;;;;;;;;;;;;;;;;;;;;24589:50;;24652:22;24701:4;24678:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;24726:43;24743:4;24749:19;:17;:19::i;:::-;24726:16;:43::i;:::-;24678:91;:150;;;;24809:19;:17;:19::i;:::-;24790:38;;:15;:38;;;24678:150;24652:177;;24847:17;24842:66;;24873:35;;;;;;;;;;;;;;24842:66;25018:1;24980:34;24998:15;24980:17;:34::i;:::-;:39;24976:103;;25043:15;:24;25059:7;25043:24;;;;;;;;;;;;25036:31;;;;;;;;;;;24976:103;25446:18;:24;25465:4;25446:24;;;;;;;;;;;;;;;;25444:26;;;;;;;;;;;;25515:18;:22;25534:2;25515:22;;;;;;;;;;;;;;;;25513:24;;;;;;;;;;;11430:8;11036:3;25896:15;:41;;25854:21;25872:2;25854:17;:21::i;:::-;:84;:128;25808:17;:26;25826:7;25808:26;;;;;;;;;;;:174;;;;26152:1;11430:8;26102:19;:46;:51;26098:626;;26174:19;26206:1;26196:7;:11;26174:33;;26363:1;26329:17;:30;26347:11;26329:30;;;;;;;;;;;;:35;26325:384;;26467:13;;26452:11;:28;26448:242;;26647:19;26614:17;:30;26632:11;26614:30;;;;;;;;;;;:52;;;;26448:242;26325:384;26155:569;26098:626;26771:7;26767:2;26752:27;;26761:4;26752:27;;;;;;;;;;;;26790:42;26811:4;26817:2;26821:7;26830:1;26790:20;:42::i;:::-;24407:2433;;;24283:2557;;;:::o;19141:148::-;19205:14;19266:5;19256:15;;19141:148;;;:::o;28089:1882::-;28146:17;28567:3;28560:4;28554:11;28550:21;28543:28;;28654:3;28648:4;28641:17;28754:3;29190:5;29322:1;29317:3;29313:11;29306:18;;29461:2;29455:4;29451:13;29447:2;29443:22;29438:3;29430:36;29503:2;29497:4;29493:13;29485:21;;29087:661;29519:4;29087:661;;;29687:1;29682:3;29678:11;29671:18;;29731:2;29725:4;29721:13;29717:2;29713:22;29708:3;29700:36;29604:2;29598:4;29594:13;29586:21;;29087:661;;;29091:427;29780:3;29775;29771:13;29889:2;29884:3;29880:12;29873:19;;29946:6;29941:3;29934:19;28185:1779;;28089:1882;;;:::o;19376:142::-;19434:14;19495:5;19485:15;;19376:142;;;:::o;27505:182::-;;;;;:::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:191;12942:3;12961:20;12979:1;12961:20;:::i;:::-;12956:25;;12995:20;13013:1;12995:20;:::i;:::-;12990:25;;13038:1;13035;13031:9;13024:16;;13059:3;13056:1;13053:10;13050:36;;;13066:18;;:::i;:::-;13050:36;12902:191;;;;:::o;13099:166::-;13239:18;13235:1;13227:6;13223:14;13216:42;13099:166;:::o;13271:366::-;13413:3;13434:67;13498:2;13493:3;13434:67;:::i;:::-;13427:74;;13510:93;13599:3;13510:93;:::i;:::-;13628:2;13623:3;13619:12;13612:19;;13271:366;;;:::o;13643:419::-;13809:4;13847:2;13836:9;13832:18;13824:26;;13896:9;13890:4;13886:20;13882:1;13871:9;13867:17;13860:47;13924:131;14050:4;13924:131;:::i;:::-;13916:139;;13643:419;;;:::o;14068:164::-;14208:16;14204:1;14196:6;14192:14;14185:40;14068:164;:::o;14238:366::-;14380:3;14401:67;14465:2;14460:3;14401:67;:::i;:::-;14394:74;;14477:93;14566:3;14477:93;:::i;:::-;14595:2;14590:3;14586:12;14579:19;;14238:366;;;:::o;14610:419::-;14776:4;14814:2;14803:9;14799:18;14791:26;;14863:9;14857:4;14853:20;14849:1;14838:9;14834:17;14827:47;14891:131;15017:4;14891:131;:::i;:::-;14883:139;;14610:419;;;:::o;15035:180::-;15083:77;15080:1;15073:88;15180:4;15177:1;15170:15;15204:4;15201:1;15194:15;15221:320;15265:6;15302:1;15296:4;15292:12;15282:22;;15349:1;15343:4;15339:12;15370:18;15360:81;;15426:4;15418:6;15414:17;15404:27;;15360:81;15488:2;15480:6;15477:14;15457:18;15454:38;15451:84;;15507:18;;:::i;:::-;15451:84;15272:269;15221:320;;;:::o;15547:141::-;15596:4;15619:3;15611:11;;15642:3;15639:1;15632:14;15676:4;15673:1;15663:18;15655:26;;15547:141;;;:::o;15694:93::-;15731:6;15778:2;15773;15766:5;15762:14;15758:23;15748:33;;15694:93;;;:::o;15793:107::-;15837:8;15887:5;15881:4;15877:16;15856:37;;15793:107;;;;:::o;15906:393::-;15975:6;16025:1;16013:10;16009:18;16048:97;16078:66;16067:9;16048:97;:::i;:::-;16166:39;16196:8;16185:9;16166:39;:::i;:::-;16154:51;;16238:4;16234:9;16227:5;16223:21;16214:30;;16287:4;16277:8;16273:19;16266:5;16263:30;16253:40;;15982:317;;15906:393;;;;;:::o;16305:60::-;16333:3;16354:5;16347:12;;16305:60;;;:::o;16371:142::-;16421:9;16454:53;16472:34;16481:24;16499:5;16481:24;:::i;:::-;16472:34;:::i;:::-;16454:53;:::i;:::-;16441:66;;16371:142;;;:::o;16519:75::-;16562:3;16583:5;16576:12;;16519:75;;;:::o;16600:269::-;16710:39;16741:7;16710:39;:::i;:::-;16771:91;16820:41;16844:16;16820:41;:::i;:::-;16812:6;16805:4;16799:11;16771:91;:::i;:::-;16765:4;16758:105;16676:193;16600:269;;;:::o;16875:73::-;16920:3;16875:73;:::o;16954:189::-;17031:32;;:::i;:::-;17072:65;17130:6;17122;17116:4;17072:65;:::i;:::-;17007:136;16954:189;;:::o;17149:186::-;17209:120;17226:3;17219:5;17216:14;17209:120;;;17280:39;17317:1;17310:5;17280:39;:::i;:::-;17253:1;17246:5;17242:13;17233:22;;17209:120;;;17149:186;;:::o;17341:543::-;17442:2;17437:3;17434:11;17431:446;;;17476:38;17508:5;17476:38;:::i;:::-;17560:29;17578:10;17560:29;:::i;:::-;17550:8;17546:44;17743:2;17731:10;17728:18;17725:49;;;17764:8;17749:23;;17725:49;17787:80;17843:22;17861:3;17843:22;:::i;:::-;17833:8;17829:37;17816:11;17787:80;:::i;:::-;17446:431;;17431:446;17341:543;;;:::o;17890:117::-;17944:8;17994:5;17988:4;17984:16;17963:37;;17890:117;;;;:::o;18013:169::-;18057:6;18090:51;18138:1;18134:6;18126:5;18123:1;18119:13;18090:51;:::i;:::-;18086:56;18171:4;18165;18161:15;18151:25;;18064:118;18013:169;;;;:::o;18187:295::-;18263:4;18409:29;18434:3;18428:4;18409:29;:::i;:::-;18401:37;;18471:3;18468:1;18464:11;18458:4;18455:21;18447:29;;18187:295;;;;:::o;18487:1395::-;18604:37;18637:3;18604:37;:::i;:::-;18706:18;18698:6;18695:30;18692:56;;;18728:18;;:::i;:::-;18692:56;18772:38;18804:4;18798:11;18772:38;:::i;:::-;18857:67;18917:6;18909;18903:4;18857:67;:::i;:::-;18951:1;18975:4;18962:17;;19007:2;18999:6;18996:14;19024:1;19019:618;;;;19681:1;19698:6;19695:77;;;19747:9;19742:3;19738:19;19732:26;19723:35;;19695:77;19798:67;19858:6;19851:5;19798:67;:::i;:::-;19792:4;19785:81;19654:222;18989:887;;19019:618;19071:4;19067:9;19059:6;19055:22;19105:37;19137:4;19105:37;:::i;:::-;19164:1;19178:208;19192:7;19189:1;19186:14;19178:208;;;19271:9;19266:3;19262:19;19256:26;19248:6;19241:42;19322:1;19314:6;19310:14;19300:24;;19369:2;19358:9;19354:18;19341:31;;19215:4;19212:1;19208:12;19203:17;;19178:208;;;19414:6;19405:7;19402:19;19399:179;;;19472:9;19467:3;19463:19;19457:26;19515:48;19557:4;19549:6;19545:17;19534:9;19515:48;:::i;:::-;19507:6;19500:64;19422:156;19399:179;19624:1;19620;19612:6;19608:14;19604:22;19598:4;19591:36;19026:611;;;18989:887;;18579:1303;;;18487:1395;;:::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:148::-;22330:11;22367:3;22352:18;;22228:148;;;;:::o;22382:161::-;22522:9;22518:1;22510:6;22506:14;22499:33;22382:161;:::o;22553:416::-;22713:3;22738:84;22820:1;22815:3;22738:84;:::i;:::-;22731:91;;22835:93;22924:3;22835:93;:::i;:::-;22957:1;22952:3;22948:11;22941:18;;22553:416;;;:::o;22979:410::-;23085:3;23117:39;23150:5;23117:39;:::i;:::-;23176:89;23258:6;23253:3;23176:89;:::i;:::-;23169:96;;23278:65;23336:6;23331:3;23324:4;23317:5;23313:16;23278:65;:::i;:::-;23372:6;23367:3;23363:16;23356:23;;23089:300;22979:410;;;;:::o;23399:159::-;23543:3;23539:1;23531:6;23527:14;23520:27;23399:159;:::o;23568:416::-;23728:3;23753:84;23835:1;23830:3;23753:84;:::i;:::-;23746:91;;23850:93;23939:3;23850:93;:::i;:::-;23972:1;23967:3;23963:11;23956:18;;23568:416;;;:::o;23994:163::-;24138:7;24134:1;24126:6;24122:14;24115:31;23994:163;:::o;24167:416::-;24327:3;24352:84;24434:1;24429:3;24352:84;:::i;:::-;24345:91;;24449:93;24538:3;24449:93;:::i;:::-;24571:1;24566:3;24562:11;24555:18;;24167:416;;;:::o;24593:1261::-;25076:3;25102:148;25246:3;25102:148;:::i;:::-;25095:155;;25271:95;25362:3;25353:6;25271:95;:::i;:::-;25264:102;;25387:148;25531:3;25387:148;:::i;:::-;25380:155;;25556:95;25647:3;25638:6;25556:95;:::i;:::-;25549:102;;25672:148;25816:3;25672:148;:::i;:::-;25665:155;;25841:3;25834:10;;24593:1261;;;;;:::o

Swarm Source

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