ETH Price: $3,730.84 (+2.86%)
 

Overview

Max Total Supply

127 DACC

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
shubzybaker.eth
Balance
1 DACC
0x02C435d8189D9a983CDBD77F2109fdd5663A33BB
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:
DACC

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-22
*/

/**
 *Submitted for verification at Etherscan.io on 2022-08-11
*/

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

    /**
     * @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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

    // The 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [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 => address) private _tokenApprovals;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the 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 {
        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;
    }

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

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

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

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

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

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

    /**
     * @dev 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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` 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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

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

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

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

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

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

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

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

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0; 

contract DACC is ERC721A, Ownable, Pausable 
{
    using Strings for uint256;
    
    uint256 public collectionSize;
    mapping(address => uint256) public mintList;
    uint256 public walletMintLimit;
    string private baseTokenURI;
    address payable private seller = payable(0x93ad555c988C79A1d46532FA6B7DC2021bb00C9E); 
    uint256 public currentId = 0;
    uint256 public startingPrice = 690;//4 decimal places

    constructor
    (
        string memory _name,
        string memory _symbol,
        uint256 _collectionSize,
        uint256 _walletMintLimit,
        string memory _baseTokenURI
    ) ERC721A(_name, _symbol) 
    {
        collectionSize = _collectionSize;
        walletMintLimit = _walletMintLimit;
        baseTokenURI = _baseTokenURI;
    }

    modifier callerIsUser() 
    {
        require(tx.origin == msg.sender, "Caller is contract");
        _;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token not existed");

        return string(abi.encodePacked(baseTokenURI, _tokenId.toString(),".json"));
    }
    
    
    function reveal(string calldata _baseTokenURI) external onlyOwner 
    {
        baseTokenURI = _baseTokenURI;
    }

     
    function setStarttPrice(uint256 _startingPrice) external onlyOwner 
    {
        require(_startingPrice > 0, "Invalid price");
        startingPrice = _startingPrice;
    }


    function _startTokenId() internal pure override returns (uint256) {
        return 0;
    }

    function mint(uint256 quantity) external payable callerIsUser {
        require(quantity <= 10, "Only mint10 at most at a time");
        require(totalSupply() + quantity < collectionSize, "EXCEED_COL_SIZE");
        if(startingPrice > 0){
            require(msg.value >= quantity * startingPrice * 10**14, "The amount of ETH sent is less than the price of token");
        }

        mintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
        currentId += quantity;

        if(startingPrice > 0){
            uint refund = msg.value - quantity * startingPrice * 10**14;
            if (refund > 0) {
                payable(msg.sender).transfer(refund);
            }
            uint256 balance = address(this).balance;
            (bool success, ) = seller.call{value: balance}("");
            require(success, "Address: unable to send value, recipient may have reverted");
        }
    }
  
    function airdrop(address toAdd,uint256 quantity)
        external
        payable
        onlyOwner
    {
        require(quantity > 0, "Invalid quantity");
        require(totalSupply() + quantity <= collectionSize, "EXCEED_COL_SIZE");

        currentId += quantity;
        _safeMint(toAdd, quantity);

    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

//The remaining amount that has not been mint
    function remaining() public view returns (uint256) {
        unchecked {
            return collectionSize - totalSupply();
        }
    }

    function getNowMintPrice() public view returns (uint) {
        return startingPrice;
    }

    function nowMintTokenId() public view returns (uint256) {
        return currentId;
    }

    function setPriceFree() external onlyOwner 
    {
        startingPrice = 0;
    }
     
    function setSellerAddress(address _seller) external onlyOwner
    {
        seller = payable(_seller);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_walletMintLimit","type":"uint256"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"toAdd","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentId","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":"getNowMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintList","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":"nowMintTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPriceFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_seller","type":"address"}],"name":"setSellerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startingPrice","type":"uint256"}],"name":"setStarttPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040527393ad555c988c79a1d46532fa6b7dc2021bb00c9e600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e556102b2600f553480156200007157600080fd5b5060405162003d5a38038062003d5a83398181016040528101906200009791906200035c565b84848160029080519060200190620000b192919062000223565b508060039080519060200190620000ca92919062000223565b50620000db6200015060201b60201c565b600081905550505062000103620000f76200015560201b60201c565b6200015d60201b60201c565b6000600860146101000a81548160ff0219169083151502179055508260098190555081600b8190555080600c90805190602001906200014492919062000223565b505050505050620005bd565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023190620004c8565b90600052602060002090601f016020900481019282620002555760008555620002a1565b82601f106200027057805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a057825182559160200191906001019062000283565b5b509050620002b09190620002b4565b5090565b5b80821115620002cf576000816000905550600101620002b5565b5090565b6000620002ea620002e48462000452565b62000429565b9050828152602081018484840111156200030357600080fd5b6200031084828562000492565b509392505050565b600082601f8301126200032a57600080fd5b81516200033c848260208601620002d3565b91505092915050565b6000815190506200035681620005a3565b92915050565b600080600080600060a086880312156200037557600080fd5b600086015167ffffffffffffffff8111156200039057600080fd5b6200039e8882890162000318565b955050602086015167ffffffffffffffff811115620003bc57600080fd5b620003ca8882890162000318565b9450506040620003dd8882890162000345565b9350506060620003f08882890162000345565b925050608086015167ffffffffffffffff8111156200040e57600080fd5b6200041c8882890162000318565b9150509295509295909350565b60006200043562000448565b9050620004438282620004fe565b919050565b6000604051905090565b600067ffffffffffffffff82111562000470576200046f62000563565b5b6200047b8262000592565b9050602081019050919050565b6000819050919050565b60005b83811015620004b257808201518184015260208101905062000495565b83811115620004c2576000848401525b50505050565b60006002820490506001821680620004e157607f821691505b60208210811415620004f857620004f762000534565b5b50919050565b620005098262000592565b810181811067ffffffffffffffff821117156200052b576200052a62000563565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005ae8162000488565b8114620005ba57600080fd5b50565b61378d80620005cd6000396000f3fe6080604052600436106101f95760003560e01c8063778777011161010d578063b5190c42116100a0578063d6fbf2021161006f578063d6fbf202146106cd578063d7674ed4146106f8578063e00dd16114610721578063e985e9c51461074c578063f2fde38b14610789576101f9565b8063b5190c42146105ff578063b88d4fde1461062a578063bef432c614610653578063c87b56dd14610690576101f9565b806395d89b41116100dc57806395d89b4114610566578063a0712d6814610591578063a12df12e146105ad578063a22cb465146105d6576101f9565b806377877701146104dd5780638456cb59146105085780638ba4cc3c1461051f5780638da5cb5b1461053b576101f9565b806342842e0e116101905780635c975abb1161015f5780635c975abb146103f65780636352211e1461042157806370a082311461045e578063715018a61461049b57806374c28561146104b2576101f9565b806342842e0e1461034e57806345c0f533146103775780634c261247146103a257806355234ec0146103cb576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba57806318160ddd146102e357806323b872dd1461030e5780633f4ba83a14610337576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc1461026657806308b852db146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906129c7565b6107b2565b6040516102329190612e6b565b60405180910390f35b34801561024757600080fd5b50610250610844565b60405161025d9190612e86565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612a5e565b6108d6565b60405161029a9190612e04565b60405180910390f35b3480156102af57600080fd5b506102b8610952565b005b3480156102c657600080fd5b506102e160048036038101906102dc919061298b565b6109d8565b005b3480156102ef57600080fd5b506102f8610b19565b6040516103059190613028565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612885565b610b30565b005b34801561034357600080fd5b5061034c610e55565b005b34801561035a57600080fd5b5061037560048036038101906103709190612885565b610edb565b005b34801561038357600080fd5b5061038c610efb565b6040516103999190613028565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190612a19565b610f01565b005b3480156103d757600080fd5b506103e0610f93565b6040516103ed9190613028565b60405180910390f35b34801561040257600080fd5b5061040b610fa6565b6040516104189190612e6b565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612a5e565b610fbd565b6040516104559190612e04565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612820565b610fcf565b6040516104929190613028565b60405180910390f35b3480156104a757600080fd5b506104b0611088565b005b3480156104be57600080fd5b506104c7611110565b6040516104d49190613028565b60405180910390f35b3480156104e957600080fd5b506104f2611116565b6040516104ff9190613028565b60405180910390f35b34801561051457600080fd5b5061051d611120565b005b6105396004803603810190610534919061298b565b6111a6565b005b34801561054757600080fd5b506105506112e3565b60405161055d9190612e04565b60405180910390f35b34801561057257600080fd5b5061057b61130d565b6040516105889190612e86565b60405180910390f35b6105ab60048036038101906105a69190612a5e565b61139f565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612820565b6116f1565b005b3480156105e257600080fd5b506105fd60048036038101906105f8919061294f565b6117b1565b005b34801561060b57600080fd5b50610614611929565b6040516106219190613028565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c91906128d4565b611933565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612820565b6119a6565b6040516106879190613028565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612a5e565b6119be565b6040516106c49190612e86565b60405180910390f35b3480156106d957600080fd5b506106e2611a3a565b6040516106ef9190613028565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612a5e565b611a40565b005b34801561072d57600080fd5b50610736611b09565b6040516107439190613028565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612849565b611b0f565b6040516107809190612e6b565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190612820565b611ba3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610853906132c7565b80601f016020809104026020016040519081016040528092919081815260200182805461087f906132c7565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b60006108e182611c9b565b610917576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61095a611cfa565b73ffffffffffffffffffffffffffffffffffffffff166109786112e3565b73ffffffffffffffffffffffffffffffffffffffff16146109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590612fc8565b60405180910390fd5b6000600f81905550565b60006109e382610fbd565b90508073ffffffffffffffffffffffffffffffffffffffff16610a04611d02565b73ffffffffffffffffffffffffffffffffffffffff1614610a6757610a3081610a2b611d02565b611b0f565b610a66576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b23611d0a565b6001546000540303905090565b6000610b3b82611d0f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bae84611ddd565b91509150610bc48187610bbf611d02565b611dff565b610c1057610bd986610bd4611d02565b611b0f565b610c0f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c77576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c848686866001611e43565b8015610c8f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d5d85610d39888887611e49565b7c020000000000000000000000000000000000000000000000000000000017611e71565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610de5576000600185019050600060046000838152602001908152602001600020541415610de3576000548114610de2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e4d8686866001611e9c565b505050505050565b610e5d611cfa565b73ffffffffffffffffffffffffffffffffffffffff16610e7b6112e3565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890612fc8565b60405180910390fd5b610ed9611ea2565b565b610ef683838360405180602001604052806000815250611933565b505050565b60095481565b610f09611cfa565b73ffffffffffffffffffffffffffffffffffffffff16610f276112e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490612fc8565b60405180910390fd5b8181600c9190610f8e929190612662565b505050565b6000610f9d610b19565b60095403905090565b6000600860149054906101000a900460ff16905090565b6000610fc882611d0f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611037576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611090611cfa565b73ffffffffffffffffffffffffffffffffffffffff166110ae6112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90612fc8565b60405180910390fd5b61110e6000611f44565b565b600b5481565b6000600f54905090565b611128611cfa565b73ffffffffffffffffffffffffffffffffffffffff166111466112e3565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612fc8565b60405180910390fd5b6111a461200a565b565b6111ae611cfa565b73ffffffffffffffffffffffffffffffffffffffff166111cc6112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990612fc8565b60405180910390fd5b60008111611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90612f88565b60405180910390fd5b60095481611271610b19565b61127b91906130fc565b11156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612ee8565b60405180910390fd5b80600e60008282546112ce91906130fc565b925050819055506112df82826120ad565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461131c906132c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611348906132c7565b80156113955780601f1061136a57610100808354040283529160200191611395565b820191906000526020600020905b81548152906001019060200180831161137857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490612fe8565b60405180910390fd5b600a811115611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612ea8565b60405180910390fd5b6009548161145d610b19565b61146791906130fc565b106114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90612ee8565b60405180910390fd5b6000600f54111561151457655af3107a4000600f54826114c79190613183565b6114d19190613183565b341015611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90612fa8565b60405180910390fd5b5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156391906130fc565b9250508190555061157433826120ad565b80600e600082825461158691906130fc565b925050819055506000600f5411156116ee576000655af3107a4000600f54836115af9190613183565b6115b99190613183565b346115c491906131dd565b90506000811115611617573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611615573d6000803e3d6000fd5b505b60004790506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161166490612def565b60006040518083038185875af1925050503d80600081146116a1576040519150601f19603f3d011682016040523d82523d6000602084013e6116a6565b606091505b50509050806116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190612f28565b60405180910390fd5b5050505b50565b6116f9611cfa565b73ffffffffffffffffffffffffffffffffffffffff166117176112e3565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490612fc8565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117b9611d02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061182b611d02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118d8611d02565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191d9190612e6b565b60405180910390a35050565b6000600e54905090565b61193e848484610b30565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119a057611969848484846120cb565b61199f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b60606119c982611c9b565b611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90612f68565b60405180910390fd5b600c611a138361222b565b604051602001611a24929190612dc0565b6040516020818303038152906040529050919050565b600f5481565b611a48611cfa565b73ffffffffffffffffffffffffffffffffffffffff16611a666112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390612fc8565b60405180910390fd5b60008111611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613008565b60405180910390fd5b80600f8190555050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bab611cfa565b73ffffffffffffffffffffffffffffffffffffffff16611bc96112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690612fc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8690612f08565b60405180910390fd5b611c9881611f44565b50565b600081611ca6611d0a565b11158015611cb5575060005482105b8015611cf3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b60008082905080611d1e611d0a565b11611da657600054811015611da55760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611da3575b6000811415611d99576004600083600190039350838152602001908152602001600020549050611d6e565b8092505050611dd8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e608686846123d8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611eaa610fa6565b611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090612ec8565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f2d611cfa565b604051611f3a9190612e04565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612012610fa6565b15612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204990612f48565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612096611cfa565b6040516120a39190612e04565b60405180910390a1565b6120c78282604051806020016040528060008152506123e1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120f1611d02565b8786866040518563ffffffff1660e01b81526004016121139493929190612e1f565b602060405180830381600087803b15801561212d57600080fd5b505af192505050801561215e57506040513d601f19601f8201168201806040525081019061215b91906129f0565b60015b6121d8573d806000811461218e576040519150601f19603f3d011682016040523d82523d6000602084013e612193565b606091505b506000815114156121d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612273576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123d3565b600082905060005b600082146122a557808061228e9061332a565b915050600a8261229e9190613152565b915061227b565b60008167ffffffffffffffff8111156122e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123195781602001600182028036833780820191505090505b5090505b600085146123cc5760018261233291906131dd565b9150600a856123419190613373565b603061234d91906130fc565b60f81b818381518110612389577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123c59190613152565b945061231d565b8093505050505b919050565b60009392505050565b6123eb838361247e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461247957600080549050600083820390505b61242b60008683806001019450866120cb565b612461576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061241857816000541461247657600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124eb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612526576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125336000848385611e43565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125aa8361259b6000866000611e49565b6125a485612652565b17611e71565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106125ce5780600081905550505061264d6000848385611e9c565b505050565b60006001821460e11b9050919050565b82805461266e906132c7565b90600052602060002090601f01602090048101928261269057600085556126d7565b82601f106126a957803560ff19168380011785556126d7565b828001600101855582156126d7579182015b828111156126d65782358255916020019190600101906126bb565b5b5090506126e491906126e8565b5090565b5b808211156127015760008160009055506001016126e9565b5090565b600061271861271384613068565b613043565b90508281526020810184848401111561273057600080fd5b61273b848285613285565b509392505050565b600081359050612752816136fb565b92915050565b60008135905061276781613712565b92915050565b60008135905061277c81613729565b92915050565b60008151905061279181613729565b92915050565b600082601f8301126127a857600080fd5b81356127b8848260208601612705565b91505092915050565b60008083601f8401126127d357600080fd5b8235905067ffffffffffffffff8111156127ec57600080fd5b60208301915083600182028301111561280457600080fd5b9250929050565b60008135905061281a81613740565b92915050565b60006020828403121561283257600080fd5b600061284084828501612743565b91505092915050565b6000806040838503121561285c57600080fd5b600061286a85828601612743565b925050602061287b85828601612743565b9150509250929050565b60008060006060848603121561289a57600080fd5b60006128a886828701612743565b93505060206128b986828701612743565b92505060406128ca8682870161280b565b9150509250925092565b600080600080608085870312156128ea57600080fd5b60006128f887828801612743565b945050602061290987828801612743565b935050604061291a8782880161280b565b925050606085013567ffffffffffffffff81111561293757600080fd5b61294387828801612797565b91505092959194509250565b6000806040838503121561296257600080fd5b600061297085828601612743565b925050602061298185828601612758565b9150509250929050565b6000806040838503121561299e57600080fd5b60006129ac85828601612743565b92505060206129bd8582860161280b565b9150509250929050565b6000602082840312156129d957600080fd5b60006129e78482850161276d565b91505092915050565b600060208284031215612a0257600080fd5b6000612a1084828501612782565b91505092915050565b60008060208385031215612a2c57600080fd5b600083013567ffffffffffffffff811115612a4657600080fd5b612a52858286016127c1565b92509250509250929050565b600060208284031215612a7057600080fd5b6000612a7e8482850161280b565b91505092915050565b612a9081613211565b82525050565b612a9f81613223565b82525050565b6000612ab0826130ae565b612aba81856130c4565b9350612aca818560208601613294565b612ad381613460565b840191505092915050565b6000612ae9826130b9565b612af381856130e0565b9350612b03818560208601613294565b612b0c81613460565b840191505092915050565b6000612b22826130b9565b612b2c81856130f1565b9350612b3c818560208601613294565b80840191505092915050565b60008154612b55816132c7565b612b5f81866130f1565b94506001821660008114612b7a5760018114612b8b57612bbe565b60ff19831686528186019350612bbe565b612b9485613099565b60005b83811015612bb657815481890152600182019150602081019050612b97565b838801955050505b50505092915050565b6000612bd4601d836130e0565b9150612bdf82613471565b602082019050919050565b6000612bf76014836130e0565b9150612c028261349a565b602082019050919050565b6000612c1a600f836130e0565b9150612c25826134c3565b602082019050919050565b6000612c3d6026836130e0565b9150612c48826134ec565b604082019050919050565b6000612c60603a836130e0565b9150612c6b8261353b565b604082019050919050565b6000612c836010836130e0565b9150612c8e8261358a565b602082019050919050565b6000612ca66011836130e0565b9150612cb1826135b3565b602082019050919050565b6000612cc96010836130e0565b9150612cd4826135dc565b602082019050919050565b6000612cec6036836130e0565b9150612cf782613605565b604082019050919050565b6000612d0f6005836130f1565b9150612d1a82613654565b600582019050919050565b6000612d326020836130e0565b9150612d3d8261367d565b602082019050919050565b6000612d556012836130e0565b9150612d60826136a6565b602082019050919050565b6000612d786000836130d5565b9150612d83826136cf565b600082019050919050565b6000612d9b600d836130e0565b9150612da6826136d2565b602082019050919050565b612dba8161327b565b82525050565b6000612dcc8285612b48565b9150612dd88284612b17565b9150612de382612d02565b91508190509392505050565b6000612dfa82612d6b565b9150819050919050565b6000602082019050612e196000830184612a87565b92915050565b6000608082019050612e346000830187612a87565b612e416020830186612a87565b612e4e6040830185612db1565b8181036060830152612e608184612aa5565b905095945050505050565b6000602082019050612e806000830184612a96565b92915050565b60006020820190508181036000830152612ea08184612ade565b905092915050565b60006020820190508181036000830152612ec181612bc7565b9050919050565b60006020820190508181036000830152612ee181612bea565b9050919050565b60006020820190508181036000830152612f0181612c0d565b9050919050565b60006020820190508181036000830152612f2181612c30565b9050919050565b60006020820190508181036000830152612f4181612c53565b9050919050565b60006020820190508181036000830152612f6181612c76565b9050919050565b60006020820190508181036000830152612f8181612c99565b9050919050565b60006020820190508181036000830152612fa181612cbc565b9050919050565b60006020820190508181036000830152612fc181612cdf565b9050919050565b60006020820190508181036000830152612fe181612d25565b9050919050565b6000602082019050818103600083015261300181612d48565b9050919050565b6000602082019050818103600083015261302181612d8e565b9050919050565b600060208201905061303d6000830184612db1565b92915050565b600061304d61305e565b905061305982826132f9565b919050565b6000604051905090565b600067ffffffffffffffff82111561308357613082613431565b5b61308c82613460565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131078261327b565b91506131128361327b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613147576131466133a4565b5b828201905092915050565b600061315d8261327b565b91506131688361327b565b925082613178576131776133d3565b5b828204905092915050565b600061318e8261327b565b91506131998361327b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131d2576131d16133a4565b5b828202905092915050565b60006131e88261327b565b91506131f38361327b565b925082821015613206576132056133a4565b5b828203905092915050565b600061321c8261325b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132b2578082015181840152602081019050613297565b838111156132c1576000848401525b50505050565b600060028204905060018216806132df57607f821691505b602082108114156132f3576132f2613402565b5b50919050565b61330282613460565b810181811067ffffffffffffffff8211171561332157613320613431565b5b80604052505050565b60006133358261327b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613368576133676133a4565b5b600182019050919050565b600061337e8261327b565b91506133898361327b565b925082613399576133986133d3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f6e6c79206d696e743130206174206d6f737420617420612074696d65000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f54686520616d6f756e74206f66204554482073656e74206973206c657373207460008201527f68616e20746865207072696365206f6620746f6b656e00000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b50565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b61370481613211565b811461370f57600080fd5b50565b61371b81613223565b811461372657600080fd5b50565b6137328161322f565b811461373d57600080fd5b50565b6137498161327b565b811461375457600080fd5b5056fea26469706673582212205b210c05cbeb705856362679fb62c0d0ddd606796e3d83c89e4c63b5420201ee64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000010446f7065417065436c7562436f6d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044441434300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007568747470733a2f2f73637a72696b7a65647269683575366c677261746465776a627536326c683236656c6c74346b68777667767334757279647776612e617277656176652e6e65742f6b4c4d554b79516355483754797a52424d5a4c4a4454326c6e313469317a346f39716d724c6c493448616f2f0000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063778777011161010d578063b5190c42116100a0578063d6fbf2021161006f578063d6fbf202146106cd578063d7674ed4146106f8578063e00dd16114610721578063e985e9c51461074c578063f2fde38b14610789576101f9565b8063b5190c42146105ff578063b88d4fde1461062a578063bef432c614610653578063c87b56dd14610690576101f9565b806395d89b41116100dc57806395d89b4114610566578063a0712d6814610591578063a12df12e146105ad578063a22cb465146105d6576101f9565b806377877701146104dd5780638456cb59146105085780638ba4cc3c1461051f5780638da5cb5b1461053b576101f9565b806342842e0e116101905780635c975abb1161015f5780635c975abb146103f65780636352211e1461042157806370a082311461045e578063715018a61461049b57806374c28561146104b2576101f9565b806342842e0e1461034e57806345c0f533146103775780634c261247146103a257806355234ec0146103cb576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba57806318160ddd146102e357806323b872dd1461030e5780633f4ba83a14610337576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc1461026657806308b852db146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906129c7565b6107b2565b6040516102329190612e6b565b60405180910390f35b34801561024757600080fd5b50610250610844565b60405161025d9190612e86565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612a5e565b6108d6565b60405161029a9190612e04565b60405180910390f35b3480156102af57600080fd5b506102b8610952565b005b3480156102c657600080fd5b506102e160048036038101906102dc919061298b565b6109d8565b005b3480156102ef57600080fd5b506102f8610b19565b6040516103059190613028565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612885565b610b30565b005b34801561034357600080fd5b5061034c610e55565b005b34801561035a57600080fd5b5061037560048036038101906103709190612885565b610edb565b005b34801561038357600080fd5b5061038c610efb565b6040516103999190613028565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190612a19565b610f01565b005b3480156103d757600080fd5b506103e0610f93565b6040516103ed9190613028565b60405180910390f35b34801561040257600080fd5b5061040b610fa6565b6040516104189190612e6b565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612a5e565b610fbd565b6040516104559190612e04565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612820565b610fcf565b6040516104929190613028565b60405180910390f35b3480156104a757600080fd5b506104b0611088565b005b3480156104be57600080fd5b506104c7611110565b6040516104d49190613028565b60405180910390f35b3480156104e957600080fd5b506104f2611116565b6040516104ff9190613028565b60405180910390f35b34801561051457600080fd5b5061051d611120565b005b6105396004803603810190610534919061298b565b6111a6565b005b34801561054757600080fd5b506105506112e3565b60405161055d9190612e04565b60405180910390f35b34801561057257600080fd5b5061057b61130d565b6040516105889190612e86565b60405180910390f35b6105ab60048036038101906105a69190612a5e565b61139f565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612820565b6116f1565b005b3480156105e257600080fd5b506105fd60048036038101906105f8919061294f565b6117b1565b005b34801561060b57600080fd5b50610614611929565b6040516106219190613028565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c91906128d4565b611933565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612820565b6119a6565b6040516106879190613028565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612a5e565b6119be565b6040516106c49190612e86565b60405180910390f35b3480156106d957600080fd5b506106e2611a3a565b6040516106ef9190613028565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612a5e565b611a40565b005b34801561072d57600080fd5b50610736611b09565b6040516107439190613028565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612849565b611b0f565b6040516107809190612e6b565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190612820565b611ba3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610853906132c7565b80601f016020809104026020016040519081016040528092919081815260200182805461087f906132c7565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b60006108e182611c9b565b610917576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61095a611cfa565b73ffffffffffffffffffffffffffffffffffffffff166109786112e3565b73ffffffffffffffffffffffffffffffffffffffff16146109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590612fc8565b60405180910390fd5b6000600f81905550565b60006109e382610fbd565b90508073ffffffffffffffffffffffffffffffffffffffff16610a04611d02565b73ffffffffffffffffffffffffffffffffffffffff1614610a6757610a3081610a2b611d02565b611b0f565b610a66576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b23611d0a565b6001546000540303905090565b6000610b3b82611d0f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bae84611ddd565b91509150610bc48187610bbf611d02565b611dff565b610c1057610bd986610bd4611d02565b611b0f565b610c0f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c77576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c848686866001611e43565b8015610c8f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d5d85610d39888887611e49565b7c020000000000000000000000000000000000000000000000000000000017611e71565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610de5576000600185019050600060046000838152602001908152602001600020541415610de3576000548114610de2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e4d8686866001611e9c565b505050505050565b610e5d611cfa565b73ffffffffffffffffffffffffffffffffffffffff16610e7b6112e3565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890612fc8565b60405180910390fd5b610ed9611ea2565b565b610ef683838360405180602001604052806000815250611933565b505050565b60095481565b610f09611cfa565b73ffffffffffffffffffffffffffffffffffffffff16610f276112e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490612fc8565b60405180910390fd5b8181600c9190610f8e929190612662565b505050565b6000610f9d610b19565b60095403905090565b6000600860149054906101000a900460ff16905090565b6000610fc882611d0f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611037576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611090611cfa565b73ffffffffffffffffffffffffffffffffffffffff166110ae6112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90612fc8565b60405180910390fd5b61110e6000611f44565b565b600b5481565b6000600f54905090565b611128611cfa565b73ffffffffffffffffffffffffffffffffffffffff166111466112e3565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612fc8565b60405180910390fd5b6111a461200a565b565b6111ae611cfa565b73ffffffffffffffffffffffffffffffffffffffff166111cc6112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990612fc8565b60405180910390fd5b60008111611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90612f88565b60405180910390fd5b60095481611271610b19565b61127b91906130fc565b11156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612ee8565b60405180910390fd5b80600e60008282546112ce91906130fc565b925050819055506112df82826120ad565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461131c906132c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611348906132c7565b80156113955780601f1061136a57610100808354040283529160200191611395565b820191906000526020600020905b81548152906001019060200180831161137857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490612fe8565b60405180910390fd5b600a811115611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612ea8565b60405180910390fd5b6009548161145d610b19565b61146791906130fc565b106114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90612ee8565b60405180910390fd5b6000600f54111561151457655af3107a4000600f54826114c79190613183565b6114d19190613183565b341015611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90612fa8565b60405180910390fd5b5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156391906130fc565b9250508190555061157433826120ad565b80600e600082825461158691906130fc565b925050819055506000600f5411156116ee576000655af3107a4000600f54836115af9190613183565b6115b99190613183565b346115c491906131dd565b90506000811115611617573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611615573d6000803e3d6000fd5b505b60004790506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161166490612def565b60006040518083038185875af1925050503d80600081146116a1576040519150601f19603f3d011682016040523d82523d6000602084013e6116a6565b606091505b50509050806116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190612f28565b60405180910390fd5b5050505b50565b6116f9611cfa565b73ffffffffffffffffffffffffffffffffffffffff166117176112e3565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490612fc8565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117b9611d02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561181e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061182b611d02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118d8611d02565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191d9190612e6b565b60405180910390a35050565b6000600e54905090565b61193e848484610b30565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119a057611969848484846120cb565b61199f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b60606119c982611c9b565b611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90612f68565b60405180910390fd5b600c611a138361222b565b604051602001611a24929190612dc0565b6040516020818303038152906040529050919050565b600f5481565b611a48611cfa565b73ffffffffffffffffffffffffffffffffffffffff16611a666112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390612fc8565b60405180910390fd5b60008111611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613008565b60405180910390fd5b80600f8190555050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bab611cfa565b73ffffffffffffffffffffffffffffffffffffffff16611bc96112e3565b73ffffffffffffffffffffffffffffffffffffffff1614611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690612fc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8690612f08565b60405180910390fd5b611c9881611f44565b50565b600081611ca6611d0a565b11158015611cb5575060005482105b8015611cf3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b60008082905080611d1e611d0a565b11611da657600054811015611da55760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611da3575b6000811415611d99576004600083600190039350838152602001908152602001600020549050611d6e565b8092505050611dd8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e608686846123d8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611eaa610fa6565b611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090612ec8565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f2d611cfa565b604051611f3a9190612e04565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612012610fa6565b15612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204990612f48565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612096611cfa565b6040516120a39190612e04565b60405180910390a1565b6120c78282604051806020016040528060008152506123e1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120f1611d02565b8786866040518563ffffffff1660e01b81526004016121139493929190612e1f565b602060405180830381600087803b15801561212d57600080fd5b505af192505050801561215e57506040513d601f19601f8201168201806040525081019061215b91906129f0565b60015b6121d8573d806000811461218e576040519150601f19603f3d011682016040523d82523d6000602084013e612193565b606091505b506000815114156121d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612273576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123d3565b600082905060005b600082146122a557808061228e9061332a565b915050600a8261229e9190613152565b915061227b565b60008167ffffffffffffffff8111156122e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123195781602001600182028036833780820191505090505b5090505b600085146123cc5760018261233291906131dd565b9150600a856123419190613373565b603061234d91906130fc565b60f81b818381518110612389577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123c59190613152565b945061231d565b8093505050505b919050565b60009392505050565b6123eb838361247e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461247957600080549050600083820390505b61242b60008683806001019450866120cb565b612461576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061241857816000541461247657600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124eb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612526576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125336000848385611e43565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125aa8361259b6000866000611e49565b6125a485612652565b17611e71565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106125ce5780600081905550505061264d6000848385611e9c565b505050565b60006001821460e11b9050919050565b82805461266e906132c7565b90600052602060002090601f01602090048101928261269057600085556126d7565b82601f106126a957803560ff19168380011785556126d7565b828001600101855582156126d7579182015b828111156126d65782358255916020019190600101906126bb565b5b5090506126e491906126e8565b5090565b5b808211156127015760008160009055506001016126e9565b5090565b600061271861271384613068565b613043565b90508281526020810184848401111561273057600080fd5b61273b848285613285565b509392505050565b600081359050612752816136fb565b92915050565b60008135905061276781613712565b92915050565b60008135905061277c81613729565b92915050565b60008151905061279181613729565b92915050565b600082601f8301126127a857600080fd5b81356127b8848260208601612705565b91505092915050565b60008083601f8401126127d357600080fd5b8235905067ffffffffffffffff8111156127ec57600080fd5b60208301915083600182028301111561280457600080fd5b9250929050565b60008135905061281a81613740565b92915050565b60006020828403121561283257600080fd5b600061284084828501612743565b91505092915050565b6000806040838503121561285c57600080fd5b600061286a85828601612743565b925050602061287b85828601612743565b9150509250929050565b60008060006060848603121561289a57600080fd5b60006128a886828701612743565b93505060206128b986828701612743565b92505060406128ca8682870161280b565b9150509250925092565b600080600080608085870312156128ea57600080fd5b60006128f887828801612743565b945050602061290987828801612743565b935050604061291a8782880161280b565b925050606085013567ffffffffffffffff81111561293757600080fd5b61294387828801612797565b91505092959194509250565b6000806040838503121561296257600080fd5b600061297085828601612743565b925050602061298185828601612758565b9150509250929050565b6000806040838503121561299e57600080fd5b60006129ac85828601612743565b92505060206129bd8582860161280b565b9150509250929050565b6000602082840312156129d957600080fd5b60006129e78482850161276d565b91505092915050565b600060208284031215612a0257600080fd5b6000612a1084828501612782565b91505092915050565b60008060208385031215612a2c57600080fd5b600083013567ffffffffffffffff811115612a4657600080fd5b612a52858286016127c1565b92509250509250929050565b600060208284031215612a7057600080fd5b6000612a7e8482850161280b565b91505092915050565b612a9081613211565b82525050565b612a9f81613223565b82525050565b6000612ab0826130ae565b612aba81856130c4565b9350612aca818560208601613294565b612ad381613460565b840191505092915050565b6000612ae9826130b9565b612af381856130e0565b9350612b03818560208601613294565b612b0c81613460565b840191505092915050565b6000612b22826130b9565b612b2c81856130f1565b9350612b3c818560208601613294565b80840191505092915050565b60008154612b55816132c7565b612b5f81866130f1565b94506001821660008114612b7a5760018114612b8b57612bbe565b60ff19831686528186019350612bbe565b612b9485613099565b60005b83811015612bb657815481890152600182019150602081019050612b97565b838801955050505b50505092915050565b6000612bd4601d836130e0565b9150612bdf82613471565b602082019050919050565b6000612bf76014836130e0565b9150612c028261349a565b602082019050919050565b6000612c1a600f836130e0565b9150612c25826134c3565b602082019050919050565b6000612c3d6026836130e0565b9150612c48826134ec565b604082019050919050565b6000612c60603a836130e0565b9150612c6b8261353b565b604082019050919050565b6000612c836010836130e0565b9150612c8e8261358a565b602082019050919050565b6000612ca66011836130e0565b9150612cb1826135b3565b602082019050919050565b6000612cc96010836130e0565b9150612cd4826135dc565b602082019050919050565b6000612cec6036836130e0565b9150612cf782613605565b604082019050919050565b6000612d0f6005836130f1565b9150612d1a82613654565b600582019050919050565b6000612d326020836130e0565b9150612d3d8261367d565b602082019050919050565b6000612d556012836130e0565b9150612d60826136a6565b602082019050919050565b6000612d786000836130d5565b9150612d83826136cf565b600082019050919050565b6000612d9b600d836130e0565b9150612da6826136d2565b602082019050919050565b612dba8161327b565b82525050565b6000612dcc8285612b48565b9150612dd88284612b17565b9150612de382612d02565b91508190509392505050565b6000612dfa82612d6b565b9150819050919050565b6000602082019050612e196000830184612a87565b92915050565b6000608082019050612e346000830187612a87565b612e416020830186612a87565b612e4e6040830185612db1565b8181036060830152612e608184612aa5565b905095945050505050565b6000602082019050612e806000830184612a96565b92915050565b60006020820190508181036000830152612ea08184612ade565b905092915050565b60006020820190508181036000830152612ec181612bc7565b9050919050565b60006020820190508181036000830152612ee181612bea565b9050919050565b60006020820190508181036000830152612f0181612c0d565b9050919050565b60006020820190508181036000830152612f2181612c30565b9050919050565b60006020820190508181036000830152612f4181612c53565b9050919050565b60006020820190508181036000830152612f6181612c76565b9050919050565b60006020820190508181036000830152612f8181612c99565b9050919050565b60006020820190508181036000830152612fa181612cbc565b9050919050565b60006020820190508181036000830152612fc181612cdf565b9050919050565b60006020820190508181036000830152612fe181612d25565b9050919050565b6000602082019050818103600083015261300181612d48565b9050919050565b6000602082019050818103600083015261302181612d8e565b9050919050565b600060208201905061303d6000830184612db1565b92915050565b600061304d61305e565b905061305982826132f9565b919050565b6000604051905090565b600067ffffffffffffffff82111561308357613082613431565b5b61308c82613460565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131078261327b565b91506131128361327b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613147576131466133a4565b5b828201905092915050565b600061315d8261327b565b91506131688361327b565b925082613178576131776133d3565b5b828204905092915050565b600061318e8261327b565b91506131998361327b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131d2576131d16133a4565b5b828202905092915050565b60006131e88261327b565b91506131f38361327b565b925082821015613206576132056133a4565b5b828203905092915050565b600061321c8261325b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132b2578082015181840152602081019050613297565b838111156132c1576000848401525b50505050565b600060028204905060018216806132df57607f821691505b602082108114156132f3576132f2613402565b5b50919050565b61330282613460565b810181811067ffffffffffffffff8211171561332157613320613431565b5b80604052505050565b60006133358261327b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613368576133676133a4565b5b600182019050919050565b600061337e8261327b565b91506133898361327b565b925082613399576133986133d3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f6e6c79206d696e743130206174206d6f737420617420612074696d65000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f54686520616d6f756e74206f66204554482073656e74206973206c657373207460008201527f68616e20746865207072696365206f6620746f6b656e00000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b50565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b61370481613211565b811461370f57600080fd5b50565b61371b81613223565b811461372657600080fd5b50565b6137328161322f565b811461373d57600080fd5b50565b6137498161327b565b811461375457600080fd5b5056fea26469706673582212205b210c05cbeb705856362679fb62c0d0ddd606796e3d83c89e4c63b5420201ee64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000010446f7065417065436c7562436f6d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044441434300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007568747470733a2f2f73637a72696b7a65647269683575366c677261746465776a627536326c683236656c6c74346b68777667767334757279647776612e617277656176652e6e65742f6b4c4d554b79516355483754797a52424d5a4c4a4454326c6e313469317a346f39716d724c6c493448616f2f0000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DopeApeClubComic
Arg [1] : _symbol (string): DACC
Arg [2] : _collectionSize (uint256): 300
Arg [3] : _walletMintLimit (uint256): 300
Arg [4] : _baseTokenURI (string): https://sczrikzedrih5u6lgratdewjbu62lh26ellt4khwvgvs4urydwva.arweave.net/kLMUKyQcUH7TyzRBMZLJDT2ln14i1z4o9qmrLlI4Hao/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [3] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [6] : 446f7065417065436c7562436f6d696300000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 4441434300000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000075
Arg [10] : 68747470733a2f2f73637a72696b7a65647269683575366c677261746465776a
Arg [11] : 627536326c683236656c6c74346b68777667767334757279647776612e617277
Arg [12] : 656176652e6e65742f6b4c4d554b79516355483754797a52424d5a4c4a445432
Arg [13] : 6c6e313469317a346f39716d724c6c493448616f2f0000000000000000000000


Deployed Bytecode Sourcemap

55405:3695:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25213:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30860:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58886:85;;;;;;;;;;;;;:::i;:::-;;32354:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24267:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42071:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58413:67;;;;;;;;;;;;;:::i;:::-;;33696:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55496:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56641:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58535:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6905:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30649:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25892:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9804:103;;;;;;;;;;;;;:::i;:::-;;55582:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58686:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58342:63;;;;;;;;;;;;;:::i;:::-;;58012:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9153:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31029:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57063:939;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58984:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33082:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58787:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33952:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55532:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56331:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55780:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56775:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55745:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33461:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10062:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25213:615;25298:4;25613:10;25598:25;;:11;:25;;;;:102;;;;25690:10;25675:25;;:11;:25;;;;25598:102;:179;;;;25767:10;25752:25;;:11;:25;;;;25598:179;25578:199;;25213:615;;;:::o;30860:100::-;30914:13;30947:5;30940:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30860:100;:::o;32806:204::-;32874:7;32899:16;32907:7;32899;:16::i;:::-;32894:64;;32924:34;;;;;;;;;;;;;;32894:64;32978:15;:24;32994:7;32978:24;;;;;;;;;;;;;;;;;;;;;32971:31;;32806:204;;;:::o;58886:85::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58962:1:::1;58946:13;:17;;;;58886:85::o:0;32354:386::-;32427:13;32443:16;32451:7;32443;:16::i;:::-;32427:32;;32499:5;32476:28;;:19;:17;:19::i;:::-;:28;;;32472:175;;32524:44;32541:5;32548:19;:17;:19::i;:::-;32524:16;:44::i;:::-;32519:128;;32596:35;;;;;;;;;;;;;;32519:128;32472:175;32686:2;32659:15;:24;32675:7;32659:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32724:7;32720:2;32704:28;;32713:5;32704:28;;;;;;;;;;;;32354:386;;;:::o;24267:315::-;24320:7;24548:15;:13;:15::i;:::-;24533:12;;24517:13;;:28;:46;24510:53;;24267:315;:::o;42071:2800::-;42205:27;42235;42254:7;42235:18;:27::i;:::-;42205:57;;42320:4;42279:45;;42295:19;42279:45;;;42275:86;;42333:28;;;;;;;;;;;;;;42275:86;42375:27;42404:23;42431:28;42451:7;42431:19;:28::i;:::-;42374:85;;;;42559:62;42578:15;42595:4;42601:19;:17;:19::i;:::-;42559:18;:62::i;:::-;42554:174;;42641:43;42658:4;42664:19;:17;:19::i;:::-;42641:16;:43::i;:::-;42636:92;;42693:35;;;;;;;;;;;;;;42636:92;42554:174;42759:1;42745:16;;:2;:16;;;42741:52;;;42770:23;;;;;;;;;;;;;;42741:52;42806:43;42828:4;42834:2;42838:7;42847:1;42806:21;:43::i;:::-;42942:15;42939:2;;;43082:1;43061:19;43054:30;42939:2;43477:18;:24;43496:4;43477:24;;;;;;;;;;;;;;;;43475:26;;;;;;;;;;;;43546:18;:22;43565:2;43546:22;;;;;;;;;;;;;;;;43544:24;;;;;;;;;;;43868:145;43905:2;43953:45;43968:4;43974:2;43978:19;43953:14;:45::i;:::-;21495:8;43926:72;43868:18;:145::i;:::-;43839:17;:26;43857:7;43839:26;;;;;;;;;;;:174;;;;44183:1;21495:8;44133:19;:46;:51;44129:626;;;44205:19;44237:1;44227:7;:11;44205:33;;44394:1;44360:17;:30;44378:11;44360:30;;;;;;;;;;;;:35;44356:384;;;44498:13;;44483:11;:28;44479:242;;44678:19;44645:17;:30;44663:11;44645:30;;;;;;;;;;;:52;;;;44479:242;44356:384;44129:626;;44802:7;44798:2;44783:27;;44792:4;44783:27;;;;;;;;;;;;44821:42;44842:4;44848:2;44852:7;44861:1;44821:20;:42::i;:::-;42071:2800;;;;;;:::o;58413:67::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58462:10:::1;:8;:10::i;:::-;58413:67::o:0;33696:185::-;33834:39;33851:4;33857:2;33861:7;33834:39;;;;;;;;;;;;:16;:39::i;:::-;33696:185;;;:::o;55496:29::-;;;;:::o;56641:119::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56739:13:::1;;56724:12;:28;;;;;;;:::i;:::-;;56641:119:::0;;:::o;58535:143::-;58577:7;58646:13;:11;:13::i;:::-;58629:14;;:30;58622:37;;58535:143;:::o;6905:86::-;6952:4;6976:7;;;;;;;;;;;6969:14;;6905:86;:::o;30649:144::-;30713:7;30756:27;30775:7;30756:18;:27::i;:::-;30733:52;;30649:144;;;:::o;25892:224::-;25956:7;25997:1;25980:19;;:5;:19;;;25976:60;;;26008:28;;;;;;;;;;;;;;25976:60;20447:13;26054:18;:25;26073:5;26054:25;;;;;;;;;;;;;;;;:54;26047:61;;25892:224;;;:::o;9804:103::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9869:30:::1;9896:1;9869:18;:30::i;:::-;9804:103::o:0;55582:30::-;;;;:::o;58686:93::-;58734:4;58758:13;;58751:20;;58686:93;:::o;58342:63::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58389:8:::1;:6;:8::i;:::-;58342:63::o:0;58012:322::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58150:1:::1;58139:8;:12;58131:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;58219:14;;58207:8;58191:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;58183:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58279:8;58266:9;;:21;;;;;;;:::i;:::-;;;;;;;;58298:26;58308:5;58315:8;58298:9;:26::i;:::-;58012:322:::0;;:::o;9153:87::-;9199:7;9226:6;;;;;;;;;;;9219:13;;9153:87;:::o;31029:104::-;31085:13;31118:7;31111:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31029:104;:::o;57063:939::-;56270:10;56257:23;;:9;:23;;;56249:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57156:2:::1;57144:8;:14;;57136:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57238:14;;57227:8;57211:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;57203:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;57302:1;57286:13;;:17;57283:161;;;57367:6;57351:13;;57340:8;:24;;;;:::i;:::-;:33;;;;:::i;:::-;57327:9;:46;;57319:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;57283:161;57480:8;57456;:20;57465:10;57456:20;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;57499:31;57509:10;57521:8;57499:9;:31::i;:::-;57554:8;57541:9;;:21;;;;;;;:::i;:::-;;;;;;;;57594:1;57578:13;;:17;57575:420;;;57611:11;57664:6;57648:13;;57637:8;:24;;;;:::i;:::-;:33;;;;:::i;:::-;57625:9;:45;;;;:::i;:::-;57611:59;;57698:1;57689:6;:10;57685:87;;;57728:10;57720:28;;:36;57749:6;57720:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57685:87;57786:15;57804:21;57786:39;;57841:12;57859:6;;;;;;;;;;;:11;;57878:7;57859:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57840:50;;;57913:7;57905:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;57575:420;;;;57063:939:::0;:::o;58984:111::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59079:7:::1;59062:6;;:25;;;;;;;;;;;;;;;;;;58984:111:::0;:::o;33082:308::-;33193:19;:17;:19::i;:::-;33181:31;;:8;:31;;;33177:61;;;33221:17;;;;;;;;;;;;;;33177:61;33303:8;33251:18;:39;33270:19;:17;:19::i;:::-;33251:39;;;;;;;;;;;;;;;:49;33291:8;33251:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33363:8;33327:55;;33342:19;:17;:19::i;:::-;33327:55;;;33373:8;33327:55;;;;;;:::i;:::-;;;;;;;;33082:308;;:::o;58787:91::-;58834:7;58861:9;;58854:16;;58787:91;:::o;33952:399::-;34119:31;34132:4;34138:2;34142:7;34119:12;:31::i;:::-;34183:1;34165:2;:14;;;:19;34161:183;;34204:56;34235:4;34241:2;34245:7;34254:5;34204:30;:56::i;:::-;34199:145;;34288:40;;;;;;;;;;;;;;34199:145;34161:183;33952:399;;;;:::o;55532:43::-;;;;;;;;;;;;;;;;;:::o;56331:292::-;56450:13;56489:17;56497:8;56489:7;:17::i;:::-;56481:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;56572:12;56586:19;:8;:17;:19::i;:::-;56555:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56541:74;;56331:292;;;:::o;55780:34::-;;;;:::o;56775:177::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56884:1:::1;56867:14;:18;56859:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;56930:14;56914:13;:30;;;;56775:177:::0;:::o;55745:28::-;;;;:::o;33461:164::-;33558:4;33582:18;:25;33601:5;33582:25;;;;;;;;;;;;;;;:35;33608:8;33582:35;;;;;;;;;;;;;;;;;;;;;;;;;33575:42;;33461:164;;;;:::o;10062:201::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10171:1:::1;10151:22;;:8;:22;;;;10143:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10227:28;10246:8;10227:18;:28::i;:::-;10062:201:::0;:::o;34606:273::-;34663:4;34719:7;34700:15;:13;:15::i;:::-;:26;;:66;;;;;34753:13;;34743:7;:23;34700:66;:152;;;;;34851:1;21217:8;34804:17;:26;34822:7;34804:26;;;;;;;;;;;;:43;:48;34700:152;34680:172;;34606:273;;;:::o;5559:98::-;5612:7;5639:10;5632:17;;5559:98;:::o;53167:105::-;53227:7;53254:10;53247:17;;53167:105;:::o;56962:93::-;57019:7;56962:93;:::o;27566:1129::-;27633:7;27653:12;27668:7;27653:22;;27736:4;27717:15;:13;:15::i;:::-;:23;27713:915;;27770:13;;27763:4;:20;27759:869;;;27808:14;27825:17;:23;27843:4;27825:23;;;;;;;;;;;;27808:40;;27941:1;21217:8;27914:6;:23;:28;27910:699;;;28433:113;28450:1;28440:6;:11;28433:113;;;28493:17;:25;28511:6;;;;;;;28493:25;;;;;;;;;;;;28484:34;;28433:113;;;28579:6;28572:13;;;;;;27910:699;27759:869;;27713:915;28656:31;;;;;;;;;;;;;;27566:1129;;;;:::o;40407:652::-;40502:27;40531:23;40572:53;40628:15;40572:71;;40814:7;40808:4;40801:21;40849:22;40843:4;40836:36;40925:4;40919;40909:21;40886:44;;41021:19;41015:26;40996:45;;40752:300;;;;:::o;41172:645::-;41314:11;41476:15;41470:4;41466:26;41458:34;;41635:15;41624:9;41620:31;41607:44;;41782:15;41771:9;41768:30;41761:4;41750:9;41747:19;41744:55;41734:65;;41347:463;;;;;:::o;52000:159::-;;;;;:::o;50312:309::-;50447:7;50467:16;21618:3;50493:19;:40;;50467:67;;21618:3;50560:31;50571:4;50577:2;50581:9;50560:10;:31::i;:::-;50552:40;;:61;;50545:68;;;50312:309;;;;;:::o;30140:447::-;30220:14;30388:15;30381:5;30377:27;30368:36;;30562:5;30548:11;30524:22;30520:40;30517:51;30510:5;30507:62;30497:72;;30256:324;;;;:::o;52818:158::-;;;;;:::o;7964:120::-;7508:8;:6;:8::i;:::-;7500:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8033:5:::1;8023:7;;:15;;;;;;;;;;;;;;;;;;8054:22;8063:12;:10;:12::i;:::-;8054:22;;;;;;:::i;:::-;;;;;;;;7964:120::o:0;10423:191::-;10497:16;10516:6;;;;;;;;;;;10497:25;;10542:8;10533:6;;:17;;;;;;;;;;;;;;;;;;10597:8;10566:40;;10587:8;10566:40;;;;;;;;;;;;10423:191;;:::o;7705:118::-;7231:8;:6;:8::i;:::-;7230:9;7222:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;7775:4:::1;7765:7;;:14;;;;;;;;;;;;;;;;;;7795:20;7802:12;:10;:12::i;:::-;7795:20;;;;;;:::i;:::-;;;;;;;;7705:118::o:0;34963:104::-;35032:27;35042:2;35046:8;35032:27;;;;;;;;;;;;:9;:27::i;:::-;34963:104;;:::o;48822:716::-;48985:4;49031:2;49006:45;;;49052:19;:17;:19::i;:::-;49073:4;49079:7;49088:5;49006:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49002:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49306:1;49289:6;:13;:18;49285:235;;;49335:40;;;;;;;;;;;;;;49285:235;49478:6;49472:13;49463:6;49459:2;49455:15;49448:38;49002:529;49175:54;;;49165:64;;;:6;:64;;;;49158:71;;;48822:716;;;;;;:::o;436:723::-;492:13;722:1;713:5;:10;709:53;;;740:10;;;;;;;;;;;;;;;;;;;;;709:53;772:12;787:5;772:20;;803:14;828:78;843:1;835:4;:9;828:78;;861:8;;;;;:::i;:::-;;;;892:2;884:10;;;;;:::i;:::-;;;828:78;;;916:19;948:6;938:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916:39;;966:154;982:1;973:5;:10;966:154;;1010:1;1000:11;;;;;:::i;:::-;;;1077:2;1069:5;:10;;;;:::i;:::-;1056:2;:24;;;;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1106:2;1097:11;;;;;:::i;:::-;;;966:154;;;1144:6;1130:21;;;;;436:723;;;;:::o;51197:147::-;51334:6;51197:147;;;;;:::o;35483:681::-;35606:19;35612:2;35616:8;35606:5;:19::i;:::-;35685:1;35667:2;:14;;;:19;35663:483;;35707:11;35721:13;;35707:27;;35753:13;35775:8;35769:3;:14;35753:30;;35802:233;35833:62;35872:1;35876:2;35880:7;;;;;;35889:5;35833:30;:62::i;:::-;35828:167;;35931:40;;;;;;;;;;;;;;35828:167;36030:3;36022:5;:11;35802:233;;36117:3;36100:13;;:20;36096:34;;36122:8;;;36096:34;35663:483;;;35483:681;;;:::o;36437:1529::-;36502:20;36525:13;;36502:36;;36567:1;36553:16;;:2;:16;;;36549:48;;;36578:19;;;;;;;;;;;;;;36549:48;36624:1;36612:8;:13;36608:44;;;36634:18;;;;;;;;;;;;;;36608:44;36665:61;36695:1;36699:2;36703:12;36717:8;36665:21;:61::i;:::-;37208:1;20584:2;37179:1;:25;;37178:31;37166:8;:44;37140:18;:22;37159:2;37140:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;37487:139;37524:2;37578:33;37601:1;37605:2;37609:1;37578:14;:33::i;:::-;37545:30;37566:8;37545:20;:30::i;:::-;:66;37487:18;:139::i;:::-;37453:17;:31;37471:12;37453:31;;;;;;;;;;;:173;;;;37643:15;37661:12;37643:30;;37688:11;37717:8;37702:12;:23;37688:37;;37740:101;37792:9;;;;;;37788:2;37767:35;;37784:1;37767:35;;;;;;;;;;;;37836:3;37826:7;:13;37740:101;;37873:3;37857:13;:19;;;;36437:1529;;37898:60;37927:1;37931:2;37935:12;37949:8;37898:20;:60::i;:::-;36437:1529;;;:::o;31970:322::-;32040:14;32271:1;32261:8;32258:15;32233:23;32229:45;32219:55;;32142:143;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:262::-;1796:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:2;;;1861:1;1858;1851:12;1813:2;1904:1;1929:53;1974:7;1965:6;1954:9;1950:22;1929:53;:::i;:::-;1919:63;;1875:117;1803:196;;;;:::o;2005:407::-;2073:6;2081;2130:2;2118:9;2109:7;2105:23;2101:32;2098:2;;;2146:1;2143;2136:12;2098:2;2189:1;2214:53;2259:7;2250:6;2239:9;2235:22;2214:53;:::i;:::-;2204:63;;2160:117;2316:2;2342:53;2387:7;2378:6;2367:9;2363:22;2342:53;:::i;:::-;2332:63;;2287:118;2088:324;;;;;:::o;2418:552::-;2495:6;2503;2511;2560:2;2548:9;2539:7;2535:23;2531:32;2528:2;;;2576:1;2573;2566:12;2528:2;2619:1;2644:53;2689:7;2680:6;2669:9;2665:22;2644:53;:::i;:::-;2634:63;;2590:117;2746:2;2772:53;2817:7;2808:6;2797:9;2793:22;2772:53;:::i;:::-;2762:63;;2717:118;2874:2;2900:53;2945:7;2936:6;2925:9;2921:22;2900:53;:::i;:::-;2890:63;;2845:118;2518:452;;;;;:::o;2976:809::-;3071:6;3079;3087;3095;3144:3;3132:9;3123:7;3119:23;3115:33;3112:2;;;3161:1;3158;3151:12;3112:2;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;3331:2;3357:53;3402:7;3393:6;3382:9;3378:22;3357:53;:::i;:::-;3347:63;;3302:118;3459:2;3485:53;3530:7;3521:6;3510:9;3506:22;3485:53;:::i;:::-;3475:63;;3430:118;3615:2;3604:9;3600:18;3587:32;3646:18;3638:6;3635:30;3632:2;;;3678:1;3675;3668:12;3632:2;3706:62;3760:7;3751:6;3740:9;3736:22;3706:62;:::i;:::-;3696:72;;3558:220;3102:683;;;;;;;:::o;3791:401::-;3856:6;3864;3913:2;3901:9;3892:7;3888:23;3884:32;3881:2;;;3929:1;3926;3919:12;3881:2;3972:1;3997:53;4042:7;4033:6;4022:9;4018:22;3997:53;:::i;:::-;3987:63;;3943:117;4099:2;4125:50;4167:7;4158:6;4147:9;4143:22;4125:50;:::i;:::-;4115:60;;4070:115;3871:321;;;;;:::o;4198:407::-;4266:6;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4382:1;4407:53;4452:7;4443:6;4432:9;4428:22;4407:53;:::i;:::-;4397:63;;4353:117;4509:2;4535:53;4580:7;4571:6;4560:9;4556:22;4535:53;:::i;:::-;4525:63;;4480:118;4281:324;;;;;:::o;4611:260::-;4669:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:2;;;4734:1;4731;4724:12;4686:2;4777:1;4802:52;4846:7;4837:6;4826:9;4822:22;4802:52;:::i;:::-;4792:62;;4748:116;4676:195;;;;:::o;4877:282::-;4946:6;4995:2;4983:9;4974:7;4970:23;4966:32;4963:2;;;5011:1;5008;5001:12;4963:2;5054:1;5079:63;5134:7;5125:6;5114:9;5110:22;5079:63;:::i;:::-;5069:73;;5025:127;4953:206;;;;:::o;5165:395::-;5236:6;5244;5293:2;5281:9;5272:7;5268:23;5264:32;5261:2;;;5309:1;5306;5299:12;5261:2;5380:1;5369:9;5365:17;5352:31;5410:18;5402:6;5399:30;5396:2;;;5442:1;5439;5432:12;5396:2;5478:65;5535:7;5526:6;5515:9;5511:22;5478:65;:::i;:::-;5460:83;;;;5323:230;5251:309;;;;;:::o;5566:262::-;5625:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:2;;;5690:1;5687;5680:12;5642:2;5733:1;5758:53;5803:7;5794:6;5783:9;5779:22;5758:53;:::i;:::-;5748:63;;5704:117;5632:196;;;;:::o;5834:118::-;5921:24;5939:5;5921:24;:::i;:::-;5916:3;5909:37;5899:53;;:::o;5958:109::-;6039:21;6054:5;6039:21;:::i;:::-;6034:3;6027:34;6017:50;;:::o;6073:360::-;6159:3;6187:38;6219:5;6187:38;:::i;:::-;6241:70;6304:6;6299:3;6241:70;:::i;:::-;6234:77;;6320:52;6365:6;6360:3;6353:4;6346:5;6342:16;6320:52;:::i;:::-;6397:29;6419:6;6397:29;:::i;:::-;6392:3;6388:39;6381:46;;6163:270;;;;;:::o;6439:364::-;6527:3;6555:39;6588:5;6555:39;:::i;:::-;6610:71;6674:6;6669:3;6610:71;:::i;:::-;6603:78;;6690:52;6735:6;6730:3;6723:4;6716:5;6712:16;6690:52;:::i;:::-;6767:29;6789:6;6767:29;:::i;:::-;6762:3;6758:39;6751:46;;6531:272;;;;;:::o;6809:377::-;6915:3;6943:39;6976:5;6943:39;:::i;:::-;6998:89;7080:6;7075:3;6998:89;:::i;:::-;6991:96;;7096:52;7141:6;7136:3;7129:4;7122:5;7118:16;7096:52;:::i;:::-;7173:6;7168:3;7164:16;7157:23;;6919:267;;;;;:::o;7216:845::-;7319:3;7356:5;7350:12;7385:36;7411:9;7385:36;:::i;:::-;7437:89;7519:6;7514:3;7437:89;:::i;:::-;7430:96;;7557:1;7546:9;7542:17;7573:1;7568:137;;;;7719:1;7714:341;;;;7535:520;;7568:137;7652:4;7648:9;7637;7633:25;7628:3;7621:38;7688:6;7683:3;7679:16;7672:23;;7568:137;;7714:341;7781:38;7813:5;7781:38;:::i;:::-;7841:1;7855:154;7869:6;7866:1;7863:13;7855:154;;;7943:7;7937:14;7933:1;7928:3;7924:11;7917:35;7993:1;7984:7;7980:15;7969:26;;7891:4;7888:1;7884:12;7879:17;;7855:154;;;8038:6;8033:3;8029:16;8022:23;;7721:334;;7535:520;;7323:738;;;;;;:::o;8067:366::-;8209:3;8230:67;8294:2;8289:3;8230:67;:::i;:::-;8223:74;;8306:93;8395:3;8306:93;:::i;:::-;8424:2;8419:3;8415:12;8408:19;;8213:220;;;:::o;8439:366::-;8581:3;8602:67;8666:2;8661:3;8602:67;:::i;:::-;8595:74;;8678:93;8767:3;8678:93;:::i;:::-;8796:2;8791:3;8787:12;8780:19;;8585:220;;;:::o;8811:366::-;8953:3;8974:67;9038:2;9033:3;8974:67;:::i;:::-;8967:74;;9050:93;9139:3;9050:93;:::i;:::-;9168:2;9163:3;9159:12;9152:19;;8957:220;;;:::o;9183:366::-;9325:3;9346:67;9410:2;9405:3;9346:67;:::i;:::-;9339:74;;9422:93;9511:3;9422:93;:::i;:::-;9540:2;9535:3;9531:12;9524:19;;9329:220;;;:::o;9555:366::-;9697:3;9718:67;9782:2;9777:3;9718:67;:::i;:::-;9711:74;;9794:93;9883:3;9794:93;:::i;:::-;9912:2;9907:3;9903:12;9896:19;;9701:220;;;:::o;9927:366::-;10069:3;10090:67;10154:2;10149:3;10090:67;:::i;:::-;10083:74;;10166:93;10255:3;10166:93;:::i;:::-;10284:2;10279:3;10275:12;10268:19;;10073:220;;;:::o;10299:366::-;10441:3;10462:67;10526:2;10521:3;10462:67;:::i;:::-;10455:74;;10538:93;10627:3;10538:93;:::i;:::-;10656:2;10651:3;10647:12;10640:19;;10445:220;;;:::o;10671:366::-;10813:3;10834:67;10898:2;10893:3;10834:67;:::i;:::-;10827:74;;10910:93;10999:3;10910:93;:::i;:::-;11028:2;11023:3;11019:12;11012:19;;10817:220;;;:::o;11043:366::-;11185:3;11206:67;11270:2;11265:3;11206:67;:::i;:::-;11199:74;;11282:93;11371:3;11282:93;:::i;:::-;11400:2;11395:3;11391:12;11384:19;;11189:220;;;:::o;11415:400::-;11575:3;11596:84;11678:1;11673:3;11596:84;:::i;:::-;11589:91;;11689:93;11778:3;11689:93;:::i;:::-;11807:1;11802:3;11798:11;11791:18;;11579:236;;;:::o;11821:366::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11967:220;;;:::o;12193:366::-;12335:3;12356:67;12420:2;12415:3;12356:67;:::i;:::-;12349:74;;12432:93;12521:3;12432:93;:::i;:::-;12550:2;12545:3;12541:12;12534:19;;12339:220;;;:::o;12565:398::-;12724:3;12745:83;12826:1;12821:3;12745:83;:::i;:::-;12738:90;;12837:93;12926:3;12837:93;:::i;:::-;12955:1;12950:3;12946:11;12939:18;;12728:235;;;:::o;12969:366::-;13111:3;13132:67;13196:2;13191:3;13132:67;:::i;:::-;13125:74;;13208:93;13297:3;13208:93;:::i;:::-;13326:2;13321:3;13317:12;13310:19;;13115:220;;;:::o;13341:118::-;13428:24;13446:5;13428:24;:::i;:::-;13423:3;13416:37;13406:53;;:::o;13465:695::-;13743:3;13765:92;13853:3;13844:6;13765:92;:::i;:::-;13758:99;;13874:95;13965:3;13956:6;13874:95;:::i;:::-;13867:102;;13986:148;14130:3;13986:148;:::i;:::-;13979:155;;14151:3;14144:10;;13747:413;;;;;:::o;14166:379::-;14350:3;14372:147;14515:3;14372:147;:::i;:::-;14365:154;;14536:3;14529:10;;14354:191;;;:::o;14551:222::-;14644:4;14682:2;14671:9;14667:18;14659:26;;14695:71;14763:1;14752:9;14748:17;14739:6;14695:71;:::i;:::-;14649:124;;;;:::o;14779:640::-;14974:4;15012:3;15001:9;14997:19;14989:27;;15026:71;15094:1;15083:9;15079:17;15070:6;15026:71;:::i;:::-;15107:72;15175:2;15164:9;15160:18;15151:6;15107:72;:::i;:::-;15189;15257:2;15246:9;15242:18;15233:6;15189:72;:::i;:::-;15308:9;15302:4;15298:20;15293:2;15282:9;15278:18;15271:48;15336:76;15407:4;15398:6;15336:76;:::i;:::-;15328:84;;14979:440;;;;;;;:::o;15425:210::-;15512:4;15550:2;15539:9;15535:18;15527:26;;15563:65;15625:1;15614:9;15610:17;15601:6;15563:65;:::i;:::-;15517:118;;;;:::o;15641:313::-;15754:4;15792:2;15781:9;15777:18;15769:26;;15841:9;15835:4;15831:20;15827:1;15816:9;15812:17;15805:47;15869:78;15942:4;15933:6;15869:78;:::i;:::-;15861:86;;15759:195;;;;:::o;15960:419::-;16126:4;16164:2;16153:9;16149:18;16141:26;;16213:9;16207:4;16203:20;16199:1;16188:9;16184:17;16177:47;16241:131;16367:4;16241:131;:::i;:::-;16233:139;;16131:248;;;:::o;16385:419::-;16551:4;16589:2;16578:9;16574:18;16566:26;;16638:9;16632:4;16628:20;16624:1;16613:9;16609:17;16602:47;16666:131;16792:4;16666:131;:::i;:::-;16658:139;;16556:248;;;:::o;16810:419::-;16976:4;17014:2;17003:9;16999:18;16991:26;;17063:9;17057:4;17053:20;17049:1;17038:9;17034:17;17027:47;17091:131;17217:4;17091:131;:::i;:::-;17083:139;;16981:248;;;:::o;17235:419::-;17401:4;17439:2;17428:9;17424:18;17416:26;;17488:9;17482:4;17478:20;17474:1;17463:9;17459:17;17452:47;17516:131;17642:4;17516:131;:::i;:::-;17508:139;;17406:248;;;:::o;17660:419::-;17826:4;17864:2;17853:9;17849:18;17841:26;;17913:9;17907:4;17903:20;17899:1;17888:9;17884:17;17877:47;17941:131;18067:4;17941:131;:::i;:::-;17933:139;;17831:248;;;:::o;18085:419::-;18251:4;18289:2;18278:9;18274:18;18266:26;;18338:9;18332:4;18328:20;18324:1;18313:9;18309:17;18302:47;18366:131;18492:4;18366:131;:::i;:::-;18358:139;;18256:248;;;:::o;18510:419::-;18676:4;18714:2;18703:9;18699:18;18691:26;;18763:9;18757:4;18753:20;18749:1;18738:9;18734:17;18727:47;18791:131;18917:4;18791:131;:::i;:::-;18783:139;;18681:248;;;:::o;18935:419::-;19101:4;19139:2;19128:9;19124:18;19116:26;;19188:9;19182:4;19178:20;19174:1;19163:9;19159:17;19152:47;19216:131;19342:4;19216:131;:::i;:::-;19208:139;;19106:248;;;:::o;19360:419::-;19526:4;19564:2;19553:9;19549:18;19541:26;;19613:9;19607:4;19603:20;19599:1;19588:9;19584:17;19577:47;19641:131;19767:4;19641:131;:::i;:::-;19633:139;;19531:248;;;:::o;19785:419::-;19951:4;19989:2;19978:9;19974:18;19966:26;;20038:9;20032:4;20028:20;20024:1;20013:9;20009:17;20002:47;20066:131;20192:4;20066:131;:::i;:::-;20058:139;;19956:248;;;:::o;20210:419::-;20376:4;20414:2;20403:9;20399:18;20391:26;;20463:9;20457:4;20453:20;20449:1;20438:9;20434:17;20427:47;20491:131;20617:4;20491:131;:::i;:::-;20483:139;;20381:248;;;:::o;20635:419::-;20801:4;20839:2;20828:9;20824:18;20816:26;;20888:9;20882:4;20878:20;20874:1;20863:9;20859:17;20852:47;20916:131;21042:4;20916:131;:::i;:::-;20908:139;;20806:248;;;:::o;21060:222::-;21153:4;21191:2;21180:9;21176:18;21168:26;;21204:71;21272:1;21261:9;21257:17;21248:6;21204:71;:::i;:::-;21158:124;;;;:::o;21288:129::-;21322:6;21349:20;;:::i;:::-;21339:30;;21378:33;21406:4;21398:6;21378:33;:::i;:::-;21329:88;;;:::o;21423:75::-;21456:6;21489:2;21483:9;21473:19;;21463:35;:::o;21504:307::-;21565:4;21655:18;21647:6;21644:30;21641:2;;;21677:18;;:::i;:::-;21641:2;21715:29;21737:6;21715:29;:::i;:::-;21707:37;;21799:4;21793;21789:15;21781:23;;21570:241;;;:::o;21817:141::-;21866:4;21889:3;21881:11;;21912:3;21909:1;21902:14;21946:4;21943:1;21933:18;21925:26;;21871:87;;;:::o;21964:98::-;22015:6;22049:5;22043:12;22033:22;;22022:40;;;:::o;22068:99::-;22120:6;22154:5;22148:12;22138:22;;22127:40;;;:::o;22173:168::-;22256:11;22290:6;22285:3;22278:19;22330:4;22325:3;22321:14;22306:29;;22268:73;;;;:::o;22347:147::-;22448:11;22485:3;22470:18;;22460:34;;;;:::o;22500:169::-;22584:11;22618:6;22613:3;22606:19;22658:4;22653:3;22649:14;22634:29;;22596:73;;;;:::o;22675:148::-;22777:11;22814:3;22799:18;;22789:34;;;;:::o;22829:305::-;22869:3;22888:20;22906:1;22888:20;:::i;:::-;22883:25;;22922:20;22940:1;22922:20;:::i;:::-;22917:25;;23076:1;23008:66;23004:74;23001:1;22998:81;22995:2;;;23082:18;;:::i;:::-;22995:2;23126:1;23123;23119:9;23112:16;;22873:261;;;;:::o;23140:185::-;23180:1;23197:20;23215:1;23197:20;:::i;:::-;23192:25;;23231:20;23249:1;23231:20;:::i;:::-;23226:25;;23270:1;23260:2;;23275:18;;:::i;:::-;23260:2;23317:1;23314;23310:9;23305:14;;23182:143;;;;:::o;23331:348::-;23371:7;23394:20;23412:1;23394:20;:::i;:::-;23389:25;;23428:20;23446:1;23428:20;:::i;:::-;23423:25;;23616:1;23548:66;23544:74;23541:1;23538:81;23533:1;23526:9;23519:17;23515:105;23512:2;;;23623:18;;:::i;:::-;23512:2;23671:1;23668;23664:9;23653:20;;23379:300;;;;:::o;23685:191::-;23725:4;23745:20;23763:1;23745:20;:::i;:::-;23740:25;;23779:20;23797:1;23779:20;:::i;:::-;23774:25;;23818:1;23815;23812:8;23809:2;;;23823:18;;:::i;:::-;23809:2;23868:1;23865;23861:9;23853:17;;23730:146;;;;:::o;23882:96::-;23919:7;23948:24;23966:5;23948:24;:::i;:::-;23937:35;;23927:51;;;:::o;23984:90::-;24018:7;24061:5;24054:13;24047:21;24036:32;;24026:48;;;:::o;24080:149::-;24116:7;24156:66;24149:5;24145:78;24134:89;;24124:105;;;:::o;24235:126::-;24272:7;24312:42;24305:5;24301:54;24290:65;;24280:81;;;:::o;24367:77::-;24404:7;24433:5;24422:16;;24412:32;;;:::o;24450:154::-;24534:6;24529:3;24524;24511:30;24596:1;24587:6;24582:3;24578:16;24571:27;24501:103;;;:::o;24610:307::-;24678:1;24688:113;24702:6;24699:1;24696:13;24688:113;;;24787:1;24782:3;24778:11;24772:18;24768:1;24763:3;24759:11;24752:39;24724:2;24721:1;24717:10;24712:15;;24688:113;;;24819:6;24816:1;24813:13;24810:2;;;24899:1;24890:6;24885:3;24881:16;24874:27;24810:2;24659:258;;;;:::o;24923:320::-;24967:6;25004:1;24998:4;24994:12;24984:22;;25051:1;25045:4;25041:12;25072:18;25062:2;;25128:4;25120:6;25116:17;25106:27;;25062:2;25190;25182:6;25179:14;25159:18;25156:38;25153:2;;;25209:18;;:::i;:::-;25153:2;24974:269;;;;:::o;25249:281::-;25332:27;25354:4;25332:27;:::i;:::-;25324:6;25320:40;25462:6;25450:10;25447:22;25426:18;25414:10;25411:34;25408:62;25405:2;;;25473:18;;:::i;:::-;25405:2;25513:10;25509:2;25502:22;25292:238;;;:::o;25536:233::-;25575:3;25598:24;25616:5;25598:24;:::i;:::-;25589:33;;25644:66;25637:5;25634:77;25631:2;;;25714:18;;:::i;:::-;25631:2;25761:1;25754:5;25750:13;25743:20;;25579:190;;;:::o;25775:176::-;25807:1;25824:20;25842:1;25824:20;:::i;:::-;25819:25;;25858:20;25876:1;25858:20;:::i;:::-;25853:25;;25897:1;25887:2;;25902:18;;:::i;:::-;25887:2;25943:1;25940;25936:9;25931:14;;25809:142;;;;:::o;25957:180::-;26005:77;26002:1;25995:88;26102:4;26099:1;26092:15;26126:4;26123:1;26116:15;26143:180;26191:77;26188:1;26181:88;26288:4;26285:1;26278:15;26312:4;26309:1;26302:15;26329:180;26377:77;26374:1;26367:88;26474:4;26471:1;26464:15;26498:4;26495:1;26488:15;26515:180;26563:77;26560:1;26553:88;26660:4;26657:1;26650:15;26684:4;26681:1;26674:15;26701:102;26742:6;26793:2;26789:7;26784:2;26777:5;26773:14;26769:28;26759:38;;26749:54;;;:::o;26809:179::-;26949:31;26945:1;26937:6;26933:14;26926:55;26915:73;:::o;26994:170::-;27134:22;27130:1;27122:6;27118:14;27111:46;27100:64;:::o;27170:165::-;27310:17;27306:1;27298:6;27294:14;27287:41;27276:59;:::o;27341:225::-;27481:34;27477:1;27469:6;27465:14;27458:58;27550:8;27545:2;27537:6;27533:15;27526:33;27447:119;:::o;27572:245::-;27712:34;27708:1;27700:6;27696:14;27689:58;27781:28;27776:2;27768:6;27764:15;27757:53;27678:139;:::o;27823:166::-;27963:18;27959:1;27951:6;27947:14;27940:42;27929:60;:::o;27995:167::-;28135:19;28131:1;28123:6;28119:14;28112:43;28101:61;:::o;28168:166::-;28308:18;28304:1;28296:6;28292:14;28285:42;28274:60;:::o;28340:241::-;28480:34;28476:1;28468:6;28464:14;28457:58;28549:24;28544:2;28536:6;28532:15;28525:49;28446:135;:::o;28587:155::-;28727:7;28723:1;28715:6;28711:14;28704:31;28693:49;:::o;28748:182::-;28888:34;28884:1;28876:6;28872:14;28865:58;28854:76;:::o;28936:168::-;29076:20;29072:1;29064:6;29060:14;29053:44;29042:62;:::o;29110:114::-;29216:8;:::o;29230:163::-;29370:15;29366:1;29358:6;29354:14;29347:39;29336:57;:::o;29399:122::-;29472:24;29490:5;29472:24;:::i;:::-;29465:5;29462:35;29452:2;;29511:1;29508;29501:12;29452:2;29442:79;:::o;29527:116::-;29597:21;29612:5;29597:21;:::i;:::-;29590:5;29587:32;29577:2;;29633:1;29630;29623:12;29577:2;29567:76;:::o;29649:120::-;29721:23;29738:5;29721:23;:::i;:::-;29714:5;29711:34;29701:2;;29759:1;29756;29749:12;29701:2;29691:78;:::o;29775:122::-;29848:24;29866:5;29848:24;:::i;:::-;29841:5;29838:35;29828:2;;29887:1;29884;29877:12;29828:2;29818:79;:::o

Swarm Source

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