ETH Price: $2,510.09 (-4.72%)

Token

BlingApes (BA)
 

Overview

Max Total Supply

194 BA

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BA
0x4688aD93D899bd7EB7d86810B12eEB5A8654FB6b
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:
BlingApes

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-23
*/

// SPDX-License-Identifier: MIT

                                                                                                                                                     
                                                                                                                                                     
//BBBBBBBBBBBBBBBBB   lllllll   iiii                                                                                                                   
//B::::::::::::::::B  l:::::l  i::::i                                                                                                                  
//B::::::BBBBBB:::::B l:::::l   iiii                                                                                                                   
//BB:::::B     B:::::Bl:::::l                                                                                                                          
//B::::B     B:::::B l::::l iiiiiii nnnn  nnnnnnnn       ggggggggg   ggggg  aaaaaaaaaaaaa   ppppp   ppppppppp       eeeeeeeeeeee        ssssssssss   
//B::::B     B:::::B l::::l i:::::i n:::nn::::::::nn    g:::::::::ggg::::g  a::::::::::::a  p::::ppp:::::::::p    ee::::::::::::ee    ss::::::::::s  
//B::::BBBBBB:::::B  l::::l  i::::i n::::::::::::::nn  g:::::::::::::::::g  aaaaaaaaa:::::a p:::::::::::::::::p  e::::::eeeee:::::eess:::::::::::::s 
//B:::::::::::::BB   l::::l  i::::i nn:::::::::::::::ng::::::ggggg::::::gg           a::::a pp::::::ppppp::::::pe::::::e     e:::::es::::::ssss:::::s
//B::::BBBBBB:::::B  l::::l  i::::i   n:::::nnnn:::::ng:::::g     g:::::g     aaaaaaa:::::a  p:::::p     p:::::pe:::::::eeeee::::::e s:::::s  ssssss 
//B::::B     B:::::B l::::l  i::::i   n::::n    n::::ng:::::g     g:::::g   aa::::::::::::a  p:::::p     p:::::pe:::::::::::::::::e    s::::::s      
//B::::B     B:::::B l::::l  i::::i   n::::n    n::::ng:::::g     g:::::g  a::::aaaa::::::a  p:::::p     p:::::pe::::::eeeeeeeeeee        s::::::s   
//B::::B     B:::::B l::::l  i::::i   n::::n    n::::ng::::::g    g:::::g a::::a    a:::::a  p:::::p    p::::::pe:::::::e           ssssss   s:::::s 
//BB:::::BBBBBB::::::Bl::::::li::::::i  n::::n    n::::ng:::::::ggggg:::::g a::::a    a:::::a  p:::::ppppp:::::::pe::::::::e          s:::::ssss::::::s
//B:::::::::::::::::B l::::::li::::::i  n::::n    n::::n g::::::::::::::::g a:::::aaaa::::::a  p::::::::::::::::p  e::::::::eeeeeeee  s::::::::::::::s 
//B::::::::::::::::B  l::::::li::::::i  n::::n    n::::n  gg::::::::::::::g  a::::::::::aa:::a p::::::::::::::pp    ee:::::::::::::e   s:::::::::::ss  
//BBBBBBBBBBBBBBBBB   lllllllliiiiiiii  nnnnnn    nnnnnn    gggggggg::::::g   aaaaaaaaaa  aaaa p::::::pppppppp        eeeeeeeeeeeeee    sssssssssss    
//                                                                  g:::::g                    p:::::p                                                 
//                                                      gggggg      g:::::g                    p:::::p                                                 
//                                                      g:::::gg   gg:::::g                   p:::::::p                                                
//                                                       g::::::ggg:::::::g                   p:::::::p                                                
//                                                        gg:::::::::::::g                    p:::::::p                                                
//                                                          ggg::::::ggg                      ppppppppp                                                
//                                                             gggggg                                                                                  


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        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 Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                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, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


pragma solidity ^0.8.0;


contract BlingApes is ERC721A, Ownable {

    using Strings for uint256;
    string private baseURI;
    uint256 public price = 0.003 ether;
    uint256 public maxPerTx = 10;
    uint256 public maxFreePerWallet = 1;
    uint256 public totalFree = 3050;
    uint256 public maxSupply = 3050;

    bool public mintEnabled = true;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("BlingApes", "BA") {
        _safeMint(msg.sender, 1);
        setBaseURI("ipfs://bafybeibaiqprwwa63ftrbg6wfhis63jtrfemrhofm6yht4ljkmz5p36zcu/");
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more left.");
        require(mintEnabled, "Mint is not live yet.");
        require(count < maxPerTx + 1, "Max per TX reached.");
        require(tx.origin == msg.sender, "Contracts not allowed to mint.");


        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600a55600a600b556001600c55610bea600d55610bea600e556001600f60006101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280600981526020017f426c696e674170657300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f42410000000000000000000000000000000000000000000000000000000000008152508160029081620000cb919062000a06565b508060039081620000dd919062000a06565b50620000ee6200015960201b60201c565b6000819055505050620001166200010a6200015e60201b60201c565b6200016660201b60201c565b620001293360016200022c60201b60201c565b6200015360405180608001604052806043815260200162004154604391396200025260201b60201c565b62000d48565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024e828260405180602001604052806000815250620002f660201b60201c565b5050565b620002626200015e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000288620005d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d89062000b4e565b60405180910390fd5b8060099081620002f2919062000a06565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000363576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036200039e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003b360008583866200060360201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000420600185146200060960201b60201c565b901b60a042901b62000438866200061360201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1462000549575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620004f560008784806001019550876200061d60201b60201c565b6200052c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106200047e5782600054146200054357600080fd5b620005b5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200054a575b816000819055505050620005d360008583866200077e60201b60201c565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200064b6200078460201b60201c565b8786866040518563ffffffff1660e01b81526004016200066f949392919062000c60565b6020604051808303816000875af1925050508015620006ae57506040513d601f19601f82011682018060405250810190620006ab919062000d16565b60015b6200072b573d8060008114620006e1576040519150601f19603f3d011682016040523d82523d6000602084013e620006e6565b606091505b50600081510362000723576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080e57607f821691505b602082108103620008245762000823620007c6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200088e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200084f565b6200089a86836200084f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008e7620008e1620008db84620008b2565b620008bc565b620008b2565b9050919050565b6000819050919050565b6200090383620008c6565b6200091b6200091282620008ee565b8484546200085c565b825550505050565b600090565b6200093262000923565b6200093f818484620008f8565b505050565b5b8181101562000967576200095b60008262000928565b60018101905062000945565b5050565b601f821115620009b65762000980816200082a565b6200098b846200083f565b810160208510156200099b578190505b620009b3620009aa856200083f565b83018262000944565b50505b505050565b600082821c905092915050565b6000620009db60001984600802620009bb565b1980831691505092915050565b6000620009f68383620009c8565b9150826002028217905092915050565b62000a11826200078c565b67ffffffffffffffff81111562000a2d5762000a2c62000797565b5b62000a398254620007f5565b62000a468282856200096b565b600060209050601f83116001811462000a7e576000841562000a69578287015190505b62000a758582620009e8565b86555062000ae5565b601f19841662000a8e866200082a565b60005b8281101562000ab85784890151825560018201915060208501945060208101905062000a91565b8683101562000ad8578489015162000ad4601f891682620009c8565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b3660208362000aed565b915062000b438262000afe565b602082019050919050565b6000602082019050818103600083015262000b698162000b27565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9d8262000b70565b9050919050565b62000baf8162000b90565b82525050565b62000bc081620008b2565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c0257808201518184015260208101905062000be5565b60008484015250505050565b6000601f19601f8301169050919050565b600062000c2c8262000bc6565b62000c38818562000bd1565b935062000c4a81856020860162000be2565b62000c558162000c0e565b840191505092915050565b600060808201905062000c77600083018762000ba4565b62000c86602083018662000ba4565b62000c95604083018562000bb5565b818103606083015262000ca9818462000c1f565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000cf08162000cb9565b811462000cfc57600080fd5b50565b60008151905062000d108162000ce5565b92915050565b60006020828403121562000d2f5762000d2e62000cb4565b5b600062000d3f8482850162000cff565b91505092915050565b6133fc8062000d586000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146105f9578063e985e9c514610624578063f2fde38b14610661578063f968adbe1461068a576101c2565b8063a70273571461053d578063b88d4fde14610568578063c87b56dd14610591578063d1239730146105ce576101c2565b806395d89b41116100d157806395d89b41146104a2578063a035b1fe146104cd578063a0712d68146104f8578063a22cb46514610514576101c2565b80638da5cb5b1461042557806391b7f5ed1461045057806392910eec14610479576101c2565b80633ccfd60b116101645780636352211e1161013e5780636352211e1461037d57806370a08231146103ba578063715018a6146103f75780637ba5e6211461040e576101c2565b80633ccfd60b1461031457806342842e0e1461032b57806355f804b314610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c0578063333e44e6146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612254565b6106b5565b6040516101fb919061229c565b60405180910390f35b34801561021057600080fd5b50610219610747565b6040516102269190612347565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061239f565b6107d9565b604051610263919061240d565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612454565b610855565b005b3480156102a157600080fd5b506102aa6109fb565b6040516102b791906124a3565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906124be565b610a12565b005b3480156102f557600080fd5b506102fe610a22565b60405161030b91906124a3565b60405180910390f35b34801561032057600080fd5b50610329610a28565b005b34801561033757600080fd5b50610352600480360381019061034d91906124be565b610b53565b005b34801561036057600080fd5b5061037b60048036038101906103769190612646565b610b73565b005b34801561038957600080fd5b506103a4600480360381019061039f919061239f565b610c02565b6040516103b1919061240d565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc919061268f565b610c14565b6040516103ee91906124a3565b60405180910390f35b34801561040357600080fd5b5061040c610ccc565b005b34801561041a57600080fd5b50610423610d54565b005b34801561043157600080fd5b5061043a610dfc565b604051610447919061240d565b60405180910390f35b34801561045c57600080fd5b506104776004803603810190610472919061239f565b610e26565b005b34801561048557600080fd5b506104a0600480360381019061049b919061239f565b610eac565b005b3480156104ae57600080fd5b506104b7610f32565b6040516104c49190612347565b60405180910390f35b3480156104d957600080fd5b506104e2610fc4565b6040516104ef91906124a3565b60405180910390f35b610512600480360381019061050d919061239f565b610fca565b005b34801561052057600080fd5b5061053b600480360381019061053691906126e8565b611284565b005b34801561054957600080fd5b506105526113fb565b60405161055f91906124a3565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a91906127c9565b611401565b005b34801561059d57600080fd5b506105b860048036038101906105b3919061239f565b611474565b6040516105c59190612347565b60405180910390f35b3480156105da57600080fd5b506105e36114f0565b6040516105f0919061229c565b60405180910390f35b34801561060557600080fd5b5061060e611503565b60405161061b91906124a3565b60405180910390f35b34801561063057600080fd5b5061064b6004803603810190610646919061284c565b611509565b604051610658919061229c565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061268f565b61159d565b005b34801561069657600080fd5b5061069f611694565b6040516106ac91906124a3565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610756906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610782906128bb565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e48261169a565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610860826116f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e66117c5565b73ffffffffffffffffffffffffffffffffffffffff1614610949576109128161090d6117c5565b611509565b610948576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a056117cd565b6001546000540303905090565b610a1d8383836117d2565b505050565b600d5481565b610a30611b79565b73ffffffffffffffffffffffffffffffffffffffff16610a4e610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90612938565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aca90612989565b60006040518083038185875af1925050503d8060008114610b07576040519150601f19603f3d011682016040523d82523d6000602084013e610b0c565b606091505b5050905080610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b47906129ea565b60405180910390fd5b50565b610b6e83838360405180602001604052806000815250611401565b505050565b610b7b611b79565b73ffffffffffffffffffffffffffffffffffffffff16610b99610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612938565b60405180910390fd5b8060099081610bfe9190612bb6565b5050565b6000610c0d826116f9565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cd4611b79565b73ffffffffffffffffffffffffffffffffffffffff16610cf2610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90612938565b60405180910390fd5b610d526000611b81565b565b610d5c611b79565b73ffffffffffffffffffffffffffffffffffffffff16610d7a610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790612938565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e2e611b79565b73ffffffffffffffffffffffffffffffffffffffff16610e4c610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990612938565b60405180910390fd5b80600a8190555050565b610eb4611b79565b73ffffffffffffffffffffffffffffffffffffffff16610ed2610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90612938565b60405180910390fd5b80600d8190555050565b606060038054610f41906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6d906128bb565b8015610fba5780601f10610f8f57610100808354040283529160200191610fba565b820191906000526020600020905b815481529060010190602001808311610f9d57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610fe29190612cb7565b83610feb6109fb565b610ff59190612cb7565b10801561104e5750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461104b9190612cb7565b11155b9050801561105b57600091505b81836110679190612ceb565b3410156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090612d79565b60405180910390fd5b6001600e546110b89190612cb7565b836110c16109fb565b6110cb9190612cb7565b1061110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612de5565b60405180910390fd5b600f60009054906101000a900460ff1661115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612e51565b60405180910390fd5b6001600b546111699190612cb7565b83106111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612ebd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90612f29565b60405180910390fd5b80156112755782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461126d9190612cb7565b925050819055505b61127f3384611c47565b505050565b61128c6117c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112fd6117c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113aa6117c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ef919061229c565b60405180910390a35050565b600c5481565b61140c8484846117d2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461146e5761143784848484611c65565b61146d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061147f8261169a565b6114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590612fbb565b60405180910390fd5b60096114c983611db5565b6040516020016114da9291906130e6565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115a5611b79565b73ffffffffffffffffffffffffffffffffffffffff166115c3610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090612938565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613187565b60405180910390fd5b61169181611b81565b50565b600b5481565b6000816116a56117cd565b111580156116b4575060005482105b80156116f2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117086117cd565b1161178e5760005481101561178d5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361178b575b60008103611781576004600083600190039350838152602001908152602001600020549050611757565b80925050506117c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006117dd826116f9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611844576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118656117c5565b73ffffffffffffffffffffffffffffffffffffffff16148061189457506118938561188e6117c5565b611509565b5b806118d957506118a26117c5565b73ffffffffffffffffffffffffffffffffffffffff166118c1846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611912576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611978576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119858585856001611f15565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a8286611f1b565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611b0a5760006001840190506000600460008381526020019081526020016000205403611b08576000548114611b07578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b728585856001611f25565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c61828260405180602001604052806000815250611f2b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8b6117c5565b8786866040518563ffffffff1660e01b8152600401611cad94939291906131fc565b6020604051808303816000875af1925050508015611ce957506040513d601f19601f82011682018060405250810190611ce6919061325d565b60015b611d62573d8060008114611d19576040519150601f19603f3d011682016040523d82523d6000602084013e611d1e565b606091505b506000815103611d5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611dfc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f10565b600082905060005b60008214611e2e578080611e179061328a565b915050600a82611e279190613301565b9150611e04565b60008167ffffffffffffffff811115611e4a57611e4961251b565b5b6040519080825280601f01601f191660200182016040528015611e7c5781602001600182028036833780820191505090505b5090505b60008514611f0957600182611e959190613332565b9150600a85611ea49190613366565b6030611eb09190612cb7565b60f81b818381518110611ec657611ec5613397565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f029190613301565b9450611e80565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f97576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611fd1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fde6000858386611f15565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612043600185146121de565b901b60a042901b61205386611f1b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612157575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121076000878480600101955087611c65565b61213d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061209857826000541461215257600080fd5b6121c2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612158575b8160008190555050506121d86000858386611f25565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612231816121fc565b811461223c57600080fd5b50565b60008135905061224e81612228565b92915050565b60006020828403121561226a576122696121f2565b5b60006122788482850161223f565b91505092915050565b60008115159050919050565b61229681612281565b82525050565b60006020820190506122b1600083018461228d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122f15780820151818401526020810190506122d6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612319826122b7565b61232381856122c2565b93506123338185602086016122d3565b61233c816122fd565b840191505092915050565b60006020820190508181036000830152612361818461230e565b905092915050565b6000819050919050565b61237c81612369565b811461238757600080fd5b50565b60008135905061239981612373565b92915050565b6000602082840312156123b5576123b46121f2565b5b60006123c38482850161238a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123f7826123cc565b9050919050565b612407816123ec565b82525050565b600060208201905061242260008301846123fe565b92915050565b612431816123ec565b811461243c57600080fd5b50565b60008135905061244e81612428565b92915050565b6000806040838503121561246b5761246a6121f2565b5b60006124798582860161243f565b925050602061248a8582860161238a565b9150509250929050565b61249d81612369565b82525050565b60006020820190506124b86000830184612494565b92915050565b6000806000606084860312156124d7576124d66121f2565b5b60006124e58682870161243f565b93505060206124f68682870161243f565b92505060406125078682870161238a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612553826122fd565b810181811067ffffffffffffffff821117156125725761257161251b565b5b80604052505050565b60006125856121e8565b9050612591828261254a565b919050565b600067ffffffffffffffff8211156125b1576125b061251b565b5b6125ba826122fd565b9050602081019050919050565b82818337600083830152505050565b60006125e96125e484612596565b61257b565b90508281526020810184848401111561260557612604612516565b5b6126108482856125c7565b509392505050565b600082601f83011261262d5761262c612511565b5b813561263d8482602086016125d6565b91505092915050565b60006020828403121561265c5761265b6121f2565b5b600082013567ffffffffffffffff81111561267a576126796121f7565b5b61268684828501612618565b91505092915050565b6000602082840312156126a5576126a46121f2565b5b60006126b38482850161243f565b91505092915050565b6126c581612281565b81146126d057600080fd5b50565b6000813590506126e2816126bc565b92915050565b600080604083850312156126ff576126fe6121f2565b5b600061270d8582860161243f565b925050602061271e858286016126d3565b9150509250929050565b600067ffffffffffffffff8211156127435761274261251b565b5b61274c826122fd565b9050602081019050919050565b600061276c61276784612728565b61257b565b90508281526020810184848401111561278857612787612516565b5b6127938482856125c7565b509392505050565b600082601f8301126127b0576127af612511565b5b81356127c0848260208601612759565b91505092915050565b600080600080608085870312156127e3576127e26121f2565b5b60006127f18782880161243f565b94505060206128028782880161243f565b93505060406128138782880161238a565b925050606085013567ffffffffffffffff811115612834576128336121f7565b5b6128408782880161279b565b91505092959194509250565b60008060408385031215612863576128626121f2565b5b60006128718582860161243f565b92505060206128828582860161243f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128d357607f821691505b6020821081036128e6576128e561288c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129226020836122c2565b915061292d826128ec565b602082019050919050565b6000602082019050818103600083015261295181612915565b9050919050565b600081905092915050565b50565b6000612973600083612958565b915061297e82612963565b600082019050919050565b600061299482612966565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006129d46010836122c2565b91506129df8261299e565b602082019050919050565b60006020820190508181036000830152612a03816129c7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a6c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a2f565b612a768683612a2f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ab3612aae612aa984612369565b612a8e565b612369565b9050919050565b6000819050919050565b612acd83612a98565b612ae1612ad982612aba565b848454612a3c565b825550505050565b600090565b612af6612ae9565b612b01818484612ac4565b505050565b5b81811015612b2557612b1a600082612aee565b600181019050612b07565b5050565b601f821115612b6a57612b3b81612a0a565b612b4484612a1f565b81016020851015612b53578190505b612b67612b5f85612a1f565b830182612b06565b50505b505050565b600082821c905092915050565b6000612b8d60001984600802612b6f565b1980831691505092915050565b6000612ba68383612b7c565b9150826002028217905092915050565b612bbf826122b7565b67ffffffffffffffff811115612bd857612bd761251b565b5b612be282546128bb565b612bed828285612b29565b600060209050601f831160018114612c205760008415612c0e578287015190505b612c188582612b9a565b865550612c80565b601f198416612c2e86612a0a565b60005b82811015612c5657848901518255600182019150602085019450602081019050612c31565b86831015612c735784890151612c6f601f891682612b7c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cc282612369565b9150612ccd83612369565b9250828201905080821115612ce557612ce4612c88565b5b92915050565b6000612cf682612369565b9150612d0183612369565b9250828202612d0f81612369565b91508282048414831517612d2657612d25612c88565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612d63601d836122c2565b9150612d6e82612d2d565b602082019050919050565b60006020820190508181036000830152612d9281612d56565b9050919050565b7f4e6f206d6f7265206c6566742e00000000000000000000000000000000000000600082015250565b6000612dcf600d836122c2565b9150612dda82612d99565b602082019050919050565b60006020820190508181036000830152612dfe81612dc2565b9050919050565b7f4d696e74206973206e6f74206c697665207965742e0000000000000000000000600082015250565b6000612e3b6015836122c2565b9150612e4682612e05565b602082019050919050565b60006020820190508181036000830152612e6a81612e2e565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612ea76013836122c2565b9150612eb282612e71565b602082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e742e0000600082015250565b6000612f13601e836122c2565b9150612f1e82612edd565b602082019050919050565b60006020820190508181036000830152612f4281612f06565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fa5602f836122c2565b9150612fb082612f49565b604082019050919050565b60006020820190508181036000830152612fd481612f98565b9050919050565b600081905092915050565b60008154612ff3816128bb565b612ffd8186612fdb565b94506001821660008114613018576001811461302d57613060565b60ff1983168652811515820286019350613060565b61303685612a0a565b60005b8381101561305857815481890152600182019150602081019050613039565b838801955050505b50505092915050565b6000613074826122b7565b61307e8185612fdb565b935061308e8185602086016122d3565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130d0600583612fdb565b91506130db8261309a565b600582019050919050565b60006130f28285612fe6565b91506130fe8284613069565b9150613109826130c3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131716026836122c2565b915061317c82613115565b604082019050919050565b600060208201905081810360008301526131a081613164565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131ce826131a7565b6131d881856131b2565b93506131e88185602086016122d3565b6131f1816122fd565b840191505092915050565b600060808201905061321160008301876123fe565b61321e60208301866123fe565b61322b6040830185612494565b818103606083015261323d81846131c3565b905095945050505050565b60008151905061325781612228565b92915050565b600060208284031215613273576132726121f2565b5b600061328184828501613248565b91505092915050565b600061329582612369565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132c7576132c6612c88565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061330c82612369565b915061331783612369565b925082613327576133266132d2565b5b828204905092915050565b600061333d82612369565b915061334883612369565b92508282039050818111156133605761335f612c88565b5b92915050565b600061337182612369565b915061337c83612369565b92508261338c5761338b6132d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bc405d385f55d78faf926b600eff327a53f7983dd7711da0756b1e4384f2d52564736f6c63430008120033697066733a2f2f626166796265696261697170727777613633667472626736776668697336336a747266656d72686f666d36796874346c6a6b6d7a357033367a63752f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146105f9578063e985e9c514610624578063f2fde38b14610661578063f968adbe1461068a576101c2565b8063a70273571461053d578063b88d4fde14610568578063c87b56dd14610591578063d1239730146105ce576101c2565b806395d89b41116100d157806395d89b41146104a2578063a035b1fe146104cd578063a0712d68146104f8578063a22cb46514610514576101c2565b80638da5cb5b1461042557806391b7f5ed1461045057806392910eec14610479576101c2565b80633ccfd60b116101645780636352211e1161013e5780636352211e1461037d57806370a08231146103ba578063715018a6146103f75780637ba5e6211461040e576101c2565b80633ccfd60b1461031457806342842e0e1461032b57806355f804b314610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c0578063333e44e6146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612254565b6106b5565b6040516101fb919061229c565b60405180910390f35b34801561021057600080fd5b50610219610747565b6040516102269190612347565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061239f565b6107d9565b604051610263919061240d565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612454565b610855565b005b3480156102a157600080fd5b506102aa6109fb565b6040516102b791906124a3565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906124be565b610a12565b005b3480156102f557600080fd5b506102fe610a22565b60405161030b91906124a3565b60405180910390f35b34801561032057600080fd5b50610329610a28565b005b34801561033757600080fd5b50610352600480360381019061034d91906124be565b610b53565b005b34801561036057600080fd5b5061037b60048036038101906103769190612646565b610b73565b005b34801561038957600080fd5b506103a4600480360381019061039f919061239f565b610c02565b6040516103b1919061240d565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc919061268f565b610c14565b6040516103ee91906124a3565b60405180910390f35b34801561040357600080fd5b5061040c610ccc565b005b34801561041a57600080fd5b50610423610d54565b005b34801561043157600080fd5b5061043a610dfc565b604051610447919061240d565b60405180910390f35b34801561045c57600080fd5b506104776004803603810190610472919061239f565b610e26565b005b34801561048557600080fd5b506104a0600480360381019061049b919061239f565b610eac565b005b3480156104ae57600080fd5b506104b7610f32565b6040516104c49190612347565b60405180910390f35b3480156104d957600080fd5b506104e2610fc4565b6040516104ef91906124a3565b60405180910390f35b610512600480360381019061050d919061239f565b610fca565b005b34801561052057600080fd5b5061053b600480360381019061053691906126e8565b611284565b005b34801561054957600080fd5b506105526113fb565b60405161055f91906124a3565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a91906127c9565b611401565b005b34801561059d57600080fd5b506105b860048036038101906105b3919061239f565b611474565b6040516105c59190612347565b60405180910390f35b3480156105da57600080fd5b506105e36114f0565b6040516105f0919061229c565b60405180910390f35b34801561060557600080fd5b5061060e611503565b60405161061b91906124a3565b60405180910390f35b34801561063057600080fd5b5061064b6004803603810190610646919061284c565b611509565b604051610658919061229c565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061268f565b61159d565b005b34801561069657600080fd5b5061069f611694565b6040516106ac91906124a3565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610756906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610782906128bb565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e48261169a565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610860826116f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e66117c5565b73ffffffffffffffffffffffffffffffffffffffff1614610949576109128161090d6117c5565b611509565b610948576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a056117cd565b6001546000540303905090565b610a1d8383836117d2565b505050565b600d5481565b610a30611b79565b73ffffffffffffffffffffffffffffffffffffffff16610a4e610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90612938565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aca90612989565b60006040518083038185875af1925050503d8060008114610b07576040519150601f19603f3d011682016040523d82523d6000602084013e610b0c565b606091505b5050905080610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b47906129ea565b60405180910390fd5b50565b610b6e83838360405180602001604052806000815250611401565b505050565b610b7b611b79565b73ffffffffffffffffffffffffffffffffffffffff16610b99610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612938565b60405180910390fd5b8060099081610bfe9190612bb6565b5050565b6000610c0d826116f9565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cd4611b79565b73ffffffffffffffffffffffffffffffffffffffff16610cf2610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90612938565b60405180910390fd5b610d526000611b81565b565b610d5c611b79565b73ffffffffffffffffffffffffffffffffffffffff16610d7a610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790612938565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e2e611b79565b73ffffffffffffffffffffffffffffffffffffffff16610e4c610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990612938565b60405180910390fd5b80600a8190555050565b610eb4611b79565b73ffffffffffffffffffffffffffffffffffffffff16610ed2610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90612938565b60405180910390fd5b80600d8190555050565b606060038054610f41906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6d906128bb565b8015610fba5780601f10610f8f57610100808354040283529160200191610fba565b820191906000526020600020905b815481529060010190602001808311610f9d57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610fe29190612cb7565b83610feb6109fb565b610ff59190612cb7565b10801561104e5750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461104b9190612cb7565b11155b9050801561105b57600091505b81836110679190612ceb565b3410156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090612d79565b60405180910390fd5b6001600e546110b89190612cb7565b836110c16109fb565b6110cb9190612cb7565b1061110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612de5565b60405180910390fd5b600f60009054906101000a900460ff1661115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612e51565b60405180910390fd5b6001600b546111699190612cb7565b83106111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612ebd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90612f29565b60405180910390fd5b80156112755782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461126d9190612cb7565b925050819055505b61127f3384611c47565b505050565b61128c6117c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112fd6117c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113aa6117c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ef919061229c565b60405180910390a35050565b600c5481565b61140c8484846117d2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461146e5761143784848484611c65565b61146d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061147f8261169a565b6114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590612fbb565b60405180910390fd5b60096114c983611db5565b6040516020016114da9291906130e6565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115a5611b79565b73ffffffffffffffffffffffffffffffffffffffff166115c3610dfc565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090612938565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613187565b60405180910390fd5b61169181611b81565b50565b600b5481565b6000816116a56117cd565b111580156116b4575060005482105b80156116f2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117086117cd565b1161178e5760005481101561178d5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361178b575b60008103611781576004600083600190039350838152602001908152602001600020549050611757565b80925050506117c0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006117dd826116f9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611844576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118656117c5565b73ffffffffffffffffffffffffffffffffffffffff16148061189457506118938561188e6117c5565b611509565b5b806118d957506118a26117c5565b73ffffffffffffffffffffffffffffffffffffffff166118c1846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611912576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611978576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119858585856001611f15565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a8286611f1b565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611b0a5760006001840190506000600460008381526020019081526020016000205403611b08576000548114611b07578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b728585856001611f25565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c61828260405180602001604052806000815250611f2b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8b6117c5565b8786866040518563ffffffff1660e01b8152600401611cad94939291906131fc565b6020604051808303816000875af1925050508015611ce957506040513d601f19601f82011682018060405250810190611ce6919061325d565b60015b611d62573d8060008114611d19576040519150601f19603f3d011682016040523d82523d6000602084013e611d1e565b606091505b506000815103611d5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611dfc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f10565b600082905060005b60008214611e2e578080611e179061328a565b915050600a82611e279190613301565b9150611e04565b60008167ffffffffffffffff811115611e4a57611e4961251b565b5b6040519080825280601f01601f191660200182016040528015611e7c5781602001600182028036833780820191505090505b5090505b60008514611f0957600182611e959190613332565b9150600a85611ea49190613366565b6030611eb09190612cb7565b60f81b818381518110611ec657611ec5613397565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f029190613301565b9450611e80565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f97576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611fd1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fde6000858386611f15565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612043600185146121de565b901b60a042901b61205386611f1b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612157575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121076000878480600101955087611c65565b61213d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061209857826000541461215257600080fd5b6121c2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612158575b8160008190555050506121d86000858386611f25565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612231816121fc565b811461223c57600080fd5b50565b60008135905061224e81612228565b92915050565b60006020828403121561226a576122696121f2565b5b60006122788482850161223f565b91505092915050565b60008115159050919050565b61229681612281565b82525050565b60006020820190506122b1600083018461228d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122f15780820151818401526020810190506122d6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612319826122b7565b61232381856122c2565b93506123338185602086016122d3565b61233c816122fd565b840191505092915050565b60006020820190508181036000830152612361818461230e565b905092915050565b6000819050919050565b61237c81612369565b811461238757600080fd5b50565b60008135905061239981612373565b92915050565b6000602082840312156123b5576123b46121f2565b5b60006123c38482850161238a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123f7826123cc565b9050919050565b612407816123ec565b82525050565b600060208201905061242260008301846123fe565b92915050565b612431816123ec565b811461243c57600080fd5b50565b60008135905061244e81612428565b92915050565b6000806040838503121561246b5761246a6121f2565b5b60006124798582860161243f565b925050602061248a8582860161238a565b9150509250929050565b61249d81612369565b82525050565b60006020820190506124b86000830184612494565b92915050565b6000806000606084860312156124d7576124d66121f2565b5b60006124e58682870161243f565b93505060206124f68682870161243f565b92505060406125078682870161238a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612553826122fd565b810181811067ffffffffffffffff821117156125725761257161251b565b5b80604052505050565b60006125856121e8565b9050612591828261254a565b919050565b600067ffffffffffffffff8211156125b1576125b061251b565b5b6125ba826122fd565b9050602081019050919050565b82818337600083830152505050565b60006125e96125e484612596565b61257b565b90508281526020810184848401111561260557612604612516565b5b6126108482856125c7565b509392505050565b600082601f83011261262d5761262c612511565b5b813561263d8482602086016125d6565b91505092915050565b60006020828403121561265c5761265b6121f2565b5b600082013567ffffffffffffffff81111561267a576126796121f7565b5b61268684828501612618565b91505092915050565b6000602082840312156126a5576126a46121f2565b5b60006126b38482850161243f565b91505092915050565b6126c581612281565b81146126d057600080fd5b50565b6000813590506126e2816126bc565b92915050565b600080604083850312156126ff576126fe6121f2565b5b600061270d8582860161243f565b925050602061271e858286016126d3565b9150509250929050565b600067ffffffffffffffff8211156127435761274261251b565b5b61274c826122fd565b9050602081019050919050565b600061276c61276784612728565b61257b565b90508281526020810184848401111561278857612787612516565b5b6127938482856125c7565b509392505050565b600082601f8301126127b0576127af612511565b5b81356127c0848260208601612759565b91505092915050565b600080600080608085870312156127e3576127e26121f2565b5b60006127f18782880161243f565b94505060206128028782880161243f565b93505060406128138782880161238a565b925050606085013567ffffffffffffffff811115612834576128336121f7565b5b6128408782880161279b565b91505092959194509250565b60008060408385031215612863576128626121f2565b5b60006128718582860161243f565b92505060206128828582860161243f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128d357607f821691505b6020821081036128e6576128e561288c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129226020836122c2565b915061292d826128ec565b602082019050919050565b6000602082019050818103600083015261295181612915565b9050919050565b600081905092915050565b50565b6000612973600083612958565b915061297e82612963565b600082019050919050565b600061299482612966565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006129d46010836122c2565b91506129df8261299e565b602082019050919050565b60006020820190508181036000830152612a03816129c7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a6c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a2f565b612a768683612a2f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ab3612aae612aa984612369565b612a8e565b612369565b9050919050565b6000819050919050565b612acd83612a98565b612ae1612ad982612aba565b848454612a3c565b825550505050565b600090565b612af6612ae9565b612b01818484612ac4565b505050565b5b81811015612b2557612b1a600082612aee565b600181019050612b07565b5050565b601f821115612b6a57612b3b81612a0a565b612b4484612a1f565b81016020851015612b53578190505b612b67612b5f85612a1f565b830182612b06565b50505b505050565b600082821c905092915050565b6000612b8d60001984600802612b6f565b1980831691505092915050565b6000612ba68383612b7c565b9150826002028217905092915050565b612bbf826122b7565b67ffffffffffffffff811115612bd857612bd761251b565b5b612be282546128bb565b612bed828285612b29565b600060209050601f831160018114612c205760008415612c0e578287015190505b612c188582612b9a565b865550612c80565b601f198416612c2e86612a0a565b60005b82811015612c5657848901518255600182019150602085019450602081019050612c31565b86831015612c735784890151612c6f601f891682612b7c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cc282612369565b9150612ccd83612369565b9250828201905080821115612ce557612ce4612c88565b5b92915050565b6000612cf682612369565b9150612d0183612369565b9250828202612d0f81612369565b91508282048414831517612d2657612d25612c88565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612d63601d836122c2565b9150612d6e82612d2d565b602082019050919050565b60006020820190508181036000830152612d9281612d56565b9050919050565b7f4e6f206d6f7265206c6566742e00000000000000000000000000000000000000600082015250565b6000612dcf600d836122c2565b9150612dda82612d99565b602082019050919050565b60006020820190508181036000830152612dfe81612dc2565b9050919050565b7f4d696e74206973206e6f74206c697665207965742e0000000000000000000000600082015250565b6000612e3b6015836122c2565b9150612e4682612e05565b602082019050919050565b60006020820190508181036000830152612e6a81612e2e565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612ea76013836122c2565b9150612eb282612e71565b602082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e742e0000600082015250565b6000612f13601e836122c2565b9150612f1e82612edd565b602082019050919050565b60006020820190508181036000830152612f4281612f06565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fa5602f836122c2565b9150612fb082612f49565b604082019050919050565b60006020820190508181036000830152612fd481612f98565b9050919050565b600081905092915050565b60008154612ff3816128bb565b612ffd8186612fdb565b94506001821660008114613018576001811461302d57613060565b60ff1983168652811515820286019350613060565b61303685612a0a565b60005b8381101561305857815481890152600182019150602081019050613039565b838801955050505b50505092915050565b6000613074826122b7565b61307e8185612fdb565b935061308e8185602086016122d3565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130d0600583612fdb565b91506130db8261309a565b600582019050919050565b60006130f28285612fe6565b91506130fe8284613069565b9150613109826130c3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131716026836122c2565b915061317c82613115565b604082019050919050565b600060208201905081810360008301526131a081613164565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131ce826131a7565b6131d881856131b2565b93506131e88185602086016122d3565b6131f1816122fd565b840191505092915050565b600060808201905061321160008301876123fe565b61321e60208301866123fe565b61322b6040830185612494565b818103606083015261323d81846131c3565b905095945050505050565b60008151905061325781612228565b92915050565b600060208284031215613273576132726121f2565b5b600061328184828501613248565b91505092915050565b600061329582612369565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132c7576132c6612c88565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061330c82612369565b915061331783612369565b925082613327576133266132d2565b5b828204905092915050565b600061333d82612369565b915061334883612369565b92508282039050818111156133605761335f612c88565b5b92915050565b600061337182612369565b915061337c83612369565b92508261338c5761338b6132d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bc405d385f55d78faf926b600eff327a53f7983dd7711da0756b1e4384f2d52564736f6c63430008120033

Deployed Bytecode Sourcemap

80355:2440:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16912:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21925:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23993:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23453:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15966:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24879:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80582:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82586:206;;;;;;;;;;;;;:::i;:::-;;25120:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82195:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21714:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17591:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47433:103;;;;;;;;;;;;;:::i;:::-;;82494:84;;;;;;;;;;;;;:::i;:::-;;46782:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82394:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82291:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22094:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80464:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80945:768;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24269:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80540:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25376:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81837:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80660:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80620:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24648:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47691:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80505:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16912:615;16997:4;17312:10;17297:25;;:11;:25;;;;:102;;;;17389:10;17374:25;;:11;:25;;;;17297:102;:179;;;;17466:10;17451:25;;:11;:25;;;;17297:179;17277:199;;16912:615;;;:::o;21925:100::-;21979:13;22012:5;22005:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21925:100;:::o;23993:204::-;24061:7;24086:16;24094:7;24086;:16::i;:::-;24081:64;;24111:34;;;;;;;;;;;;;;24081:64;24165:15;:24;24181:7;24165:24;;;;;;;;;;;;;;;;;;;;;24158:31;;23993:204;;;:::o;23453:474::-;23526:13;23558:27;23577:7;23558:18;:27::i;:::-;23526:61;;23608:5;23602:11;;:2;:11;;;23598:48;;23622:24;;;;;;;;;;;;;;23598:48;23686:5;23663:28;;:19;:17;:19::i;:::-;:28;;;23659:175;;23711:44;23728:5;23735:19;:17;:19::i;:::-;23711:16;:44::i;:::-;23706:128;;23783:35;;;;;;;;;;;;;;23706:128;23659:175;23873:2;23846:15;:24;23862:7;23846:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23911:7;23907:2;23891:28;;23900:5;23891:28;;;;;;;;;;;;23515:412;23453:474;;:::o;15966:315::-;16019:7;16247:15;:13;:15::i;:::-;16232:12;;16216:13;;:28;:46;16209:53;;15966:315;:::o;24879:170::-;25013:28;25023:4;25029:2;25033:7;25013:9;:28::i;:::-;24879:170;;;:::o;80582:31::-;;;;:::o;82586:206::-;47013:12;:10;:12::i;:::-;47002:23;;:7;:5;:7::i;:::-;:23;;;46994:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82637:12:::1;82663:10;82655:24;;82701:21;82655:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82636:101;;;82756:7;82748:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;82625:167;82586:206::o:0;25120:185::-;25258:39;25275:4;25281:2;25285:7;25258:39;;;;;;;;;;;;:16;:39::i;:::-;25120:185;;;:::o;82195:88::-;47013:12;:10;:12::i;:::-;47002:23;;:7;:5;:7::i;:::-;:23;;;46994:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82272:3:::1;82262:7;:13;;;;;;:::i;:::-;;82195:88:::0;:::o;21714:144::-;21778:7;21821:27;21840:7;21821:18;:27::i;:::-;21798:52;;21714:144;;;:::o;17591:224::-;17655:7;17696:1;17679:19;;:5;:19;;;17675:60;;17707:28;;;;;;;;;;;;;;17675:60;12930:13;17753:18;:25;17772:5;17753:25;;;;;;;;;;;;;;;;:54;17746:61;;17591:224;;;:::o;47433:103::-;47013:12;:10;:12::i;:::-;47002:23;;:7;:5;:7::i;:::-;:23;;;46994:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47498:30:::1;47525:1;47498:18;:30::i;:::-;47433:103::o:0;82494:84::-;47013:12;:10;:12::i;:::-;47002:23;;:7;:5;:7::i;:::-;:23;;;46994:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82559:11:::1;;;;;;;;;;;82558:12;82544:11;;:26;;;;;;;;;;;;;;;;;;82494:84::o:0;46782:87::-;46828:7;46855:6;;;;;;;;;;;46848:13;;46782:87;:::o;82394:92::-;47013:12;:10;:12::i;:::-;47002:23;;:7;:5;:7::i;:::-;:23;;;46994:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82469:9:::1;82461:5;:17;;;;82394:92:::0;:::o;82291:95::-;47013:12;:10;:12::i;:::-;47002:23;;:7;:5;:7::i;:::-;:23;;;46994:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82372:6:::1;82360:9;:18;;;;82291:95:::0;:::o;22094:104::-;22150:13;22183:7;22176:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22094:104;:::o;80464:34::-;;;;:::o;80945:768::-;81002:12;81017:5;;81002:20;;81033:11;81085:1;81073:9;;:13;;;;:::i;:::-;81065:5;81049:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;81048:115;;;;;81146:16;;81137:5;81105:17;:29;81123:10;81105:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;81048:115;81033:131;;81181:6;81177:47;;;81211:1;81204:8;;81177:47;81265:4;81257:5;:12;;;;:::i;:::-;81244:9;:25;;81236:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;81358:1;81346:9;;:13;;;;:::i;:::-;81338:5;81322:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;81314:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;81396:11;;;;;;;;;;;81388:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;81471:1;81460:8;;:12;;;;:::i;:::-;81452:5;:20;81444:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;81528:10;81515:23;;:9;:23;;;81507:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;81592:6;81588:77;;;81648:5;81615:17;:29;81633:10;81615:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;81588:77;81677:28;81687:10;81699:5;81677:9;:28::i;:::-;80991:722;;80945:768;:::o;24269:308::-;24380:19;:17;:19::i;:::-;24368:31;;:8;:31;;;24364:61;;24408:17;;;;;;;;;;;;;;24364:61;24490:8;24438:18;:39;24457:19;:17;:19::i;:::-;24438:39;;;;;;;;;;;;;;;:49;24478:8;24438:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24550:8;24514:55;;24529:19;:17;:19::i;:::-;24514:55;;;24560:8;24514:55;;;;;;:::i;:::-;;;;;;;;24269:308;;:::o;80540:35::-;;;;:::o;25376:396::-;25543:28;25553:4;25559:2;25563:7;25543:9;:28::i;:::-;25604:1;25586:2;:14;;;:19;25582:183;;25625:56;25656:4;25662:2;25666:7;25675:5;25625:30;:56::i;:::-;25620:145;;25709:40;;;;;;;;;;;;;;25620:145;25582:183;25376:396;;;;:::o;81837:350::-;81955:13;82008:16;82016:7;82008;:16::i;:::-;81986:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;82141:7;82150:18;:7;:16;:18::i;:::-;82124:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82110:69;;81837:350;;;:::o;80660:30::-;;;;;;;;;;;;;:::o;80620:31::-;;;;:::o;24648:164::-;24745:4;24769:18;:25;24788:5;24769:25;;;;;;;;;;;;;;;:35;24795:8;24769:35;;;;;;;;;;;;;;;;;;;;;;;;;24762:42;;24648:164;;;;:::o;47691:201::-;47013:12;:10;:12::i;:::-;47002:23;;:7;:5;:7::i;:::-;:23;;;46994:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47800:1:::1;47780:22;;:8;:22;;::::0;47772:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47856:28;47875:8;47856:18;:28::i;:::-;47691:201:::0;:::o;80505:28::-;;;;:::o;26027:273::-;26084:4;26140:7;26121:15;:13;:15::i;:::-;:26;;:66;;;;;26174:13;;26164:7;:23;26121:66;:152;;;;;26272:1;13700:8;26225:17;:26;26243:7;26225:26;;;;;;;;;;;;:43;:48;26121:152;26101:172;;26027:273;;;:::o;19229:1129::-;19296:7;19316:12;19331:7;19316:22;;19399:4;19380:15;:13;:15::i;:::-;:23;19376:915;;19433:13;;19426:4;:20;19422:869;;;19471:14;19488:17;:23;19506:4;19488:23;;;;;;;;;;;;19471:40;;19604:1;13700:8;19577:6;:23;:28;19573:699;;20096:113;20113:1;20103:6;:11;20096:113;;20156:17;:25;20174:6;;;;;;;20156:25;;;;;;;;;;;;20147:34;;20096:113;;;20242:6;20235:13;;;;;;19573:699;19448:843;19422:869;19376:915;20319:31;;;;;;;;;;;;;;19229:1129;;;;:::o;40009:105::-;40069:7;40096:10;40089:17;;40009:105;:::o;15489:92::-;15545:7;15489:92;:::o;31266:2515::-;31381:27;31411;31430:7;31411:18;:27::i;:::-;31381:57;;31496:4;31455:45;;31471:19;31455:45;;;31451:86;;31509:28;;;;;;;;;;;;;;31451:86;31550:22;31599:4;31576:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31620:43;31637:4;31643:19;:17;:19::i;:::-;31620:16;:43::i;:::-;31576:87;:147;;;;31704:19;:17;:19::i;:::-;31680:43;;:20;31692:7;31680:11;:20::i;:::-;:43;;;31576:147;31550:174;;31742:17;31737:66;;31768:35;;;;;;;;;;;;;;31737:66;31832:1;31818:16;;:2;:16;;;31814:52;;31843:23;;;;;;;;;;;;;;31814:52;31879:43;31901:4;31907:2;31911:7;31920:1;31879:21;:43::i;:::-;31995:15;:24;32011:7;31995:24;;;;;;;;;;;;31988:31;;;;;;;;;;;32387:18;:24;32406:4;32387:24;;;;;;;;;;;;;;;;32385:26;;;;;;;;;;;;32456:18;:22;32475:2;32456:22;;;;;;;;;;;;;;;;32454:24;;;;;;;;;;;13982:8;13584:3;32837:15;:41;;32795:21;32813:2;32795:17;:21::i;:::-;:84;:128;32749:17;:26;32767:7;32749:26;;;;;;;;;;;:174;;;;33093:1;13982:8;33043:19;:46;:51;33039:626;;33115:19;33147:1;33137:7;:11;33115:33;;33304:1;33270:17;:30;33288:11;33270:30;;;;;;;;;;;;:35;33266:384;;33408:13;;33393:11;:28;33389:242;;33588:19;33555:17;:30;33573:11;33555:30;;;;;;;;;;;:52;;;;33389:242;33266:384;33096:569;33039:626;33712:7;33708:2;33693:27;;33702:4;33693:27;;;;;;;;;;;;33731:42;33752:4;33758:2;33762:7;33771:1;33731:20;:42::i;:::-;31370:2411;;31266:2515;;;:::o;45453:98::-;45506:7;45533:10;45526:17;;45453:98;:::o;48052:191::-;48126:16;48145:6;;;;;;;;;;;48126:25;;48171:8;48162:6;;:17;;;;;;;;;;;;;;;;;;48226:8;48195:40;;48216:8;48195:40;;;;;;;;;;;;48115:128;48052:191;:::o;26384:104::-;26453:27;26463:2;26467:8;26453:27;;;;;;;;;;;;:9;:27::i;:::-;26384:104;;:::o;37478:716::-;37641:4;37687:2;37662:45;;;37708:19;:17;:19::i;:::-;37729:4;37735:7;37744:5;37662:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37658:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37962:1;37945:6;:13;:18;37941:235;;37991:40;;;;;;;;;;;;;;37941:235;38134:6;38128:13;38119:6;38115:2;38111:15;38104:38;37658:529;37831:54;;;37821:64;;;:6;:64;;;;37814:71;;;37478:716;;;;;;:::o;42654:723::-;42710:13;42940:1;42931:5;:10;42927:53;;42958:10;;;;;;;;;;;;;;;;;;;;;42927:53;42990:12;43005:5;42990:20;;43021:14;43046:78;43061:1;43053:4;:9;43046:78;;43079:8;;;;;:::i;:::-;;;;43110:2;43102:10;;;;;:::i;:::-;;;43046:78;;;43134:19;43166:6;43156:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43134:39;;43184:154;43200:1;43191:5;:10;43184:154;;43228:1;43218:11;;;;;:::i;:::-;;;43295:2;43287:5;:10;;;;:::i;:::-;43274:2;:24;;;;:::i;:::-;43261:39;;43244:6;43251;43244:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;43324:2;43315:11;;;;;:::i;:::-;;;43184:154;;;43362:6;43348:21;;;;;42654:723;;;;:::o;38842:159::-;;;;;:::o;23014:148::-;23078:14;23139:5;23129:15;;23014:148;;;:::o;39660:158::-;;;;;:::o;26861:2236::-;26984:20;27007:13;;26984:36;;27049:1;27035:16;;:2;:16;;;27031:48;;27060:19;;;;;;;;;;;;;;27031:48;27106:1;27094:8;:13;27090:44;;27116:18;;;;;;;;;;;;;;27090:44;27147:61;27177:1;27181:2;27185:12;27199:8;27147:21;:61::i;:::-;27751:1;13067:2;27722:1;:25;;27721:31;27709:8;:44;27683:18;:22;27702:2;27683:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13847:3;28152:29;28179:1;28167:8;:13;28152:14;:29::i;:::-;:56;;13584:3;28089:15;:41;;28047:21;28065:2;28047:17;:21::i;:::-;:84;:162;27996:17;:31;28014:12;27996:31;;;;;;;;;;;:213;;;;28226:20;28249:12;28226:35;;28276:11;28305:8;28290:12;:23;28276:37;;28352:1;28334:2;:14;;;:19;28330:635;;28374:313;28430:12;28426:2;28405:38;;28422:1;28405:38;;;;;;;;;;;;28471:69;28510:1;28514:2;28518:14;;;;;;28534:5;28471:30;:69::i;:::-;28466:174;;28576:40;;;;;;;;;;;;;;28466:174;28682:3;28667:12;:18;28374:313;;28768:12;28751:13;;:29;28747:43;;28782:8;;;28747:43;28330:635;;;28831:119;28887:14;;;;;;28883:2;28862:40;;28879:1;28862:40;;;;;;;;;;;;28945:3;28930:12;:18;28831:119;;28330:635;28995:12;28979:13;:28;;;;27460:1559;;29029:60;29058:1;29062:2;29066:12;29080:8;29029:20;:60::i;:::-;26973:2124;26861:2236;;;:::o;23249:142::-;23307:14;23368:5;23358:15;;23249:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:182::-;12743:34;12739:1;12731:6;12727:14;12720:58;12603:182;:::o;12791:366::-;12933:3;12954:67;13018:2;13013:3;12954:67;:::i;:::-;12947:74;;13030:93;13119:3;13030:93;:::i;:::-;13148:2;13143:3;13139:12;13132:19;;12791:366;;;:::o;13163:419::-;13329:4;13367:2;13356:9;13352:18;13344:26;;13416:9;13410:4;13406:20;13402:1;13391:9;13387:17;13380:47;13444:131;13570:4;13444:131;:::i;:::-;13436:139;;13163:419;;;:::o;13588:147::-;13689:11;13726:3;13711:18;;13588:147;;;;:::o;13741:114::-;;:::o;13861:398::-;14020:3;14041:83;14122:1;14117:3;14041:83;:::i;:::-;14034:90;;14133:93;14222:3;14133:93;:::i;:::-;14251:1;14246:3;14242:11;14235:18;;13861:398;;;:::o;14265:379::-;14449:3;14471:147;14614:3;14471:147;:::i;:::-;14464:154;;14635:3;14628:10;;14265:379;;;:::o;14650:166::-;14790:18;14786:1;14778:6;14774:14;14767:42;14650:166;:::o;14822:366::-;14964:3;14985:67;15049:2;15044:3;14985:67;:::i;:::-;14978:74;;15061:93;15150:3;15061:93;:::i;:::-;15179:2;15174:3;15170:12;15163:19;;14822:366;;;:::o;15194:419::-;15360:4;15398:2;15387:9;15383:18;15375:26;;15447:9;15441:4;15437:20;15433:1;15422:9;15418:17;15411:47;15475:131;15601:4;15475:131;:::i;:::-;15467:139;;15194:419;;;:::o;15619:141::-;15668:4;15691:3;15683:11;;15714:3;15711:1;15704:14;15748:4;15745:1;15735:18;15727:26;;15619:141;;;:::o;15766:93::-;15803:6;15850:2;15845;15838:5;15834:14;15830:23;15820:33;;15766:93;;;:::o;15865:107::-;15909:8;15959:5;15953:4;15949:16;15928:37;;15865:107;;;;:::o;15978:393::-;16047:6;16097:1;16085:10;16081:18;16120:97;16150:66;16139:9;16120:97;:::i;:::-;16238:39;16268:8;16257:9;16238:39;:::i;:::-;16226:51;;16310:4;16306:9;16299:5;16295:21;16286:30;;16359:4;16349:8;16345:19;16338:5;16335:30;16325:40;;16054:317;;15978:393;;;;;:::o;16377:60::-;16405:3;16426:5;16419:12;;16377:60;;;:::o;16443:142::-;16493:9;16526:53;16544:34;16553:24;16571:5;16553:24;:::i;:::-;16544:34;:::i;:::-;16526:53;:::i;:::-;16513:66;;16443:142;;;:::o;16591:75::-;16634:3;16655:5;16648:12;;16591:75;;;:::o;16672:269::-;16782:39;16813:7;16782:39;:::i;:::-;16843:91;16892:41;16916:16;16892:41;:::i;:::-;16884:6;16877:4;16871:11;16843:91;:::i;:::-;16837:4;16830:105;16748:193;16672:269;;;:::o;16947:73::-;16992:3;16947:73;:::o;17026:189::-;17103:32;;:::i;:::-;17144:65;17202:6;17194;17188:4;17144:65;:::i;:::-;17079:136;17026:189;;:::o;17221:186::-;17281:120;17298:3;17291:5;17288:14;17281:120;;;17352:39;17389:1;17382:5;17352:39;:::i;:::-;17325:1;17318:5;17314:13;17305:22;;17281:120;;;17221:186;;:::o;17413:543::-;17514:2;17509:3;17506:11;17503:446;;;17548:38;17580:5;17548:38;:::i;:::-;17632:29;17650:10;17632:29;:::i;:::-;17622:8;17618:44;17815:2;17803:10;17800:18;17797:49;;;17836:8;17821:23;;17797:49;17859:80;17915:22;17933:3;17915:22;:::i;:::-;17905:8;17901:37;17888:11;17859:80;:::i;:::-;17518:431;;17503:446;17413:543;;;:::o;17962:117::-;18016:8;18066:5;18060:4;18056:16;18035:37;;17962:117;;;;:::o;18085:169::-;18129:6;18162:51;18210:1;18206:6;18198:5;18195:1;18191:13;18162:51;:::i;:::-;18158:56;18243:4;18237;18233:15;18223:25;;18136:118;18085:169;;;;:::o;18259:295::-;18335:4;18481:29;18506:3;18500:4;18481:29;:::i;:::-;18473:37;;18543:3;18540:1;18536:11;18530:4;18527:21;18519:29;;18259:295;;;;:::o;18559:1395::-;18676:37;18709:3;18676:37;:::i;:::-;18778:18;18770:6;18767:30;18764:56;;;18800:18;;:::i;:::-;18764:56;18844:38;18876:4;18870:11;18844:38;:::i;:::-;18929:67;18989:6;18981;18975:4;18929:67;:::i;:::-;19023:1;19047:4;19034:17;;19079:2;19071:6;19068:14;19096:1;19091:618;;;;19753:1;19770:6;19767:77;;;19819:9;19814:3;19810:19;19804:26;19795:35;;19767:77;19870:67;19930:6;19923:5;19870:67;:::i;:::-;19864:4;19857:81;19726:222;19061:887;;19091:618;19143:4;19139:9;19131:6;19127:22;19177:37;19209:4;19177:37;:::i;:::-;19236:1;19250:208;19264:7;19261:1;19258:14;19250:208;;;19343:9;19338:3;19334:19;19328:26;19320:6;19313:42;19394:1;19386:6;19382:14;19372:24;;19441:2;19430:9;19426:18;19413:31;;19287:4;19284:1;19280:12;19275:17;;19250:208;;;19486:6;19477:7;19474:19;19471:179;;;19544:9;19539:3;19535:19;19529:26;19587:48;19629:4;19621:6;19617:17;19606:9;19587:48;:::i;:::-;19579:6;19572:64;19494:156;19471:179;19696:1;19692;19684:6;19680:14;19676:22;19670:4;19663:36;19098:611;;;19061:887;;18651:1303;;;18559:1395;;:::o;19960:180::-;20008:77;20005:1;19998:88;20105:4;20102:1;20095:15;20129:4;20126:1;20119:15;20146:191;20186:3;20205:20;20223:1;20205:20;:::i;:::-;20200:25;;20239:20;20257:1;20239:20;:::i;:::-;20234:25;;20282:1;20279;20275:9;20268:16;;20303:3;20300:1;20297:10;20294:36;;;20310:18;;:::i;:::-;20294:36;20146:191;;;;:::o;20343:410::-;20383:7;20406:20;20424:1;20406:20;:::i;:::-;20401:25;;20440:20;20458:1;20440:20;:::i;:::-;20435:25;;20495:1;20492;20488:9;20517:30;20535:11;20517:30;:::i;:::-;20506:41;;20696:1;20687:7;20683:15;20680:1;20677:22;20657:1;20650:9;20630:83;20607:139;;20726:18;;:::i;:::-;20607:139;20391:362;20343:410;;;;:::o;20759:179::-;20899:31;20895:1;20887:6;20883:14;20876:55;20759:179;:::o;20944:366::-;21086:3;21107:67;21171:2;21166:3;21107:67;:::i;:::-;21100:74;;21183:93;21272:3;21183:93;:::i;:::-;21301:2;21296:3;21292:12;21285:19;;20944:366;;;:::o;21316:419::-;21482:4;21520:2;21509:9;21505:18;21497:26;;21569:9;21563:4;21559:20;21555:1;21544:9;21540:17;21533:47;21597:131;21723:4;21597:131;:::i;:::-;21589:139;;21316:419;;;:::o;21741:163::-;21881:15;21877:1;21869:6;21865:14;21858:39;21741:163;:::o;21910:366::-;22052:3;22073:67;22137:2;22132:3;22073:67;:::i;:::-;22066:74;;22149:93;22238:3;22149:93;:::i;:::-;22267:2;22262:3;22258:12;22251:19;;21910:366;;;:::o;22282:419::-;22448:4;22486:2;22475:9;22471:18;22463:26;;22535:9;22529:4;22525:20;22521:1;22510:9;22506:17;22499:47;22563:131;22689:4;22563:131;:::i;:::-;22555:139;;22282:419;;;:::o;22707:171::-;22847:23;22843:1;22835:6;22831:14;22824:47;22707:171;:::o;22884:366::-;23026:3;23047:67;23111:2;23106:3;23047:67;:::i;:::-;23040:74;;23123:93;23212:3;23123:93;:::i;:::-;23241:2;23236:3;23232:12;23225:19;;22884:366;;;:::o;23256:419::-;23422:4;23460:2;23449:9;23445:18;23437:26;;23509:9;23503:4;23499:20;23495:1;23484:9;23480:17;23473:47;23537:131;23663:4;23537:131;:::i;:::-;23529:139;;23256:419;;;:::o;23681:169::-;23821:21;23817:1;23809:6;23805:14;23798:45;23681:169;:::o;23856:366::-;23998:3;24019:67;24083:2;24078:3;24019:67;:::i;:::-;24012:74;;24095:93;24184:3;24095:93;:::i;:::-;24213:2;24208:3;24204:12;24197:19;;23856:366;;;:::o;24228:419::-;24394:4;24432:2;24421:9;24417:18;24409:26;;24481:9;24475:4;24471:20;24467:1;24456:9;24452:17;24445:47;24509:131;24635:4;24509:131;:::i;:::-;24501:139;;24228:419;;;:::o;24653:180::-;24793:32;24789:1;24781:6;24777:14;24770:56;24653:180;:::o;24839:366::-;24981:3;25002:67;25066:2;25061:3;25002:67;:::i;:::-;24995:74;;25078:93;25167:3;25078:93;:::i;:::-;25196:2;25191:3;25187:12;25180:19;;24839:366;;;:::o;25211:419::-;25377:4;25415:2;25404:9;25400:18;25392:26;;25464:9;25458:4;25454:20;25450:1;25439:9;25435:17;25428:47;25492:131;25618:4;25492:131;:::i;:::-;25484:139;;25211:419;;;:::o;25636:234::-;25776:34;25772:1;25764:6;25760:14;25753:58;25845:17;25840:2;25832:6;25828:15;25821:42;25636:234;:::o;25876:366::-;26018:3;26039:67;26103:2;26098:3;26039:67;:::i;:::-;26032:74;;26115:93;26204:3;26115:93;:::i;:::-;26233:2;26228:3;26224:12;26217:19;;25876:366;;;:::o;26248:419::-;26414:4;26452:2;26441:9;26437:18;26429:26;;26501:9;26495:4;26491:20;26487:1;26476:9;26472:17;26465:47;26529:131;26655:4;26529:131;:::i;:::-;26521:139;;26248:419;;;:::o;26673:148::-;26775:11;26812:3;26797:18;;26673:148;;;;:::o;26851:874::-;26954:3;26991:5;26985:12;27020:36;27046:9;27020:36;:::i;:::-;27072:89;27154:6;27149:3;27072:89;:::i;:::-;27065:96;;27192:1;27181:9;27177:17;27208:1;27203:166;;;;27383:1;27378:341;;;;27170:549;;27203:166;27287:4;27283:9;27272;27268:25;27263:3;27256:38;27349:6;27342:14;27335:22;27327:6;27323:35;27318:3;27314:45;27307:52;;27203:166;;27378:341;27445:38;27477:5;27445:38;:::i;:::-;27505:1;27519:154;27533:6;27530:1;27527:13;27519:154;;;27607:7;27601:14;27597:1;27592:3;27588:11;27581:35;27657:1;27648:7;27644:15;27633:26;;27555:4;27552:1;27548:12;27543:17;;27519:154;;;27702:6;27697:3;27693:16;27686:23;;27385:334;;27170:549;;26958:767;;26851:874;;;;:::o;27731:390::-;27837:3;27865:39;27898:5;27865:39;:::i;:::-;27920:89;28002:6;27997:3;27920:89;:::i;:::-;27913:96;;28018:65;28076:6;28071:3;28064:4;28057:5;28053:16;28018:65;:::i;:::-;28108:6;28103:3;28099:16;28092:23;;27841:280;27731:390;;;;:::o;28127:155::-;28267:7;28263:1;28255:6;28251:14;28244:31;28127:155;:::o;28288:400::-;28448:3;28469:84;28551:1;28546:3;28469:84;:::i;:::-;28462:91;;28562:93;28651:3;28562:93;:::i;:::-;28680:1;28675:3;28671:11;28664:18;;28288:400;;;:::o;28694:695::-;28972:3;28994:92;29082:3;29073:6;28994:92;:::i;:::-;28987:99;;29103:95;29194:3;29185:6;29103:95;:::i;:::-;29096:102;;29215:148;29359:3;29215:148;:::i;:::-;29208:155;;29380:3;29373:10;;28694:695;;;;;:::o;29395:225::-;29535:34;29531:1;29523:6;29519:14;29512:58;29604:8;29599:2;29591:6;29587:15;29580:33;29395:225;:::o;29626:366::-;29768:3;29789:67;29853:2;29848:3;29789:67;:::i;:::-;29782:74;;29865:93;29954:3;29865:93;:::i;:::-;29983:2;29978:3;29974:12;29967:19;;29626:366;;;:::o;29998:419::-;30164:4;30202:2;30191:9;30187:18;30179:26;;30251:9;30245:4;30241:20;30237:1;30226:9;30222:17;30215:47;30279:131;30405:4;30279:131;:::i;:::-;30271:139;;29998:419;;;:::o;30423:98::-;30474:6;30508:5;30502:12;30492:22;;30423:98;;;:::o;30527:168::-;30610:11;30644:6;30639:3;30632:19;30684:4;30679:3;30675:14;30660:29;;30527:168;;;;:::o;30701:373::-;30787:3;30815:38;30847:5;30815:38;:::i;:::-;30869:70;30932:6;30927:3;30869:70;:::i;:::-;30862:77;;30948:65;31006:6;31001:3;30994:4;30987:5;30983:16;30948:65;:::i;:::-;31038:29;31060:6;31038:29;:::i;:::-;31033:3;31029:39;31022:46;;30791:283;30701:373;;;;:::o;31080:640::-;31275:4;31313:3;31302:9;31298:19;31290:27;;31327:71;31395:1;31384:9;31380:17;31371:6;31327:71;:::i;:::-;31408:72;31476:2;31465:9;31461:18;31452:6;31408:72;:::i;:::-;31490;31558:2;31547:9;31543:18;31534:6;31490:72;:::i;:::-;31609:9;31603:4;31599:20;31594:2;31583:9;31579:18;31572:48;31637:76;31708:4;31699:6;31637:76;:::i;:::-;31629:84;;31080:640;;;;;;;:::o;31726:141::-;31782:5;31813:6;31807:13;31798:22;;31829:32;31855:5;31829:32;:::i;:::-;31726:141;;;;:::o;31873:349::-;31942:6;31991:2;31979:9;31970:7;31966:23;31962:32;31959:119;;;31997:79;;:::i;:::-;31959:119;32117:1;32142:63;32197:7;32188:6;32177:9;32173:22;32142:63;:::i;:::-;32132:73;;32088:127;31873:349;;;;:::o;32228:233::-;32267:3;32290:24;32308:5;32290:24;:::i;:::-;32281:33;;32336:66;32329:5;32326:77;32323:103;;32406:18;;:::i;:::-;32323:103;32453:1;32446:5;32442:13;32435:20;;32228:233;;;:::o;32467:180::-;32515:77;32512:1;32505:88;32612:4;32609:1;32602:15;32636:4;32633:1;32626:15;32653:185;32693:1;32710:20;32728:1;32710:20;:::i;:::-;32705:25;;32744:20;32762:1;32744:20;:::i;:::-;32739:25;;32783:1;32773:35;;32788:18;;:::i;:::-;32773:35;32830:1;32827;32823:9;32818:14;;32653:185;;;;:::o;32844:194::-;32884:4;32904:20;32922:1;32904:20;:::i;:::-;32899:25;;32938:20;32956:1;32938:20;:::i;:::-;32933:25;;32982:1;32979;32975:9;32967:17;;33006:1;33000:4;32997:11;32994:37;;;33011:18;;:::i;:::-;32994:37;32844:194;;;;:::o;33044:176::-;33076:1;33093:20;33111:1;33093:20;:::i;:::-;33088:25;;33127:20;33145:1;33127:20;:::i;:::-;33122:25;;33166:1;33156:35;;33171:18;;:::i;:::-;33156:35;33212:1;33209;33205:9;33200:14;;33044:176;;;;:::o;33226:180::-;33274:77;33271:1;33264:88;33371:4;33368:1;33361:15;33395:4;33392:1;33385:15

Swarm Source

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