ETH Price: $3,501.17 (+3.86%)
Gas: 4 Gwei

Token

KYCed (KYCED)
 

Overview

Max Total Supply

4,669 KYCED

Holders

2,754

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KYCED
0xe18113fd595d7a4ccd037d8c6e85028ac32ac2cd
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:
KYCed

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Kyced.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
import "./OperatorFilterer.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract KYCed is ERC721A, OperatorFilterer, Ownable {
    using Strings for uint256;

    bool public operatorFilteringEnabled;
    string public baseURI;
    string public uriSuffix = ".json";
    string public hiddenMetadataUri = "ipfs://QmbxeGp8aeNGLCFib3RjLAQxYfTNqx2jGDBn4LdGu14WCk/hidden.json"; 

    uint256 public maxSupply = 4669;
    uint256 public mintPrice = 0.0069 ether;
    uint256 public mintLimit = 6;
    uint256 public freeMintLimit = 1;
    bool public mintPaused = true;
    bool public revealed = false;

    address founder = 0x8CADa94f74c842B9BFfA97cF8aD2aA2f03AaB046;

    mapping (address => uint256) public addressFreeMintCount;
    mapping (address => uint256) public addressMintCount;

    constructor(
    ) ERC721A("KYCed", "KYCED") {
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        _safeMint(founder, 10);
    }

    function mint(uint256 qty) external payable {
        require(!mintPaused, "Public sale paused");
        require(qty > 0 && qty <= mintLimit, "Invalid quantity");
        require(tx.origin == msg.sender, "Caller is a contract");
        require(addressMintCount[msg.sender] + qty <= mintLimit, "Max mint per wallet reached");
        require(totalSupply() + qty <= maxSupply, "Max supply reached");

        uint256 freeMintsRemaining = freeMintLimit - addressFreeMintCount[msg.sender];
        uint256 totalCost;
        if (freeMintsRemaining >= qty) {
            totalCost = 0;
            freeMintsRemaining -= qty;
        } else {
            totalCost = mintPrice * (qty - freeMintsRemaining);
            freeMintsRemaining = 0;
        }

        require(msg.value >= totalCost, "Not enough ETH");

        addressFreeMintCount[msg.sender] = freeMintLimit - freeMintsRemaining;
        addressMintCount[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

    function withdraw() public payable onlyOwner() {
      uint256 balanceContract = address(this).balance;
      require(balanceContract > 0, "Sales Balance = 0");

      uint256 balance1 = balanceContract / 10;
      uint256 balance2 = balanceContract*9 / 10;

      _withdraw(msg.sender, balance1);
      _withdraw(founder, balance2);

    }

    function _withdraw(address _address, uint256 _amount) private {
      (bool success, ) = _address.call{value: _amount}("");
      require(success, "Transfer failed.");
    }

    function toggleMintPaused() external onlyOwner {
        mintPaused = !mintPaused;
    }

    function setFreeMintLimit(uint256 _freeMintLimit) external onlyOwner {
        freeMintLimit = _freeMintLimit;
    }

    function setMintLimit(uint256 _mintLimit) external onlyOwner {
        mintLimit = _mintLimit;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setBaseURI(string calldata newURI) external onlyOwner {
        baseURI = newURI;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

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

    // OS
    
    function repeatRegistration() public {
        _registerForOperatorFiltering();
    }

    function setApprovalForAll(address operator, bool approved)
        public
        override
        onlyAllowedOperatorApproval(operator)
    {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperatorApproval(operator)
    {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }
}

File 2 of 7 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 7 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

File 4 of 7 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If not burned.
            if (packed & _BITMASK_BURNED == 0) {
                // If the data at the starting slot does not exist, start the scan.
                if (packed == 0) {
                    if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken();
                    // Invariant:
                    // There will always be an initialized ownership slot
                    // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                    // before an unintialized ownership slot
                    // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                    // Hence, `tokenId` will not underflow.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed will be zero.
                    for (;;) {
                        unchecked {
                            packed = _packedOwnerships[--tokenId];
                        }
                        if (packed == 0) continue;
                        return packed;
                    }
                }
                // Otherwise, the data exists and is not burned. We can skip the scan.
                // This is possible because we have already achieved the target condition.
                // This saves 2143 gas on transfers of initialized tokens.
                return packed;
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

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

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                       APPROVAL OPERATIONS
    // =============================================================

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

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

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

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

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

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

File 5 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"repeatRegistration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintLimit","type":"uint256"}],"name":"setFreeMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":[],"name":"toggleMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90816200004a919062000af3565b5060405180608001604052806041815260200162004cc460419139600b908162000075919062000af3565b5061123d600c556618838370f34000600d556006600e556001600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550738cada94f74c842b9bffa97cf8ad2aa2f03aab046601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012957600080fd5b506040518060400160405280600581526020017f4b594365640000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4b594345440000000000000000000000000000000000000000000000000000008152508160029081620001a7919062000af3565b508060039081620001b9919062000af3565b50620001ca6200025860201b60201c565b6000819055505050620001f2620001e66200026160201b60201c565b6200026960201b60201c565b620002026200032f60201b60201c565b6001600860146101000a81548160ff02191690831515021790555062000252601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a6200035860201b60201c565b62000db2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000356733cc6cdda760b79bafa08df41ecfa224f810dceb660016200037e60201b60201c565b565b6200037a828260405180602001604052806000815250620003f860201b60201c565b5050565b637d3e3dbe8260601b60601c925081620003ad5782620003a557634420e4869050620003ad565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620003ee578060005160e01c03620003ed57600080fd5b5b6000602452505050565b6200040a8383620004a960201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620004a457600080549050600083820390505b6200045360008683806001019450866200069060201b60201c565b6200048a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000438578160005414620004a157600080fd5b50505b505050565b60008054905060008203620004ea576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004ff6000848385620007f160201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200058e83620005706000866000620007f760201b60201c565b62000581856200082760201b60201c565b176200083760201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200063157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620005f4565b50600082036200066d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200068b60008483856200086260201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006be6200086860201b60201c565b8786866040518563ffffffff1660e01b8152600401620006e2949392919062000cca565b6020604051808303816000875af19250505080156200072157506040513d601f19601f820116820180604052508101906200071e919062000d80565b60015b6200079e573d806000811462000754576040519150601f19603f3d011682016040523d82523d6000602084013e62000759565b606091505b50600081510362000796576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620008168686846200087060201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008fb57607f821691505b602082108103620009115762000910620008b3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200097b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200093c565b6200098786836200093c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009d4620009ce620009c8846200099f565b620009a9565b6200099f565b9050919050565b6000819050919050565b620009f083620009b3565b62000a08620009ff82620009db565b84845462000949565b825550505050565b600090565b62000a1f62000a10565b62000a2c818484620009e5565b505050565b5b8181101562000a545762000a4860008262000a15565b60018101905062000a32565b5050565b601f82111562000aa35762000a6d8162000917565b62000a78846200092c565b8101602085101562000a88578190505b62000aa062000a97856200092c565b83018262000a31565b50505b505050565b600082821c905092915050565b600062000ac86000198460080262000aa8565b1980831691505092915050565b600062000ae3838362000ab5565b9150826002028217905092915050565b62000afe8262000879565b67ffffffffffffffff81111562000b1a5762000b1962000884565b5b62000b268254620008e2565b62000b3382828562000a58565b600060209050601f83116001811462000b6b576000841562000b56578287015190505b62000b62858262000ad5565b86555062000bd2565b601f19841662000b7b8662000917565b60005b8281101562000ba55784890151825560018201915060208501945060208101905062000b7e565b8683101562000bc5578489015162000bc1601f89168262000ab5565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c078262000bda565b9050919050565b62000c198162000bfa565b82525050565b62000c2a816200099f565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c6c57808201518184015260208101905062000c4f565b60008484015250505050565b6000601f19601f8301169050919050565b600062000c968262000c30565b62000ca2818562000c3b565b935062000cb481856020860162000c4c565b62000cbf8162000c78565b840191505092915050565b600060808201905062000ce1600083018762000c0e565b62000cf0602083018662000c0e565b62000cff604083018562000c1f565b818103606083015262000d13818462000c89565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d5a8162000d23565b811462000d6657600080fd5b50565b60008151905062000d7a8162000d4f565b92915050565b60006020828403121562000d995762000d9862000d1e565b5b600062000da98482850162000d69565b91505092915050565b613f028062000dc26000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063b7c0b8e8116100ab578063e0a808531161006f578063e0a80853146107b7578063e985e9c5146107e0578063f2fde38b1461081d578063f4a0a52814610846578063fb796e6c1461086f57610230565b8063b7c0b8e8146106e1578063b88d4fde1461070a578063bd2f6eb814610726578063c87b56dd1461074f578063d5abeb011461078c57610230565b8063996517cf116100f2578063996517cf1461061d5780639e6a1d7d14610648578063a0712d6814610671578063a22cb4651461068d578063a45ba8e7146106b657610230565b806370a0823114610548578063715018a6146105855780637e4831d31461059c5780638da5cb5b146105c757806395d89b41146105f257610230565b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104755780635e1c07461461049e5780636352211e146104b55780636817c76c146104f25780636c0360eb1461051d57610230565b80633ccfd60b146103bc5780633eaff66e146103c657806342842e0e14610403578063518302271461041f5780635503a0e81461044a57610230565b8063095ea7b311610203578063095ea7b31461030557806311b430251461032157806318160ddd146103385780631ba4f67d1461036357806323b872dd146103a057610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d57806308346d85146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612cd3565b61089a565b6040516102699190612d1b565b60405180910390f35b34801561027e57600080fd5b5061028761092c565b6040516102949190612dc6565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612e1e565b6109be565b6040516102d19190612e8c565b60405180910390f35b3480156102e657600080fd5b506102ef610a3d565b6040516102fc9190612eb6565b60405180910390f35b61031f600480360381019061031a9190612efd565b610a43565b005b34801561032d57600080fd5b50610336610a78565b005b34801561034457600080fd5b5061034d610b20565b60405161035a9190612eb6565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612f3d565b610b37565b6040516103979190612eb6565b60405180910390f35b6103ba60048036038101906103b59190612f6a565b610b4f565b005b6103c4610bba565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190612f3d565b610ce7565b6040516103fa9190612eb6565b60405180910390f35b61041d60048036038101906104189190612f6a565b610cff565b005b34801561042b57600080fd5b50610434610d6a565b6040516104419190612d1b565b60405180910390f35b34801561045657600080fd5b5061045f610d7d565b60405161046c9190612dc6565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190613022565b610e0b565b005b3480156104aa57600080fd5b506104b3610e9d565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612e1e565b610ea7565b6040516104e99190612e8c565b60405180910390f35b3480156104fe57600080fd5b50610507610eb9565b6040516105149190612eb6565b60405180910390f35b34801561052957600080fd5b50610532610ebf565b60405161053f9190612dc6565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612f3d565b610f4d565b60405161057c9190612eb6565b60405180910390f35b34801561059157600080fd5b5061059a611005565b005b3480156105a857600080fd5b506105b161108d565b6040516105be9190612d1b565b60405180910390f35b3480156105d357600080fd5b506105dc6110a0565b6040516105e99190612e8c565b60405180910390f35b3480156105fe57600080fd5b506106076110ca565b6040516106149190612dc6565b60405180910390f35b34801561062957600080fd5b5061063261115c565b60405161063f9190612eb6565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612e1e565b611162565b005b61068b60048036038101906106869190612e1e565b6111e8565b005b34801561069957600080fd5b506106b460048036038101906106af919061309b565b611567565b005b3480156106c257600080fd5b506106cb61159c565b6040516106d89190612dc6565b60405180910390f35b3480156106ed57600080fd5b50610708600480360381019061070391906130db565b61162a565b005b610724600480360381019061071f9190613238565b6116c3565b005b34801561073257600080fd5b5061074d60048036038101906107489190612e1e565b611730565b005b34801561075b57600080fd5b5061077660048036038101906107719190612e1e565b6117b6565b6040516107839190612dc6565b60405180910390f35b34801561079857600080fd5b506107a161190e565b6040516107ae9190612eb6565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d991906130db565b611914565b005b3480156107ec57600080fd5b50610807600480360381019061080291906132bb565b6119ad565b6040516108149190612d1b565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612f3d565b611a41565b005b34801561085257600080fd5b5061086d60048036038101906108689190612e1e565b611b38565b005b34801561087b57600080fd5b50610884611bbe565b6040516108919190612d1b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109255750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461093b9061332a565b80601f01602080910402602001604051908101604052809291908181526020018280546109679061332a565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b60006109c982611bd1565b6109ff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b81610a4d81611c30565b610a6957610a59611c37565b15610a6857610a6781611c4e565b5b5b610a738383611c92565b505050565b610a80611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610a9e6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906133a7565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000610b2a611caa565b6001546000540303905090565b60126020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba957610b8c33611c30565b610ba857610b98611c37565b15610ba757610ba633611c4e565b5b5b5b610bb4848484611cb3565b50505050565b610bc2611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610be06110a0565b73ffffffffffffffffffffffffffffffffffffffff1614610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d906133a7565b60405180910390fd5b600047905060008111610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613413565b60405180910390fd5b6000600a82610c8d9190613491565b90506000600a600984610ca091906134c2565b610caa9190613491565b9050610cb63383611fd5565b610ce2601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611fd5565b505050565b60116020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5957610d3c33611c30565b610d5857610d48611c37565b15610d5757610d5633611c4e565b5b5b5b610d64848484612086565b50505050565b601060019054906101000a900460ff1681565b600a8054610d8a9061332a565b80601f0160208091040260200160405190810160405280929190818152602001828054610db69061332a565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b505050505081565b610e13611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610e316110a0565b73ffffffffffffffffffffffffffffffffffffffff1614610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e906133a7565b60405180910390fd5b818160099182610e989291906136bb565b505050565b610ea56120a6565b565b6000610eb2826120c7565b9050919050565b600d5481565b60098054610ecc9061332a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef89061332a565b8015610f455780601f10610f1a57610100808354040283529160200191610f45565b820191906000526020600020905b815481529060010190602001808311610f2857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61100d611ca2565b73ffffffffffffffffffffffffffffffffffffffff1661102b6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906133a7565b60405180910390fd5b61108b60006121bf565b565b601060009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110d99061332a565b80601f01602080910402602001604051908101604052809291908181526020018280546111059061332a565b80156111525780601f1061112757610100808354040283529160200191611152565b820191906000526020600020905b81548152906001019060200180831161113557829003601f168201915b5050505050905090565b600e5481565b61116a611ca2565b73ffffffffffffffffffffffffffffffffffffffff166111886110a0565b73ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d5906133a7565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1615611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f906137d7565b60405180910390fd5b60008111801561124a5750600e548111155b611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090613843565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906138af565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134591906138cf565b1115611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d9061394f565b60405180910390fd5b600c5481611392610b20565b61139c91906138cf565b11156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d4906139bb565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f5461142c91906139db565b9050600082821061144e5760009050828261144791906139db565b915061146e565b818361145a91906139db565b600d5461146791906134c2565b9050600091505b803410156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613a5b565b60405180910390fd5b81600f546114bf91906139db565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155191906138cf565b925050819055506115623384612285565b505050565b8161157181611c30565b61158d5761157d611c37565b1561158c5761158b81611c4e565b5b5b61159783836122a3565b505050565b600b80546115a99061332a565b80601f01602080910402602001604051908101604052809291908181526020018280546115d59061332a565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b505050505081565b611632611ca2565b73ffffffffffffffffffffffffffffffffffffffff166116506110a0565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d906133a7565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461171d5761170033611c30565b61171c5761170c611c37565b1561171b5761171a33611c4e565b5b5b5b611729858585856123ae565b5050505050565b611738611ca2565b73ffffffffffffffffffffffffffffffffffffffff166117566110a0565b73ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a3906133a7565b60405180910390fd5b80600f8190555050565b60606117c182611bd1565b611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613aed565b60405180910390fd5b60001515601060019054906101000a900460ff161515036118ad57600b80546118289061332a565b80601f01602080910402602001604051908101604052809291908181526020018280546118549061332a565b80156118a15780601f10611876576101008083540402835291602001916118a1565b820191906000526020600020905b81548152906001019060200180831161188457829003601f168201915b50505050509050611909565b60006118b7612421565b905060008151116118d75760405180602001604052806000815250611905565b806118e1846124b3565b600a6040516020016118f593929190613bcc565b6040516020818303038152906040525b9150505b919050565b600c5481565b61191c611ca2565b73ffffffffffffffffffffffffffffffffffffffff1661193a6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906133a7565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a49611ca2565b73ffffffffffffffffffffffffffffffffffffffff16611a676110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906133a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613c6f565b60405180910390fd5b611b35816121bf565b50565b611b40611ca2565b73ffffffffffffffffffffffffffffffffffffffff16611b5e6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab906133a7565b60405180910390fd5b80600d8190555050565b600860149054906101000a900460ff1681565b600081611bdc611caa565b11158015611beb575060005482105b8015611c29575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600860149054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611c8a573d6000803e3d6000fd5b6000603a5250565b611c9e82826001612613565b5050565b600033905090565b60006001905090565b6000611cbe826120c7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d25576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611d318461275f565b91509150611d478187611d42612786565b61278e565b611d9357611d5c86611d57612786565b6119ad565b611d92576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611df9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0686868660016127d2565b8015611e1157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611edf85611ebb8888876127d8565b7c020000000000000000000000000000000000000000000000000000000017612800565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f655760006001850190506000600460008381526020019081526020016000205403611f63576000548114611f62578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fcd868686600161282b565b505050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ffb90613cc0565b60006040518083038185875af1925050503d8060008114612038576040519150601f19603f3d011682016040523d82523d6000602084013e61203d565b606091505b5050905080612081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207890613d21565b60405180910390fd5b505050565b6120a1838383604051806020016040528060008152506116c3565b505050565b6120c5733cc6cdda760b79bafa08df41ecfa224f810dceb66001612831565b565b6000816120d2611caa565b11612188576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036121875760008103612182576000548210612157576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6004600083600190039350838152602001908152602001600020549050600081036121ba57612158565b6121ba565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61229f8282604051806020016040528060008152506128a6565b5050565b80600760006122b0612786565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661235d612786565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123a29190612d1b565b60405180910390a35050565b6123b9848484610b4f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461241b576123e484848484612943565b61241a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600980546124309061332a565b80601f016020809104026020016040519081016040528092919081815260200182805461245c9061332a565b80156124a95780601f1061247e576101008083540402835291602001916124a9565b820191906000526020600020905b81548152906001019060200180831161248c57829003601f168201915b5050505050905090565b6060600082036124fa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061260e565b600082905060005b6000821461252c57808061251590613d41565b915050600a826125259190613491565b9150612502565b60008167ffffffffffffffff8111156125485761254761310d565b5b6040519080825280601f01601f19166020018201604052801561257a5781602001600182028036833780820191505090505b5090505b600085146126075760018261259391906139db565b9150600a856125a29190613d89565b60306125ae91906138cf565b60f81b8183815181106125c4576125c3613dba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126009190613491565b945061257e565b8093505050505b919050565b600061261e83610ea7565b905081156126a9578073ffffffffffffffffffffffffffffffffffffffff16612645612786565b73ffffffffffffffffffffffffffffffffffffffff16146126a8576126718161266c612786565b6119ad565b6126a7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86127ef868684612a93565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b637d3e3dbe8260601b60601c92508161285d578261285557634420e486905061285d565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af161289c578060005160e01c0361289b57600080fd5b5b6000602452505050565b6128b08383612a9c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461293e57600080549050600083820390505b6128f06000868380600101945086612943565b612926576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106128dd57816000541461293b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612969612786565b8786866040518563ffffffff1660e01b815260040161298b9493929190613e3e565b6020604051808303816000875af19250505080156129c757506040513d601f19601f820116820180604052508101906129c49190613e9f565b60015b612a40573d80600081146129f7576040519150601f19603f3d011682016040523d82523d6000602084013e6129fc565b606091505b506000815103612a38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612adc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ae960008483856127d2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b6083612b5160008660006127d8565b612b5a85612c57565b17612800565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c0157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612bc6565b5060008203612c3c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c52600084838561282b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cb081612c7b565b8114612cbb57600080fd5b50565b600081359050612ccd81612ca7565b92915050565b600060208284031215612ce957612ce8612c71565b5b6000612cf784828501612cbe565b91505092915050565b60008115159050919050565b612d1581612d00565b82525050565b6000602082019050612d306000830184612d0c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d70578082015181840152602081019050612d55565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d9882612d36565b612da28185612d41565b9350612db2818560208601612d52565b612dbb81612d7c565b840191505092915050565b60006020820190508181036000830152612de08184612d8d565b905092915050565b6000819050919050565b612dfb81612de8565b8114612e0657600080fd5b50565b600081359050612e1881612df2565b92915050565b600060208284031215612e3457612e33612c71565b5b6000612e4284828501612e09565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e7682612e4b565b9050919050565b612e8681612e6b565b82525050565b6000602082019050612ea16000830184612e7d565b92915050565b612eb081612de8565b82525050565b6000602082019050612ecb6000830184612ea7565b92915050565b612eda81612e6b565b8114612ee557600080fd5b50565b600081359050612ef781612ed1565b92915050565b60008060408385031215612f1457612f13612c71565b5b6000612f2285828601612ee8565b9250506020612f3385828601612e09565b9150509250929050565b600060208284031215612f5357612f52612c71565b5b6000612f6184828501612ee8565b91505092915050565b600080600060608486031215612f8357612f82612c71565b5b6000612f9186828701612ee8565b9350506020612fa286828701612ee8565b9250506040612fb386828701612e09565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612fe257612fe1612fbd565b5b8235905067ffffffffffffffff811115612fff57612ffe612fc2565b5b60208301915083600182028301111561301b5761301a612fc7565b5b9250929050565b6000806020838503121561303957613038612c71565b5b600083013567ffffffffffffffff81111561305757613056612c76565b5b61306385828601612fcc565b92509250509250929050565b61307881612d00565b811461308357600080fd5b50565b6000813590506130958161306f565b92915050565b600080604083850312156130b2576130b1612c71565b5b60006130c085828601612ee8565b92505060206130d185828601613086565b9150509250929050565b6000602082840312156130f1576130f0612c71565b5b60006130ff84828501613086565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61314582612d7c565b810181811067ffffffffffffffff821117156131645761316361310d565b5b80604052505050565b6000613177612c67565b9050613183828261313c565b919050565b600067ffffffffffffffff8211156131a3576131a261310d565b5b6131ac82612d7c565b9050602081019050919050565b82818337600083830152505050565b60006131db6131d684613188565b61316d565b9050828152602081018484840111156131f7576131f6613108565b5b6132028482856131b9565b509392505050565b600082601f83011261321f5761321e612fbd565b5b813561322f8482602086016131c8565b91505092915050565b6000806000806080858703121561325257613251612c71565b5b600061326087828801612ee8565b945050602061327187828801612ee8565b935050604061328287828801612e09565b925050606085013567ffffffffffffffff8111156132a3576132a2612c76565b5b6132af8782880161320a565b91505092959194509250565b600080604083850312156132d2576132d1612c71565b5b60006132e085828601612ee8565b92505060206132f185828601612ee8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061334257607f821691505b602082108103613355576133546132fb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613391602083612d41565b915061339c8261335b565b602082019050919050565b600060208201905081810360008301526133c081613384565b9050919050565b7f53616c65732042616c616e6365203d2030000000000000000000000000000000600082015250565b60006133fd601183612d41565b9150613408826133c7565b602082019050919050565b6000602082019050818103600083015261342c816133f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061349c82612de8565b91506134a783612de8565b9250826134b7576134b6613433565b5b828204905092915050565b60006134cd82612de8565b91506134d883612de8565b92508282026134e681612de8565b915082820484148315176134fd576134fc613462565b5b5092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613534565b61357b8683613534565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135b86135b36135ae84612de8565b613593565b612de8565b9050919050565b6000819050919050565b6135d28361359d565b6135e66135de826135bf565b848454613541565b825550505050565b600090565b6135fb6135ee565b6136068184846135c9565b505050565b5b8181101561362a5761361f6000826135f3565b60018101905061360c565b5050565b601f82111561366f576136408161350f565b61364984613524565b81016020851015613658578190505b61366c61366485613524565b83018261360b565b50505b505050565b600082821c905092915050565b600061369260001984600802613674565b1980831691505092915050565b60006136ab8383613681565b9150826002028217905092915050565b6136c58383613504565b67ffffffffffffffff8111156136de576136dd61310d565b5b6136e8825461332a565b6136f382828561362e565b6000601f8311600181146137225760008415613710578287013590505b61371a858261369f565b865550613782565b601f1984166137308661350f565b60005b8281101561375857848901358255600182019150602085019450602081019050613733565b868310156137755784890135613771601f891682613681565b8355505b6001600288020188555050505b50505050505050565b7f5075626c69632073616c65207061757365640000000000000000000000000000600082015250565b60006137c1601283612d41565b91506137cc8261378b565b602082019050919050565b600060208201905081810360008301526137f0816137b4565b9050919050565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b600061382d601083612d41565b9150613838826137f7565b602082019050919050565b6000602082019050818103600083015261385c81613820565b9050919050565b7f43616c6c6572206973206120636f6e7472616374000000000000000000000000600082015250565b6000613899601483612d41565b91506138a482613863565b602082019050919050565b600060208201905081810360008301526138c88161388c565b9050919050565b60006138da82612de8565b91506138e583612de8565b92508282019050808211156138fd576138fc613462565b5b92915050565b7f4d6178206d696e74207065722077616c6c657420726561636865640000000000600082015250565b6000613939601b83612d41565b915061394482613903565b602082019050919050565b600060208201905081810360008301526139688161392c565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006139a5601283612d41565b91506139b08261396f565b602082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b60006139e682612de8565b91506139f183612de8565b9250828203905081811115613a0957613a08613462565b5b92915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b6000613a45600e83612d41565b9150613a5082613a0f565b602082019050919050565b60006020820190508181036000830152613a7481613a38565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613ad7602f83612d41565b9150613ae282613a7b565b604082019050919050565b60006020820190508181036000830152613b0681613aca565b9050919050565b600081905092915050565b6000613b2382612d36565b613b2d8185613b0d565b9350613b3d818560208601612d52565b80840191505092915050565b60008154613b568161332a565b613b608186613b0d565b94506001821660008114613b7b5760018114613b9057613bc3565b60ff1983168652811515820286019350613bc3565b613b998561350f565b60005b83811015613bbb57815481890152600182019150602081019050613b9c565b838801955050505b50505092915050565b6000613bd88286613b18565b9150613be48285613b18565b9150613bf08284613b49565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c59602683612d41565b9150613c6482613bfd565b604082019050919050565b60006020820190508181036000830152613c8881613c4c565b9050919050565b600081905092915050565b50565b6000613caa600083613c8f565b9150613cb582613c9a565b600082019050919050565b6000613ccb82613c9d565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613d0b601083612d41565b9150613d1682613cd5565b602082019050919050565b60006020820190508181036000830152613d3a81613cfe565b9050919050565b6000613d4c82612de8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d7e57613d7d613462565b5b600182019050919050565b6000613d9482612de8565b9150613d9f83612de8565b925082613daf57613dae613433565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613e1082613de9565b613e1a8185613df4565b9350613e2a818560208601612d52565b613e3381612d7c565b840191505092915050565b6000608082019050613e536000830187612e7d565b613e606020830186612e7d565b613e6d6040830185612ea7565b8181036060830152613e7f8184613e05565b905095945050505050565b600081519050613e9981612ca7565b92915050565b600060208284031215613eb557613eb4612c71565b5b6000613ec384828501613e8a565b9150509291505056fea2646970667358221220ef0a00c53685d634915c20a4780fb1d4a0f2b09982eb5d9efe9eb1e6ecd3f07e64736f6c63430008110033697066733a2f2f516d62786547703861654e474c4346696233526a4c4151785966544e7178326a4744426e344c644775313457436b2f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063b7c0b8e8116100ab578063e0a808531161006f578063e0a80853146107b7578063e985e9c5146107e0578063f2fde38b1461081d578063f4a0a52814610846578063fb796e6c1461086f57610230565b8063b7c0b8e8146106e1578063b88d4fde1461070a578063bd2f6eb814610726578063c87b56dd1461074f578063d5abeb011461078c57610230565b8063996517cf116100f2578063996517cf1461061d5780639e6a1d7d14610648578063a0712d6814610671578063a22cb4651461068d578063a45ba8e7146106b657610230565b806370a0823114610548578063715018a6146105855780637e4831d31461059c5780638da5cb5b146105c757806395d89b41146105f257610230565b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104755780635e1c07461461049e5780636352211e146104b55780636817c76c146104f25780636c0360eb1461051d57610230565b80633ccfd60b146103bc5780633eaff66e146103c657806342842e0e14610403578063518302271461041f5780635503a0e81461044a57610230565b8063095ea7b311610203578063095ea7b31461030557806311b430251461032157806318160ddd146103385780631ba4f67d1461036357806323b872dd146103a057610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d57806308346d85146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612cd3565b61089a565b6040516102699190612d1b565b60405180910390f35b34801561027e57600080fd5b5061028761092c565b6040516102949190612dc6565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612e1e565b6109be565b6040516102d19190612e8c565b60405180910390f35b3480156102e657600080fd5b506102ef610a3d565b6040516102fc9190612eb6565b60405180910390f35b61031f600480360381019061031a9190612efd565b610a43565b005b34801561032d57600080fd5b50610336610a78565b005b34801561034457600080fd5b5061034d610b20565b60405161035a9190612eb6565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612f3d565b610b37565b6040516103979190612eb6565b60405180910390f35b6103ba60048036038101906103b59190612f6a565b610b4f565b005b6103c4610bba565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190612f3d565b610ce7565b6040516103fa9190612eb6565b60405180910390f35b61041d60048036038101906104189190612f6a565b610cff565b005b34801561042b57600080fd5b50610434610d6a565b6040516104419190612d1b565b60405180910390f35b34801561045657600080fd5b5061045f610d7d565b60405161046c9190612dc6565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190613022565b610e0b565b005b3480156104aa57600080fd5b506104b3610e9d565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612e1e565b610ea7565b6040516104e99190612e8c565b60405180910390f35b3480156104fe57600080fd5b50610507610eb9565b6040516105149190612eb6565b60405180910390f35b34801561052957600080fd5b50610532610ebf565b60405161053f9190612dc6565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612f3d565b610f4d565b60405161057c9190612eb6565b60405180910390f35b34801561059157600080fd5b5061059a611005565b005b3480156105a857600080fd5b506105b161108d565b6040516105be9190612d1b565b60405180910390f35b3480156105d357600080fd5b506105dc6110a0565b6040516105e99190612e8c565b60405180910390f35b3480156105fe57600080fd5b506106076110ca565b6040516106149190612dc6565b60405180910390f35b34801561062957600080fd5b5061063261115c565b60405161063f9190612eb6565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612e1e565b611162565b005b61068b60048036038101906106869190612e1e565b6111e8565b005b34801561069957600080fd5b506106b460048036038101906106af919061309b565b611567565b005b3480156106c257600080fd5b506106cb61159c565b6040516106d89190612dc6565b60405180910390f35b3480156106ed57600080fd5b50610708600480360381019061070391906130db565b61162a565b005b610724600480360381019061071f9190613238565b6116c3565b005b34801561073257600080fd5b5061074d60048036038101906107489190612e1e565b611730565b005b34801561075b57600080fd5b5061077660048036038101906107719190612e1e565b6117b6565b6040516107839190612dc6565b60405180910390f35b34801561079857600080fd5b506107a161190e565b6040516107ae9190612eb6565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d991906130db565b611914565b005b3480156107ec57600080fd5b50610807600480360381019061080291906132bb565b6119ad565b6040516108149190612d1b565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612f3d565b611a41565b005b34801561085257600080fd5b5061086d60048036038101906108689190612e1e565b611b38565b005b34801561087b57600080fd5b50610884611bbe565b6040516108919190612d1b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109255750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461093b9061332a565b80601f01602080910402602001604051908101604052809291908181526020018280546109679061332a565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b60006109c982611bd1565b6109ff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b81610a4d81611c30565b610a6957610a59611c37565b15610a6857610a6781611c4e565b5b5b610a738383611c92565b505050565b610a80611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610a9e6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906133a7565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000610b2a611caa565b6001546000540303905090565b60126020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba957610b8c33611c30565b610ba857610b98611c37565b15610ba757610ba633611c4e565b5b5b5b610bb4848484611cb3565b50505050565b610bc2611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610be06110a0565b73ffffffffffffffffffffffffffffffffffffffff1614610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d906133a7565b60405180910390fd5b600047905060008111610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613413565b60405180910390fd5b6000600a82610c8d9190613491565b90506000600a600984610ca091906134c2565b610caa9190613491565b9050610cb63383611fd5565b610ce2601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611fd5565b505050565b60116020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5957610d3c33611c30565b610d5857610d48611c37565b15610d5757610d5633611c4e565b5b5b5b610d64848484612086565b50505050565b601060019054906101000a900460ff1681565b600a8054610d8a9061332a565b80601f0160208091040260200160405190810160405280929190818152602001828054610db69061332a565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b505050505081565b610e13611ca2565b73ffffffffffffffffffffffffffffffffffffffff16610e316110a0565b73ffffffffffffffffffffffffffffffffffffffff1614610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e906133a7565b60405180910390fd5b818160099182610e989291906136bb565b505050565b610ea56120a6565b565b6000610eb2826120c7565b9050919050565b600d5481565b60098054610ecc9061332a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef89061332a565b8015610f455780601f10610f1a57610100808354040283529160200191610f45565b820191906000526020600020905b815481529060010190602001808311610f2857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61100d611ca2565b73ffffffffffffffffffffffffffffffffffffffff1661102b6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611078906133a7565b60405180910390fd5b61108b60006121bf565b565b601060009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110d99061332a565b80601f01602080910402602001604051908101604052809291908181526020018280546111059061332a565b80156111525780601f1061112757610100808354040283529160200191611152565b820191906000526020600020905b81548152906001019060200180831161113557829003601f168201915b5050505050905090565b600e5481565b61116a611ca2565b73ffffffffffffffffffffffffffffffffffffffff166111886110a0565b73ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d5906133a7565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1615611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f906137d7565b60405180910390fd5b60008111801561124a5750600e548111155b611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090613843565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906138af565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134591906138cf565b1115611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d9061394f565b60405180910390fd5b600c5481611392610b20565b61139c91906138cf565b11156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d4906139bb565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f5461142c91906139db565b9050600082821061144e5760009050828261144791906139db565b915061146e565b818361145a91906139db565b600d5461146791906134c2565b9050600091505b803410156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613a5b565b60405180910390fd5b81600f546114bf91906139db565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155191906138cf565b925050819055506115623384612285565b505050565b8161157181611c30565b61158d5761157d611c37565b1561158c5761158b81611c4e565b5b5b61159783836122a3565b505050565b600b80546115a99061332a565b80601f01602080910402602001604051908101604052809291908181526020018280546115d59061332a565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b505050505081565b611632611ca2565b73ffffffffffffffffffffffffffffffffffffffff166116506110a0565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d906133a7565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461171d5761170033611c30565b61171c5761170c611c37565b1561171b5761171a33611c4e565b5b5b5b611729858585856123ae565b5050505050565b611738611ca2565b73ffffffffffffffffffffffffffffffffffffffff166117566110a0565b73ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a3906133a7565b60405180910390fd5b80600f8190555050565b60606117c182611bd1565b611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613aed565b60405180910390fd5b60001515601060019054906101000a900460ff161515036118ad57600b80546118289061332a565b80601f01602080910402602001604051908101604052809291908181526020018280546118549061332a565b80156118a15780601f10611876576101008083540402835291602001916118a1565b820191906000526020600020905b81548152906001019060200180831161188457829003601f168201915b50505050509050611909565b60006118b7612421565b905060008151116118d75760405180602001604052806000815250611905565b806118e1846124b3565b600a6040516020016118f593929190613bcc565b6040516020818303038152906040525b9150505b919050565b600c5481565b61191c611ca2565b73ffffffffffffffffffffffffffffffffffffffff1661193a6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906133a7565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a49611ca2565b73ffffffffffffffffffffffffffffffffffffffff16611a676110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906133a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613c6f565b60405180910390fd5b611b35816121bf565b50565b611b40611ca2565b73ffffffffffffffffffffffffffffffffffffffff16611b5e6110a0565b73ffffffffffffffffffffffffffffffffffffffff1614611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab906133a7565b60405180910390fd5b80600d8190555050565b600860149054906101000a900460ff1681565b600081611bdc611caa565b11158015611beb575060005482105b8015611c29575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600860149054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611c8a573d6000803e3d6000fd5b6000603a5250565b611c9e82826001612613565b5050565b600033905090565b60006001905090565b6000611cbe826120c7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d25576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611d318461275f565b91509150611d478187611d42612786565b61278e565b611d9357611d5c86611d57612786565b6119ad565b611d92576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611df9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0686868660016127d2565b8015611e1157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611edf85611ebb8888876127d8565b7c020000000000000000000000000000000000000000000000000000000017612800565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f655760006001850190506000600460008381526020019081526020016000205403611f63576000548114611f62578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fcd868686600161282b565b505050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ffb90613cc0565b60006040518083038185875af1925050503d8060008114612038576040519150601f19603f3d011682016040523d82523d6000602084013e61203d565b606091505b5050905080612081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207890613d21565b60405180910390fd5b505050565b6120a1838383604051806020016040528060008152506116c3565b505050565b6120c5733cc6cdda760b79bafa08df41ecfa224f810dceb66001612831565b565b6000816120d2611caa565b11612188576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036121875760008103612182576000548210612157576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6004600083600190039350838152602001908152602001600020549050600081036121ba57612158565b6121ba565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61229f8282604051806020016040528060008152506128a6565b5050565b80600760006122b0612786565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661235d612786565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123a29190612d1b565b60405180910390a35050565b6123b9848484610b4f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461241b576123e484848484612943565b61241a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600980546124309061332a565b80601f016020809104026020016040519081016040528092919081815260200182805461245c9061332a565b80156124a95780601f1061247e576101008083540402835291602001916124a9565b820191906000526020600020905b81548152906001019060200180831161248c57829003601f168201915b5050505050905090565b6060600082036124fa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061260e565b600082905060005b6000821461252c57808061251590613d41565b915050600a826125259190613491565b9150612502565b60008167ffffffffffffffff8111156125485761254761310d565b5b6040519080825280601f01601f19166020018201604052801561257a5781602001600182028036833780820191505090505b5090505b600085146126075760018261259391906139db565b9150600a856125a29190613d89565b60306125ae91906138cf565b60f81b8183815181106125c4576125c3613dba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126009190613491565b945061257e565b8093505050505b919050565b600061261e83610ea7565b905081156126a9578073ffffffffffffffffffffffffffffffffffffffff16612645612786565b73ffffffffffffffffffffffffffffffffffffffff16146126a8576126718161266c612786565b6119ad565b6126a7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86127ef868684612a93565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b637d3e3dbe8260601b60601c92508161285d578261285557634420e486905061285d565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af161289c578060005160e01c0361289b57600080fd5b5b6000602452505050565b6128b08383612a9c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461293e57600080549050600083820390505b6128f06000868380600101945086612943565b612926576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106128dd57816000541461293b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612969612786565b8786866040518563ffffffff1660e01b815260040161298b9493929190613e3e565b6020604051808303816000875af19250505080156129c757506040513d601f19601f820116820180604052508101906129c49190613e9f565b60015b612a40573d80600081146129f7576040519150601f19603f3d011682016040523d82523d6000602084013e6129fc565b606091505b506000815103612a38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612adc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ae960008483856127d2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b6083612b5160008660006127d8565b612b5a85612c57565b17612800565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c0157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612bc6565b5060008203612c3c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c52600084838561282b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cb081612c7b565b8114612cbb57600080fd5b50565b600081359050612ccd81612ca7565b92915050565b600060208284031215612ce957612ce8612c71565b5b6000612cf784828501612cbe565b91505092915050565b60008115159050919050565b612d1581612d00565b82525050565b6000602082019050612d306000830184612d0c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d70578082015181840152602081019050612d55565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d9882612d36565b612da28185612d41565b9350612db2818560208601612d52565b612dbb81612d7c565b840191505092915050565b60006020820190508181036000830152612de08184612d8d565b905092915050565b6000819050919050565b612dfb81612de8565b8114612e0657600080fd5b50565b600081359050612e1881612df2565b92915050565b600060208284031215612e3457612e33612c71565b5b6000612e4284828501612e09565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e7682612e4b565b9050919050565b612e8681612e6b565b82525050565b6000602082019050612ea16000830184612e7d565b92915050565b612eb081612de8565b82525050565b6000602082019050612ecb6000830184612ea7565b92915050565b612eda81612e6b565b8114612ee557600080fd5b50565b600081359050612ef781612ed1565b92915050565b60008060408385031215612f1457612f13612c71565b5b6000612f2285828601612ee8565b9250506020612f3385828601612e09565b9150509250929050565b600060208284031215612f5357612f52612c71565b5b6000612f6184828501612ee8565b91505092915050565b600080600060608486031215612f8357612f82612c71565b5b6000612f9186828701612ee8565b9350506020612fa286828701612ee8565b9250506040612fb386828701612e09565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612fe257612fe1612fbd565b5b8235905067ffffffffffffffff811115612fff57612ffe612fc2565b5b60208301915083600182028301111561301b5761301a612fc7565b5b9250929050565b6000806020838503121561303957613038612c71565b5b600083013567ffffffffffffffff81111561305757613056612c76565b5b61306385828601612fcc565b92509250509250929050565b61307881612d00565b811461308357600080fd5b50565b6000813590506130958161306f565b92915050565b600080604083850312156130b2576130b1612c71565b5b60006130c085828601612ee8565b92505060206130d185828601613086565b9150509250929050565b6000602082840312156130f1576130f0612c71565b5b60006130ff84828501613086565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61314582612d7c565b810181811067ffffffffffffffff821117156131645761316361310d565b5b80604052505050565b6000613177612c67565b9050613183828261313c565b919050565b600067ffffffffffffffff8211156131a3576131a261310d565b5b6131ac82612d7c565b9050602081019050919050565b82818337600083830152505050565b60006131db6131d684613188565b61316d565b9050828152602081018484840111156131f7576131f6613108565b5b6132028482856131b9565b509392505050565b600082601f83011261321f5761321e612fbd565b5b813561322f8482602086016131c8565b91505092915050565b6000806000806080858703121561325257613251612c71565b5b600061326087828801612ee8565b945050602061327187828801612ee8565b935050604061328287828801612e09565b925050606085013567ffffffffffffffff8111156132a3576132a2612c76565b5b6132af8782880161320a565b91505092959194509250565b600080604083850312156132d2576132d1612c71565b5b60006132e085828601612ee8565b92505060206132f185828601612ee8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061334257607f821691505b602082108103613355576133546132fb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613391602083612d41565b915061339c8261335b565b602082019050919050565b600060208201905081810360008301526133c081613384565b9050919050565b7f53616c65732042616c616e6365203d2030000000000000000000000000000000600082015250565b60006133fd601183612d41565b9150613408826133c7565b602082019050919050565b6000602082019050818103600083015261342c816133f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061349c82612de8565b91506134a783612de8565b9250826134b7576134b6613433565b5b828204905092915050565b60006134cd82612de8565b91506134d883612de8565b92508282026134e681612de8565b915082820484148315176134fd576134fc613462565b5b5092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613534565b61357b8683613534565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135b86135b36135ae84612de8565b613593565b612de8565b9050919050565b6000819050919050565b6135d28361359d565b6135e66135de826135bf565b848454613541565b825550505050565b600090565b6135fb6135ee565b6136068184846135c9565b505050565b5b8181101561362a5761361f6000826135f3565b60018101905061360c565b5050565b601f82111561366f576136408161350f565b61364984613524565b81016020851015613658578190505b61366c61366485613524565b83018261360b565b50505b505050565b600082821c905092915050565b600061369260001984600802613674565b1980831691505092915050565b60006136ab8383613681565b9150826002028217905092915050565b6136c58383613504565b67ffffffffffffffff8111156136de576136dd61310d565b5b6136e8825461332a565b6136f382828561362e565b6000601f8311600181146137225760008415613710578287013590505b61371a858261369f565b865550613782565b601f1984166137308661350f565b60005b8281101561375857848901358255600182019150602085019450602081019050613733565b868310156137755784890135613771601f891682613681565b8355505b6001600288020188555050505b50505050505050565b7f5075626c69632073616c65207061757365640000000000000000000000000000600082015250565b60006137c1601283612d41565b91506137cc8261378b565b602082019050919050565b600060208201905081810360008301526137f0816137b4565b9050919050565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b600061382d601083612d41565b9150613838826137f7565b602082019050919050565b6000602082019050818103600083015261385c81613820565b9050919050565b7f43616c6c6572206973206120636f6e7472616374000000000000000000000000600082015250565b6000613899601483612d41565b91506138a482613863565b602082019050919050565b600060208201905081810360008301526138c88161388c565b9050919050565b60006138da82612de8565b91506138e583612de8565b92508282019050808211156138fd576138fc613462565b5b92915050565b7f4d6178206d696e74207065722077616c6c657420726561636865640000000000600082015250565b6000613939601b83612d41565b915061394482613903565b602082019050919050565b600060208201905081810360008301526139688161392c565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006139a5601283612d41565b91506139b08261396f565b602082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b60006139e682612de8565b91506139f183612de8565b9250828203905081811115613a0957613a08613462565b5b92915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b6000613a45600e83612d41565b9150613a5082613a0f565b602082019050919050565b60006020820190508181036000830152613a7481613a38565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613ad7602f83612d41565b9150613ae282613a7b565b604082019050919050565b60006020820190508181036000830152613b0681613aca565b9050919050565b600081905092915050565b6000613b2382612d36565b613b2d8185613b0d565b9350613b3d818560208601612d52565b80840191505092915050565b60008154613b568161332a565b613b608186613b0d565b94506001821660008114613b7b5760018114613b9057613bc3565b60ff1983168652811515820286019350613bc3565b613b998561350f565b60005b83811015613bbb57815481890152600182019150602081019050613b9c565b838801955050505b50505092915050565b6000613bd88286613b18565b9150613be48285613b18565b9150613bf08284613b49565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c59602683612d41565b9150613c6482613bfd565b604082019050919050565b60006020820190508181036000830152613c8881613c4c565b9050919050565b600081905092915050565b50565b6000613caa600083613c8f565b9150613cb582613c9a565b600082019050919050565b6000613ccb82613c9d565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613d0b601083612d41565b9150613d1682613cd5565b602082019050919050565b60006020820190508181036000830152613d3a81613cfe565b9050919050565b6000613d4c82612de8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d7e57613d7d613462565b5b600182019050919050565b6000613d9482612de8565b9150613d9f83612de8565b925082613daf57613dae613433565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613e1082613de9565b613e1a8185613df4565b9350613e2a818560208601612d52565b613e3381612d7c565b840191505092915050565b6000608082019050613e536000830187612e7d565b613e606020830186612e7d565b613e6d6040830185612ea7565b8181036060830152613e7f8184613e05565b905095945050505050565b600081519050613e9981612ca7565b92915050565b600060208284031215613eb557613eb4612c71565b5b6000613ec384828501613e8a565b9150509291505056fea2646970667358221220ef0a00c53685d634915c20a4780fb1d4a0f2b09982eb5d9efe9eb1e6ecd3f07e64736f6c63430008110033

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.